@pulumi/github 6.0.0-alpha.1709119816 → 6.0.0-alpha.1709638261
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/getOrganization.d.ts +9 -0
- package/getOrganization.js +1 -0
- package/getOrganization.js.map +1 -1
- package/package.json +1 -1
package/getOrganization.d.ts
CHANGED
|
@@ -18,6 +18,10 @@ export declare function getOrganization(args: GetOrganizationArgs, opts?: pulumi
|
|
|
18
18
|
* A collection of arguments for invoking getOrganization.
|
|
19
19
|
*/
|
|
20
20
|
export interface GetOrganizationArgs {
|
|
21
|
+
/**
|
|
22
|
+
* Whether or not to include archived repos in the `repositories` list
|
|
23
|
+
*/
|
|
24
|
+
ignoreArchivedRepos?: boolean;
|
|
21
25
|
/**
|
|
22
26
|
* The organization's public profile name
|
|
23
27
|
*/
|
|
@@ -55,6 +59,7 @@ export interface GetOrganizationResult {
|
|
|
55
59
|
* The provider-assigned unique ID for this managed resource.
|
|
56
60
|
*/
|
|
57
61
|
readonly id: string;
|
|
62
|
+
readonly ignoreArchivedRepos?: boolean;
|
|
58
63
|
/**
|
|
59
64
|
* The members login
|
|
60
65
|
*/
|
|
@@ -163,6 +168,10 @@ export declare function getOrganizationOutput(args: GetOrganizationOutputArgs, o
|
|
|
163
168
|
* A collection of arguments for invoking getOrganization.
|
|
164
169
|
*/
|
|
165
170
|
export interface GetOrganizationOutputArgs {
|
|
171
|
+
/**
|
|
172
|
+
* Whether or not to include archived repos in the `repositories` list
|
|
173
|
+
*/
|
|
174
|
+
ignoreArchivedRepos?: pulumi.Input<boolean>;
|
|
166
175
|
/**
|
|
167
176
|
* The organization's public profile name
|
|
168
177
|
*/
|
package/getOrganization.js
CHANGED
|
@@ -22,6 +22,7 @@ const utilities = require("./utilities");
|
|
|
22
22
|
function getOrganization(args, opts) {
|
|
23
23
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
24
24
|
return pulumi.runtime.invoke("github:index/getOrganization:getOrganization", {
|
|
25
|
+
"ignoreArchivedRepos": args.ignoreArchivedRepos,
|
|
25
26
|
"name": args.name,
|
|
26
27
|
}, opts);
|
|
27
28
|
}
|
package/getOrganization.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getOrganization.js","sourceRoot":"","sources":["../getOrganization.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAElF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8CAA8C,EAAE;QACzE,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;
|
|
1
|
+
{"version":3,"file":"getOrganization.js","sourceRoot":"","sources":["../getOrganization.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAElF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8CAA8C,EAAE;QACzE,qBAAqB,EAAE,IAAI,CAAC,mBAAmB;QAC/C,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,0CAOC;AAwID;;;;;;;;;;;;;GAaG;AACH,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAA2B;IAC9F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,eAAe,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC1E,CAAC;AAFD,sDAEC"}
|
package/package.json
CHANGED