@pulumi/github 6.3.0-alpha.1715337108 → 6.3.0-alpha.1715757032
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/package.json +3 -2
- package/package.json.bak +3 -2
- package/provider.d.ts +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/github",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.3.0-alpha.1715757032+2e618bc",
|
|
4
4
|
"description": "A Pulumi package for creating and managing github cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
},
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
|
-
"name": "github"
|
|
25
|
+
"name": "github",
|
|
26
|
+
"version": "6.3.0-alpha.1715757032+2e618bc"
|
|
26
27
|
}
|
|
27
28
|
}
|
package/package.json.bak
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/github",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.3.0-alpha.1715757032+2e618bc",
|
|
4
4
|
"description": "A Pulumi package for creating and managing github cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
},
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
|
-
"name": "github"
|
|
25
|
+
"name": "github",
|
|
26
|
+
"version": "6.3.0-alpha.1715757032+2e618bc"
|
|
26
27
|
}
|
|
27
28
|
}
|
package/provider.d.ts
CHANGED
|
@@ -27,7 +27,7 @@ export declare class Provider extends pulumi.ProviderResource {
|
|
|
27
27
|
*/
|
|
28
28
|
readonly owner: pulumi.Output<string | undefined>;
|
|
29
29
|
/**
|
|
30
|
-
* The OAuth token used to connect to GitHub. Anonymous mode is enabled if both `token` and `
|
|
30
|
+
* The OAuth token used to connect to GitHub. Anonymous mode is enabled if both `token` and `appAuth` are not set.
|
|
31
31
|
*/
|
|
32
32
|
readonly token: pulumi.Output<string | undefined>;
|
|
33
33
|
/**
|
|
@@ -45,7 +45,7 @@ export declare class Provider extends pulumi.ProviderResource {
|
|
|
45
45
|
export interface ProviderArgs {
|
|
46
46
|
/**
|
|
47
47
|
* The GitHub App credentials used to connect to GitHub. Conflicts with `token`. Anonymous mode is enabled if both `token`
|
|
48
|
-
* and `
|
|
48
|
+
* and `appAuth` are not set.
|
|
49
49
|
*/
|
|
50
50
|
appAuth?: pulumi.Input<inputs.ProviderAppAuth>;
|
|
51
51
|
/**
|
|
@@ -82,16 +82,16 @@ export interface ProviderArgs {
|
|
|
82
82
|
readDelayMs?: pulumi.Input<number>;
|
|
83
83
|
/**
|
|
84
84
|
* Amount of time in milliseconds to sleep in between requests to GitHub API after an error response. Defaults to 1000ms or
|
|
85
|
-
* 1s if not set, the
|
|
85
|
+
* 1s if not set, the maxRetries must be set to greater than zero.
|
|
86
86
|
*/
|
|
87
87
|
retryDelayMs?: pulumi.Input<number>;
|
|
88
88
|
/**
|
|
89
|
-
* Allow the provider to retry after receiving an error status code, the
|
|
89
|
+
* Allow the provider to retry after receiving an error status code, the maxRetries should be set for this to workDefaults
|
|
90
90
|
* to [500, 502, 503, 504]
|
|
91
91
|
*/
|
|
92
92
|
retryableErrors?: pulumi.Input<pulumi.Input<number>[]>;
|
|
93
93
|
/**
|
|
94
|
-
* The OAuth token used to connect to GitHub. Anonymous mode is enabled if both `token` and `
|
|
94
|
+
* The OAuth token used to connect to GitHub. Anonymous mode is enabled if both `token` and `appAuth` are not set.
|
|
95
95
|
*/
|
|
96
96
|
token?: pulumi.Input<string>;
|
|
97
97
|
/**
|