@pulumi/gitlab 4.5.0 → 4.6.0-alpha.1646407709
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/branch.d.ts +165 -0
- package/branch.js +103 -0
- package/branch.js.map +1 -0
- package/branchProtection.d.ts +13 -0
- package/branchProtection.js +3 -0
- package/branchProtection.js.map +1 -1
- package/config/index.js +5 -1
- package/config/index.js.map +1 -1
- package/getBranch.d.ts +95 -0
- package/getBranch.js +39 -0
- package/getBranch.js.map +1 -0
- package/getProject.d.ts +12 -0
- package/getProject.js.map +1 -1
- package/groupAccessToken.d.ts +168 -0
- package/groupAccessToken.js +105 -0
- package/groupAccessToken.js.map +1 -0
- package/groupLdapLink.d.ts +2 -2
- package/groupLdapLink.js +2 -2
- package/index.d.ts +5 -0
- package/index.js +26 -1
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/project.d.ts +51 -3
- package/project.js +8 -0
- package/project.js.map +1 -1
- package/projectHook.d.ts +12 -0
- package/projectHook.js +2 -0
- package/projectHook.js.map +1 -1
- package/projectLevelMrApprovals.d.ts +15 -3
- package/projectLevelMrApprovals.js +2 -0
- package/projectLevelMrApprovals.js.map +1 -1
- package/serviceJira.d.ts +12 -0
- package/serviceJira.js +2 -0
- package/serviceJira.js.map +1 -1
- package/topic.d.ts +102 -0
- package/topic.js +86 -0
- package/topic.js.map +1 -0
- package/types/input.d.ts +16 -0
- package/types/output.d.ts +35 -0
- package/user.d.ts +12 -0
- package/user.js +2 -0
- package/user.js.map +1 -1
- package/userSshKey.d.ts +130 -0
- package/userSshKey.js +98 -0
- package/userSshKey.js.map +1 -0
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* This resource allows you to create and manage Group Access Token for your GitLab Groups. (Introduced in GitLab 14.7)
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as gitlab from "@pulumi/gitlab";
|
|
10
|
+
*
|
|
11
|
+
* const exampleGroupAccessToken = new gitlab.GroupAccessToken("exampleGroupAccessToken", {
|
|
12
|
+
* group: "25",
|
|
13
|
+
* expiresAt: "2020-03-14",
|
|
14
|
+
* accessLevel: "developer",
|
|
15
|
+
* scopes: ["api"],
|
|
16
|
+
* });
|
|
17
|
+
* const exampleGroupVariable = new gitlab.GroupVariable("exampleGroupVariable", {
|
|
18
|
+
* group: "25",
|
|
19
|
+
* key: "gat",
|
|
20
|
+
* value: exampleGroupAccessToken.token,
|
|
21
|
+
* });
|
|
22
|
+
* ```
|
|
23
|
+
*
|
|
24
|
+
* ## Import
|
|
25
|
+
*
|
|
26
|
+
* # A GitLab Group Access Token can be imported using a key composed of `<group-id>:<token-id>`, e.g.
|
|
27
|
+
*
|
|
28
|
+
* ```sh
|
|
29
|
+
* $ pulumi import gitlab:index/groupAccessToken:GroupAccessToken example "12345:1"
|
|
30
|
+
* ```
|
|
31
|
+
*
|
|
32
|
+
* # ATTENTIONthe `token` resource attribute is not available for imported resources as this information cannot be read from the GitLab API.
|
|
33
|
+
*/
|
|
34
|
+
export declare class GroupAccessToken extends pulumi.CustomResource {
|
|
35
|
+
/**
|
|
36
|
+
* Get an existing GroupAccessToken resource's state with the given name, ID, and optional extra
|
|
37
|
+
* properties used to qualify the lookup.
|
|
38
|
+
*
|
|
39
|
+
* @param name The _unique_ name of the resulting resource.
|
|
40
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
41
|
+
* @param state Any extra arguments used during the lookup.
|
|
42
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
43
|
+
*/
|
|
44
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: GroupAccessTokenState, opts?: pulumi.CustomResourceOptions): GroupAccessToken;
|
|
45
|
+
/**
|
|
46
|
+
* Returns true if the given object is an instance of GroupAccessToken. This is designed to work even
|
|
47
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
48
|
+
*/
|
|
49
|
+
static isInstance(obj: any): obj is GroupAccessToken;
|
|
50
|
+
/**
|
|
51
|
+
* The access level for the group access token. Valid values are: `guest`, `reporter`, `developer`, `maintainer`.
|
|
52
|
+
*/
|
|
53
|
+
readonly accessLevel: pulumi.Output<string | undefined>;
|
|
54
|
+
/**
|
|
55
|
+
* True if the token is active.
|
|
56
|
+
*/
|
|
57
|
+
readonly active: pulumi.Output<boolean>;
|
|
58
|
+
/**
|
|
59
|
+
* Time the token has been created, RFC3339 format.
|
|
60
|
+
*/
|
|
61
|
+
readonly createdAt: pulumi.Output<string>;
|
|
62
|
+
/**
|
|
63
|
+
* The token expires at midnight UTC on that date. The date must be in the format YYYY-MM-DD. Default is never.
|
|
64
|
+
*/
|
|
65
|
+
readonly expiresAt: pulumi.Output<string | undefined>;
|
|
66
|
+
/**
|
|
67
|
+
* The ID or path of the group to add the group access token to.
|
|
68
|
+
*/
|
|
69
|
+
readonly group: pulumi.Output<string>;
|
|
70
|
+
/**
|
|
71
|
+
* The name of the group access token.
|
|
72
|
+
*/
|
|
73
|
+
readonly name: pulumi.Output<string>;
|
|
74
|
+
/**
|
|
75
|
+
* True if the token is revoked.
|
|
76
|
+
*/
|
|
77
|
+
readonly revoked: pulumi.Output<boolean>;
|
|
78
|
+
/**
|
|
79
|
+
* The scope for the group access token. It determines the actions which can be performed when authenticating with this token. Valid values are: `api`, `readApi`, `readRegistry`, `writeRegistry`, `readRepository`, `writeRepository`.
|
|
80
|
+
*/
|
|
81
|
+
readonly scopes: pulumi.Output<string[]>;
|
|
82
|
+
/**
|
|
83
|
+
* The group access token. This is only populated when creating a new group access token. This attribute is not available for imported resources.
|
|
84
|
+
*/
|
|
85
|
+
readonly token: pulumi.Output<string>;
|
|
86
|
+
/**
|
|
87
|
+
* The user id associated to the token.
|
|
88
|
+
*/
|
|
89
|
+
readonly userId: pulumi.Output<number>;
|
|
90
|
+
/**
|
|
91
|
+
* Create a GroupAccessToken resource with the given unique name, arguments, and options.
|
|
92
|
+
*
|
|
93
|
+
* @param name The _unique_ name of the resource.
|
|
94
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
95
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
96
|
+
*/
|
|
97
|
+
constructor(name: string, args: GroupAccessTokenArgs, opts?: pulumi.CustomResourceOptions);
|
|
98
|
+
}
|
|
99
|
+
/**
|
|
100
|
+
* Input properties used for looking up and filtering GroupAccessToken resources.
|
|
101
|
+
*/
|
|
102
|
+
export interface GroupAccessTokenState {
|
|
103
|
+
/**
|
|
104
|
+
* The access level for the group access token. Valid values are: `guest`, `reporter`, `developer`, `maintainer`.
|
|
105
|
+
*/
|
|
106
|
+
accessLevel?: pulumi.Input<string>;
|
|
107
|
+
/**
|
|
108
|
+
* True if the token is active.
|
|
109
|
+
*/
|
|
110
|
+
active?: pulumi.Input<boolean>;
|
|
111
|
+
/**
|
|
112
|
+
* Time the token has been created, RFC3339 format.
|
|
113
|
+
*/
|
|
114
|
+
createdAt?: pulumi.Input<string>;
|
|
115
|
+
/**
|
|
116
|
+
* The token expires at midnight UTC on that date. The date must be in the format YYYY-MM-DD. Default is never.
|
|
117
|
+
*/
|
|
118
|
+
expiresAt?: pulumi.Input<string>;
|
|
119
|
+
/**
|
|
120
|
+
* The ID or path of the group to add the group access token to.
|
|
121
|
+
*/
|
|
122
|
+
group?: pulumi.Input<string>;
|
|
123
|
+
/**
|
|
124
|
+
* The name of the group access token.
|
|
125
|
+
*/
|
|
126
|
+
name?: pulumi.Input<string>;
|
|
127
|
+
/**
|
|
128
|
+
* True if the token is revoked.
|
|
129
|
+
*/
|
|
130
|
+
revoked?: pulumi.Input<boolean>;
|
|
131
|
+
/**
|
|
132
|
+
* The scope for the group access token. It determines the actions which can be performed when authenticating with this token. Valid values are: `api`, `readApi`, `readRegistry`, `writeRegistry`, `readRepository`, `writeRepository`.
|
|
133
|
+
*/
|
|
134
|
+
scopes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
135
|
+
/**
|
|
136
|
+
* The group access token. This is only populated when creating a new group access token. This attribute is not available for imported resources.
|
|
137
|
+
*/
|
|
138
|
+
token?: pulumi.Input<string>;
|
|
139
|
+
/**
|
|
140
|
+
* The user id associated to the token.
|
|
141
|
+
*/
|
|
142
|
+
userId?: pulumi.Input<number>;
|
|
143
|
+
}
|
|
144
|
+
/**
|
|
145
|
+
* The set of arguments for constructing a GroupAccessToken resource.
|
|
146
|
+
*/
|
|
147
|
+
export interface GroupAccessTokenArgs {
|
|
148
|
+
/**
|
|
149
|
+
* The access level for the group access token. Valid values are: `guest`, `reporter`, `developer`, `maintainer`.
|
|
150
|
+
*/
|
|
151
|
+
accessLevel?: pulumi.Input<string>;
|
|
152
|
+
/**
|
|
153
|
+
* The token expires at midnight UTC on that date. The date must be in the format YYYY-MM-DD. Default is never.
|
|
154
|
+
*/
|
|
155
|
+
expiresAt?: pulumi.Input<string>;
|
|
156
|
+
/**
|
|
157
|
+
* The ID or path of the group to add the group access token to.
|
|
158
|
+
*/
|
|
159
|
+
group: pulumi.Input<string>;
|
|
160
|
+
/**
|
|
161
|
+
* The name of the group access token.
|
|
162
|
+
*/
|
|
163
|
+
name?: pulumi.Input<string>;
|
|
164
|
+
/**
|
|
165
|
+
* The scope for the group access token. It determines the actions which can be performed when authenticating with this token. Valid values are: `api`, `readApi`, `readRegistry`, `writeRegistry`, `readRepository`, `writeRepository`.
|
|
166
|
+
*/
|
|
167
|
+
scopes: pulumi.Input<pulumi.Input<string>[]>;
|
|
168
|
+
}
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.GroupAccessToken = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* This resource allows you to create and manage Group Access Token for your GitLab Groups. (Introduced in GitLab 14.7)
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as gitlab from "@pulumi/gitlab";
|
|
16
|
+
*
|
|
17
|
+
* const exampleGroupAccessToken = new gitlab.GroupAccessToken("exampleGroupAccessToken", {
|
|
18
|
+
* group: "25",
|
|
19
|
+
* expiresAt: "2020-03-14",
|
|
20
|
+
* accessLevel: "developer",
|
|
21
|
+
* scopes: ["api"],
|
|
22
|
+
* });
|
|
23
|
+
* const exampleGroupVariable = new gitlab.GroupVariable("exampleGroupVariable", {
|
|
24
|
+
* group: "25",
|
|
25
|
+
* key: "gat",
|
|
26
|
+
* value: exampleGroupAccessToken.token,
|
|
27
|
+
* });
|
|
28
|
+
* ```
|
|
29
|
+
*
|
|
30
|
+
* ## Import
|
|
31
|
+
*
|
|
32
|
+
* # A GitLab Group Access Token can be imported using a key composed of `<group-id>:<token-id>`, e.g.
|
|
33
|
+
*
|
|
34
|
+
* ```sh
|
|
35
|
+
* $ pulumi import gitlab:index/groupAccessToken:GroupAccessToken example "12345:1"
|
|
36
|
+
* ```
|
|
37
|
+
*
|
|
38
|
+
* # ATTENTIONthe `token` resource attribute is not available for imported resources as this information cannot be read from the GitLab API.
|
|
39
|
+
*/
|
|
40
|
+
class GroupAccessToken extends pulumi.CustomResource {
|
|
41
|
+
constructor(name, argsOrState, opts) {
|
|
42
|
+
let resourceInputs = {};
|
|
43
|
+
opts = opts || {};
|
|
44
|
+
if (opts.id) {
|
|
45
|
+
const state = argsOrState;
|
|
46
|
+
resourceInputs["accessLevel"] = state ? state.accessLevel : undefined;
|
|
47
|
+
resourceInputs["active"] = state ? state.active : undefined;
|
|
48
|
+
resourceInputs["createdAt"] = state ? state.createdAt : undefined;
|
|
49
|
+
resourceInputs["expiresAt"] = state ? state.expiresAt : undefined;
|
|
50
|
+
resourceInputs["group"] = state ? state.group : undefined;
|
|
51
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
52
|
+
resourceInputs["revoked"] = state ? state.revoked : undefined;
|
|
53
|
+
resourceInputs["scopes"] = state ? state.scopes : undefined;
|
|
54
|
+
resourceInputs["token"] = state ? state.token : undefined;
|
|
55
|
+
resourceInputs["userId"] = state ? state.userId : undefined;
|
|
56
|
+
}
|
|
57
|
+
else {
|
|
58
|
+
const args = argsOrState;
|
|
59
|
+
if ((!args || args.group === undefined) && !opts.urn) {
|
|
60
|
+
throw new Error("Missing required property 'group'");
|
|
61
|
+
}
|
|
62
|
+
if ((!args || args.scopes === undefined) && !opts.urn) {
|
|
63
|
+
throw new Error("Missing required property 'scopes'");
|
|
64
|
+
}
|
|
65
|
+
resourceInputs["accessLevel"] = args ? args.accessLevel : undefined;
|
|
66
|
+
resourceInputs["expiresAt"] = args ? args.expiresAt : undefined;
|
|
67
|
+
resourceInputs["group"] = args ? args.group : undefined;
|
|
68
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
69
|
+
resourceInputs["scopes"] = args ? args.scopes : undefined;
|
|
70
|
+
resourceInputs["active"] = undefined /*out*/;
|
|
71
|
+
resourceInputs["createdAt"] = undefined /*out*/;
|
|
72
|
+
resourceInputs["revoked"] = undefined /*out*/;
|
|
73
|
+
resourceInputs["token"] = undefined /*out*/;
|
|
74
|
+
resourceInputs["userId"] = undefined /*out*/;
|
|
75
|
+
}
|
|
76
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
77
|
+
super(GroupAccessToken.__pulumiType, name, resourceInputs, opts);
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* Get an existing GroupAccessToken resource's state with the given name, ID, and optional extra
|
|
81
|
+
* properties used to qualify the lookup.
|
|
82
|
+
*
|
|
83
|
+
* @param name The _unique_ name of the resulting resource.
|
|
84
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
85
|
+
* @param state Any extra arguments used during the lookup.
|
|
86
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
87
|
+
*/
|
|
88
|
+
static get(name, id, state, opts) {
|
|
89
|
+
return new GroupAccessToken(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
90
|
+
}
|
|
91
|
+
/**
|
|
92
|
+
* Returns true if the given object is an instance of GroupAccessToken. This is designed to work even
|
|
93
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
94
|
+
*/
|
|
95
|
+
static isInstance(obj) {
|
|
96
|
+
if (obj === undefined || obj === null) {
|
|
97
|
+
return false;
|
|
98
|
+
}
|
|
99
|
+
return obj['__pulumiType'] === GroupAccessToken.__pulumiType;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
exports.GroupAccessToken = GroupAccessToken;
|
|
103
|
+
/** @internal */
|
|
104
|
+
GroupAccessToken.__pulumiType = 'gitlab:index/groupAccessToken:GroupAccessToken';
|
|
105
|
+
//# sourceMappingURL=groupAccessToken.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"groupAccessToken.js","sourceRoot":"","sources":["../groupAccessToken.ts"],"names":[],"mappings":"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"}
|
package/groupLdapLink.d.ts
CHANGED
|
@@ -18,10 +18,10 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
18
18
|
*
|
|
19
19
|
* ## Import
|
|
20
20
|
*
|
|
21
|
-
* # GitLab group ldap links can be imported using an id made up of `ldap_provider:cn`, e.g.
|
|
21
|
+
* # GitLab group ldap links can be imported using an id made up of `group_id:ldap_provider:cn`, e.g.
|
|
22
22
|
*
|
|
23
23
|
* ```sh
|
|
24
|
-
* $ pulumi import gitlab:index/groupLdapLink:GroupLdapLink test "ldapmain:testuser"
|
|
24
|
+
* $ pulumi import gitlab:index/groupLdapLink:GroupLdapLink test "12345:ldapmain:testuser"
|
|
25
25
|
* ```
|
|
26
26
|
*/
|
|
27
27
|
export declare class GroupLdapLink extends pulumi.CustomResource {
|
package/groupLdapLink.js
CHANGED
|
@@ -24,10 +24,10 @@ const utilities = require("./utilities");
|
|
|
24
24
|
*
|
|
25
25
|
* ## Import
|
|
26
26
|
*
|
|
27
|
-
* # GitLab group ldap links can be imported using an id made up of `ldap_provider:cn`, e.g.
|
|
27
|
+
* # GitLab group ldap links can be imported using an id made up of `group_id:ldap_provider:cn`, e.g.
|
|
28
28
|
*
|
|
29
29
|
* ```sh
|
|
30
|
-
* $ pulumi import gitlab:index/groupLdapLink:GroupLdapLink test "ldapmain:testuser"
|
|
30
|
+
* $ pulumi import gitlab:index/groupLdapLink:GroupLdapLink test "12345:ldapmain:testuser"
|
|
31
31
|
* ```
|
|
32
32
|
*/
|
|
33
33
|
class GroupLdapLink extends pulumi.CustomResource {
|
package/index.d.ts
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
|
+
export * from "./branch";
|
|
1
2
|
export * from "./branchProtection";
|
|
2
3
|
export * from "./deployKey";
|
|
3
4
|
export * from "./deployKeyEnable";
|
|
4
5
|
export * from "./deployToken";
|
|
6
|
+
export * from "./getBranch";
|
|
5
7
|
export * from "./getGroup";
|
|
6
8
|
export * from "./getGroupMembership";
|
|
7
9
|
export * from "./getProject";
|
|
@@ -11,6 +13,7 @@ export * from "./getProjects";
|
|
|
11
13
|
export * from "./getUser";
|
|
12
14
|
export * from "./getUsers";
|
|
13
15
|
export * from "./group";
|
|
16
|
+
export * from "./groupAccessToken";
|
|
14
17
|
export * from "./groupBadge";
|
|
15
18
|
export * from "./groupCluster";
|
|
16
19
|
export * from "./groupCustomAttribute";
|
|
@@ -47,8 +50,10 @@ export * from "./serviceMicrosoftTeams";
|
|
|
47
50
|
export * from "./servicePipelinesEmail";
|
|
48
51
|
export * from "./serviceSlack";
|
|
49
52
|
export * from "./tagProtection";
|
|
53
|
+
export * from "./topic";
|
|
50
54
|
export * from "./user";
|
|
51
55
|
export * from "./userCustomAttribute";
|
|
56
|
+
export * from "./userSshKey";
|
|
52
57
|
import * as config from "./config";
|
|
53
58
|
import * as types from "./types";
|
|
54
59
|
export { config, types, };
|
package/index.js
CHANGED
|
@@ -3,7 +3,11 @@
|
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5
5
|
if (k2 === undefined) k2 = k;
|
|
6
|
-
Object.
|
|
6
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
7
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
8
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
9
|
+
}
|
|
10
|
+
Object.defineProperty(o, k2, desc);
|
|
7
11
|
}) : (function(o, m, k, k2) {
|
|
8
12
|
if (k2 === undefined) k2 = k;
|
|
9
13
|
o[k2] = m[k];
|
|
@@ -16,10 +20,12 @@ exports.types = exports.config = void 0;
|
|
|
16
20
|
const pulumi = require("@pulumi/pulumi");
|
|
17
21
|
const utilities = require("./utilities");
|
|
18
22
|
// Export members:
|
|
23
|
+
__exportStar(require("./branch"), exports);
|
|
19
24
|
__exportStar(require("./branchProtection"), exports);
|
|
20
25
|
__exportStar(require("./deployKey"), exports);
|
|
21
26
|
__exportStar(require("./deployKeyEnable"), exports);
|
|
22
27
|
__exportStar(require("./deployToken"), exports);
|
|
28
|
+
__exportStar(require("./getBranch"), exports);
|
|
23
29
|
__exportStar(require("./getGroup"), exports);
|
|
24
30
|
__exportStar(require("./getGroupMembership"), exports);
|
|
25
31
|
__exportStar(require("./getProject"), exports);
|
|
@@ -29,6 +35,7 @@ __exportStar(require("./getProjects"), exports);
|
|
|
29
35
|
__exportStar(require("./getUser"), exports);
|
|
30
36
|
__exportStar(require("./getUsers"), exports);
|
|
31
37
|
__exportStar(require("./group"), exports);
|
|
38
|
+
__exportStar(require("./groupAccessToken"), exports);
|
|
32
39
|
__exportStar(require("./groupBadge"), exports);
|
|
33
40
|
__exportStar(require("./groupCluster"), exports);
|
|
34
41
|
__exportStar(require("./groupCustomAttribute"), exports);
|
|
@@ -65,19 +72,23 @@ __exportStar(require("./serviceMicrosoftTeams"), exports);
|
|
|
65
72
|
__exportStar(require("./servicePipelinesEmail"), exports);
|
|
66
73
|
__exportStar(require("./serviceSlack"), exports);
|
|
67
74
|
__exportStar(require("./tagProtection"), exports);
|
|
75
|
+
__exportStar(require("./topic"), exports);
|
|
68
76
|
__exportStar(require("./user"), exports);
|
|
69
77
|
__exportStar(require("./userCustomAttribute"), exports);
|
|
78
|
+
__exportStar(require("./userSshKey"), exports);
|
|
70
79
|
// Export sub-modules:
|
|
71
80
|
const config = require("./config");
|
|
72
81
|
exports.config = config;
|
|
73
82
|
const types = require("./types");
|
|
74
83
|
exports.types = types;
|
|
75
84
|
// Import resources to register:
|
|
85
|
+
const branch_1 = require("./branch");
|
|
76
86
|
const branchProtection_1 = require("./branchProtection");
|
|
77
87
|
const deployKey_1 = require("./deployKey");
|
|
78
88
|
const deployKeyEnable_1 = require("./deployKeyEnable");
|
|
79
89
|
const deployToken_1 = require("./deployToken");
|
|
80
90
|
const group_1 = require("./group");
|
|
91
|
+
const groupAccessToken_1 = require("./groupAccessToken");
|
|
81
92
|
const groupBadge_1 = require("./groupBadge");
|
|
82
93
|
const groupCluster_1 = require("./groupCluster");
|
|
83
94
|
const groupCustomAttribute_1 = require("./groupCustomAttribute");
|
|
@@ -113,12 +124,16 @@ const serviceMicrosoftTeams_1 = require("./serviceMicrosoftTeams");
|
|
|
113
124
|
const servicePipelinesEmail_1 = require("./servicePipelinesEmail");
|
|
114
125
|
const serviceSlack_1 = require("./serviceSlack");
|
|
115
126
|
const tagProtection_1 = require("./tagProtection");
|
|
127
|
+
const topic_1 = require("./topic");
|
|
116
128
|
const user_1 = require("./user");
|
|
117
129
|
const userCustomAttribute_1 = require("./userCustomAttribute");
|
|
130
|
+
const userSshKey_1 = require("./userSshKey");
|
|
118
131
|
const _module = {
|
|
119
132
|
version: utilities.getVersion(),
|
|
120
133
|
construct: (name, type, urn) => {
|
|
121
134
|
switch (type) {
|
|
135
|
+
case "gitlab:index/branch:Branch":
|
|
136
|
+
return new branch_1.Branch(name, undefined, { urn });
|
|
122
137
|
case "gitlab:index/branchProtection:BranchProtection":
|
|
123
138
|
return new branchProtection_1.BranchProtection(name, undefined, { urn });
|
|
124
139
|
case "gitlab:index/deployKey:DeployKey":
|
|
@@ -129,6 +144,8 @@ const _module = {
|
|
|
129
144
|
return new deployToken_1.DeployToken(name, undefined, { urn });
|
|
130
145
|
case "gitlab:index/group:Group":
|
|
131
146
|
return new group_1.Group(name, undefined, { urn });
|
|
147
|
+
case "gitlab:index/groupAccessToken:GroupAccessToken":
|
|
148
|
+
return new groupAccessToken_1.GroupAccessToken(name, undefined, { urn });
|
|
132
149
|
case "gitlab:index/groupBadge:GroupBadge":
|
|
133
150
|
return new groupBadge_1.GroupBadge(name, undefined, { urn });
|
|
134
151
|
case "gitlab:index/groupCluster:GroupCluster":
|
|
@@ -199,20 +216,26 @@ const _module = {
|
|
|
199
216
|
return new serviceSlack_1.ServiceSlack(name, undefined, { urn });
|
|
200
217
|
case "gitlab:index/tagProtection:TagProtection":
|
|
201
218
|
return new tagProtection_1.TagProtection(name, undefined, { urn });
|
|
219
|
+
case "gitlab:index/topic:Topic":
|
|
220
|
+
return new topic_1.Topic(name, undefined, { urn });
|
|
202
221
|
case "gitlab:index/user:User":
|
|
203
222
|
return new user_1.User(name, undefined, { urn });
|
|
204
223
|
case "gitlab:index/userCustomAttribute:UserCustomAttribute":
|
|
205
224
|
return new userCustomAttribute_1.UserCustomAttribute(name, undefined, { urn });
|
|
225
|
+
case "gitlab:index/userSshKey:UserSshKey":
|
|
226
|
+
return new userSshKey_1.UserSshKey(name, undefined, { urn });
|
|
206
227
|
default:
|
|
207
228
|
throw new Error(`unknown resource type ${type}`);
|
|
208
229
|
}
|
|
209
230
|
},
|
|
210
231
|
};
|
|
232
|
+
pulumi.runtime.registerResourceModule("gitlab", "index/branch", _module);
|
|
211
233
|
pulumi.runtime.registerResourceModule("gitlab", "index/branchProtection", _module);
|
|
212
234
|
pulumi.runtime.registerResourceModule("gitlab", "index/deployKey", _module);
|
|
213
235
|
pulumi.runtime.registerResourceModule("gitlab", "index/deployKeyEnable", _module);
|
|
214
236
|
pulumi.runtime.registerResourceModule("gitlab", "index/deployToken", _module);
|
|
215
237
|
pulumi.runtime.registerResourceModule("gitlab", "index/group", _module);
|
|
238
|
+
pulumi.runtime.registerResourceModule("gitlab", "index/groupAccessToken", _module);
|
|
216
239
|
pulumi.runtime.registerResourceModule("gitlab", "index/groupBadge", _module);
|
|
217
240
|
pulumi.runtime.registerResourceModule("gitlab", "index/groupCluster", _module);
|
|
218
241
|
pulumi.runtime.registerResourceModule("gitlab", "index/groupCustomAttribute", _module);
|
|
@@ -248,8 +271,10 @@ pulumi.runtime.registerResourceModule("gitlab", "index/serviceMicrosoftTeams", _
|
|
|
248
271
|
pulumi.runtime.registerResourceModule("gitlab", "index/servicePipelinesEmail", _module);
|
|
249
272
|
pulumi.runtime.registerResourceModule("gitlab", "index/serviceSlack", _module);
|
|
250
273
|
pulumi.runtime.registerResourceModule("gitlab", "index/tagProtection", _module);
|
|
274
|
+
pulumi.runtime.registerResourceModule("gitlab", "index/topic", _module);
|
|
251
275
|
pulumi.runtime.registerResourceModule("gitlab", "index/user", _module);
|
|
252
276
|
pulumi.runtime.registerResourceModule("gitlab", "index/userCustomAttribute", _module);
|
|
277
|
+
pulumi.runtime.registerResourceModule("gitlab", "index/userSshKey", _module);
|
|
253
278
|
const provider_1 = require("./provider");
|
|
254
279
|
pulumi.runtime.registerResourcePackage("gitlab", {
|
|
255
280
|
version: utilities.getVersion(),
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/gitlab",
|
|
3
|
-
"version": "v4.
|
|
3
|
+
"version": "v4.6.0-alpha.1646407709+e97e15e3",
|
|
4
4
|
"description": "A Pulumi package for creating and managing GitLab resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsc",
|
|
14
|
-
"install": "node scripts/install-pulumi-plugin.js resource gitlab v4.
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource gitlab v4.6.0-alpha.1646407709+e97e15e3"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0",
|
package/package.json.dev
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/gitlab",
|
|
3
|
-
"version": "v4.
|
|
3
|
+
"version": "v4.6.0-alpha.1646407709+e97e15e3",
|
|
4
4
|
"description": "A Pulumi package for creating and managing GitLab resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsc",
|
|
14
|
-
"install": "node scripts/install-pulumi-plugin.js resource gitlab v4.
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource gitlab v4.6.0-alpha.1646407709+e97e15e3"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0",
|