@pulumi/github 6.14.0 → 6.14.1
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/getOrganizationIpAllowList.d.ts +1 -1
- package/getOrganizationWebhooks.d.ts +1 -1
- package/getRepositoryWebhooks.d.ts +1 -1
- package/getTree.d.ts +4 -4
- package/getTree.js +4 -4
- package/organizationProject.d.ts +1 -1
- package/organizationProject.js +1 -1
- package/package.json +2 -2
- package/projectCard.d.ts +1 -1
- package/projectCard.js +1 -1
- package/projectColumn.d.ts +1 -1
- package/projectColumn.js +1 -1
- package/repositoryProject.d.ts +1 -1
- package/repositoryProject.js +1 -1
- package/teamSyncGroupMapping.d.ts +3 -3
|
@@ -25,7 +25,7 @@ export interface GetOrganizationWebhooksResult {
|
|
|
25
25
|
readonly id: string;
|
|
26
26
|
/**
|
|
27
27
|
* An Array of GitHub Webhooks. Each `webhook` block consists of the fields documented below.
|
|
28
|
-
*
|
|
28
|
+
* ***
|
|
29
29
|
*/
|
|
30
30
|
readonly webhooks: outputs.GetOrganizationWebhooksWebhook[];
|
|
31
31
|
}
|
|
@@ -34,7 +34,7 @@ export interface GetRepositoryWebhooksResult {
|
|
|
34
34
|
readonly repository: string;
|
|
35
35
|
/**
|
|
36
36
|
* An Array of GitHub Webhooks. Each `webhook` block consists of the fields documented below.
|
|
37
|
-
*
|
|
37
|
+
* ***
|
|
38
38
|
*/
|
|
39
39
|
readonly webhooks: outputs.GetRepositoryWebhooksWebhook[];
|
|
40
40
|
}
|
package/getTree.d.ts
CHANGED
|
@@ -12,9 +12,9 @@ import * as outputs from "./types/output";
|
|
|
12
12
|
* const _this = github.getRepository({
|
|
13
13
|
* name: "example",
|
|
14
14
|
* });
|
|
15
|
-
* const thisGetBranch =
|
|
15
|
+
* const thisGetBranch = _this.then(_this => github.getBranch({
|
|
16
16
|
* branch: _this.defaultBranch,
|
|
17
|
-
* repository:
|
|
17
|
+
* repository: _this.name,
|
|
18
18
|
* }));
|
|
19
19
|
* const thisGetTree = Promise.all([_this, thisGetBranch]).then(([_this, thisGetBranch]) => github.getTree({
|
|
20
20
|
* recursive: false,
|
|
@@ -70,9 +70,9 @@ export interface GetTreeResult {
|
|
|
70
70
|
* const _this = github.getRepository({
|
|
71
71
|
* name: "example",
|
|
72
72
|
* });
|
|
73
|
-
* const thisGetBranch =
|
|
73
|
+
* const thisGetBranch = _this.then(_this => github.getBranch({
|
|
74
74
|
* branch: _this.defaultBranch,
|
|
75
|
-
* repository:
|
|
75
|
+
* repository: _this.name,
|
|
76
76
|
* }));
|
|
77
77
|
* const thisGetTree = Promise.all([_this, thisGetBranch]).then(([_this, thisGetBranch]) => github.getTree({
|
|
78
78
|
* recursive: false,
|
package/getTree.js
CHANGED
|
@@ -40,9 +40,9 @@ const utilities = __importStar(require("./utilities"));
|
|
|
40
40
|
* const _this = github.getRepository({
|
|
41
41
|
* name: "example",
|
|
42
42
|
* });
|
|
43
|
-
* const thisGetBranch =
|
|
43
|
+
* const thisGetBranch = _this.then(_this => github.getBranch({
|
|
44
44
|
* branch: _this.defaultBranch,
|
|
45
|
-
* repository:
|
|
45
|
+
* repository: _this.name,
|
|
46
46
|
* }));
|
|
47
47
|
* const thisGetTree = Promise.all([_this, thisGetBranch]).then(([_this, thisGetBranch]) => github.getTree({
|
|
48
48
|
* recursive: false,
|
|
@@ -73,9 +73,9 @@ exports.getTree = getTree;
|
|
|
73
73
|
* const _this = github.getRepository({
|
|
74
74
|
* name: "example",
|
|
75
75
|
* });
|
|
76
|
-
* const thisGetBranch =
|
|
76
|
+
* const thisGetBranch = _this.then(_this => github.getBranch({
|
|
77
77
|
* branch: _this.defaultBranch,
|
|
78
|
-
* repository:
|
|
78
|
+
* repository: _this.name,
|
|
79
79
|
* }));
|
|
80
80
|
* const thisGetTree = Promise.all([_this, thisGetBranch]).then(([_this, thisGetBranch]) => github.getTree({
|
|
81
81
|
* recursive: false,
|
package/organizationProject.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* > **Warning:** This resource no longer works as the [Projects (classic) REST API](https://docs.github.com/en/rest/projects/projects?apiVersion=2022-11-28) has been [removed](https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/) and as such has been deprecated. It will be removed in a future release.
|
|
4
4
|
*
|
|
5
5
|
* This resource allows you to create and manage projects for GitHub organization.
|
|
6
6
|
*
|
package/organizationProject.js
CHANGED
|
@@ -29,7 +29,7 @@ exports.OrganizationProject = void 0;
|
|
|
29
29
|
const pulumi = __importStar(require("@pulumi/pulumi"));
|
|
30
30
|
const utilities = __importStar(require("./utilities"));
|
|
31
31
|
/**
|
|
32
|
-
*
|
|
32
|
+
* > **Warning:** This resource no longer works as the [Projects (classic) REST API](https://docs.github.com/en/rest/projects/projects?apiVersion=2022-11-28) has been [removed](https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/) and as such has been deprecated. It will be removed in a future release.
|
|
33
33
|
*
|
|
34
34
|
* This resource allows you to create and manage projects for GitHub organization.
|
|
35
35
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/github",
|
|
3
|
-
"version": "6.14.
|
|
3
|
+
"version": "6.14.1",
|
|
4
4
|
"description": "A Pulumi package for creating and managing github cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "github",
|
|
26
|
-
"version": "6.14.
|
|
26
|
+
"version": "6.14.1"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/projectCard.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* > **Warning:** This resource no longer works as the [Projects (classic) REST API](https://docs.github.com/en/rest/projects/projects?apiVersion=2022-11-28) has been [removed](https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/) and as such has been deprecated. It will be removed in a future release.
|
|
4
4
|
*
|
|
5
5
|
* This resource allows you to create and manage cards for GitHub projects.
|
|
6
6
|
*
|
package/projectCard.js
CHANGED
|
@@ -29,7 +29,7 @@ exports.ProjectCard = void 0;
|
|
|
29
29
|
const pulumi = __importStar(require("@pulumi/pulumi"));
|
|
30
30
|
const utilities = __importStar(require("./utilities"));
|
|
31
31
|
/**
|
|
32
|
-
*
|
|
32
|
+
* > **Warning:** This resource no longer works as the [Projects (classic) REST API](https://docs.github.com/en/rest/projects/projects?apiVersion=2022-11-28) has been [removed](https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/) and as such has been deprecated. It will be removed in a future release.
|
|
33
33
|
*
|
|
34
34
|
* This resource allows you to create and manage cards for GitHub projects.
|
|
35
35
|
*
|
package/projectColumn.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* > **Warning:** This resource no longer works as the [Projects (classic) REST API](https://docs.github.com/en/rest/projects/projects?apiVersion=2022-11-28) has been [removed](https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/) and as such has been deprecated. It will be removed in a future release.
|
|
4
4
|
*
|
|
5
5
|
* This resource allows you to create and manage columns for GitHub projects.
|
|
6
6
|
*
|
package/projectColumn.js
CHANGED
|
@@ -29,7 +29,7 @@ exports.ProjectColumn = void 0;
|
|
|
29
29
|
const pulumi = __importStar(require("@pulumi/pulumi"));
|
|
30
30
|
const utilities = __importStar(require("./utilities"));
|
|
31
31
|
/**
|
|
32
|
-
*
|
|
32
|
+
* > **Warning:** This resource no longer works as the [Projects (classic) REST API](https://docs.github.com/en/rest/projects/projects?apiVersion=2022-11-28) has been [removed](https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/) and as such has been deprecated. It will be removed in a future release.
|
|
33
33
|
*
|
|
34
34
|
* This resource allows you to create and manage columns for GitHub projects.
|
|
35
35
|
*
|
package/repositoryProject.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* > **Warning:** This resource no longer works as the [Projects (classic) REST API](https://docs.github.com/en/rest/projects/projects?apiVersion=2022-11-28) has been [removed](https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/) and as such has been deprecated. It will be removed in a future release.
|
|
4
4
|
*
|
|
5
5
|
* This resource allows you to create and manage projects for GitHub repository.
|
|
6
6
|
*
|
package/repositoryProject.js
CHANGED
|
@@ -29,7 +29,7 @@ exports.RepositoryProject = void 0;
|
|
|
29
29
|
const pulumi = __importStar(require("@pulumi/pulumi"));
|
|
30
30
|
const utilities = __importStar(require("./utilities"));
|
|
31
31
|
/**
|
|
32
|
-
*
|
|
32
|
+
* > **Warning:** This resource no longer works as the [Projects (classic) REST API](https://docs.github.com/en/rest/projects/projects?apiVersion=2022-11-28) has been [removed](https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/) and as such has been deprecated. It will be removed in a future release.
|
|
33
33
|
*
|
|
34
34
|
* This resource allows you to create and manage projects for GitHub repository.
|
|
35
35
|
*
|
|
@@ -52,7 +52,7 @@ export declare class TeamSyncGroupMapping extends pulumi.CustomResource {
|
|
|
52
52
|
readonly etag: pulumi.Output<string>;
|
|
53
53
|
/**
|
|
54
54
|
* An Array of GitHub Identity Provider Groups (or empty []). Each `group` block consists of the fields documented below.
|
|
55
|
-
*
|
|
55
|
+
* ***
|
|
56
56
|
*
|
|
57
57
|
* The `group` block consists of:
|
|
58
58
|
*/
|
|
@@ -77,7 +77,7 @@ export interface TeamSyncGroupMappingState {
|
|
|
77
77
|
etag?: pulumi.Input<string | undefined>;
|
|
78
78
|
/**
|
|
79
79
|
* An Array of GitHub Identity Provider Groups (or empty []). Each `group` block consists of the fields documented below.
|
|
80
|
-
*
|
|
80
|
+
* ***
|
|
81
81
|
*
|
|
82
82
|
* The `group` block consists of:
|
|
83
83
|
*/
|
|
@@ -93,7 +93,7 @@ export interface TeamSyncGroupMappingState {
|
|
|
93
93
|
export interface TeamSyncGroupMappingArgs {
|
|
94
94
|
/**
|
|
95
95
|
* An Array of GitHub Identity Provider Groups (or empty []). Each `group` block consists of the fields documented below.
|
|
96
|
-
*
|
|
96
|
+
* ***
|
|
97
97
|
*
|
|
98
98
|
* The `group` block consists of:
|
|
99
99
|
*/
|