@pulumi/github 6.7.0-alpha.1739339096 → 6.7.0-alpha.1739425448

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.
@@ -11,7 +11,7 @@ import * as outputs from "./types/output";
11
11
  * import * as pulumi from "@pulumi/pulumi";
12
12
  * import * as github from "@pulumi/github";
13
13
  *
14
- * const example-org = github.getOrganization({
14
+ * const example_org = github.getOrganization({
15
15
  * name: "my-org",
16
16
  * });
17
17
  * const test = new github.EnterpriseActionsPermissions("test", {
@@ -15,7 +15,7 @@ const utilities = require("./utilities");
15
15
  * import * as pulumi from "@pulumi/pulumi";
16
16
  * import * as github from "@pulumi/github";
17
17
  *
18
- * const example-org = github.getOrganization({
18
+ * const example_org = github.getOrganization({
19
19
  * name: "my-org",
20
20
  * });
21
21
  * const test = new github.EnterpriseActionsPermissions("test", {
package/getAppToken.d.ts CHANGED
@@ -9,7 +9,7 @@ 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 = std.file({
12
+ * const _this = std.file({
13
13
  * input: "foo/bar.pem",
14
14
  * }).then(invoke => github.getAppToken({
15
15
  * appId: "123456",
@@ -62,7 +62,7 @@ export interface GetAppTokenResult {
62
62
  * import * as github from "@pulumi/github";
63
63
  * import * as std from "@pulumi/std";
64
64
  *
65
- * const this = std.file({
65
+ * const _this = std.file({
66
66
  * input: "foo/bar.pem",
67
67
  * }).then(invoke => github.getAppToken({
68
68
  * appId: "123456",
package/getAppToken.js CHANGED
@@ -15,7 +15,7 @@ const utilities = require("./utilities");
15
15
  * import * as github from "@pulumi/github";
16
16
  * import * as std from "@pulumi/std";
17
17
  *
18
- * const this = std.file({
18
+ * const _this = std.file({
19
19
  * input: "foo/bar.pem",
20
20
  * }).then(invoke => github.getAppToken({
21
21
  * appId: "123456",
@@ -43,7 +43,7 @@ exports.getAppToken = getAppToken;
43
43
  * import * as github from "@pulumi/github";
44
44
  * import * as std from "@pulumi/std";
45
45
  *
46
- * const this = std.file({
46
+ * const _this = std.file({
47
47
  * input: "foo/bar.pem",
48
48
  * }).then(invoke => github.getAppToken({
49
49
  * appId: "123456",
package/getTree.d.ts CHANGED
@@ -9,7 +9,7 @@ import * as outputs from "./types/output";
9
9
  * import * as pulumi from "@pulumi/pulumi";
10
10
  * import * as github from "@pulumi/github";
11
11
  *
12
- * const this = github.getRepository({
12
+ * const _this = github.getRepository({
13
13
  * name: "example",
14
14
  * });
15
15
  * const thisGetBranch = Promise.all([_this, _this]).then(([_this, _this1]) => github.getBranch({
@@ -67,7 +67,7 @@ export interface GetTreeResult {
67
67
  * import * as pulumi from "@pulumi/pulumi";
68
68
  * import * as github from "@pulumi/github";
69
69
  *
70
- * const this = github.getRepository({
70
+ * const _this = github.getRepository({
71
71
  * name: "example",
72
72
  * });
73
73
  * const thisGetBranch = Promise.all([_this, _this]).then(([_this, _this1]) => github.getBranch({
package/getTree.js CHANGED
@@ -14,7 +14,7 @@ const utilities = require("./utilities");
14
14
  * import * as pulumi from "@pulumi/pulumi";
15
15
  * import * as github from "@pulumi/github";
16
16
  *
17
- * const this = github.getRepository({
17
+ * const _this = github.getRepository({
18
18
  * name: "example",
19
19
  * });
20
20
  * const thisGetBranch = Promise.all([_this, _this]).then(([_this, _this1]) => github.getBranch({
@@ -47,7 +47,7 @@ exports.getTree = getTree;
47
47
  * import * as pulumi from "@pulumi/pulumi";
48
48
  * import * as github from "@pulumi/github";
49
49
  *
50
- * const this = github.getRepository({
50
+ * const _this = github.getRepository({
51
51
  * name: "example",
52
52
  * });
53
53
  * const thisGetBranch = Promise.all([_this, _this]).then(([_this, _this1]) => github.getBranch({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/github",
3
- "version": "6.7.0-alpha.1739339096",
3
+ "version": "6.7.0-alpha.1739425448",
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.7.0-alpha.1739339096"
26
+ "version": "6.7.0-alpha.1739425448"
27
27
  }
28
28
  }