@pulumi/gitlab 8.9.0-alpha.1739339367 → 8.9.0-alpha.1739378340

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.
@@ -25,7 +25,7 @@ import * as pulumi from "@pulumi/pulumi";
25
25
  * // The following example creates a GitLab Agent for Kubernetes in a given project,
26
26
  * // creates a token and install the `gitlab-agent` Helm Chart.
27
27
  * // (see https://gitlab.com/gitlab-org/charts/gitlab-agent)
28
- * const this = gitlab.getProject({
28
+ * const _this = gitlab.getProject({
29
29
  * pathWithNamespace: "my-org/example",
30
30
  * });
31
31
  * const thisClusterAgent = new gitlab.ClusterAgent("this", {
@@ -31,7 +31,7 @@ const utilities = require("./utilities");
31
31
  * // The following example creates a GitLab Agent for Kubernetes in a given project,
32
32
  * // creates a token and install the `gitlab-agent` Helm Chart.
33
33
  * // (see https://gitlab.com/gitlab-org/charts/gitlab-agent)
34
- * const this = gitlab.getProject({
34
+ * const _this = gitlab.getProject({
35
35
  * pathWithNamespace: "my-org/example",
36
36
  * });
37
37
  * const thisClusterAgent = new gitlab.ClusterAgent("this", {
package/getGroups.d.ts CHANGED
@@ -19,7 +19,7 @@ import * as outputs from "./types/output";
19
19
  * sort: "desc",
20
20
  * orderBy: "name",
21
21
  * });
22
- * const example-two = gitlab.getGroups({
22
+ * const example_two = gitlab.getGroups({
23
23
  * search: "GitLab",
24
24
  * });
25
25
  * ```
@@ -94,7 +94,7 @@ export interface GetGroupsResult {
94
94
  * sort: "desc",
95
95
  * orderBy: "name",
96
96
  * });
97
- * const example-two = gitlab.getGroups({
97
+ * const example_two = gitlab.getGroups({
98
98
  * search: "GitLab",
99
99
  * });
100
100
  * ```
package/getGroups.js CHANGED
@@ -24,7 +24,7 @@ const utilities = require("./utilities");
24
24
  * sort: "desc",
25
25
  * orderBy: "name",
26
26
  * });
27
- * const example-two = gitlab.getGroups({
27
+ * const example_two = gitlab.getGroups({
28
28
  * search: "GitLab",
29
29
  * });
30
30
  * ```
@@ -59,7 +59,7 @@ exports.getGroups = getGroups;
59
59
  * sort: "desc",
60
60
  * orderBy: "name",
61
61
  * });
62
- * const example-two = gitlab.getGroups({
62
+ * const example_two = gitlab.getGroups({
63
63
  * search: "GitLab",
64
64
  * });
65
65
  * ```
package/getMetadata.d.ts CHANGED
@@ -11,7 +11,7 @@ import * as outputs from "./types/output";
11
11
  * import * as pulumi from "@pulumi/pulumi";
12
12
  * import * as gitlab from "@pulumi/gitlab";
13
13
  *
14
- * const this = gitlab.getMetadata({});
14
+ * const _this = gitlab.getMetadata({});
15
15
  * ```
16
16
  */
17
17
  export declare function getMetadata(opts?: pulumi.InvokeOptions): Promise<GetMetadataResult>;
@@ -51,7 +51,7 @@ export interface GetMetadataResult {
51
51
  * import * as pulumi from "@pulumi/pulumi";
52
52
  * import * as gitlab from "@pulumi/gitlab";
53
53
  *
54
- * const this = gitlab.getMetadata({});
54
+ * const _this = gitlab.getMetadata({});
55
55
  * ```
56
56
  */
57
57
  export declare function getMetadataOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetMetadataResult>;
package/getMetadata.js CHANGED
@@ -16,7 +16,7 @@ const utilities = require("./utilities");
16
16
  * import * as pulumi from "@pulumi/pulumi";
17
17
  * import * as gitlab from "@pulumi/gitlab";
18
18
  *
19
- * const this = gitlab.getMetadata({});
19
+ * const _this = gitlab.getMetadata({});
20
20
  * ```
21
21
  */
22
22
  function getMetadata(opts) {
@@ -35,7 +35,7 @@ exports.getMetadata = getMetadata;
35
35
  * import * as pulumi from "@pulumi/pulumi";
36
36
  * import * as gitlab from "@pulumi/gitlab";
37
37
  *
38
- * const this = gitlab.getMetadata({});
38
+ * const _this = gitlab.getMetadata({});
39
39
  * ```
40
40
  */
41
41
  function getMetadataOutput(opts) {
@@ -15,7 +15,7 @@ import * as outputs from "./types/output";
15
15
  * name: "example",
16
16
  * initializeWithReadme: true,
17
17
  * });
18
- * const this = gitlab.getProjectEnvironmentsOutput({
18
+ * const _this = gitlab.getProjectEnvironmentsOutput({
19
19
  * project: thisProject.pathWithNamespace,
20
20
  * });
21
21
  * ```
@@ -83,7 +83,7 @@ export interface GetProjectEnvironmentsResult {
83
83
  * name: "example",
84
84
  * initializeWithReadme: true,
85
85
  * });
86
- * const this = gitlab.getProjectEnvironmentsOutput({
86
+ * const _this = gitlab.getProjectEnvironmentsOutput({
87
87
  * project: thisProject.pathWithNamespace,
88
88
  * });
89
89
  * ```
@@ -20,7 +20,7 @@ const utilities = require("./utilities");
20
20
  * name: "example",
21
21
  * initializeWithReadme: true,
22
22
  * });
23
- * const this = gitlab.getProjectEnvironmentsOutput({
23
+ * const _this = gitlab.getProjectEnvironmentsOutput({
24
24
  * project: thisProject.pathWithNamespace,
25
25
  * });
26
26
  * ```
@@ -50,7 +50,7 @@ exports.getProjectEnvironments = getProjectEnvironments;
50
50
  * name: "example",
51
51
  * initializeWithReadme: true,
52
52
  * });
53
- * const this = gitlab.getProjectEnvironmentsOutput({
53
+ * const _this = gitlab.getProjectEnvironmentsOutput({
54
54
  * project: thisProject.pathWithNamespace,
55
55
  * });
56
56
  * ```
@@ -11,7 +11,7 @@ import * as outputs from "./types/output";
11
11
  * import * as pulumi from "@pulumi/pulumi";
12
12
  * import * as gitlab from "@pulumi/gitlab";
13
13
  *
14
- * const this = gitlab.getRepositoryTree({
14
+ * const _this = gitlab.getRepositoryTree({
15
15
  * project: "example",
16
16
  * ref: "main",
17
17
  * path: "ExampleSubFolder",
@@ -81,7 +81,7 @@ export interface GetRepositoryTreeResult {
81
81
  * import * as pulumi from "@pulumi/pulumi";
82
82
  * import * as gitlab from "@pulumi/gitlab";
83
83
  *
84
- * const this = gitlab.getRepositoryTree({
84
+ * const _this = gitlab.getRepositoryTree({
85
85
  * project: "example",
86
86
  * ref: "main",
87
87
  * path: "ExampleSubFolder",
@@ -16,7 +16,7 @@ const utilities = require("./utilities");
16
16
  * import * as pulumi from "@pulumi/pulumi";
17
17
  * import * as gitlab from "@pulumi/gitlab";
18
18
  *
19
- * const this = gitlab.getRepositoryTree({
19
+ * const _this = gitlab.getRepositoryTree({
20
20
  * project: "example",
21
21
  * ref: "main",
22
22
  * path: "ExampleSubFolder",
@@ -45,7 +45,7 @@ exports.getRepositoryTree = getRepositoryTree;
45
45
  * import * as pulumi from "@pulumi/pulumi";
46
46
  * import * as gitlab from "@pulumi/gitlab";
47
47
  *
48
- * const this = gitlab.getRepositoryTree({
48
+ * const _this = gitlab.getRepositoryTree({
49
49
  * project: "example",
50
50
  * ref: "main",
51
51
  * path: "ExampleSubFolder",
package/getRunners.d.ts CHANGED
@@ -18,7 +18,7 @@ import * as outputs from "./types/output";
18
18
  * "tag2",
19
19
  * ],
20
20
  * });
21
- * const this = gitlab.getRunners({
21
+ * const _this = gitlab.getRunners({
22
22
  * paused: false,
23
23
  * status: "online",
24
24
  * tagLists: [
@@ -95,7 +95,7 @@ export interface GetRunnersResult {
95
95
  * "tag2",
96
96
  * ],
97
97
  * });
98
- * const this = gitlab.getRunners({
98
+ * const _this = gitlab.getRunners({
99
99
  * paused: false,
100
100
  * status: "online",
101
101
  * tagLists: [
package/getRunners.js CHANGED
@@ -23,7 +23,7 @@ const utilities = require("./utilities");
23
23
  * "tag2",
24
24
  * ],
25
25
  * });
26
- * const this = gitlab.getRunners({
26
+ * const _this = gitlab.getRunners({
27
27
  * paused: false,
28
28
  * status: "online",
29
29
  * tagLists: [
@@ -63,7 +63,7 @@ exports.getRunners = getRunners;
63
63
  * "tag2",
64
64
  * ],
65
65
  * });
66
- * const this = gitlab.getRunners({
66
+ * const _this = gitlab.getRunners({
67
67
  * paused: false,
68
68
  * status: "online",
69
69
  * tagLists: [
package/getUsers.d.ts CHANGED
@@ -20,7 +20,7 @@ import * as outputs from "./types/output";
20
20
  * orderBy: "name",
21
21
  * createdBefore: "2019-01-01",
22
22
  * });
23
- * const example-two = gitlab.getUsers({
23
+ * const example_two = gitlab.getUsers({
24
24
  * search: "username",
25
25
  * });
26
26
  * ```
@@ -136,7 +136,7 @@ export interface GetUsersResult {
136
136
  * orderBy: "name",
137
137
  * createdBefore: "2019-01-01",
138
138
  * });
139
- * const example-two = gitlab.getUsers({
139
+ * const example_two = gitlab.getUsers({
140
140
  * search: "username",
141
141
  * });
142
142
  * ```
package/getUsers.js CHANGED
@@ -25,7 +25,7 @@ const utilities = require("./utilities");
25
25
  * orderBy: "name",
26
26
  * createdBefore: "2019-01-01",
27
27
  * });
28
- * const example-two = gitlab.getUsers({
28
+ * const example_two = gitlab.getUsers({
29
29
  * search: "username",
30
30
  * });
31
31
  * ```
@@ -66,7 +66,7 @@ exports.getUsers = getUsers;
66
66
  * orderBy: "name",
67
67
  * createdBefore: "2019-01-01",
68
68
  * });
69
- * const example-two = gitlab.getUsers({
69
+ * const example_two = gitlab.getUsers({
70
70
  * search: "username",
71
71
  * });
72
72
  * ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/gitlab",
3
- "version": "8.9.0-alpha.1739339367",
3
+ "version": "8.9.0-alpha.1739378340",
4
4
  "description": "A Pulumi package for creating and managing GitLab resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -22,6 +22,6 @@
22
22
  "pulumi": {
23
23
  "resource": true,
24
24
  "name": "gitlab",
25
- "version": "8.9.0-alpha.1739339367"
25
+ "version": "8.9.0-alpha.1739378340"
26
26
  }
27
27
  }