@pulumi/github 5.0.0-alpha.1663887713 → 5.1.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/actionsEnvironmentSecret.js +4 -2
- package/actionsEnvironmentSecret.js.map +1 -1
- package/actionsOrganizationPermissions.d.ts +2 -1
- package/actionsOrganizationPermissions.js.map +1 -1
- package/actionsOrganizationSecret.js +4 -2
- package/actionsOrganizationSecret.js.map +1 -1
- package/actionsSecret.js +4 -2
- package/actionsSecret.js.map +1 -1
- package/branchProtection.d.ts +2 -1
- package/branchProtection.js.map +1 -1
- package/branchProtectionV3.d.ts +2 -1
- package/branchProtectionV3.js.map +1 -1
- package/config/vars.d.ts +1 -1
- package/config/vars.js.map +1 -1
- package/dependabotOrganizationSecret.js +4 -2
- package/dependabotOrganizationSecret.js.map +1 -1
- package/dependabotSecret.js +4 -2
- package/dependabotSecret.js.map +1 -1
- package/getActionsOrganizationSecrets.d.ts +1 -1
- package/getActionsOrganizationSecrets.js.map +1 -1
- package/getActionsSecrets.d.ts +1 -1
- package/getActionsSecrets.js.map +1 -1
- package/getCollaborators.d.ts +1 -1
- package/getCollaborators.js.map +1 -1
- package/getDependabotOrganizationSecrets.d.ts +13 -0
- package/getDependabotOrganizationSecrets.js +16 -0
- package/getDependabotOrganizationSecrets.js.map +1 -0
- package/getDependabotSecrets.d.ts +30 -0
- package/getDependabotSecrets.js +24 -0
- package/getDependabotSecrets.js.map +1 -0
- package/getExternalGroups.d.ts +1 -1
- package/getExternalGroups.js.map +1 -1
- package/getGithubApp.d.ts +28 -0
- package/getGithubApp.js +22 -0
- package/getGithubApp.js.map +1 -0
- package/getMembership.d.ts +1 -0
- package/getMembership.js.map +1 -1
- package/getOrganizationIpAllowList.d.ts +13 -0
- package/getOrganizationIpAllowList.js +16 -0
- package/getOrganizationIpAllowList.js.map +1 -0
- package/getOrganizationTeamSyncGroups.d.ts +1 -1
- package/getOrganizationTeamSyncGroups.js.map +1 -1
- package/getOrganizationTeams.d.ts +7 -1
- package/getOrganizationTeams.js +2 -0
- package/getOrganizationTeams.js.map +1 -1
- package/getOrganizationWebhooks.d.ts +13 -0
- package/getOrganizationWebhooks.js +16 -0
- package/getOrganizationWebhooks.js.map +1 -0
- package/getRelease.d.ts +2 -0
- package/getRelease.js.map +1 -1
- package/getRepository.d.ts +1 -4
- package/getRepository.js +0 -1
- package/getRepository.js.map +1 -1
- package/getRepositoryBranches.d.ts +33 -0
- package/getRepositoryBranches.js +24 -0
- package/getRepositoryBranches.js.map +1 -0
- package/getRepositoryDeployKeys.d.ts +27 -0
- package/getRepositoryDeployKeys.js +22 -0
- package/getRepositoryDeployKeys.js.map +1 -0
- package/getRepositoryPullRequests.d.ts +1 -1
- package/getRepositoryPullRequests.js.map +1 -1
- package/getRepositoryTeams.d.ts +1 -1
- package/getRepositoryTeams.js.map +1 -1
- package/getRepositoryWebhooks.d.ts +27 -0
- package/getRepositoryWebhooks.js +22 -0
- package/getRepositoryWebhooks.js.map +1 -0
- package/getTree.d.ts +1 -1
- package/getTree.js.map +1 -1
- package/index.d.ts +224 -68
- package/index.js +229 -171
- package/index.js.map +1 -1
- package/organizationSettings.d.ts +123 -0
- package/organizationSettings.js +102 -0
- package/organizationSettings.js.map +1 -0
- package/organizationWebhook.d.ts +2 -1
- package/organizationWebhook.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/provider.d.ts +1 -1
- package/provider.js.map +1 -1
- package/repository.d.ts +5 -1
- package/repository.js +2 -0
- package/repository.js.map +1 -1
- package/repositoryAutolinkReference.d.ts +15 -0
- package/repositoryAutolinkReference.js +2 -0
- package/repositoryAutolinkReference.js.map +1 -1
- package/repositoryEnvironment.d.ts +2 -1
- package/repositoryEnvironment.js.map +1 -1
- package/repositoryFile.d.ts +14 -8
- package/repositoryFile.js.map +1 -1
- package/repositoryWebhook.d.ts +2 -1
- package/repositoryWebhook.js.map +1 -1
- package/teamMembers.d.ts +2 -1
- package/teamMembers.js.map +1 -1
- package/teamSyncGroupMapping.d.ts +2 -1
- package/teamSyncGroupMapping.js.map +1 -1
- package/types/index.js.map +1 -1
- package/types/input.d.ts +2 -1
- package/types/output.d.ts +57 -1
- package/utilities.js +13 -1
- package/utilities.js.map +1 -1
package/getOrganizationTeams.js
CHANGED
|
@@ -12,7 +12,9 @@ function getOrganizationTeams(args, opts) {
|
|
|
12
12
|
}
|
|
13
13
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
14
14
|
return pulumi.runtime.invoke("github:index/getOrganizationTeams:getOrganizationTeams", {
|
|
15
|
+
"resultsPerPage": args.resultsPerPage,
|
|
15
16
|
"rootTeamsOnly": args.rootTeamsOnly,
|
|
17
|
+
"summaryOnly": args.summaryOnly,
|
|
16
18
|
}, opts);
|
|
17
19
|
}
|
|
18
20
|
exports.getOrganizationTeams = getOrganizationTeams;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getOrganizationTeams.js","sourceRoot":"","sources":["../getOrganizationTeams.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"getOrganizationTeams.js","sourceRoot":"","sources":["../getOrganizationTeams.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,SAAgB,oBAAoB,CAAC,IAA+B,EAAE,IAA2B;IAC7F,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wDAAwD,EAAE;QACnF,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,aAAa,EAAE,IAAI,CAAC,WAAW;KAClC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,oDAYC;AAyBD,SAAgB,0BAA0B,CAAC,IAAqC,EAAE,IAA2B;IACzG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,oBAAoB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACxE,CAAC;AAFD,gEAEC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "./types/output";
|
|
3
|
+
export declare function getOrganizationWebhooks(opts?: pulumi.InvokeOptions): Promise<GetOrganizationWebhooksResult>;
|
|
4
|
+
/**
|
|
5
|
+
* A collection of values returned by getOrganizationWebhooks.
|
|
6
|
+
*/
|
|
7
|
+
export interface GetOrganizationWebhooksResult {
|
|
8
|
+
/**
|
|
9
|
+
* The provider-assigned unique ID for this managed resource.
|
|
10
|
+
*/
|
|
11
|
+
readonly id: string;
|
|
12
|
+
readonly webhooks: outputs.GetOrganizationWebhooksWebhook[];
|
|
13
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getOrganizationWebhooks = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
function getOrganizationWebhooks(opts) {
|
|
9
|
+
if (!opts) {
|
|
10
|
+
opts = {};
|
|
11
|
+
}
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
13
|
+
return pulumi.runtime.invoke("github:index/getOrganizationWebhooks:getOrganizationWebhooks", {}, opts);
|
|
14
|
+
}
|
|
15
|
+
exports.getOrganizationWebhooks = getOrganizationWebhooks;
|
|
16
|
+
//# sourceMappingURL=getOrganizationWebhooks.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getOrganizationWebhooks.js","sourceRoot":"","sources":["../getOrganizationWebhooks.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,SAAgB,uBAAuB,CAAC,IAA2B;IAC/D,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8DAA8D,EAAE,EAC5F,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,0DAQC"}
|
package/getRelease.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "./types/output";
|
|
2
3
|
export declare function getRelease(args: GetReleaseArgs, opts?: pulumi.InvokeOptions): Promise<GetReleaseResult>;
|
|
3
4
|
/**
|
|
4
5
|
* A collection of arguments for invoking getRelease.
|
|
@@ -15,6 +16,7 @@ export interface GetReleaseArgs {
|
|
|
15
16
|
*/
|
|
16
17
|
export interface GetReleaseResult {
|
|
17
18
|
readonly assertsUrl: string;
|
|
19
|
+
readonly assets: outputs.GetReleaseAsset[];
|
|
18
20
|
readonly body: string;
|
|
19
21
|
readonly createdAt: string;
|
|
20
22
|
readonly draft: boolean;
|
package/getRelease.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getRelease.js","sourceRoot":"","sources":["../getRelease.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"getRelease.js","sourceRoot":"","sources":["../getRelease.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IACxE,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oCAAoC,EAAE;QAC/D,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAbD,gCAaC;AA0CD,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAA2B;IACpF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,UAAU,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC9D,CAAC;AAFD,4CAEC"}
|
package/getRepository.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
-
import
|
|
2
|
+
import * as outputs from "./types/output";
|
|
3
3
|
export declare function getRepository(args?: GetRepositoryArgs, opts?: pulumi.InvokeOptions): Promise<GetRepositoryResult>;
|
|
4
4
|
/**
|
|
5
5
|
* A collection of arguments for invoking getRepository.
|
|
@@ -9,7 +9,6 @@ export interface GetRepositoryArgs {
|
|
|
9
9
|
fullName?: string;
|
|
10
10
|
homepageUrl?: string;
|
|
11
11
|
name?: string;
|
|
12
|
-
onlyProtectedBranches?: boolean;
|
|
13
12
|
}
|
|
14
13
|
/**
|
|
15
14
|
* A collection of values returned by getRepository.
|
|
@@ -39,7 +38,6 @@ export interface GetRepositoryResult {
|
|
|
39
38
|
readonly mergeCommitTitle: string;
|
|
40
39
|
readonly name: string;
|
|
41
40
|
readonly nodeId: string;
|
|
42
|
-
readonly onlyProtectedBranches?: boolean;
|
|
43
41
|
readonly pages: outputs.GetRepositoryPage[];
|
|
44
42
|
readonly private: boolean;
|
|
45
43
|
readonly repoId: number;
|
|
@@ -59,5 +57,4 @@ export interface GetRepositoryOutputArgs {
|
|
|
59
57
|
fullName?: pulumi.Input<string>;
|
|
60
58
|
homepageUrl?: pulumi.Input<string>;
|
|
61
59
|
name?: pulumi.Input<string>;
|
|
62
|
-
onlyProtectedBranches?: pulumi.Input<boolean>;
|
|
63
60
|
}
|
package/getRepository.js
CHANGED
package/getRepository.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getRepository.js","sourceRoot":"","sources":["../getRepository.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"getRepository.js","sourceRoot":"","sources":["../getRepository.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,SAAgB,aAAa,CAAC,IAAwB,EAAE,IAA2B;IAC/E,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0CAA0C,EAAE;QACrE,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAbD,sCAaC;AAmDD,SAAgB,mBAAmB,CAAC,IAA8B,EAAE,IAA2B;IAC3F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,aAAa,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACjE,CAAC;AAFD,kDAEC"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "./types/output";
|
|
3
|
+
export declare function getRepositoryBranches(args: GetRepositoryBranchesArgs, opts?: pulumi.InvokeOptions): Promise<GetRepositoryBranchesResult>;
|
|
4
|
+
/**
|
|
5
|
+
* A collection of arguments for invoking getRepositoryBranches.
|
|
6
|
+
*/
|
|
7
|
+
export interface GetRepositoryBranchesArgs {
|
|
8
|
+
onlyNonProtectedBranches?: boolean;
|
|
9
|
+
onlyProtectedBranches?: boolean;
|
|
10
|
+
repository: string;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* A collection of values returned by getRepositoryBranches.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetRepositoryBranchesResult {
|
|
16
|
+
readonly branches: outputs.GetRepositoryBranchesBranch[];
|
|
17
|
+
/**
|
|
18
|
+
* The provider-assigned unique ID for this managed resource.
|
|
19
|
+
*/
|
|
20
|
+
readonly id: string;
|
|
21
|
+
readonly onlyNonProtectedBranches?: boolean;
|
|
22
|
+
readonly onlyProtectedBranches?: boolean;
|
|
23
|
+
readonly repository: string;
|
|
24
|
+
}
|
|
25
|
+
export declare function getRepositoryBranchesOutput(args: GetRepositoryBranchesOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetRepositoryBranchesResult>;
|
|
26
|
+
/**
|
|
27
|
+
* A collection of arguments for invoking getRepositoryBranches.
|
|
28
|
+
*/
|
|
29
|
+
export interface GetRepositoryBranchesOutputArgs {
|
|
30
|
+
onlyNonProtectedBranches?: pulumi.Input<boolean>;
|
|
31
|
+
onlyProtectedBranches?: pulumi.Input<boolean>;
|
|
32
|
+
repository: pulumi.Input<string>;
|
|
33
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getRepositoryBranchesOutput = exports.getRepositoryBranches = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
function getRepositoryBranches(args, opts) {
|
|
9
|
+
if (!opts) {
|
|
10
|
+
opts = {};
|
|
11
|
+
}
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
13
|
+
return pulumi.runtime.invoke("github:index/getRepositoryBranches:getRepositoryBranches", {
|
|
14
|
+
"onlyNonProtectedBranches": args.onlyNonProtectedBranches,
|
|
15
|
+
"onlyProtectedBranches": args.onlyProtectedBranches,
|
|
16
|
+
"repository": args.repository,
|
|
17
|
+
}, opts);
|
|
18
|
+
}
|
|
19
|
+
exports.getRepositoryBranches = getRepositoryBranches;
|
|
20
|
+
function getRepositoryBranchesOutput(args, opts) {
|
|
21
|
+
return pulumi.output(args).apply(a => getRepositoryBranches(a, opts));
|
|
22
|
+
}
|
|
23
|
+
exports.getRepositoryBranchesOutput = getRepositoryBranchesOutput;
|
|
24
|
+
//# sourceMappingURL=getRepositoryBranches.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getRepositoryBranches.js","sourceRoot":"","sources":["../getRepositoryBranches.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAA2B;IAC9F,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0DAA0D,EAAE;QACrF,0BAA0B,EAAE,IAAI,CAAC,wBAAwB;QACzD,uBAAuB,EAAE,IAAI,CAAC,qBAAqB;QACnD,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,sDAWC;AAyBD,SAAgB,2BAA2B,CAAC,IAAqC,EAAE,IAA2B;IAC1G,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,qBAAqB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACzE,CAAC;AAFD,kEAEC"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "./types/output";
|
|
3
|
+
export declare function getRepositoryDeployKeys(args: GetRepositoryDeployKeysArgs, opts?: pulumi.InvokeOptions): Promise<GetRepositoryDeployKeysResult>;
|
|
4
|
+
/**
|
|
5
|
+
* A collection of arguments for invoking getRepositoryDeployKeys.
|
|
6
|
+
*/
|
|
7
|
+
export interface GetRepositoryDeployKeysArgs {
|
|
8
|
+
repository: string;
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* A collection of values returned by getRepositoryDeployKeys.
|
|
12
|
+
*/
|
|
13
|
+
export interface GetRepositoryDeployKeysResult {
|
|
14
|
+
/**
|
|
15
|
+
* The provider-assigned unique ID for this managed resource.
|
|
16
|
+
*/
|
|
17
|
+
readonly id: string;
|
|
18
|
+
readonly keys: outputs.GetRepositoryDeployKeysKey[];
|
|
19
|
+
readonly repository: string;
|
|
20
|
+
}
|
|
21
|
+
export declare function getRepositoryDeployKeysOutput(args: GetRepositoryDeployKeysOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetRepositoryDeployKeysResult>;
|
|
22
|
+
/**
|
|
23
|
+
* A collection of arguments for invoking getRepositoryDeployKeys.
|
|
24
|
+
*/
|
|
25
|
+
export interface GetRepositoryDeployKeysOutputArgs {
|
|
26
|
+
repository: pulumi.Input<string>;
|
|
27
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getRepositoryDeployKeysOutput = exports.getRepositoryDeployKeys = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
function getRepositoryDeployKeys(args, opts) {
|
|
9
|
+
if (!opts) {
|
|
10
|
+
opts = {};
|
|
11
|
+
}
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
13
|
+
return pulumi.runtime.invoke("github:index/getRepositoryDeployKeys:getRepositoryDeployKeys", {
|
|
14
|
+
"repository": args.repository,
|
|
15
|
+
}, opts);
|
|
16
|
+
}
|
|
17
|
+
exports.getRepositoryDeployKeys = getRepositoryDeployKeys;
|
|
18
|
+
function getRepositoryDeployKeysOutput(args, opts) {
|
|
19
|
+
return pulumi.output(args).apply(a => getRepositoryDeployKeys(a, opts));
|
|
20
|
+
}
|
|
21
|
+
exports.getRepositoryDeployKeysOutput = getRepositoryDeployKeysOutput;
|
|
22
|
+
//# sourceMappingURL=getRepositoryDeployKeys.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getRepositoryDeployKeys.js","sourceRoot":"","sources":["../getRepositoryDeployKeys.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,SAAgB,uBAAuB,CAAC,IAAiC,EAAE,IAA2B;IAClG,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8DAA8D,EAAE;QACzF,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,0DASC;AAqBD,SAAgB,6BAA6B,CAAC,IAAuC,EAAE,IAA2B;IAC9G,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,uBAAuB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC3E,CAAC;AAFD,sEAEC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
-
import
|
|
2
|
+
import * as outputs from "./types/output";
|
|
3
3
|
export declare function getRepositoryPullRequests(args: GetRepositoryPullRequestsArgs, opts?: pulumi.InvokeOptions): Promise<GetRepositoryPullRequestsResult>;
|
|
4
4
|
/**
|
|
5
5
|
* A collection of arguments for invoking getRepositoryPullRequests.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getRepositoryPullRequests.js","sourceRoot":"","sources":["../getRepositoryPullRequests.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"getRepositoryPullRequests.js","sourceRoot":"","sources":["../getRepositoryPullRequests.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,SAAgB,yBAAyB,CAAC,IAAmC,EAAE,IAA2B;IACtG,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kEAAkE,EAAE;QAC7F,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAfD,8DAeC;AAiCD,SAAgB,+BAA+B,CAAC,IAAyC,EAAE,IAA2B;IAClH,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,yBAAyB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC7E,CAAC;AAFD,0EAEC"}
|
package/getRepositoryTeams.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
-
import
|
|
2
|
+
import * as outputs from "./types/output";
|
|
3
3
|
export declare function getRepositoryTeams(args?: GetRepositoryTeamsArgs, opts?: pulumi.InvokeOptions): Promise<GetRepositoryTeamsResult>;
|
|
4
4
|
/**
|
|
5
5
|
* A collection of arguments for invoking getRepositoryTeams.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getRepositoryTeams.js","sourceRoot":"","sources":["../getRepositoryTeams.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"getRepositoryTeams.js","sourceRoot":"","sources":["../getRepositoryTeams.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,SAAgB,kBAAkB,CAAC,IAA6B,EAAE,IAA2B;IACzF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oDAAoD,EAAE;QAC/E,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,gDAWC;AAuBD,SAAgB,wBAAwB,CAAC,IAAmC,EAAE,IAA2B;IACrG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,kBAAkB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACtE,CAAC;AAFD,4DAEC"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "./types/output";
|
|
3
|
+
export declare function getRepositoryWebhooks(args: GetRepositoryWebhooksArgs, opts?: pulumi.InvokeOptions): Promise<GetRepositoryWebhooksResult>;
|
|
4
|
+
/**
|
|
5
|
+
* A collection of arguments for invoking getRepositoryWebhooks.
|
|
6
|
+
*/
|
|
7
|
+
export interface GetRepositoryWebhooksArgs {
|
|
8
|
+
repository: string;
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* A collection of values returned by getRepositoryWebhooks.
|
|
12
|
+
*/
|
|
13
|
+
export interface GetRepositoryWebhooksResult {
|
|
14
|
+
/**
|
|
15
|
+
* The provider-assigned unique ID for this managed resource.
|
|
16
|
+
*/
|
|
17
|
+
readonly id: string;
|
|
18
|
+
readonly repository: string;
|
|
19
|
+
readonly webhooks: outputs.GetRepositoryWebhooksWebhook[];
|
|
20
|
+
}
|
|
21
|
+
export declare function getRepositoryWebhooksOutput(args: GetRepositoryWebhooksOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetRepositoryWebhooksResult>;
|
|
22
|
+
/**
|
|
23
|
+
* A collection of arguments for invoking getRepositoryWebhooks.
|
|
24
|
+
*/
|
|
25
|
+
export interface GetRepositoryWebhooksOutputArgs {
|
|
26
|
+
repository: pulumi.Input<string>;
|
|
27
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getRepositoryWebhooksOutput = exports.getRepositoryWebhooks = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
function getRepositoryWebhooks(args, opts) {
|
|
9
|
+
if (!opts) {
|
|
10
|
+
opts = {};
|
|
11
|
+
}
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
13
|
+
return pulumi.runtime.invoke("github:index/getRepositoryWebhooks:getRepositoryWebhooks", {
|
|
14
|
+
"repository": args.repository,
|
|
15
|
+
}, opts);
|
|
16
|
+
}
|
|
17
|
+
exports.getRepositoryWebhooks = getRepositoryWebhooks;
|
|
18
|
+
function getRepositoryWebhooksOutput(args, opts) {
|
|
19
|
+
return pulumi.output(args).apply(a => getRepositoryWebhooks(a, opts));
|
|
20
|
+
}
|
|
21
|
+
exports.getRepositoryWebhooksOutput = getRepositoryWebhooksOutput;
|
|
22
|
+
//# sourceMappingURL=getRepositoryWebhooks.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getRepositoryWebhooks.js","sourceRoot":"","sources":["../getRepositoryWebhooks.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAA2B;IAC9F,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0DAA0D,EAAE;QACrF,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,sDASC;AAqBD,SAAgB,2BAA2B,CAAC,IAAqC,EAAE,IAA2B;IAC1G,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,qBAAqB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACzE,CAAC;AAFD,kEAEC"}
|
package/getTree.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
-
import
|
|
2
|
+
import * as outputs from "./types/output";
|
|
3
3
|
export declare function getTree(args: GetTreeArgs, opts?: pulumi.InvokeOptions): Promise<GetTreeResult>;
|
|
4
4
|
/**
|
|
5
5
|
* A collection of arguments for invoking getTree.
|
package/getTree.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getTree.js","sourceRoot":"","sources":["../getTree.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"getTree.js","sourceRoot":"","sources":["../getTree.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,SAAgB,OAAO,CAAC,IAAiB,EAAE,IAA2B;IAClE,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8BAA8B,EAAE;QACzD,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,0BAWC;AAyBD,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAC9E,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC3D,CAAC;AAFD,sCAEC"}
|