-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade terraform-provider-azuread to v2.30.0 (#318)
- Loading branch information
Showing
46 changed files
with
4,656 additions
and
47 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** | ||
// *** Do not edit by hand unless you're certain you know what you are doing! *** | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Collections.Immutable; | ||
using System.Threading.Tasks; | ||
using Pulumi.Serialization; | ||
|
||
namespace Pulumi.AzureAD.Inputs | ||
{ | ||
|
||
public sealed class SynchronizationJobScheduleArgs : global::Pulumi.ResourceArgs | ||
{ | ||
/// <summary> | ||
/// Date and time when this job will expire, formatted as an RFC3339 date string (e.g. `2018-01-01T01:02:03Z`). | ||
/// </summary> | ||
[Input("expiration")] | ||
public Input<string>? Expiration { get; set; } | ||
|
||
/// <summary> | ||
/// The interval between synchronization iterations ISO8601. E.g. PT40M run every 40 minutes. | ||
/// </summary> | ||
[Input("interval")] | ||
public Input<string>? Interval { get; set; } | ||
|
||
/// <summary> | ||
/// State of the job. | ||
/// </summary> | ||
[Input("state")] | ||
public Input<string>? State { get; set; } | ||
|
||
public SynchronizationJobScheduleArgs() | ||
{ | ||
} | ||
public static new SynchronizationJobScheduleArgs Empty => new SynchronizationJobScheduleArgs(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** | ||
// *** Do not edit by hand unless you're certain you know what you are doing! *** | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Collections.Immutable; | ||
using System.Threading.Tasks; | ||
using Pulumi.Serialization; | ||
|
||
namespace Pulumi.AzureAD.Inputs | ||
{ | ||
|
||
public sealed class SynchronizationJobScheduleGetArgs : global::Pulumi.ResourceArgs | ||
{ | ||
/// <summary> | ||
/// Date and time when this job will expire, formatted as an RFC3339 date string (e.g. `2018-01-01T01:02:03Z`). | ||
/// </summary> | ||
[Input("expiration")] | ||
public Input<string>? Expiration { get; set; } | ||
|
||
/// <summary> | ||
/// The interval between synchronization iterations ISO8601. E.g. PT40M run every 40 minutes. | ||
/// </summary> | ||
[Input("interval")] | ||
public Input<string>? Interval { get; set; } | ||
|
||
/// <summary> | ||
/// State of the job. | ||
/// </summary> | ||
[Input("state")] | ||
public Input<string>? State { get; set; } | ||
|
||
public SynchronizationJobScheduleGetArgs() | ||
{ | ||
} | ||
public static new SynchronizationJobScheduleGetArgs Empty => new SynchronizationJobScheduleGetArgs(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** | ||
// *** Do not edit by hand unless you're certain you know what you are doing! *** | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Collections.Immutable; | ||
using System.Threading.Tasks; | ||
using Pulumi.Serialization; | ||
|
||
namespace Pulumi.AzureAD.Inputs | ||
{ | ||
|
||
public sealed class SynchronizationSecretCredentialArgs : global::Pulumi.ResourceArgs | ||
{ | ||
/// <summary> | ||
/// The key of the secret. | ||
/// </summary> | ||
[Input("key", required: true)] | ||
public Input<string> Key { get; set; } = null!; | ||
|
||
/// <summary> | ||
/// The value of the secret. | ||
/// </summary> | ||
[Input("value", required: true)] | ||
public Input<string> Value { get; set; } = null!; | ||
|
||
public SynchronizationSecretCredentialArgs() | ||
{ | ||
} | ||
public static new SynchronizationSecretCredentialArgs Empty => new SynchronizationSecretCredentialArgs(); | ||
} | ||
} |
32 changes: 32 additions & 0 deletions
32
sdk/dotnet/Inputs/SynchronizationSecretCredentialGetArgs.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** | ||
// *** Do not edit by hand unless you're certain you know what you are doing! *** | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Collections.Immutable; | ||
using System.Threading.Tasks; | ||
using Pulumi.Serialization; | ||
|
||
namespace Pulumi.AzureAD.Inputs | ||
{ | ||
|
||
public sealed class SynchronizationSecretCredentialGetArgs : global::Pulumi.ResourceArgs | ||
{ | ||
/// <summary> | ||
/// The key of the secret. | ||
/// </summary> | ||
[Input("key", required: true)] | ||
public Input<string> Key { get; set; } = null!; | ||
|
||
/// <summary> | ||
/// The value of the secret. | ||
/// </summary> | ||
[Input("value", required: true)] | ||
public Input<string> Value { get; set; } = null!; | ||
|
||
public SynchronizationSecretCredentialGetArgs() | ||
{ | ||
} | ||
public static new SynchronizationSecretCredentialGetArgs Empty => new SynchronizationSecretCredentialGetArgs(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** | ||
// *** Do not edit by hand unless you're certain you know what you are doing! *** | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Collections.Immutable; | ||
using System.Threading.Tasks; | ||
using Pulumi.Serialization; | ||
|
||
namespace Pulumi.AzureAD.Outputs | ||
{ | ||
|
||
[OutputType] | ||
public sealed class SynchronizationJobSchedule | ||
{ | ||
/// <summary> | ||
/// Date and time when this job will expire, formatted as an RFC3339 date string (e.g. `2018-01-01T01:02:03Z`). | ||
/// </summary> | ||
public readonly string? Expiration; | ||
/// <summary> | ||
/// The interval between synchronization iterations ISO8601. E.g. PT40M run every 40 minutes. | ||
/// </summary> | ||
public readonly string? Interval; | ||
/// <summary> | ||
/// State of the job. | ||
/// </summary> | ||
public readonly string? State; | ||
|
||
[OutputConstructor] | ||
private SynchronizationJobSchedule( | ||
string? expiration, | ||
|
||
string? interval, | ||
|
||
string? state) | ||
{ | ||
Expiration = expiration; | ||
Interval = interval; | ||
State = state; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** | ||
// *** Do not edit by hand unless you're certain you know what you are doing! *** | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Collections.Immutable; | ||
using System.Threading.Tasks; | ||
using Pulumi.Serialization; | ||
|
||
namespace Pulumi.AzureAD.Outputs | ||
{ | ||
|
||
[OutputType] | ||
public sealed class SynchronizationSecretCredential | ||
{ | ||
/// <summary> | ||
/// The key of the secret. | ||
/// </summary> | ||
public readonly string Key; | ||
/// <summary> | ||
/// The value of the secret. | ||
/// </summary> | ||
public readonly string Value; | ||
|
||
[OutputConstructor] | ||
private SynchronizationSecretCredential( | ||
string key, | ||
|
||
string value) | ||
{ | ||
Key = key; | ||
Value = value; | ||
} | ||
} | ||
} |
Oops, something went wrong.