@pulumi/github 6.13.0-alpha.1777011674 → 6.13.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.d.ts +52 -16
- package/actionsEnvironmentSecret.js +10 -6
- package/actionsEnvironmentSecret.js.map +1 -1
- package/actionsOrganizationPermissions.d.ts +3 -3
- package/actionsOrganizationSecret.d.ts +56 -20
- package/actionsOrganizationSecret.js +13 -9
- package/actionsOrganizationSecret.js.map +1 -1
- package/actionsOrganizationSecretRepositories.d.ts +1 -1
- package/actionsOrganizationSecretRepositories.js +1 -1
- package/actionsOrganizationSecretRepository.d.ts +1 -1
- package/actionsOrganizationSecretRepository.js +1 -1
- package/actionsOrganizationVariableRepositories.d.ts +1 -1
- package/actionsOrganizationVariableRepositories.js +1 -1
- package/actionsOrganizationVariableRepository.d.ts +1 -1
- package/actionsOrganizationVariableRepository.js +1 -1
- package/actionsRepositoryPermissions.d.ts +3 -3
- package/actionsSecret.d.ts +51 -15
- package/actionsSecret.js +11 -7
- package/actionsSecret.js.map +1 -1
- package/dependabotOrganizationSecret.d.ts +57 -15
- package/dependabotOrganizationSecret.js +11 -7
- package/dependabotOrganizationSecret.js.map +1 -1
- package/dependabotOrganizationSecretRepositories.d.ts +1 -1
- package/dependabotOrganizationSecretRepositories.js +1 -1
- package/dependabotOrganizationSecretRepository.d.ts +1 -1
- package/dependabotOrganizationSecretRepository.js +1 -1
- package/dependabotSecret.d.ts +54 -18
- package/dependabotSecret.js +11 -7
- package/dependabotSecret.js.map +1 -1
- package/emuGroupMapping.d.ts +12 -6
- package/emuGroupMapping.js +2 -2
- package/emuGroupMapping.js.map +1 -1
- package/enterpriseIpAllowListEntry.d.ts +125 -0
- package/enterpriseIpAllowListEntry.js +90 -0
- package/enterpriseIpAllowListEntry.js.map +1 -0
- package/getIpRanges.d.ts +28 -4
- package/getIpRanges.js.map +1 -1
- package/getOrganizationAppInstallations.d.ts +45 -0
- package/getOrganizationAppInstallations.js +46 -0
- package/getOrganizationAppInstallations.js.map +1 -0
- package/getRepository.d.ts +3 -1
- package/getRepository.js.map +1 -1
- package/getRepositoryPages.d.ts +96 -0
- package/getRepositoryPages.js +50 -0
- package/getRepositoryPages.js.map +1 -0
- package/index.d.ts +15 -0
- package/index.js +26 -5
- package/index.js.map +1 -1
- package/organizationRuleset.d.ts +38 -0
- package/organizationRuleset.js +38 -0
- package/organizationRuleset.js.map +1 -1
- package/package.json +2 -2
- package/repository.d.ts +28 -35
- package/repository.js +0 -19
- package/repository.js.map +1 -1
- package/repositoryCollaborators.d.ts +8 -8
- package/repositoryCollaborators.js +2 -8
- package/repositoryCollaborators.js.map +1 -1
- package/repositoryEnvironment.d.ts +13 -1
- package/repositoryEnvironment.js +7 -1
- package/repositoryEnvironment.js.map +1 -1
- package/repositoryEnvironmentDeploymentPolicy.d.ts +21 -1
- package/repositoryEnvironmentDeploymentPolicy.js +9 -1
- package/repositoryEnvironmentDeploymentPolicy.js.map +1 -1
- package/repositoryPages.d.ts +228 -0
- package/repositoryPages.js +150 -0
- package/repositoryPages.js.map +1 -0
- package/repositoryVulnerabilityAlerts.d.ts +98 -0
- package/repositoryVulnerabilityAlerts.js +86 -0
- package/repositoryVulnerabilityAlerts.js.map +1 -0
- package/teamSettings.d.ts +35 -12
- package/teamSettings.js +21 -8
- package/teamSettings.js.map +1 -1
- package/types/input.d.ts +52 -8
- package/types/output.d.ts +118 -8
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "./types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Use this data source to retrieve all GitHub App installations of the organization.
|
|
5
|
+
*
|
|
6
|
+
* ## Example Usage
|
|
7
|
+
*
|
|
8
|
+
* To retrieve *all* GitHub App installations of the organization:
|
|
9
|
+
*
|
|
10
|
+
* ```typescript
|
|
11
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
12
|
+
* import * as github from "@pulumi/github";
|
|
13
|
+
*
|
|
14
|
+
* const all = github.getOrganizationAppInstallations({});
|
|
15
|
+
* ```
|
|
16
|
+
*/
|
|
17
|
+
export declare function getOrganizationAppInstallations(opts?: pulumi.InvokeOptions): Promise<GetOrganizationAppInstallationsResult>;
|
|
18
|
+
/**
|
|
19
|
+
* A collection of values returned by getOrganizationAppInstallations.
|
|
20
|
+
*/
|
|
21
|
+
export interface GetOrganizationAppInstallationsResult {
|
|
22
|
+
/**
|
|
23
|
+
* The provider-assigned unique ID for this managed resource.
|
|
24
|
+
*/
|
|
25
|
+
readonly id: string;
|
|
26
|
+
/**
|
|
27
|
+
* List of GitHub App installations in the organization. Each `installation` block consists of the fields documented below.
|
|
28
|
+
*/
|
|
29
|
+
readonly installations: outputs.GetOrganizationAppInstallationsInstallation[];
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Use this data source to retrieve all GitHub App installations of the organization.
|
|
33
|
+
*
|
|
34
|
+
* ## Example Usage
|
|
35
|
+
*
|
|
36
|
+
* To retrieve *all* GitHub App installations of the organization:
|
|
37
|
+
*
|
|
38
|
+
* ```typescript
|
|
39
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
40
|
+
* import * as github from "@pulumi/github";
|
|
41
|
+
*
|
|
42
|
+
* const all = github.getOrganizationAppInstallations({});
|
|
43
|
+
* ```
|
|
44
|
+
*/
|
|
45
|
+
export declare function getOrganizationAppInstallationsOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetOrganizationAppInstallationsResult>;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
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.getOrganizationAppInstallationsOutput = exports.getOrganizationAppInstallations = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Use this data source to retrieve all GitHub App installations of the organization.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* To retrieve *all* GitHub App installations of the organization:
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as github from "@pulumi/github";
|
|
18
|
+
*
|
|
19
|
+
* const all = github.getOrganizationAppInstallations({});
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
function getOrganizationAppInstallations(opts) {
|
|
23
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
24
|
+
return pulumi.runtime.invoke("github:index/getOrganizationAppInstallations:getOrganizationAppInstallations", {}, opts);
|
|
25
|
+
}
|
|
26
|
+
exports.getOrganizationAppInstallations = getOrganizationAppInstallations;
|
|
27
|
+
/**
|
|
28
|
+
* Use this data source to retrieve all GitHub App installations of the organization.
|
|
29
|
+
*
|
|
30
|
+
* ## Example Usage
|
|
31
|
+
*
|
|
32
|
+
* To retrieve *all* GitHub App installations of the organization:
|
|
33
|
+
*
|
|
34
|
+
* ```typescript
|
|
35
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
36
|
+
* import * as github from "@pulumi/github";
|
|
37
|
+
*
|
|
38
|
+
* const all = github.getOrganizationAppInstallations({});
|
|
39
|
+
* ```
|
|
40
|
+
*/
|
|
41
|
+
function getOrganizationAppInstallationsOutput(opts) {
|
|
42
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
43
|
+
return pulumi.runtime.invokeOutput("github:index/getOrganizationAppInstallations:getOrganizationAppInstallations", {}, opts);
|
|
44
|
+
}
|
|
45
|
+
exports.getOrganizationAppInstallationsOutput = getOrganizationAppInstallationsOutput;
|
|
46
|
+
//# sourceMappingURL=getOrganizationAppInstallations.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getOrganizationAppInstallations.js","sourceRoot":"","sources":["../getOrganizationAppInstallations.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,+BAA+B,CAAC,IAA2B;IACvE,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;AAJD,0EAIC;AAeD;;;;;;;;;;;;;GAaG;AACH,SAAgB,qCAAqC,CAAC,IAAiC;IACnF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,8EAA8E,EAAE,EAClH,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,sFAIC"}
|
package/getRepository.d.ts
CHANGED
|
@@ -142,7 +142,9 @@ export interface GetRepositoryResult {
|
|
|
142
142
|
*/
|
|
143
143
|
readonly nodeId: string;
|
|
144
144
|
/**
|
|
145
|
-
* The repository's GitHub Pages configuration.
|
|
145
|
+
* (**DEPRECATED**) The repository's GitHub Pages configuration. Use the `github.RepositoryPages` data source instead. This field will be removed in a future version.
|
|
146
|
+
*
|
|
147
|
+
* @deprecated Use the github.RepositoryPages data source instead. This field will be removed in a future version.
|
|
146
148
|
*/
|
|
147
149
|
readonly pages: outputs.GetRepositoryPage[];
|
|
148
150
|
/**
|
package/getRepository.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getRepository.js","sourceRoot":"","sources":["../getRepository.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,aAAa,CAAC,IAAwB,EAAE,IAA2B;IAC/E,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,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;AATD,sCASC;
|
|
1
|
+
{"version":3,"file":"getRepository.js","sourceRoot":"","sources":["../getRepository.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,aAAa,CAAC,IAAwB,EAAE,IAA2B;IAC/E,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,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;AATD,sCASC;AAoLD;;;;;;;;;;;;;GAaG;AACH,SAAgB,mBAAmB,CAAC,IAA8B,EAAE,IAAiC;IACjG,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,0CAA0C,EAAE;QAC3E,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;AATD,kDASC"}
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "./types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Use this data source to retrieve GitHub Pages configuration for a repository.
|
|
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.getRepositoryPages({
|
|
13
|
+
* repository: "my-repo",
|
|
14
|
+
* });
|
|
15
|
+
* ```
|
|
16
|
+
*/
|
|
17
|
+
export declare function getRepositoryPages(args: GetRepositoryPagesArgs, opts?: pulumi.InvokeOptions): Promise<GetRepositoryPagesResult>;
|
|
18
|
+
/**
|
|
19
|
+
* A collection of arguments for invoking getRepositoryPages.
|
|
20
|
+
*/
|
|
21
|
+
export interface GetRepositoryPagesArgs {
|
|
22
|
+
/**
|
|
23
|
+
* The repository name to get GitHub Pages information for.
|
|
24
|
+
*/
|
|
25
|
+
repository: string;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* A collection of values returned by getRepositoryPages.
|
|
29
|
+
*/
|
|
30
|
+
export interface GetRepositoryPagesResult {
|
|
31
|
+
/**
|
|
32
|
+
* The API URL of the GitHub Pages resource.
|
|
33
|
+
*/
|
|
34
|
+
readonly apiUrl: string;
|
|
35
|
+
/**
|
|
36
|
+
* The GitHub Pages site's build status (e.g., `building` or `built`).
|
|
37
|
+
*/
|
|
38
|
+
readonly buildStatus: string;
|
|
39
|
+
/**
|
|
40
|
+
* The type of GitHub Pages site. Can be `legacy` or `workflow`.
|
|
41
|
+
*/
|
|
42
|
+
readonly buildType: string;
|
|
43
|
+
/**
|
|
44
|
+
* The custom domain for the repository.
|
|
45
|
+
*/
|
|
46
|
+
readonly cname: string;
|
|
47
|
+
/**
|
|
48
|
+
* Whether the rendered GitHub Pages site has a custom 404 page.
|
|
49
|
+
*/
|
|
50
|
+
readonly custom404: boolean;
|
|
51
|
+
/**
|
|
52
|
+
* The absolute URL (with scheme) to the rendered GitHub Pages site.
|
|
53
|
+
*/
|
|
54
|
+
readonly htmlUrl: string;
|
|
55
|
+
/**
|
|
56
|
+
* Whether HTTPS is enforced for the GitHub Pages site. This setting only applies when a custom domain is configured.
|
|
57
|
+
*/
|
|
58
|
+
readonly httpsEnforced: boolean;
|
|
59
|
+
/**
|
|
60
|
+
* The provider-assigned unique ID for this managed resource.
|
|
61
|
+
*/
|
|
62
|
+
readonly id: string;
|
|
63
|
+
/**
|
|
64
|
+
* Whether the GitHub Pages site is public.
|
|
65
|
+
*/
|
|
66
|
+
readonly public: boolean;
|
|
67
|
+
readonly repository: string;
|
|
68
|
+
/**
|
|
69
|
+
* The source branch and directory for the rendered Pages site. See Source below for details.
|
|
70
|
+
*/
|
|
71
|
+
readonly sources: outputs.GetRepositoryPagesSource[];
|
|
72
|
+
}
|
|
73
|
+
/**
|
|
74
|
+
* Use this data source to retrieve GitHub Pages configuration for a repository.
|
|
75
|
+
*
|
|
76
|
+
* ## Example Usage
|
|
77
|
+
*
|
|
78
|
+
* ```typescript
|
|
79
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
80
|
+
* import * as github from "@pulumi/github";
|
|
81
|
+
*
|
|
82
|
+
* const example = github.getRepositoryPages({
|
|
83
|
+
* repository: "my-repo",
|
|
84
|
+
* });
|
|
85
|
+
* ```
|
|
86
|
+
*/
|
|
87
|
+
export declare function getRepositoryPagesOutput(args: GetRepositoryPagesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetRepositoryPagesResult>;
|
|
88
|
+
/**
|
|
89
|
+
* A collection of arguments for invoking getRepositoryPages.
|
|
90
|
+
*/
|
|
91
|
+
export interface GetRepositoryPagesOutputArgs {
|
|
92
|
+
/**
|
|
93
|
+
* The repository name to get GitHub Pages information for.
|
|
94
|
+
*/
|
|
95
|
+
repository: pulumi.Input<string>;
|
|
96
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
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.getRepositoryPagesOutput = exports.getRepositoryPages = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Use this data source to retrieve GitHub Pages configuration for a repository.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as github from "@pulumi/github";
|
|
16
|
+
*
|
|
17
|
+
* const example = github.getRepositoryPages({
|
|
18
|
+
* repository: "my-repo",
|
|
19
|
+
* });
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
function getRepositoryPages(args, opts) {
|
|
23
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
24
|
+
return pulumi.runtime.invoke("github:index/getRepositoryPages:getRepositoryPages", {
|
|
25
|
+
"repository": args.repository,
|
|
26
|
+
}, opts);
|
|
27
|
+
}
|
|
28
|
+
exports.getRepositoryPages = getRepositoryPages;
|
|
29
|
+
/**
|
|
30
|
+
* Use this data source to retrieve GitHub Pages configuration for a repository.
|
|
31
|
+
*
|
|
32
|
+
* ## Example Usage
|
|
33
|
+
*
|
|
34
|
+
* ```typescript
|
|
35
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
36
|
+
* import * as github from "@pulumi/github";
|
|
37
|
+
*
|
|
38
|
+
* const example = github.getRepositoryPages({
|
|
39
|
+
* repository: "my-repo",
|
|
40
|
+
* });
|
|
41
|
+
* ```
|
|
42
|
+
*/
|
|
43
|
+
function getRepositoryPagesOutput(args, opts) {
|
|
44
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
45
|
+
return pulumi.runtime.invokeOutput("github:index/getRepositoryPages:getRepositoryPages", {
|
|
46
|
+
"repository": args.repository,
|
|
47
|
+
}, opts);
|
|
48
|
+
}
|
|
49
|
+
exports.getRepositoryPagesOutput = getRepositoryPagesOutput;
|
|
50
|
+
//# sourceMappingURL=getRepositoryPages.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getRepositoryPages.js","sourceRoot":"","sources":["../getRepositoryPages.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IACxF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oDAAoD,EAAE;QAC/E,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,gDAKC;AA0DD;;;;;;;;;;;;;GAaG;AACH,SAAgB,wBAAwB,CAAC,IAAkC,EAAE,IAAiC;IAC1G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,oDAAoD,EAAE;QACrF,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,4DAKC"}
|
package/index.d.ts
CHANGED
|
@@ -106,6 +106,9 @@ export declare const EnterpriseActionsRunnerGroup: typeof import("./enterpriseAc
|
|
|
106
106
|
export { EnterpriseActionsWorkflowPermissionsArgs, EnterpriseActionsWorkflowPermissionsState } from "./enterpriseActionsWorkflowPermissions";
|
|
107
107
|
export type EnterpriseActionsWorkflowPermissions = import("./enterpriseActionsWorkflowPermissions").EnterpriseActionsWorkflowPermissions;
|
|
108
108
|
export declare const EnterpriseActionsWorkflowPermissions: typeof import("./enterpriseActionsWorkflowPermissions").EnterpriseActionsWorkflowPermissions;
|
|
109
|
+
export { EnterpriseIpAllowListEntryArgs, EnterpriseIpAllowListEntryState } from "./enterpriseIpAllowListEntry";
|
|
110
|
+
export type EnterpriseIpAllowListEntry = import("./enterpriseIpAllowListEntry").EnterpriseIpAllowListEntry;
|
|
111
|
+
export declare const EnterpriseIpAllowListEntry: typeof import("./enterpriseIpAllowListEntry").EnterpriseIpAllowListEntry;
|
|
109
112
|
export { EnterpriseOrganizationArgs, EnterpriseOrganizationState } from "./enterpriseOrganization";
|
|
110
113
|
export type EnterpriseOrganization = import("./enterpriseOrganization").EnterpriseOrganization;
|
|
111
114
|
export declare const EnterpriseOrganization: typeof import("./enterpriseOrganization").EnterpriseOrganization;
|
|
@@ -214,6 +217,9 @@ export declare const getMembershipOutput: typeof import("./getMembership").getMe
|
|
|
214
217
|
export { GetOrganizationArgs, GetOrganizationResult, GetOrganizationOutputArgs } from "./getOrganization";
|
|
215
218
|
export declare const getOrganization: typeof import("./getOrganization").getOrganization;
|
|
216
219
|
export declare const getOrganizationOutput: typeof import("./getOrganization").getOrganizationOutput;
|
|
220
|
+
export { GetOrganizationAppInstallationsResult } from "./getOrganizationAppInstallations";
|
|
221
|
+
export declare const getOrganizationAppInstallations: typeof import("./getOrganizationAppInstallations").getOrganizationAppInstallations;
|
|
222
|
+
export declare const getOrganizationAppInstallationsOutput: typeof import("./getOrganizationAppInstallations").getOrganizationAppInstallationsOutput;
|
|
217
223
|
export { GetOrganizationCustomPropertiesArgs, GetOrganizationCustomPropertiesResult, GetOrganizationCustomPropertiesOutputArgs } from "./getOrganizationCustomProperties";
|
|
218
224
|
export declare const getOrganizationCustomProperties: typeof import("./getOrganizationCustomProperties").getOrganizationCustomProperties;
|
|
219
225
|
export declare const getOrganizationCustomPropertiesOutput: typeof import("./getOrganizationCustomProperties").getOrganizationCustomPropertiesOutput;
|
|
@@ -298,6 +304,9 @@ export declare const getRepositoryFileOutput: typeof import("./getRepositoryFile
|
|
|
298
304
|
export { GetRepositoryMilestoneArgs, GetRepositoryMilestoneResult, GetRepositoryMilestoneOutputArgs } from "./getRepositoryMilestone";
|
|
299
305
|
export declare const getRepositoryMilestone: typeof import("./getRepositoryMilestone").getRepositoryMilestone;
|
|
300
306
|
export declare const getRepositoryMilestoneOutput: typeof import("./getRepositoryMilestone").getRepositoryMilestoneOutput;
|
|
307
|
+
export { GetRepositoryPagesArgs, GetRepositoryPagesResult, GetRepositoryPagesOutputArgs } from "./getRepositoryPages";
|
|
308
|
+
export declare const getRepositoryPages: typeof import("./getRepositoryPages").getRepositoryPages;
|
|
309
|
+
export declare const getRepositoryPagesOutput: typeof import("./getRepositoryPages").getRepositoryPagesOutput;
|
|
301
310
|
export { GetRepositoryPullRequestArgs, GetRepositoryPullRequestResult, GetRepositoryPullRequestOutputArgs } from "./getRepositoryPullRequest";
|
|
302
311
|
export declare const getRepositoryPullRequest: typeof import("./getRepositoryPullRequest").getRepositoryPullRequest;
|
|
303
312
|
export declare const getRepositoryPullRequestOutput: typeof import("./getRepositoryPullRequest").getRepositoryPullRequestOutput;
|
|
@@ -428,6 +437,9 @@ export declare const RepositoryFile: typeof import("./repositoryFile").Repositor
|
|
|
428
437
|
export { RepositoryMilestoneArgs, RepositoryMilestoneState } from "./repositoryMilestone";
|
|
429
438
|
export type RepositoryMilestone = import("./repositoryMilestone").RepositoryMilestone;
|
|
430
439
|
export declare const RepositoryMilestone: typeof import("./repositoryMilestone").RepositoryMilestone;
|
|
440
|
+
export { RepositoryPagesArgs, RepositoryPagesState } from "./repositoryPages";
|
|
441
|
+
export type RepositoryPages = import("./repositoryPages").RepositoryPages;
|
|
442
|
+
export declare const RepositoryPages: typeof import("./repositoryPages").RepositoryPages;
|
|
431
443
|
export { RepositoryProjectArgs, RepositoryProjectState } from "./repositoryProject";
|
|
432
444
|
export type RepositoryProject = import("./repositoryProject").RepositoryProject;
|
|
433
445
|
export declare const RepositoryProject: typeof import("./repositoryProject").RepositoryProject;
|
|
@@ -440,6 +452,9 @@ export declare const RepositoryRuleset: typeof import("./repositoryRuleset").Rep
|
|
|
440
452
|
export { RepositoryTopicsArgs, RepositoryTopicsState } from "./repositoryTopics";
|
|
441
453
|
export type RepositoryTopics = import("./repositoryTopics").RepositoryTopics;
|
|
442
454
|
export declare const RepositoryTopics: typeof import("./repositoryTopics").RepositoryTopics;
|
|
455
|
+
export { RepositoryVulnerabilityAlertsArgs, RepositoryVulnerabilityAlertsState } from "./repositoryVulnerabilityAlerts";
|
|
456
|
+
export type RepositoryVulnerabilityAlerts = import("./repositoryVulnerabilityAlerts").RepositoryVulnerabilityAlerts;
|
|
457
|
+
export declare const RepositoryVulnerabilityAlerts: typeof import("./repositoryVulnerabilityAlerts").RepositoryVulnerabilityAlerts;
|
|
443
458
|
export { RepositoryWebhookArgs, RepositoryWebhookState } from "./repositoryWebhook";
|
|
444
459
|
export type RepositoryWebhook = import("./repositoryWebhook").RepositoryWebhook;
|
|
445
460
|
export declare const RepositoryWebhook: typeof import("./repositoryWebhook").RepositoryWebhook;
|
package/index.js
CHANGED
|
@@ -16,11 +16,11 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
17
17
|
};
|
|
18
18
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
|
-
exports.
|
|
20
|
-
exports.
|
|
21
|
-
exports.
|
|
22
|
-
exports.
|
|
23
|
-
exports.types = exports.config = exports.WorkflowRepositoryPermissions = exports.UserSshKey = exports.UserInvitationAccepter = exports.UserGpgKey = exports.TeamSyncGroupMapping = exports.TeamSettings = exports.TeamRepository = exports.TeamMembership = exports.TeamMembers = exports.Team = exports.RepositoryWebhook = exports.RepositoryTopics = exports.RepositoryRuleset = exports.RepositoryPullRequest = exports.RepositoryProject = exports.RepositoryMilestone = exports.RepositoryFile = exports.RepositoryEnvironmentDeploymentPolicy = exports.RepositoryEnvironment = exports.RepositoryDeploymentBranchPolicy = exports.RepositoryDeployKey = exports.RepositoryDependabotSecurityUpdates = exports.RepositoryCustomProperty = exports.RepositoryCollaborators = exports.RepositoryCollaborator = exports.RepositoryAutolinkReference = exports.Repository = exports.Release = exports.ProjectColumn = exports.ProjectCard = exports.OrganizationWebhook = void 0;
|
|
19
|
+
exports.getActionsOrganizationRegistrationToken = exports.getActionsOrganizationPublicKeyOutput = exports.getActionsOrganizationPublicKey = exports.getActionsOrganizationOidcSubjectClaimCustomizationTemplateOutput = exports.getActionsOrganizationOidcSubjectClaimCustomizationTemplate = exports.getActionsEnvironmentVariablesOutput = exports.getActionsEnvironmentVariables = exports.getActionsEnvironmentSecretsOutput = exports.getActionsEnvironmentSecrets = exports.getActionsEnvironmentPublicKeyOutput = exports.getActionsEnvironmentPublicKey = exports.EnterpriseSecurityAnalysisSettings = exports.EnterpriseOrganization = exports.EnterpriseIpAllowListEntry = exports.EnterpriseActionsWorkflowPermissions = exports.EnterpriseActionsRunnerGroup = exports.EnterpriseActionsPermissions = exports.EmuGroupMapping = exports.DependabotSecret = exports.DependabotOrganizationSecretRepository = exports.DependabotOrganizationSecretRepositories = exports.DependabotOrganizationSecret = exports.CodespacesUserSecret = exports.CodespacesSecret = exports.CodespacesOrganizationSecretRepositories = exports.CodespacesOrganizationSecret = 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.ActionsOrganizationWorkflowPermissions = exports.ActionsOrganizationVariableRepository = exports.ActionsOrganizationVariableRepositories = exports.ActionsOrganizationVariable = exports.ActionsOrganizationSecretRepository = exports.ActionsOrganizationSecretRepositories = exports.ActionsOrganizationSecret = exports.ActionsOrganizationPermissions = exports.ActionsOrganizationOidcSubjectClaimCustomizationTemplate = exports.ActionsHostedRunner = exports.ActionsEnvironmentVariable = exports.ActionsEnvironmentSecret = void 0;
|
|
20
|
+
exports.getIpRanges = exports.getGithubAppOutput = exports.getGithubApp = exports.getExternalGroupsOutput = exports.getExternalGroups = exports.getEnterpriseOutput = exports.getEnterprise = exports.getDependabotSecretsOutput = exports.getDependabotSecrets = exports.getDependabotPublicKeyOutput = exports.getDependabotPublicKey = exports.getDependabotOrganizationSecretsOutput = exports.getDependabotOrganizationSecrets = exports.getDependabotOrganizationPublicKeyOutput = exports.getDependabotOrganizationPublicKey = exports.getCollaboratorsOutput = exports.getCollaborators = exports.getCodespacesUserSecretsOutput = exports.getCodespacesUserSecrets = exports.getCodespacesUserPublicKeyOutput = exports.getCodespacesUserPublicKey = exports.getCodespacesSecretsOutput = exports.getCodespacesSecrets = exports.getCodespacesPublicKeyOutput = exports.getCodespacesPublicKey = exports.getCodespacesOrganizationSecretsOutput = exports.getCodespacesOrganizationSecrets = exports.getCodespacesOrganizationPublicKeyOutput = exports.getCodespacesOrganizationPublicKey = exports.getBranchProtectionRulesOutput = exports.getBranchProtectionRules = exports.getBranchOutput = exports.getBranch = exports.getAppTokenOutput = exports.getAppToken = exports.getActionsVariablesOutput = exports.getActionsVariables = exports.getActionsSecretsOutput = exports.getActionsSecrets = exports.getActionsRepositoryOidcSubjectClaimCustomizationTemplateOutput = exports.getActionsRepositoryOidcSubjectClaimCustomizationTemplate = exports.getActionsRegistrationTokenOutput = exports.getActionsRegistrationToken = exports.getActionsPublicKeyOutput = exports.getActionsPublicKey = exports.getActionsOrganizationVariablesOutput = exports.getActionsOrganizationVariables = exports.getActionsOrganizationSecretsOutput = exports.getActionsOrganizationSecrets = exports.getActionsOrganizationRegistrationTokenOutput = void 0;
|
|
21
|
+
exports.getRepositoryBranches = exports.getRepositoryAutolinkReferencesOutput = exports.getRepositoryAutolinkReferences = exports.getRepositoryOutput = exports.getRepository = exports.getRepositoriesOutput = exports.getRepositories = exports.getReleaseAssetOutput = exports.getReleaseAsset = exports.getReleaseOutput = exports.getRelease = exports.getRefOutput = exports.getRef = exports.getOrganizationWebhooksOutput = exports.getOrganizationWebhooks = exports.getOrganizationTeamsOutput = exports.getOrganizationTeams = exports.getOrganizationTeamSyncGroupsOutput = exports.getOrganizationTeamSyncGroups = exports.getOrganizationSecurityManagersOutput = exports.getOrganizationSecurityManagers = exports.getOrganizationRolesOutput = exports.getOrganizationRoles = exports.getOrganizationRoleUsersOutput = exports.getOrganizationRoleUsers = exports.getOrganizationRoleTeamsOutput = exports.getOrganizationRoleTeams = exports.getOrganizationRoleOutput = exports.getOrganizationRole = exports.getOrganizationRepositoryRolesOutput = exports.getOrganizationRepositoryRoles = exports.getOrganizationRepositoryRoleOutput = exports.getOrganizationRepositoryRole = exports.getOrganizationIpAllowListOutput = exports.getOrganizationIpAllowList = exports.getOrganizationExternalIdentitiesOutput = exports.getOrganizationExternalIdentities = exports.getOrganizationCustomRoleOutput = exports.getOrganizationCustomRole = exports.getOrganizationCustomPropertiesOutput = exports.getOrganizationCustomProperties = exports.getOrganizationAppInstallationsOutput = exports.getOrganizationAppInstallations = exports.getOrganizationOutput = exports.getOrganization = exports.getMembershipOutput = exports.getMembership = exports.getIssueLabelsOutput = exports.getIssueLabels = exports.getIpRangesOutput = void 0;
|
|
22
|
+
exports.OrganizationRoleTeam = exports.OrganizationRole = exports.OrganizationRepositoryRole = exports.OrganizationProject = exports.OrganizationCustomRole = exports.OrganizationCustomProperties = exports.OrganizationBlock = exports.Membership = exports.IssueLabels = exports.IssueLabel = exports.Issue = exports.getUsersOutput = exports.getUsers = exports.getUserExternalIdentityOutput = exports.getUserExternalIdentity = exports.getUserOutput = exports.getUser = exports.getTreeOutput = exports.getTree = exports.getTeamOutput = exports.getTeam = exports.getSshKeysOutput = exports.getSshKeys = exports.getRestApiOutput = exports.getRestApi = exports.getRepositoryWebhooksOutput = exports.getRepositoryWebhooks = exports.getRepositoryTeamsOutput = exports.getRepositoryTeams = exports.getRepositoryPullRequestsOutput = exports.getRepositoryPullRequests = exports.getRepositoryPullRequestOutput = exports.getRepositoryPullRequest = exports.getRepositoryPagesOutput = exports.getRepositoryPages = exports.getRepositoryMilestoneOutput = exports.getRepositoryMilestone = exports.getRepositoryFileOutput = exports.getRepositoryFile = exports.getRepositoryEnvironmentsOutput = exports.getRepositoryEnvironments = exports.getRepositoryEnvironmentDeploymentPoliciesOutput = exports.getRepositoryEnvironmentDeploymentPolicies = exports.getRepositoryDeploymentBranchPoliciesOutput = exports.getRepositoryDeploymentBranchPolicies = exports.getRepositoryDeployKeysOutput = exports.getRepositoryDeployKeys = exports.getRepositoryCustomPropertiesOutput = exports.getRepositoryCustomProperties = exports.getRepositoryBranchesOutput = void 0;
|
|
23
|
+
exports.types = exports.config = exports.WorkflowRepositoryPermissions = exports.UserSshKey = exports.UserInvitationAccepter = exports.UserGpgKey = exports.TeamSyncGroupMapping = exports.TeamSettings = exports.TeamRepository = exports.TeamMembership = exports.TeamMembers = exports.Team = exports.RepositoryWebhook = exports.RepositoryVulnerabilityAlerts = exports.RepositoryTopics = exports.RepositoryRuleset = exports.RepositoryPullRequest = exports.RepositoryProject = exports.RepositoryPages = exports.RepositoryMilestone = exports.RepositoryFile = exports.RepositoryEnvironmentDeploymentPolicy = exports.RepositoryEnvironment = exports.RepositoryDeploymentBranchPolicy = exports.RepositoryDeployKey = exports.RepositoryDependabotSecurityUpdates = exports.RepositoryCustomProperty = exports.RepositoryCollaborators = exports.RepositoryCollaborator = exports.RepositoryAutolinkReference = exports.Repository = exports.Release = exports.ProjectColumn = exports.ProjectCard = exports.OrganizationWebhook = exports.OrganizationSettings = exports.OrganizationSecurityManager = exports.OrganizationRuleset = exports.OrganizationRoleUser = exports.OrganizationRoleTeamAssignment = void 0;
|
|
24
24
|
const pulumi = require("@pulumi/pulumi");
|
|
25
25
|
const utilities = require("./utilities");
|
|
26
26
|
exports.ActionsEnvironmentSecret = null;
|
|
@@ -95,6 +95,8 @@ exports.EnterpriseActionsRunnerGroup = null;
|
|
|
95
95
|
utilities.lazyLoad(exports, ["EnterpriseActionsRunnerGroup"], () => require("./enterpriseActionsRunnerGroup"));
|
|
96
96
|
exports.EnterpriseActionsWorkflowPermissions = null;
|
|
97
97
|
utilities.lazyLoad(exports, ["EnterpriseActionsWorkflowPermissions"], () => require("./enterpriseActionsWorkflowPermissions"));
|
|
98
|
+
exports.EnterpriseIpAllowListEntry = null;
|
|
99
|
+
utilities.lazyLoad(exports, ["EnterpriseIpAllowListEntry"], () => require("./enterpriseIpAllowListEntry"));
|
|
98
100
|
exports.EnterpriseOrganization = null;
|
|
99
101
|
utilities.lazyLoad(exports, ["EnterpriseOrganization"], () => require("./enterpriseOrganization"));
|
|
100
102
|
exports.EnterpriseSecurityAnalysisSettings = null;
|
|
@@ -201,6 +203,9 @@ utilities.lazyLoad(exports, ["getMembership", "getMembershipOutput"], () => requ
|
|
|
201
203
|
exports.getOrganization = null;
|
|
202
204
|
exports.getOrganizationOutput = null;
|
|
203
205
|
utilities.lazyLoad(exports, ["getOrganization", "getOrganizationOutput"], () => require("./getOrganization"));
|
|
206
|
+
exports.getOrganizationAppInstallations = null;
|
|
207
|
+
exports.getOrganizationAppInstallationsOutput = null;
|
|
208
|
+
utilities.lazyLoad(exports, ["getOrganizationAppInstallations", "getOrganizationAppInstallationsOutput"], () => require("./getOrganizationAppInstallations"));
|
|
204
209
|
exports.getOrganizationCustomProperties = null;
|
|
205
210
|
exports.getOrganizationCustomPropertiesOutput = null;
|
|
206
211
|
utilities.lazyLoad(exports, ["getOrganizationCustomProperties", "getOrganizationCustomPropertiesOutput"], () => require("./getOrganizationCustomProperties"));
|
|
@@ -285,6 +290,9 @@ utilities.lazyLoad(exports, ["getRepositoryFile", "getRepositoryFileOutput"], ()
|
|
|
285
290
|
exports.getRepositoryMilestone = null;
|
|
286
291
|
exports.getRepositoryMilestoneOutput = null;
|
|
287
292
|
utilities.lazyLoad(exports, ["getRepositoryMilestone", "getRepositoryMilestoneOutput"], () => require("./getRepositoryMilestone"));
|
|
293
|
+
exports.getRepositoryPages = null;
|
|
294
|
+
exports.getRepositoryPagesOutput = null;
|
|
295
|
+
utilities.lazyLoad(exports, ["getRepositoryPages", "getRepositoryPagesOutput"], () => require("./getRepositoryPages"));
|
|
288
296
|
exports.getRepositoryPullRequest = null;
|
|
289
297
|
exports.getRepositoryPullRequestOutput = null;
|
|
290
298
|
utilities.lazyLoad(exports, ["getRepositoryPullRequest", "getRepositoryPullRequestOutput"], () => require("./getRepositoryPullRequest"));
|
|
@@ -384,6 +392,8 @@ exports.RepositoryFile = null;
|
|
|
384
392
|
utilities.lazyLoad(exports, ["RepositoryFile"], () => require("./repositoryFile"));
|
|
385
393
|
exports.RepositoryMilestone = null;
|
|
386
394
|
utilities.lazyLoad(exports, ["RepositoryMilestone"], () => require("./repositoryMilestone"));
|
|
395
|
+
exports.RepositoryPages = null;
|
|
396
|
+
utilities.lazyLoad(exports, ["RepositoryPages"], () => require("./repositoryPages"));
|
|
387
397
|
exports.RepositoryProject = null;
|
|
388
398
|
utilities.lazyLoad(exports, ["RepositoryProject"], () => require("./repositoryProject"));
|
|
389
399
|
exports.RepositoryPullRequest = null;
|
|
@@ -392,6 +402,8 @@ exports.RepositoryRuleset = null;
|
|
|
392
402
|
utilities.lazyLoad(exports, ["RepositoryRuleset"], () => require("./repositoryRuleset"));
|
|
393
403
|
exports.RepositoryTopics = null;
|
|
394
404
|
utilities.lazyLoad(exports, ["RepositoryTopics"], () => require("./repositoryTopics"));
|
|
405
|
+
exports.RepositoryVulnerabilityAlerts = null;
|
|
406
|
+
utilities.lazyLoad(exports, ["RepositoryVulnerabilityAlerts"], () => require("./repositoryVulnerabilityAlerts"));
|
|
395
407
|
exports.RepositoryWebhook = null;
|
|
396
408
|
utilities.lazyLoad(exports, ["RepositoryWebhook"], () => require("./repositoryWebhook"));
|
|
397
409
|
exports.Team = null;
|
|
@@ -495,6 +507,8 @@ const _module = {
|
|
|
495
507
|
return new exports.EnterpriseActionsRunnerGroup(name, undefined, { urn });
|
|
496
508
|
case "github:index/enterpriseActionsWorkflowPermissions:EnterpriseActionsWorkflowPermissions":
|
|
497
509
|
return new exports.EnterpriseActionsWorkflowPermissions(name, undefined, { urn });
|
|
510
|
+
case "github:index/enterpriseIpAllowListEntry:EnterpriseIpAllowListEntry":
|
|
511
|
+
return new exports.EnterpriseIpAllowListEntry(name, undefined, { urn });
|
|
498
512
|
case "github:index/enterpriseOrganization:EnterpriseOrganization":
|
|
499
513
|
return new exports.EnterpriseOrganization(name, undefined, { urn });
|
|
500
514
|
case "github:index/enterpriseSecurityAnalysisSettings:EnterpriseSecurityAnalysisSettings":
|
|
@@ -563,6 +577,8 @@ const _module = {
|
|
|
563
577
|
return new exports.RepositoryFile(name, undefined, { urn });
|
|
564
578
|
case "github:index/repositoryMilestone:RepositoryMilestone":
|
|
565
579
|
return new exports.RepositoryMilestone(name, undefined, { urn });
|
|
580
|
+
case "github:index/repositoryPages:RepositoryPages":
|
|
581
|
+
return new exports.RepositoryPages(name, undefined, { urn });
|
|
566
582
|
case "github:index/repositoryProject:RepositoryProject":
|
|
567
583
|
return new exports.RepositoryProject(name, undefined, { urn });
|
|
568
584
|
case "github:index/repositoryPullRequest:RepositoryPullRequest":
|
|
@@ -571,6 +587,8 @@ const _module = {
|
|
|
571
587
|
return new exports.RepositoryRuleset(name, undefined, { urn });
|
|
572
588
|
case "github:index/repositoryTopics:RepositoryTopics":
|
|
573
589
|
return new exports.RepositoryTopics(name, undefined, { urn });
|
|
590
|
+
case "github:index/repositoryVulnerabilityAlerts:RepositoryVulnerabilityAlerts":
|
|
591
|
+
return new exports.RepositoryVulnerabilityAlerts(name, undefined, { urn });
|
|
574
592
|
case "github:index/repositoryWebhook:RepositoryWebhook":
|
|
575
593
|
return new exports.RepositoryWebhook(name, undefined, { urn });
|
|
576
594
|
case "github:index/team:Team":
|
|
@@ -634,6 +652,7 @@ pulumi.runtime.registerResourceModule("github", "index/emuGroupMapping", _module
|
|
|
634
652
|
pulumi.runtime.registerResourceModule("github", "index/enterpriseActionsPermissions", _module);
|
|
635
653
|
pulumi.runtime.registerResourceModule("github", "index/enterpriseActionsRunnerGroup", _module);
|
|
636
654
|
pulumi.runtime.registerResourceModule("github", "index/enterpriseActionsWorkflowPermissions", _module);
|
|
655
|
+
pulumi.runtime.registerResourceModule("github", "index/enterpriseIpAllowListEntry", _module);
|
|
637
656
|
pulumi.runtime.registerResourceModule("github", "index/enterpriseOrganization", _module);
|
|
638
657
|
pulumi.runtime.registerResourceModule("github", "index/enterpriseSecurityAnalysisSettings", _module);
|
|
639
658
|
pulumi.runtime.registerResourceModule("github", "index/issue", _module);
|
|
@@ -668,10 +687,12 @@ pulumi.runtime.registerResourceModule("github", "index/repositoryEnvironment", _
|
|
|
668
687
|
pulumi.runtime.registerResourceModule("github", "index/repositoryEnvironmentDeploymentPolicy", _module);
|
|
669
688
|
pulumi.runtime.registerResourceModule("github", "index/repositoryFile", _module);
|
|
670
689
|
pulumi.runtime.registerResourceModule("github", "index/repositoryMilestone", _module);
|
|
690
|
+
pulumi.runtime.registerResourceModule("github", "index/repositoryPages", _module);
|
|
671
691
|
pulumi.runtime.registerResourceModule("github", "index/repositoryProject", _module);
|
|
672
692
|
pulumi.runtime.registerResourceModule("github", "index/repositoryPullRequest", _module);
|
|
673
693
|
pulumi.runtime.registerResourceModule("github", "index/repositoryRuleset", _module);
|
|
674
694
|
pulumi.runtime.registerResourceModule("github", "index/repositoryTopics", _module);
|
|
695
|
+
pulumi.runtime.registerResourceModule("github", "index/repositoryVulnerabilityAlerts", _module);
|
|
675
696
|
pulumi.runtime.registerResourceModule("github", "index/repositoryWebhook", _module);
|
|
676
697
|
pulumi.runtime.registerResourceModule("github", "index/team", _module);
|
|
677
698
|
pulumi.runtime.registerResourceModule("github", "index/teamMembers", _module);
|