@pulumi/github 5.18.0 → 5.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/organizationRuleset.d.ts +3 -3
- package/package.json +1 -1
- package/types/input.d.ts +6 -2
- package/types/output.d.ts +6 -2
package/organizationRuleset.d.ts
CHANGED
|
@@ -35,7 +35,7 @@ export declare class OrganizationRuleset extends pulumi.CustomResource {
|
|
|
35
35
|
*/
|
|
36
36
|
readonly bypassActors: pulumi.Output<outputs.OrganizationRulesetBypassActor[] | undefined>;
|
|
37
37
|
/**
|
|
38
|
-
* (Block List, Max: 1) Parameters for an organization ruleset
|
|
38
|
+
* (Block List, Max: 1) Parameters for an organization ruleset condition. `refName` is required alongside one of `repositoryName` or `repositoryId`. (see below for nested schema)
|
|
39
39
|
*/
|
|
40
40
|
readonly conditions: pulumi.Output<outputs.OrganizationRulesetConditions | undefined>;
|
|
41
41
|
/**
|
|
@@ -84,7 +84,7 @@ export interface OrganizationRulesetState {
|
|
|
84
84
|
*/
|
|
85
85
|
bypassActors?: pulumi.Input<pulumi.Input<inputs.OrganizationRulesetBypassActor>[]>;
|
|
86
86
|
/**
|
|
87
|
-
* (Block List, Max: 1) Parameters for an organization ruleset
|
|
87
|
+
* (Block List, Max: 1) Parameters for an organization ruleset condition. `refName` is required alongside one of `repositoryName` or `repositoryId`. (see below for nested schema)
|
|
88
88
|
*/
|
|
89
89
|
conditions?: pulumi.Input<inputs.OrganizationRulesetConditions>;
|
|
90
90
|
/**
|
|
@@ -125,7 +125,7 @@ export interface OrganizationRulesetArgs {
|
|
|
125
125
|
*/
|
|
126
126
|
bypassActors?: pulumi.Input<pulumi.Input<inputs.OrganizationRulesetBypassActor>[]>;
|
|
127
127
|
/**
|
|
128
|
-
* (Block List, Max: 1) Parameters for an organization ruleset
|
|
128
|
+
* (Block List, Max: 1) Parameters for an organization ruleset condition. `refName` is required alongside one of `repositoryName` or `repositoryId`. (see below for nested schema)
|
|
129
129
|
*/
|
|
130
130
|
conditions?: pulumi.Input<inputs.OrganizationRulesetConditions>;
|
|
131
131
|
/**
|
package/package.json
CHANGED
package/types/input.d.ts
CHANGED
|
@@ -159,7 +159,7 @@ export interface BranchProtectionV3Restrictions {
|
|
|
159
159
|
}
|
|
160
160
|
export interface OrganizationRulesetBypassActor {
|
|
161
161
|
/**
|
|
162
|
-
* (Number) The ID of the actor that can bypass a ruleset
|
|
162
|
+
* (Number) The ID of the actor that can bypass a ruleset.
|
|
163
163
|
*/
|
|
164
164
|
actorId: pulumi.Input<number>;
|
|
165
165
|
/**
|
|
@@ -168,6 +168,8 @@ export interface OrganizationRulesetBypassActor {
|
|
|
168
168
|
actorType: pulumi.Input<string>;
|
|
169
169
|
/**
|
|
170
170
|
* (String) When the specified actor can bypass the ruleset. pullRequest means that an actor can only bypass rules on pull requests. Can be one of: `always`, `pullRequest`.
|
|
171
|
+
*
|
|
172
|
+
* ~>Note: at the time of writing this, the following actor types correspond to the following actor IDs:
|
|
171
173
|
*/
|
|
172
174
|
bypassMode: pulumi.Input<string>;
|
|
173
175
|
}
|
|
@@ -488,7 +490,7 @@ export interface RepositoryPagesSource {
|
|
|
488
490
|
}
|
|
489
491
|
export interface RepositoryRulesetBypassActor {
|
|
490
492
|
/**
|
|
491
|
-
* (Number) The ID of the actor that can bypass a ruleset
|
|
493
|
+
* (Number) The ID of the actor that can bypass a ruleset.
|
|
492
494
|
*/
|
|
493
495
|
actorId: pulumi.Input<number>;
|
|
494
496
|
/**
|
|
@@ -497,6 +499,8 @@ export interface RepositoryRulesetBypassActor {
|
|
|
497
499
|
actorType: pulumi.Input<string>;
|
|
498
500
|
/**
|
|
499
501
|
* (String) When the specified actor can bypass the ruleset. pullRequest means that an actor can only bypass rules on pull requests. Can be one of: `always`, `pullRequest`.
|
|
502
|
+
*
|
|
503
|
+
* > Note: at the time of writing this, the following actor types correspond to the following actor IDs:
|
|
500
504
|
*/
|
|
501
505
|
bypassMode: pulumi.Input<string>;
|
|
502
506
|
}
|
package/types/output.d.ts
CHANGED
|
@@ -807,7 +807,7 @@ export interface GetTreeEntry {
|
|
|
807
807
|
}
|
|
808
808
|
export interface OrganizationRulesetBypassActor {
|
|
809
809
|
/**
|
|
810
|
-
* (Number) The ID of the actor that can bypass a ruleset
|
|
810
|
+
* (Number) The ID of the actor that can bypass a ruleset.
|
|
811
811
|
*/
|
|
812
812
|
actorId: number;
|
|
813
813
|
/**
|
|
@@ -816,6 +816,8 @@ export interface OrganizationRulesetBypassActor {
|
|
|
816
816
|
actorType: string;
|
|
817
817
|
/**
|
|
818
818
|
* (String) When the specified actor can bypass the ruleset. pullRequest means that an actor can only bypass rules on pull requests. Can be one of: `always`, `pullRequest`.
|
|
819
|
+
*
|
|
820
|
+
* ~>Note: at the time of writing this, the following actor types correspond to the following actor IDs:
|
|
819
821
|
*/
|
|
820
822
|
bypassMode: string;
|
|
821
823
|
}
|
|
@@ -1131,7 +1133,7 @@ export interface RepositoryPagesSource {
|
|
|
1131
1133
|
}
|
|
1132
1134
|
export interface RepositoryRulesetBypassActor {
|
|
1133
1135
|
/**
|
|
1134
|
-
* (Number) The ID of the actor that can bypass a ruleset
|
|
1136
|
+
* (Number) The ID of the actor that can bypass a ruleset.
|
|
1135
1137
|
*/
|
|
1136
1138
|
actorId: number;
|
|
1137
1139
|
/**
|
|
@@ -1140,6 +1142,8 @@ export interface RepositoryRulesetBypassActor {
|
|
|
1140
1142
|
actorType: string;
|
|
1141
1143
|
/**
|
|
1142
1144
|
* (String) When the specified actor can bypass the ruleset. pullRequest means that an actor can only bypass rules on pull requests. Can be one of: `always`, `pullRequest`.
|
|
1145
|
+
*
|
|
1146
|
+
* > Note: at the time of writing this, the following actor types correspond to the following actor IDs:
|
|
1143
1147
|
*/
|
|
1144
1148
|
bypassMode: string;
|
|
1145
1149
|
}
|