@pulumi/gitlab 8.9.0-alpha.1739339367 → 8.9.0-alpha.1739425698
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/clusterAgentToken.d.ts +1 -1
- package/clusterAgentToken.js +1 -1
- package/getGroups.d.ts +2 -2
- package/getGroups.js +2 -2
- package/getMetadata.d.ts +2 -2
- package/getMetadata.js +2 -2
- package/getProjectEnvironments.d.ts +2 -2
- package/getProjectEnvironments.js +2 -2
- package/getRepositoryTree.d.ts +2 -2
- package/getRepositoryTree.js +2 -2
- package/getRunners.d.ts +2 -2
- package/getRunners.js +2 -2
- package/getUsers.d.ts +2 -2
- package/getUsers.js +2 -2
- package/package.json +2 -2
package/clusterAgentToken.d.ts
CHANGED
|
@@ -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
|
|
28
|
+
* const _this = gitlab.getProject({
|
|
29
29
|
* pathWithNamespace: "my-org/example",
|
|
30
30
|
* });
|
|
31
31
|
* const thisClusterAgent = new gitlab.ClusterAgent("this", {
|
package/clusterAgentToken.js
CHANGED
|
@@ -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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
53
|
+
* const _this = gitlab.getProjectEnvironmentsOutput({
|
|
54
54
|
* project: thisProject.pathWithNamespace,
|
|
55
55
|
* });
|
|
56
56
|
* ```
|
package/getRepositoryTree.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
|
|
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
|
|
84
|
+
* const _this = gitlab.getRepositoryTree({
|
|
85
85
|
* project: "example",
|
|
86
86
|
* ref: "main",
|
|
87
87
|
* path: "ExampleSubFolder",
|
package/getRepositoryTree.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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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.
|
|
3
|
+
"version": "8.9.0-alpha.1739425698",
|
|
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.
|
|
25
|
+
"version": "8.9.0-alpha.1739425698"
|
|
26
26
|
}
|
|
27
27
|
}
|