-
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.
Merge pull request #225 from pulumi/jkodroff/v2.13.0
Upgrade to v2.13.0 of the AzureAD Terraform Provider
- Loading branch information
Showing
22 changed files
with
817 additions
and
61 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
// *** 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 GroupDynamicMembershipArgs : Pulumi.ResourceArgs | ||
{ | ||
/// <summary> | ||
/// Whether rule processing is "On" (true) or "Paused" (false). | ||
/// </summary> | ||
[Input("enabled", required: true)] | ||
public Input<bool> Enabled { get; set; } = null!; | ||
|
||
/// <summary> | ||
/// The rule that determines membership of this group. For more information, see official documentation on [memmbership rules syntax](https://docs.microsoft.com/en-gb/azure/active-directory/enterprise-users/groups-dynamic-membership). | ||
/// </summary> | ||
[Input("rule", required: true)] | ||
public Input<string> Rule { get; set; } = null!; | ||
|
||
public GroupDynamicMembershipArgs() | ||
{ | ||
} | ||
} | ||
} |
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,31 @@ | ||
// *** 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 GroupDynamicMembershipGetArgs : Pulumi.ResourceArgs | ||
{ | ||
/// <summary> | ||
/// Whether rule processing is "On" (true) or "Paused" (false). | ||
/// </summary> | ||
[Input("enabled", required: true)] | ||
public Input<bool> Enabled { get; set; } = null!; | ||
|
||
/// <summary> | ||
/// The rule that determines membership of this group. For more information, see official documentation on [memmbership rules syntax](https://docs.microsoft.com/en-gb/azure/active-directory/enterprise-users/groups-dynamic-membership). | ||
/// </summary> | ||
[Input("rule", required: true)] | ||
public Input<string> Rule { get; set; } = null!; | ||
|
||
public GroupDynamicMembershipGetArgs() | ||
{ | ||
} | ||
} | ||
} |
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 GetGroupDynamicMembershipResult | ||
{ | ||
/// <summary> | ||
/// Whether rule processing is "On" (true) or "Paused" (false). | ||
/// </summary> | ||
public readonly bool Enabled; | ||
/// <summary> | ||
/// The rule that determines membership of this group. | ||
/// </summary> | ||
public readonly string Rule; | ||
|
||
[OutputConstructor] | ||
private GetGroupDynamicMembershipResult( | ||
bool enabled, | ||
|
||
string rule) | ||
{ | ||
Enabled = enabled; | ||
Rule = rule; | ||
} | ||
} | ||
} |
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 GroupDynamicMembership | ||
{ | ||
/// <summary> | ||
/// Whether rule processing is "On" (true) or "Paused" (false). | ||
/// </summary> | ||
public readonly bool Enabled; | ||
/// <summary> | ||
/// The rule that determines membership of this group. For more information, see official documentation on [memmbership rules syntax](https://docs.microsoft.com/en-gb/azure/active-directory/enterprise-users/groups-dynamic-membership). | ||
/// </summary> | ||
public readonly string Rule; | ||
|
||
[OutputConstructor] | ||
private GroupDynamicMembership( | ||
bool enabled, | ||
|
||
string rule) | ||
{ | ||
Enabled = enabled; | ||
Rule = rule; | ||
} | ||
} | ||
} |
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
Oops, something went wrong.