@pulumi/github 5.27.0-alpha.1706746124 → 5.27.0-alpha.1706829033
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/config/vars.d.ts +2 -2
- package/package.json +1 -1
- package/types/input.d.ts +21 -0
- package/types/output.d.ts +21 -0
package/config/vars.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as outputs from "../types/output";
|
|
2
2
|
/**
|
|
3
3
|
* The GitHub App credentials used to connect to GitHub. Conflicts with `token`. Anonymous mode is enabled if both `token`
|
|
4
|
-
* and `
|
|
4
|
+
* and `appAuth` are not set.
|
|
5
5
|
*/
|
|
6
6
|
export declare const appAuth: outputs.config.AppAuth | undefined;
|
|
7
7
|
/**
|
|
@@ -31,7 +31,7 @@ export declare const parallelRequests: boolean | undefined;
|
|
|
31
31
|
*/
|
|
32
32
|
export declare const readDelayMs: number | undefined;
|
|
33
33
|
/**
|
|
34
|
-
* The OAuth token used to connect to GitHub. Anonymous mode is enabled if both `token` and `
|
|
34
|
+
* The OAuth token used to connect to GitHub. Anonymous mode is enabled if both `token` and `appAuth` are not set.
|
|
35
35
|
*/
|
|
36
36
|
export declare const token: string | undefined;
|
|
37
37
|
/**
|
package/package.json
CHANGED
package/types/input.d.ts
CHANGED
|
@@ -240,6 +240,9 @@ export interface OrganizationRulesetConditionsRepositoryName {
|
|
|
240
240
|
* (List of String) Array of repository names or patterns to include. One of these patterns must match for the condition to pass. Also accepts `~ALL` to include all repositories.
|
|
241
241
|
*/
|
|
242
242
|
includes: pulumi.Input<pulumi.Input<string>[]>;
|
|
243
|
+
/**
|
|
244
|
+
* Whether renaming of target repositories is prevented.
|
|
245
|
+
*/
|
|
243
246
|
protected?: pulumi.Input<boolean>;
|
|
244
247
|
}
|
|
245
248
|
export interface OrganizationRulesetRules {
|
|
@@ -453,8 +456,17 @@ export interface OrganizationRulesetRulesTagNamePattern {
|
|
|
453
456
|
pattern: pulumi.Input<string>;
|
|
454
457
|
}
|
|
455
458
|
export interface OrganizationWebhookConfiguration {
|
|
459
|
+
/**
|
|
460
|
+
* The content type for the payload. Valid values are either 'form' or 'json'.
|
|
461
|
+
*/
|
|
456
462
|
contentType?: pulumi.Input<string>;
|
|
463
|
+
/**
|
|
464
|
+
* Insecure SSL boolean toggle. Defaults to 'false'.
|
|
465
|
+
*/
|
|
457
466
|
insecureSsl?: pulumi.Input<boolean>;
|
|
467
|
+
/**
|
|
468
|
+
* The shared secret for the webhook
|
|
469
|
+
*/
|
|
458
470
|
secret?: pulumi.Input<string>;
|
|
459
471
|
/**
|
|
460
472
|
* URL of the webhook
|
|
@@ -462,8 +474,17 @@ export interface OrganizationWebhookConfiguration {
|
|
|
462
474
|
url: pulumi.Input<string>;
|
|
463
475
|
}
|
|
464
476
|
export interface ProviderAppAuth {
|
|
477
|
+
/**
|
|
478
|
+
* The GitHub App ID.
|
|
479
|
+
*/
|
|
465
480
|
id: pulumi.Input<string>;
|
|
481
|
+
/**
|
|
482
|
+
* The GitHub App installation instance ID.
|
|
483
|
+
*/
|
|
466
484
|
installationId: pulumi.Input<string>;
|
|
485
|
+
/**
|
|
486
|
+
* The GitHub App PEM file contents.
|
|
487
|
+
*/
|
|
467
488
|
pemFile: pulumi.Input<string>;
|
|
468
489
|
}
|
|
469
490
|
export interface RepositoryCollaboratorsTeam {
|
package/types/output.d.ts
CHANGED
|
@@ -994,6 +994,9 @@ export interface OrganizationRulesetConditionsRepositoryName {
|
|
|
994
994
|
* (List of String) Array of repository names or patterns to include. One of these patterns must match for the condition to pass. Also accepts `~ALL` to include all repositories.
|
|
995
995
|
*/
|
|
996
996
|
includes: string[];
|
|
997
|
+
/**
|
|
998
|
+
* Whether renaming of target repositories is prevented.
|
|
999
|
+
*/
|
|
997
1000
|
protected?: boolean;
|
|
998
1001
|
}
|
|
999
1002
|
export interface OrganizationRulesetRules {
|
|
@@ -1207,8 +1210,17 @@ export interface OrganizationRulesetRulesTagNamePattern {
|
|
|
1207
1210
|
pattern: string;
|
|
1208
1211
|
}
|
|
1209
1212
|
export interface OrganizationWebhookConfiguration {
|
|
1213
|
+
/**
|
|
1214
|
+
* The content type for the payload. Valid values are either 'form' or 'json'.
|
|
1215
|
+
*/
|
|
1210
1216
|
contentType?: string;
|
|
1217
|
+
/**
|
|
1218
|
+
* Insecure SSL boolean toggle. Defaults to 'false'.
|
|
1219
|
+
*/
|
|
1211
1220
|
insecureSsl?: boolean;
|
|
1221
|
+
/**
|
|
1222
|
+
* The shared secret for the webhook
|
|
1223
|
+
*/
|
|
1212
1224
|
secret?: string;
|
|
1213
1225
|
/**
|
|
1214
1226
|
* URL of the webhook
|
|
@@ -1633,8 +1645,17 @@ export interface TeamSyncGroupMappingGroup {
|
|
|
1633
1645
|
}
|
|
1634
1646
|
export declare namespace config {
|
|
1635
1647
|
interface AppAuth {
|
|
1648
|
+
/**
|
|
1649
|
+
* The GitHub App ID.
|
|
1650
|
+
*/
|
|
1636
1651
|
id: string;
|
|
1652
|
+
/**
|
|
1653
|
+
* The GitHub App installation instance ID.
|
|
1654
|
+
*/
|
|
1637
1655
|
installationId: string;
|
|
1656
|
+
/**
|
|
1657
|
+
* The GitHub App PEM file contents.
|
|
1658
|
+
*/
|
|
1638
1659
|
pemFile: string;
|
|
1639
1660
|
}
|
|
1640
1661
|
}
|