@pulumi/github 6.16.0-alpha.1787818472 → 6.16.0-alpha.1788068871
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/getAppToken.d.ts +10 -10
- package/getAppToken.js +10 -10
- package/issue.d.ts +2 -2
- package/issue.js +2 -2
- package/package.json +2 -2
- package/userSshKey.d.ts +1 -1
- package/userSshKey.js +1 -1
package/getAppToken.d.ts
CHANGED
|
@@ -9,13 +9,13 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
9
9
|
* import * as github from "@pulumi/github";
|
|
10
10
|
* import * as std from "@pulumi/std";
|
|
11
11
|
*
|
|
12
|
-
* const _this =
|
|
12
|
+
* const _this = std.file({
|
|
13
|
+
* input: "foo/bar.pem",
|
|
14
|
+
* }).then(invoke => github.getAppToken({
|
|
13
15
|
* appId: "123456",
|
|
14
16
|
* installationId: "78910",
|
|
15
|
-
* pemFile:
|
|
16
|
-
*
|
|
17
|
-
* }).result,
|
|
18
|
-
* });
|
|
17
|
+
* pemFile: invoke.result,
|
|
18
|
+
* }));
|
|
19
19
|
* ```
|
|
20
20
|
*/
|
|
21
21
|
export declare function getAppToken(args: GetAppTokenArgs, opts?: pulumi.InvokeOptions): Promise<GetAppTokenResult>;
|
|
@@ -62,13 +62,13 @@ export interface GetAppTokenResult {
|
|
|
62
62
|
* import * as github from "@pulumi/github";
|
|
63
63
|
* import * as std from "@pulumi/std";
|
|
64
64
|
*
|
|
65
|
-
* const _this =
|
|
65
|
+
* const _this = std.file({
|
|
66
|
+
* input: "foo/bar.pem",
|
|
67
|
+
* }).then(invoke => github.getAppToken({
|
|
66
68
|
* appId: "123456",
|
|
67
69
|
* installationId: "78910",
|
|
68
|
-
* pemFile:
|
|
69
|
-
*
|
|
70
|
-
* }).result,
|
|
71
|
-
* });
|
|
70
|
+
* pemFile: invoke.result,
|
|
71
|
+
* }));
|
|
72
72
|
* ```
|
|
73
73
|
*/
|
|
74
74
|
export declare function getAppTokenOutput(args: GetAppTokenOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAppTokenResult>;
|
package/getAppToken.js
CHANGED
|
@@ -38,13 +38,13 @@ const utilities = __importStar(require("./utilities"));
|
|
|
38
38
|
* import * as github from "@pulumi/github";
|
|
39
39
|
* import * as std from "@pulumi/std";
|
|
40
40
|
*
|
|
41
|
-
* const _this =
|
|
41
|
+
* const _this = std.file({
|
|
42
|
+
* input: "foo/bar.pem",
|
|
43
|
+
* }).then(invoke => github.getAppToken({
|
|
42
44
|
* appId: "123456",
|
|
43
45
|
* installationId: "78910",
|
|
44
|
-
* pemFile:
|
|
45
|
-
*
|
|
46
|
-
* }).result,
|
|
47
|
-
* });
|
|
46
|
+
* pemFile: invoke.result,
|
|
47
|
+
* }));
|
|
48
48
|
* ```
|
|
49
49
|
*/
|
|
50
50
|
function getAppToken(args, opts) {
|
|
@@ -66,13 +66,13 @@ exports.getAppToken = getAppToken;
|
|
|
66
66
|
* import * as github from "@pulumi/github";
|
|
67
67
|
* import * as std from "@pulumi/std";
|
|
68
68
|
*
|
|
69
|
-
* const _this =
|
|
69
|
+
* const _this = std.file({
|
|
70
|
+
* input: "foo/bar.pem",
|
|
71
|
+
* }).then(invoke => github.getAppToken({
|
|
70
72
|
* appId: "123456",
|
|
71
73
|
* installationId: "78910",
|
|
72
|
-
* pemFile:
|
|
73
|
-
*
|
|
74
|
-
* }).result,
|
|
75
|
-
* });
|
|
74
|
+
* pemFile: invoke.result,
|
|
75
|
+
* }));
|
|
76
76
|
* ```
|
|
77
77
|
*/
|
|
78
78
|
function getAppTokenOutput(args, opts) {
|
package/issue.d.ts
CHANGED
|
@@ -37,10 +37,10 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
37
37
|
* hasIssues: true,
|
|
38
38
|
* });
|
|
39
39
|
* const testRepositoryMilestone = new github.RepositoryMilestone("test", {
|
|
40
|
-
* owner: std.
|
|
40
|
+
* owner: std.splitOutput({
|
|
41
41
|
* separator: "/",
|
|
42
42
|
* text: test.fullName,
|
|
43
|
-
* }).result[0],
|
|
43
|
+
* }).apply(invoke => invoke.result?.[0]),
|
|
44
44
|
* repository: test.name,
|
|
45
45
|
* title: "v1.0.0",
|
|
46
46
|
* description: "General Availability",
|
package/issue.js
CHANGED
|
@@ -66,10 +66,10 @@ const utilities = __importStar(require("./utilities"));
|
|
|
66
66
|
* hasIssues: true,
|
|
67
67
|
* });
|
|
68
68
|
* const testRepositoryMilestone = new github.RepositoryMilestone("test", {
|
|
69
|
-
* owner: std.
|
|
69
|
+
* owner: std.splitOutput({
|
|
70
70
|
* separator: "/",
|
|
71
71
|
* text: test.fullName,
|
|
72
|
-
* }).result[0],
|
|
72
|
+
* }).apply(invoke => invoke.result?.[0]),
|
|
73
73
|
* repository: test.name,
|
|
74
74
|
* title: "v1.0.0",
|
|
75
75
|
* description: "General Availability",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/github",
|
|
3
|
-
"version": "6.16.0-alpha.
|
|
3
|
+
"version": "6.16.0-alpha.1788068871",
|
|
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.16.0-alpha.
|
|
26
|
+
"version": "6.16.0-alpha.1788068871"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/userSshKey.d.ts
CHANGED