@pulumi/github 5.7.0-alpha.1680747500 → 5.7.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/actionsRunnerGroup.d.ts +10 -2
- package/actionsRunnerGroup.js +2 -2
- package/actionsRunnerGroup.js.map +1 -1
- package/branchProtectionV3.d.ts +5 -0
- package/branchProtectionV3.js +5 -0
- package/branchProtectionV3.js.map +1 -1
- package/getActionsOrganizationPublicKey.d.ts +32 -0
- package/getActionsOrganizationPublicKey.js +26 -0
- package/getActionsOrganizationPublicKey.js.map +1 -0
- package/getDependabotOrganizationPublicKey.d.ts +32 -0
- package/getDependabotOrganizationPublicKey.js +26 -0
- package/getDependabotOrganizationPublicKey.js.map +1 -0
- package/getOrganization.d.ts +10 -2
- package/getOrganization.js.map +1 -1
- package/getRepositoryFile.d.ts +8 -4
- package/getRepositoryFile.js.map +1 -1
- package/getSshKeys.d.ts +27 -0
- package/getSshKeys.js +25 -0
- package/getSshKeys.js.map +1 -0
- package/getUsers.d.ts +4 -0
- package/getUsers.js.map +1 -1
- package/index.d.ts +9 -0
- package/index.js +14 -3
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/repositoryAutolinkReference.d.ts +2 -4
- package/repositoryAutolinkReference.js +2 -4
- package/repositoryAutolinkReference.js.map +1 -1
- package/repositoryCollaborator.d.ts +7 -1
- package/repositoryCollaborator.js +7 -1
- package/repositoryCollaborator.js.map +1 -1
- package/repositoryCollaborators.d.ts +144 -0
- package/repositoryCollaborators.js +114 -0
- package/repositoryCollaborators.js.map +1 -0
- package/repositoryFile.d.ts +12 -4
- package/repositoryFile.js +3 -1
- package/repositoryFile.js.map +1 -1
- package/teamRepository.d.ts +6 -0
- package/teamRepository.js +6 -0
- package/teamRepository.js.map +1 -1
- package/types/input.d.ts +36 -0
- package/types/output.d.ts +36 -0
package/actionsRunnerGroup.d.ts
CHANGED
|
@@ -63,7 +63,7 @@ export declare class ActionsRunnerGroup extends pulumi.CustomResource {
|
|
|
63
63
|
/**
|
|
64
64
|
* If true, the runner group will be restricted to running only the workflows specified in the selectedWorkflows array. Defaults to false.
|
|
65
65
|
*/
|
|
66
|
-
readonly restrictedToWorkflows: pulumi.Output<boolean>;
|
|
66
|
+
readonly restrictedToWorkflows: pulumi.Output<boolean | undefined>;
|
|
67
67
|
/**
|
|
68
68
|
* The GitHub API URL for the runner group's runners
|
|
69
69
|
*/
|
|
@@ -79,7 +79,7 @@ export declare class ActionsRunnerGroup extends pulumi.CustomResource {
|
|
|
79
79
|
/**
|
|
80
80
|
* List of workflows the runner group should be allowed to run. This setting will be ignored unless restrictedToWorkflows is set to true.
|
|
81
81
|
*/
|
|
82
|
-
readonly selectedWorkflows: pulumi.Output<string[]>;
|
|
82
|
+
readonly selectedWorkflows: pulumi.Output<string[] | undefined>;
|
|
83
83
|
/**
|
|
84
84
|
* Visibility of a runner group. Whether the runner group can include `all`, `selected`, or `private` repositories. A value of `private` is not currently supported due to limitations in the GitHub API.
|
|
85
85
|
*/
|
|
@@ -150,10 +150,18 @@ export interface ActionsRunnerGroupArgs {
|
|
|
150
150
|
* Name of the runner group
|
|
151
151
|
*/
|
|
152
152
|
name?: pulumi.Input<string>;
|
|
153
|
+
/**
|
|
154
|
+
* If true, the runner group will be restricted to running only the workflows specified in the selectedWorkflows array. Defaults to false.
|
|
155
|
+
*/
|
|
156
|
+
restrictedToWorkflows?: pulumi.Input<boolean>;
|
|
153
157
|
/**
|
|
154
158
|
* IDs of the repositories which should be added to the runner group
|
|
155
159
|
*/
|
|
156
160
|
selectedRepositoryIds?: pulumi.Input<pulumi.Input<number>[]>;
|
|
161
|
+
/**
|
|
162
|
+
* List of workflows the runner group should be allowed to run. This setting will be ignored unless restrictedToWorkflows is set to true.
|
|
163
|
+
*/
|
|
164
|
+
selectedWorkflows?: pulumi.Input<pulumi.Input<string>[]>;
|
|
157
165
|
/**
|
|
158
166
|
* Visibility of a runner group. Whether the runner group can include `all`, `selected`, or `private` repositories. A value of `private` is not currently supported due to limitations in the GitHub API.
|
|
159
167
|
*/
|
package/actionsRunnerGroup.js
CHANGED
|
@@ -76,16 +76,16 @@ class ActionsRunnerGroup extends pulumi.CustomResource {
|
|
|
76
76
|
throw new Error("Missing required property 'visibility'");
|
|
77
77
|
}
|
|
78
78
|
resourceInputs["name"] = args ? args.name : undefined;
|
|
79
|
+
resourceInputs["restrictedToWorkflows"] = args ? args.restrictedToWorkflows : undefined;
|
|
79
80
|
resourceInputs["selectedRepositoryIds"] = args ? args.selectedRepositoryIds : undefined;
|
|
81
|
+
resourceInputs["selectedWorkflows"] = args ? args.selectedWorkflows : undefined;
|
|
80
82
|
resourceInputs["visibility"] = args ? args.visibility : undefined;
|
|
81
83
|
resourceInputs["allowsPublicRepositories"] = undefined /*out*/;
|
|
82
84
|
resourceInputs["default"] = undefined /*out*/;
|
|
83
85
|
resourceInputs["etag"] = undefined /*out*/;
|
|
84
86
|
resourceInputs["inherited"] = undefined /*out*/;
|
|
85
|
-
resourceInputs["restrictedToWorkflows"] = undefined /*out*/;
|
|
86
87
|
resourceInputs["runnersUrl"] = undefined /*out*/;
|
|
87
88
|
resourceInputs["selectedRepositoriesUrl"] = undefined /*out*/;
|
|
88
|
-
resourceInputs["selectedWorkflows"] = undefined /*out*/;
|
|
89
89
|
}
|
|
90
90
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
91
91
|
super(ActionsRunnerGroup.__pulumiType, name, resourceInputs, opts);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"actionsRunnerGroup.js","sourceRoot":"","sources":["../actionsRunnerGroup.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,MAAa,kBAAmB,SAAQ,MAAM,CAAC,cAAc;IACzD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA+B,EAAE,IAAmC;QAC7H,OAAO,IAAI,kBAAkB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACzE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,kBAAkB,CAAC,YAAY,CAAC;IACnE,CAAC;IAuDD,YAAY,IAAY,EAAE,WAA8D,EAAE,IAAmC;QACzH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAkD,CAAC;YACjE,cAAc,CAAC,0BAA0B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,wBAAwB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChG,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,uBAAuB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,qBAAqB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1F,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,yBAAyB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,uBAAuB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9F,cAAc,CAAC,uBAAuB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,qBAAqB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1F,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;SACvE;aAAM;YACH,MAAM,IAAI,GAAG,WAAiD,CAAC;YAC/D,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,UAAU,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvD,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;aAC7D;YACD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,uBAAuB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,qBAAqB,CAAC,CAAC,CAAC,SAAS,CAAC;YACxF,cAAc,CAAC,
|
|
1
|
+
{"version":3,"file":"actionsRunnerGroup.js","sourceRoot":"","sources":["../actionsRunnerGroup.ts"],"names":[],"mappings":"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"}
|
package/branchProtectionV3.d.ts
CHANGED
|
@@ -45,6 +45,11 @@ import * as outputs from "./types/output";
|
|
|
45
45
|
* dismissStaleReviews: true,
|
|
46
46
|
* dismissalUsers: ["foo-user"],
|
|
47
47
|
* dismissalTeams: [exampleTeam.slug],
|
|
48
|
+
* bypassPullRequestAllowances: {
|
|
49
|
+
* users: ["foo-user"],
|
|
50
|
+
* teams: [exampleTeam.slug],
|
|
51
|
+
* apps: ["foo-app"],
|
|
52
|
+
* },
|
|
48
53
|
* },
|
|
49
54
|
* restrictions: {
|
|
50
55
|
* users: ["foo-user"],
|
package/branchProtectionV3.js
CHANGED
|
@@ -49,6 +49,11 @@ const utilities = require("./utilities");
|
|
|
49
49
|
* dismissStaleReviews: true,
|
|
50
50
|
* dismissalUsers: ["foo-user"],
|
|
51
51
|
* dismissalTeams: [exampleTeam.slug],
|
|
52
|
+
* bypassPullRequestAllowances: {
|
|
53
|
+
* users: ["foo-user"],
|
|
54
|
+
* teams: [exampleTeam.slug],
|
|
55
|
+
* apps: ["foo-app"],
|
|
56
|
+
* },
|
|
52
57
|
* },
|
|
53
58
|
* restrictions: {
|
|
54
59
|
* users: ["foo-user"],
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"branchProtectionV3.js","sourceRoot":"","sources":["../branchProtectionV3.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"branchProtectionV3.js","sourceRoot":"","sources":["../branchProtectionV3.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Use this data source to retrieve information about a GitHub Actions Organization public key. This data source is required to be used with other GitHub secrets interactions.
|
|
4
|
+
* Note that the provider `token` must have admin rights to an organization to retrieve it's action public key.
|
|
5
|
+
*
|
|
6
|
+
* ## Example Usage
|
|
7
|
+
*
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as github from "@pulumi/github";
|
|
11
|
+
*
|
|
12
|
+
* const example = github.getActionsOrganizationPublicKey({});
|
|
13
|
+
* ```
|
|
14
|
+
*/
|
|
15
|
+
export declare function getActionsOrganizationPublicKey(opts?: pulumi.InvokeOptions): Promise<GetActionsOrganizationPublicKeyResult>;
|
|
16
|
+
/**
|
|
17
|
+
* A collection of values returned by getActionsOrganizationPublicKey.
|
|
18
|
+
*/
|
|
19
|
+
export interface GetActionsOrganizationPublicKeyResult {
|
|
20
|
+
/**
|
|
21
|
+
* The provider-assigned unique ID for this managed resource.
|
|
22
|
+
*/
|
|
23
|
+
readonly id: string;
|
|
24
|
+
/**
|
|
25
|
+
* Actual key retrieved.
|
|
26
|
+
*/
|
|
27
|
+
readonly key: string;
|
|
28
|
+
/**
|
|
29
|
+
* ID of the key that has been retrieved.
|
|
30
|
+
*/
|
|
31
|
+
readonly keyId: string;
|
|
32
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
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.getActionsOrganizationPublicKey = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Use this data source to retrieve information about a GitHub Actions Organization public key. This data source is required to be used with other GitHub secrets interactions.
|
|
10
|
+
* Note that the provider `token` must have admin rights to an organization to retrieve it's action public key.
|
|
11
|
+
*
|
|
12
|
+
* ## Example Usage
|
|
13
|
+
*
|
|
14
|
+
* ```typescript
|
|
15
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
16
|
+
* import * as github from "@pulumi/github";
|
|
17
|
+
*
|
|
18
|
+
* const example = github.getActionsOrganizationPublicKey({});
|
|
19
|
+
* ```
|
|
20
|
+
*/
|
|
21
|
+
function getActionsOrganizationPublicKey(opts) {
|
|
22
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
23
|
+
return pulumi.runtime.invoke("github:index/getActionsOrganizationPublicKey:getActionsOrganizationPublicKey", {}, opts);
|
|
24
|
+
}
|
|
25
|
+
exports.getActionsOrganizationPublicKey = getActionsOrganizationPublicKey;
|
|
26
|
+
//# sourceMappingURL=getActionsOrganizationPublicKey.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getActionsOrganizationPublicKey.js","sourceRoot":"","sources":["../getActionsOrganizationPublicKey.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,+BAA+B,CAAC,IAA2B;IAEvE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8EAA8E,EAAE,EAC5G,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,0EAKC"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Use this data source to retrieve information about a GitHub Dependabot Organization public key. This data source is required to be used with other GitHub secrets interactions.
|
|
4
|
+
* Note that the provider `token` must have admin rights to an organization to retrieve it's Dependabot public key.
|
|
5
|
+
*
|
|
6
|
+
* ## Example Usage
|
|
7
|
+
*
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as github from "@pulumi/github";
|
|
11
|
+
*
|
|
12
|
+
* const example = github.getDependabotOrganizationPublicKey({});
|
|
13
|
+
* ```
|
|
14
|
+
*/
|
|
15
|
+
export declare function getDependabotOrganizationPublicKey(opts?: pulumi.InvokeOptions): Promise<GetDependabotOrganizationPublicKeyResult>;
|
|
16
|
+
/**
|
|
17
|
+
* A collection of values returned by getDependabotOrganizationPublicKey.
|
|
18
|
+
*/
|
|
19
|
+
export interface GetDependabotOrganizationPublicKeyResult {
|
|
20
|
+
/**
|
|
21
|
+
* The provider-assigned unique ID for this managed resource.
|
|
22
|
+
*/
|
|
23
|
+
readonly id: string;
|
|
24
|
+
/**
|
|
25
|
+
* Actual key retrieved.
|
|
26
|
+
*/
|
|
27
|
+
readonly key: string;
|
|
28
|
+
/**
|
|
29
|
+
* ID of the key that has been retrieved.
|
|
30
|
+
*/
|
|
31
|
+
readonly keyId: string;
|
|
32
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
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.getDependabotOrganizationPublicKey = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Use this data source to retrieve information about a GitHub Dependabot Organization public key. This data source is required to be used with other GitHub secrets interactions.
|
|
10
|
+
* Note that the provider `token` must have admin rights to an organization to retrieve it's Dependabot public key.
|
|
11
|
+
*
|
|
12
|
+
* ## Example Usage
|
|
13
|
+
*
|
|
14
|
+
* ```typescript
|
|
15
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
16
|
+
* import * as github from "@pulumi/github";
|
|
17
|
+
*
|
|
18
|
+
* const example = github.getDependabotOrganizationPublicKey({});
|
|
19
|
+
* ```
|
|
20
|
+
*/
|
|
21
|
+
function getDependabotOrganizationPublicKey(opts) {
|
|
22
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
23
|
+
return pulumi.runtime.invoke("github:index/getDependabotOrganizationPublicKey:getDependabotOrganizationPublicKey", {}, opts);
|
|
24
|
+
}
|
|
25
|
+
exports.getDependabotOrganizationPublicKey = getDependabotOrganizationPublicKey;
|
|
26
|
+
//# sourceMappingURL=getDependabotOrganizationPublicKey.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getDependabotOrganizationPublicKey.js","sourceRoot":"","sources":["../getDependabotOrganizationPublicKey.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,SAAgB,kCAAkC,CAAC,IAA2B;IAE1E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oFAAoF,EAAE,EAClH,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,gFAKC"}
|
package/getOrganization.d.ts
CHANGED
|
@@ -36,11 +36,13 @@ export interface GetOrganizationResult {
|
|
|
36
36
|
*/
|
|
37
37
|
readonly id: string;
|
|
38
38
|
/**
|
|
39
|
-
* The login
|
|
39
|
+
* The members login
|
|
40
40
|
*/
|
|
41
41
|
readonly login: string;
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
43
|
+
* **Deprecated**: use `users` instead by replacing `github_organization.example.members` to `github_organization.example.users[*].login` which will give you the same value, expect this field to be removed in next major version
|
|
44
|
+
*
|
|
45
|
+
* @deprecated Use `users` instead by replacing `github_organization.example.members` to `github_organization.example.users[*].login`. Expect this field to be removed in next major version.
|
|
44
46
|
*/
|
|
45
47
|
readonly members: string[];
|
|
46
48
|
/**
|
|
@@ -63,6 +65,12 @@ export interface GetOrganizationResult {
|
|
|
63
65
|
* (`list`) A list with the repositories on the organization
|
|
64
66
|
*/
|
|
65
67
|
readonly repositories: string[];
|
|
68
|
+
/**
|
|
69
|
+
* (`list`) A list with the members of the organization with following fields:
|
|
70
|
+
*/
|
|
71
|
+
readonly users: {
|
|
72
|
+
[key: string]: string;
|
|
73
|
+
}[];
|
|
66
74
|
}
|
|
67
75
|
/**
|
|
68
76
|
* Use this data source to retrieve basic information about a GitHub Organization.
|
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;AAND,0CAMC;
|
|
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;AAND,0CAMC;AA2DD;;;;;;;;;;;;;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/getRepositoryFile.d.ts
CHANGED
|
@@ -22,11 +22,11 @@ export declare function getRepositoryFile(args: GetRepositoryFileArgs, opts?: pu
|
|
|
22
22
|
*/
|
|
23
23
|
export interface GetRepositoryFileArgs {
|
|
24
24
|
/**
|
|
25
|
-
* Git branch. Defaults to
|
|
25
|
+
* Git branch. Defaults to the repository's default branch.
|
|
26
26
|
*/
|
|
27
27
|
branch?: string;
|
|
28
28
|
/**
|
|
29
|
-
* The path of the file to
|
|
29
|
+
* The path of the file to read.
|
|
30
30
|
*/
|
|
31
31
|
file: string;
|
|
32
32
|
/**
|
|
@@ -64,6 +64,10 @@ export interface GetRepositoryFileResult {
|
|
|
64
64
|
* The provider-assigned unique ID for this managed resource.
|
|
65
65
|
*/
|
|
66
66
|
readonly id: string;
|
|
67
|
+
/**
|
|
68
|
+
* The name of the commit/branch/tag.
|
|
69
|
+
*/
|
|
70
|
+
readonly ref: string;
|
|
67
71
|
readonly repository: string;
|
|
68
72
|
/**
|
|
69
73
|
* The SHA blob of the file.
|
|
@@ -93,11 +97,11 @@ export declare function getRepositoryFileOutput(args: GetRepositoryFileOutputArg
|
|
|
93
97
|
*/
|
|
94
98
|
export interface GetRepositoryFileOutputArgs {
|
|
95
99
|
/**
|
|
96
|
-
* Git branch. Defaults to
|
|
100
|
+
* Git branch. Defaults to the repository's default branch.
|
|
97
101
|
*/
|
|
98
102
|
branch?: pulumi.Input<string>;
|
|
99
103
|
/**
|
|
100
|
-
* The path of the file to
|
|
104
|
+
* The path of the file to read.
|
|
101
105
|
*/
|
|
102
106
|
file: pulumi.Input<string>;
|
|
103
107
|
/**
|
package/getRepositoryFile.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getRepositoryFile.js","sourceRoot":"","sources":["../getRepositoryFile.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAA2B;IAEtF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kDAAkD,EAAE;QAC7E,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,8CAQC;
|
|
1
|
+
{"version":3,"file":"getRepositoryFile.js","sourceRoot":"","sources":["../getRepositoryFile.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAA2B;IAEtF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kDAAkD,EAAE;QAC7E,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,8CAQC;AA4DD;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,uBAAuB,CAAC,IAAiC,EAAE,IAA2B;IAClG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,iBAAiB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC5E,CAAC;AAFD,0DAEC"}
|
package/getSshKeys.d.ts
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Use this data source to retrieve information about GitHub's SSH keys.
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as github from "@pulumi/github";
|
|
10
|
+
*
|
|
11
|
+
* const test = github.getSshKeys({});
|
|
12
|
+
* ```
|
|
13
|
+
*/
|
|
14
|
+
export declare function getSshKeys(opts?: pulumi.InvokeOptions): Promise<GetSshKeysResult>;
|
|
15
|
+
/**
|
|
16
|
+
* A collection of values returned by getSshKeys.
|
|
17
|
+
*/
|
|
18
|
+
export interface GetSshKeysResult {
|
|
19
|
+
/**
|
|
20
|
+
* The provider-assigned unique ID for this managed resource.
|
|
21
|
+
*/
|
|
22
|
+
readonly id: string;
|
|
23
|
+
/**
|
|
24
|
+
* An array of GitHub's SSH public keys.
|
|
25
|
+
*/
|
|
26
|
+
readonly keys: string[];
|
|
27
|
+
}
|
package/getSshKeys.js
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
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.getSshKeys = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Use this data source to retrieve information about GitHub's SSH keys.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as github from "@pulumi/github";
|
|
16
|
+
*
|
|
17
|
+
* const test = github.getSshKeys({});
|
|
18
|
+
* ```
|
|
19
|
+
*/
|
|
20
|
+
function getSshKeys(opts) {
|
|
21
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
22
|
+
return pulumi.runtime.invoke("github:index/getSshKeys:getSshKeys", {}, opts);
|
|
23
|
+
}
|
|
24
|
+
exports.getSshKeys = getSshKeys;
|
|
25
|
+
//# sourceMappingURL=getSshKeys.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getSshKeys.js","sourceRoot":"","sources":["../getSshKeys.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;GAWG;AACH,SAAgB,UAAU,CAAC,IAA2B;IAElD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oCAAoC,EAAE,EAClE,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,gCAKC"}
|
package/getUsers.d.ts
CHANGED
|
@@ -33,6 +33,10 @@ export interface GetUsersArgs {
|
|
|
33
33
|
* A collection of values returned by getUsers.
|
|
34
34
|
*/
|
|
35
35
|
export interface GetUsersResult {
|
|
36
|
+
/**
|
|
37
|
+
* list of the user's publicly visible profile email (will be empty string in case if user decided not to show it).
|
|
38
|
+
*/
|
|
39
|
+
readonly emails: string[];
|
|
36
40
|
/**
|
|
37
41
|
* The provider-assigned unique ID for this managed resource.
|
|
38
42
|
*/
|
package/getUsers.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getUsers.js","sourceRoot":"","sources":["../getUsers.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,QAAQ,CAAC,IAAkB,EAAE,IAA2B;IAEpE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,gCAAgC,EAAE;QAC3D,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,4BAMC;
|
|
1
|
+
{"version":3,"file":"getUsers.js","sourceRoot":"","sources":["../getUsers.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,QAAQ,CAAC,IAAkB,EAAE,IAA2B;IAEpE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,gCAAgC,EAAE;QAC3D,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,4BAMC;AAsCD;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,QAAQ,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACnE,CAAC;AAFD,wCAEC"}
|
package/index.d.ts
CHANGED
|
@@ -78,6 +78,8 @@ export declare const getActionsEnvironmentVariables: typeof import("./getActions
|
|
|
78
78
|
export declare const getActionsEnvironmentVariablesOutput: typeof import("./getActionsEnvironmentVariables").getActionsEnvironmentVariablesOutput;
|
|
79
79
|
export { GetActionsOrganizationOidcSubjectClaimCustomizationTemplateResult } from "./getActionsOrganizationOidcSubjectClaimCustomizationTemplate";
|
|
80
80
|
export declare const getActionsOrganizationOidcSubjectClaimCustomizationTemplate: typeof import("./getActionsOrganizationOidcSubjectClaimCustomizationTemplate").getActionsOrganizationOidcSubjectClaimCustomizationTemplate;
|
|
81
|
+
export { GetActionsOrganizationPublicKeyResult } from "./getActionsOrganizationPublicKey";
|
|
82
|
+
export declare const getActionsOrganizationPublicKey: typeof import("./getActionsOrganizationPublicKey").getActionsOrganizationPublicKey;
|
|
81
83
|
export { GetActionsOrganizationRegistrationTokenResult } from "./getActionsOrganizationRegistrationToken";
|
|
82
84
|
export declare const getActionsOrganizationRegistrationToken: typeof import("./getActionsOrganizationRegistrationToken").getActionsOrganizationRegistrationToken;
|
|
83
85
|
export { GetActionsOrganizationSecretsResult } from "./getActionsOrganizationSecrets";
|
|
@@ -105,6 +107,8 @@ export declare const getBranchOutput: typeof import("./getBranch").getBranchOutp
|
|
|
105
107
|
export { GetCollaboratorsArgs, GetCollaboratorsResult, GetCollaboratorsOutputArgs } from "./getCollaborators";
|
|
106
108
|
export declare const getCollaborators: typeof import("./getCollaborators").getCollaborators;
|
|
107
109
|
export declare const getCollaboratorsOutput: typeof import("./getCollaborators").getCollaboratorsOutput;
|
|
110
|
+
export { GetDependabotOrganizationPublicKeyResult } from "./getDependabotOrganizationPublicKey";
|
|
111
|
+
export declare const getDependabotOrganizationPublicKey: typeof import("./getDependabotOrganizationPublicKey").getDependabotOrganizationPublicKey;
|
|
108
112
|
export { GetDependabotOrganizationSecretsResult } from "./getDependabotOrganizationSecrets";
|
|
109
113
|
export declare const getDependabotOrganizationSecrets: typeof import("./getDependabotOrganizationSecrets").getDependabotOrganizationSecrets;
|
|
110
114
|
export { GetDependabotPublicKeyArgs, GetDependabotPublicKeyResult, GetDependabotPublicKeyOutputArgs } from "./getDependabotPublicKey";
|
|
@@ -174,6 +178,8 @@ export declare const getRepositoryTeamsOutput: typeof import("./getRepositoryTea
|
|
|
174
178
|
export { GetRepositoryWebhooksArgs, GetRepositoryWebhooksResult, GetRepositoryWebhooksOutputArgs } from "./getRepositoryWebhooks";
|
|
175
179
|
export declare const getRepositoryWebhooks: typeof import("./getRepositoryWebhooks").getRepositoryWebhooks;
|
|
176
180
|
export declare const getRepositoryWebhooksOutput: typeof import("./getRepositoryWebhooks").getRepositoryWebhooksOutput;
|
|
181
|
+
export { GetSshKeysResult } from "./getSshKeys";
|
|
182
|
+
export declare const getSshKeys: typeof import("./getSshKeys").getSshKeys;
|
|
177
183
|
export { GetTeamArgs, GetTeamResult, GetTeamOutputArgs } from "./getTeam";
|
|
178
184
|
export declare const getTeam: typeof import("./getTeam").getTeam;
|
|
179
185
|
export declare const getTeamOutput: typeof import("./getTeam").getTeamOutput;
|
|
@@ -231,6 +237,9 @@ export declare const RepositoryAutolinkReference: typeof import("./repositoryAut
|
|
|
231
237
|
export { RepositoryCollaboratorArgs, RepositoryCollaboratorState } from "./repositoryCollaborator";
|
|
232
238
|
export type RepositoryCollaborator = import("./repositoryCollaborator").RepositoryCollaborator;
|
|
233
239
|
export declare const RepositoryCollaborator: typeof import("./repositoryCollaborator").RepositoryCollaborator;
|
|
240
|
+
export { RepositoryCollaboratorsArgs, RepositoryCollaboratorsState } from "./repositoryCollaborators";
|
|
241
|
+
export type RepositoryCollaborators = import("./repositoryCollaborators").RepositoryCollaborators;
|
|
242
|
+
export declare const RepositoryCollaborators: typeof import("./repositoryCollaborators").RepositoryCollaborators;
|
|
234
243
|
export { RepositoryDeployKeyArgs, RepositoryDeployKeyState } from "./repositoryDeployKey";
|
|
235
244
|
export type RepositoryDeployKey = import("./repositoryDeployKey").RepositoryDeployKey;
|
|
236
245
|
export declare const RepositoryDeployKey: typeof import("./repositoryDeployKey").RepositoryDeployKey;
|
package/index.js
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.
|
|
6
|
-
exports.
|
|
7
|
-
exports.types = exports.config = exports.UserSshKey = exports.UserInvitationAccepter = exports.UserGpgKey = exports.TeamSyncGroupMapping = exports.TeamSettings = exports.TeamRepository = exports.TeamMembership = exports.TeamMembers = exports.Team = exports.RepositoryWebhook = exports.RepositoryTagProtection = exports.RepositoryPullRequest = exports.RepositoryProject = exports.RepositoryMilestone = exports.RepositoryFile = exports.RepositoryEnvironment = exports.RepositoryDeployKey = exports.RepositoryCollaborator = exports.RepositoryAutolinkReference = exports.Repository = exports.Release = exports.Provider = exports.ProjectColumn = exports.ProjectCard = exports.OrganizationWebhook = exports.OrganizationSettings = exports.OrganizationSecurityManager = exports.OrganizationProject = exports.OrganizationBlock = exports.Membership = void 0;
|
|
5
|
+
exports.getDependabotPublicKey = exports.getDependabotOrganizationSecrets = exports.getDependabotOrganizationPublicKey = exports.getCollaboratorsOutput = exports.getCollaborators = exports.getBranchOutput = exports.getBranch = exports.getActionsVariablesOutput = exports.getActionsVariables = exports.getActionsSecretsOutput = exports.getActionsSecrets = exports.getActionsRepositoryOidcSubjectClaimCustomizationTemplateOutput = exports.getActionsRepositoryOidcSubjectClaimCustomizationTemplate = exports.getActionsRegistrationTokenOutput = exports.getActionsRegistrationToken = exports.getActionsPublicKeyOutput = exports.getActionsPublicKey = exports.getActionsOrganizationVariables = exports.getActionsOrganizationSecrets = exports.getActionsOrganizationRegistrationToken = exports.getActionsOrganizationPublicKey = exports.getActionsOrganizationOidcSubjectClaimCustomizationTemplate = exports.getActionsEnvironmentVariablesOutput = exports.getActionsEnvironmentVariables = exports.getActionsEnvironmentSecretsOutput = exports.getActionsEnvironmentSecrets = exports.EnterpriseOrganization = exports.EmuGroupMapping = exports.DependabotSecret = exports.DependabotOrganizationSecretRepositories = exports.DependabotOrganizationSecret = exports.BranchProtectionV3 = exports.BranchProtection = exports.BranchDefault = exports.Branch = exports.AppInstallationRepository = exports.AppInstallationRepositories = exports.ActionsVariable = exports.ActionsSecret = exports.ActionsRunnerGroup = exports.ActionsRepositoryPermissions = exports.ActionsRepositoryOidcSubjectClaimCustomizationTemplate = exports.ActionsRepositoryAccessLevel = exports.ActionsOrganizationVariable = exports.ActionsOrganizationSecretRepositories = exports.ActionsOrganizationSecret = exports.ActionsOrganizationPermissions = exports.ActionsOrganizationOidcSubjectClaimCustomizationTemplate = exports.ActionsEnvironmentVariable = exports.ActionsEnvironmentSecret = void 0;
|
|
6
|
+
exports.getUsers = exports.getUserOutput = exports.getUser = exports.getTreeOutput = exports.getTree = exports.getTeamOutput = exports.getTeam = exports.getSshKeys = exports.getRepositoryWebhooksOutput = exports.getRepositoryWebhooks = exports.getRepositoryTeamsOutput = exports.getRepositoryTeams = exports.getRepositoryPullRequestsOutput = exports.getRepositoryPullRequests = exports.getRepositoryPullRequestOutput = exports.getRepositoryPullRequest = exports.getRepositoryMilestoneOutput = exports.getRepositoryMilestone = exports.getRepositoryFileOutput = exports.getRepositoryFile = exports.getRepositoryDeployKeysOutput = exports.getRepositoryDeployKeys = exports.getRepositoryBranchesOutput = exports.getRepositoryBranches = exports.getRepositoryOutput = exports.getRepository = exports.getRepositoriesOutput = exports.getRepositories = exports.getReleaseOutput = exports.getRelease = exports.getRefOutput = exports.getRef = exports.getOrganizationWebhooks = exports.getOrganizationTeamsOutput = exports.getOrganizationTeams = exports.getOrganizationTeamSyncGroups = exports.getOrganizationIpAllowList = exports.getOrganizationOutput = exports.getOrganization = exports.getMembershipOutput = exports.getMembership = exports.getIpRanges = exports.getGithubAppOutput = exports.getGithubApp = exports.getExternalGroups = exports.getEnterpriseOutput = exports.getEnterprise = exports.getDependabotSecretsOutput = exports.getDependabotSecrets = exports.getDependabotPublicKeyOutput = void 0;
|
|
7
|
+
exports.types = exports.config = exports.UserSshKey = exports.UserInvitationAccepter = exports.UserGpgKey = exports.TeamSyncGroupMapping = exports.TeamSettings = exports.TeamRepository = exports.TeamMembership = exports.TeamMembers = exports.Team = exports.RepositoryWebhook = exports.RepositoryTagProtection = exports.RepositoryPullRequest = exports.RepositoryProject = exports.RepositoryMilestone = exports.RepositoryFile = exports.RepositoryEnvironment = exports.RepositoryDeployKey = exports.RepositoryCollaborators = exports.RepositoryCollaborator = exports.RepositoryAutolinkReference = exports.Repository = exports.Release = exports.Provider = exports.ProjectColumn = exports.ProjectCard = exports.OrganizationWebhook = exports.OrganizationSettings = exports.OrganizationSecurityManager = exports.OrganizationProject = exports.OrganizationBlock = exports.Membership = exports.IssueLabel = exports.Issue = exports.getUsersOutput = void 0;
|
|
8
8
|
const pulumi = require("@pulumi/pulumi");
|
|
9
9
|
const utilities = require("./utilities");
|
|
10
10
|
exports.ActionsEnvironmentSecret = null;
|
|
@@ -63,6 +63,8 @@ exports.getActionsEnvironmentVariablesOutput = null;
|
|
|
63
63
|
utilities.lazyLoad(exports, ["getActionsEnvironmentVariables", "getActionsEnvironmentVariablesOutput"], () => require("./getActionsEnvironmentVariables"));
|
|
64
64
|
exports.getActionsOrganizationOidcSubjectClaimCustomizationTemplate = null;
|
|
65
65
|
utilities.lazyLoad(exports, ["getActionsOrganizationOidcSubjectClaimCustomizationTemplate"], () => require("./getActionsOrganizationOidcSubjectClaimCustomizationTemplate"));
|
|
66
|
+
exports.getActionsOrganizationPublicKey = null;
|
|
67
|
+
utilities.lazyLoad(exports, ["getActionsOrganizationPublicKey"], () => require("./getActionsOrganizationPublicKey"));
|
|
66
68
|
exports.getActionsOrganizationRegistrationToken = null;
|
|
67
69
|
utilities.lazyLoad(exports, ["getActionsOrganizationRegistrationToken"], () => require("./getActionsOrganizationRegistrationToken"));
|
|
68
70
|
exports.getActionsOrganizationSecrets = null;
|
|
@@ -90,6 +92,8 @@ utilities.lazyLoad(exports, ["getBranch", "getBranchOutput"], () => require("./g
|
|
|
90
92
|
exports.getCollaborators = null;
|
|
91
93
|
exports.getCollaboratorsOutput = null;
|
|
92
94
|
utilities.lazyLoad(exports, ["getCollaborators", "getCollaboratorsOutput"], () => require("./getCollaborators"));
|
|
95
|
+
exports.getDependabotOrganizationPublicKey = null;
|
|
96
|
+
utilities.lazyLoad(exports, ["getDependabotOrganizationPublicKey"], () => require("./getDependabotOrganizationPublicKey"));
|
|
93
97
|
exports.getDependabotOrganizationSecrets = null;
|
|
94
98
|
utilities.lazyLoad(exports, ["getDependabotOrganizationSecrets"], () => require("./getDependabotOrganizationSecrets"));
|
|
95
99
|
exports.getDependabotPublicKey = null;
|
|
@@ -159,6 +163,8 @@ utilities.lazyLoad(exports, ["getRepositoryTeams", "getRepositoryTeamsOutput"],
|
|
|
159
163
|
exports.getRepositoryWebhooks = null;
|
|
160
164
|
exports.getRepositoryWebhooksOutput = null;
|
|
161
165
|
utilities.lazyLoad(exports, ["getRepositoryWebhooks", "getRepositoryWebhooksOutput"], () => require("./getRepositoryWebhooks"));
|
|
166
|
+
exports.getSshKeys = null;
|
|
167
|
+
utilities.lazyLoad(exports, ["getSshKeys"], () => require("./getSshKeys"));
|
|
162
168
|
exports.getTeam = null;
|
|
163
169
|
exports.getTeamOutput = null;
|
|
164
170
|
utilities.lazyLoad(exports, ["getTeam", "getTeamOutput"], () => require("./getTeam"));
|
|
@@ -201,6 +207,8 @@ exports.RepositoryAutolinkReference = null;
|
|
|
201
207
|
utilities.lazyLoad(exports, ["RepositoryAutolinkReference"], () => require("./repositoryAutolinkReference"));
|
|
202
208
|
exports.RepositoryCollaborator = null;
|
|
203
209
|
utilities.lazyLoad(exports, ["RepositoryCollaborator"], () => require("./repositoryCollaborator"));
|
|
210
|
+
exports.RepositoryCollaborators = null;
|
|
211
|
+
utilities.lazyLoad(exports, ["RepositoryCollaborators"], () => require("./repositoryCollaborators"));
|
|
204
212
|
exports.RepositoryDeployKey = null;
|
|
205
213
|
utilities.lazyLoad(exports, ["RepositoryDeployKey"], () => require("./repositoryDeployKey"));
|
|
206
214
|
exports.RepositoryEnvironment = null;
|
|
@@ -320,6 +328,8 @@ const _module = {
|
|
|
320
328
|
return new exports.RepositoryAutolinkReference(name, undefined, { urn });
|
|
321
329
|
case "github:index/repositoryCollaborator:RepositoryCollaborator":
|
|
322
330
|
return new exports.RepositoryCollaborator(name, undefined, { urn });
|
|
331
|
+
case "github:index/repositoryCollaborators:RepositoryCollaborators":
|
|
332
|
+
return new exports.RepositoryCollaborators(name, undefined, { urn });
|
|
323
333
|
case "github:index/repositoryDeployKey:RepositoryDeployKey":
|
|
324
334
|
return new exports.RepositoryDeployKey(name, undefined, { urn });
|
|
325
335
|
case "github:index/repositoryEnvironment:RepositoryEnvironment":
|
|
@@ -397,6 +407,7 @@ pulumi.runtime.registerResourceModule("github", "index/release", _module);
|
|
|
397
407
|
pulumi.runtime.registerResourceModule("github", "index/repository", _module);
|
|
398
408
|
pulumi.runtime.registerResourceModule("github", "index/repositoryAutolinkReference", _module);
|
|
399
409
|
pulumi.runtime.registerResourceModule("github", "index/repositoryCollaborator", _module);
|
|
410
|
+
pulumi.runtime.registerResourceModule("github", "index/repositoryCollaborators", _module);
|
|
400
411
|
pulumi.runtime.registerResourceModule("github", "index/repositoryDeployKey", _module);
|
|
401
412
|
pulumi.runtime.registerResourceModule("github", "index/repositoryEnvironment", _module);
|
|
402
413
|
pulumi.runtime.registerResourceModule("github", "index/repositoryFile", _module);
|