-
Notifications
You must be signed in to change notification settings - Fork 10
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-github to v5.36.0 (#438)
Fixes #439 #430 This PR was generated via `$ upgrade-provider pulumi/pulumi-github --upstream-provider-name terraform-provider-github`. --- - Upgrading terraform-provider-github from 5.34.0 to 5.36.0. - Upgrading pulumi-terraform-bridge from v3.57.0 to v3.59.0.
- Loading branch information
Showing
179 changed files
with
31,073 additions
and
1,279 deletions.
There are no files selected for viewing
261 changes: 261 additions & 0 deletions
261
provider/cmd/pulumi-resource-github/bridge-metadata.json
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,6 +25,7 @@ namespace Pulumi.Github | |
/// var org = new Github.EnterpriseOrganization("org", new() | ||
/// { | ||
/// EnterpriseId = data.Github_enterprise.Enterprise.Id, | ||
/// DisplayName = "Some Awesome Org", | ||
/// Description = "Organization created with terraform", | ||
/// BillingEmail = "[email protected]", | ||
/// AdminLogins = new[] | ||
|
@@ -38,7 +39,11 @@ namespace Pulumi.Github | |
/// | ||
/// ## Import | ||
/// | ||
/// Support for importing organizations is not currently supported. | ||
/// GitHub Enterprise Organization can be imported using the `slug` of the enterprise, combined with the `orgname` of the organization, separated by a `/` character. | ||
/// | ||
/// ```sh | ||
/// $ pulumi import github:index/enterpriseOrganization:EnterpriseOrganization org enterp/some-awesome-org | ||
/// ``` | ||
/// </summary> | ||
[GithubResourceType("github:index/enterpriseOrganization:EnterpriseOrganization")] | ||
public partial class EnterpriseOrganization : global::Pulumi.CustomResource | ||
|
@@ -61,6 +66,12 @@ public partial class EnterpriseOrganization : global::Pulumi.CustomResource | |
[Output("description")] | ||
public Output<string?> Description { get; private set; } = null!; | ||
|
||
/// <summary> | ||
/// The display name of the organization. | ||
/// </summary> | ||
[Output("displayName")] | ||
public Output<string?> DisplayName { get; private set; } = null!; | ||
|
||
/// <summary> | ||
/// The ID of the enterprise. | ||
/// </summary> | ||
|
@@ -143,6 +154,12 @@ public InputList<string> AdminLogins | |
[Input("description")] | ||
public Input<string>? Description { get; set; } | ||
|
||
/// <summary> | ||
/// The display name of the organization. | ||
/// </summary> | ||
[Input("displayName")] | ||
public Input<string>? DisplayName { get; set; } | ||
|
||
/// <summary> | ||
/// The ID of the enterprise. | ||
/// </summary> | ||
|
@@ -187,6 +204,12 @@ public InputList<string> AdminLogins | |
[Input("description")] | ||
public Input<string>? Description { get; set; } | ||
|
||
/// <summary> | ||
/// The display name of the organization. | ||
/// </summary> | ||
[Input("displayName")] | ||
public Input<string>? DisplayName { get; set; } | ||
|
||
/// <summary> | ||
/// The ID of the enterprise. | ||
/// </summary> | ||
|
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.Github.Inputs | ||
{ | ||
|
||
public sealed class OrganizationRulesetBypassActorArgs : global::Pulumi.ResourceArgs | ||
{ | ||
/// <summary> | ||
/// (Number) The ID of the actor that can bypass a ruleset | ||
/// </summary> | ||
[Input("actorId", required: true)] | ||
public Input<int> ActorId { get; set; } = null!; | ||
|
||
/// <summary> | ||
/// The type of actor that can bypass a ruleset. Can be one of: `RepositoryRole`, `Team`, `Integration`, `OrganizationAdmin`. | ||
/// </summary> | ||
[Input("actorType", required: true)] | ||
public Input<string> ActorType { get; set; } = null!; | ||
|
||
/// <summary> | ||
/// (String) When the specified actor can bypass the ruleset. pull_request means that an actor can only bypass rules on pull requests. Can be one of: `always`, `pull_request`. | ||
/// </summary> | ||
[Input("bypassMode")] | ||
public Input<string>? BypassMode { get; set; } | ||
|
||
public OrganizationRulesetBypassActorArgs() | ||
{ | ||
} | ||
public static new OrganizationRulesetBypassActorArgs Empty => new OrganizationRulesetBypassActorArgs(); | ||
} | ||
} |
38 changes: 38 additions & 0 deletions
38
sdk/dotnet/Inputs/OrganizationRulesetBypassActorGetArgs.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,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.Github.Inputs | ||
{ | ||
|
||
public sealed class OrganizationRulesetBypassActorGetArgs : global::Pulumi.ResourceArgs | ||
{ | ||
/// <summary> | ||
/// (Number) The ID of the actor that can bypass a ruleset | ||
/// </summary> | ||
[Input("actorId", required: true)] | ||
public Input<int> ActorId { get; set; } = null!; | ||
|
||
/// <summary> | ||
/// The type of actor that can bypass a ruleset. Can be one of: `RepositoryRole`, `Team`, `Integration`, `OrganizationAdmin`. | ||
/// </summary> | ||
[Input("actorType", required: true)] | ||
public Input<string> ActorType { get; set; } = null!; | ||
|
||
/// <summary> | ||
/// (String) When the specified actor can bypass the ruleset. pull_request means that an actor can only bypass rules on pull requests. Can be one of: `always`, `pull_request`. | ||
/// </summary> | ||
[Input("bypassMode")] | ||
public Input<string>? BypassMode { get; set; } | ||
|
||
public OrganizationRulesetBypassActorGetArgs() | ||
{ | ||
} | ||
public static new OrganizationRulesetBypassActorGetArgs Empty => new OrganizationRulesetBypassActorGetArgs(); | ||
} | ||
} |
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,40 @@ | ||
// *** 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.Github.Inputs | ||
{ | ||
|
||
public sealed class OrganizationRulesetConditionsArgs : global::Pulumi.ResourceArgs | ||
{ | ||
/// <summary> | ||
/// (Block List, Min: 1, Max: 1) (see below for nested schema) | ||
/// </summary> | ||
[Input("refName", required: true)] | ||
public Input<Inputs.OrganizationRulesetConditionsRefNameArgs> RefName { get; set; } = null!; | ||
|
||
/// <summary> | ||
/// The repository IDs that the ruleset applies to. One of these IDs must match for the condition to pass. Conflicts with `repository_name`. | ||
/// </summary> | ||
[Input("repositoryId")] | ||
public Input<int>? RepositoryId { get; set; } | ||
|
||
/// <summary> | ||
/// Conflicts with `repository_id`. (see below for nested schema) | ||
/// | ||
/// One of `repository_id` and `repository_name` must be set for the rule to target any repositories. | ||
/// </summary> | ||
[Input("repositoryName")] | ||
public Input<Inputs.OrganizationRulesetConditionsRepositoryNameArgs>? RepositoryName { get; set; } | ||
|
||
public OrganizationRulesetConditionsArgs() | ||
{ | ||
} | ||
public static new OrganizationRulesetConditionsArgs Empty => new OrganizationRulesetConditionsArgs(); | ||
} | ||
} |
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,40 @@ | ||
// *** 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.Github.Inputs | ||
{ | ||
|
||
public sealed class OrganizationRulesetConditionsGetArgs : global::Pulumi.ResourceArgs | ||
{ | ||
/// <summary> | ||
/// (Block List, Min: 1, Max: 1) (see below for nested schema) | ||
/// </summary> | ||
[Input("refName", required: true)] | ||
public Input<Inputs.OrganizationRulesetConditionsRefNameGetArgs> RefName { get; set; } = null!; | ||
|
||
/// <summary> | ||
/// The repository IDs that the ruleset applies to. One of these IDs must match for the condition to pass. Conflicts with `repository_name`. | ||
/// </summary> | ||
[Input("repositoryId")] | ||
public Input<int>? RepositoryId { get; set; } | ||
|
||
/// <summary> | ||
/// Conflicts with `repository_id`. (see below for nested schema) | ||
/// | ||
/// One of `repository_id` and `repository_name` must be set for the rule to target any repositories. | ||
/// </summary> | ||
[Input("repositoryName")] | ||
public Input<Inputs.OrganizationRulesetConditionsRepositoryNameGetArgs>? RepositoryName { get; set; } | ||
|
||
public OrganizationRulesetConditionsGetArgs() | ||
{ | ||
} | ||
public static new OrganizationRulesetConditionsGetArgs Empty => new OrganizationRulesetConditionsGetArgs(); | ||
} | ||
} |
Oops, something went wrong.