@pulumi/gitlab 4.11.0-alpha.1684185983 → 5.0.0
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/README.md +2 -2
- package/application.d.ts +134 -0
- package/application.js +98 -0
- package/application.js.map +1 -0
- package/applicationSettings.d.ts +150 -138
- package/applicationSettings.js +2 -0
- package/applicationSettings.js.map +1 -1
- package/branch.d.ts +1 -1
- package/branch.js +1 -1
- package/config/vars.d.ts +4 -3
- package/config/vars.js.map +1 -1
- package/deployKey.d.ts +1 -1
- package/deployKey.js +1 -1
- package/deployKeyEnable.d.ts +1 -1
- package/deployKeyEnable.js +1 -1
- package/getApplication.d.ts +47 -0
- package/getApplication.js +29 -0
- package/getApplication.js.map +1 -0
- package/getGroupMembership.d.ts +12 -0
- package/getGroupMembership.js +1 -0
- package/getGroupMembership.js.map +1 -1
- package/getMetadata.d.ts +42 -0
- package/getMetadata.js +27 -0
- package/getMetadata.js.map +1 -0
- package/getProject.d.ts +43 -7
- package/getProject.js +2 -2
- package/getProject.js.map +1 -1
- package/getProjectIssue.d.ts +0 -1
- package/getProjectIssue.js.map +1 -1
- package/getProjectMilestone.d.ts +1 -1
- package/getProjects.d.ts +3 -3
- package/getRepositoryFile.d.ts +3 -3
- package/group.d.ts +59 -15
- package/group.js +8 -0
- package/group.js.map +1 -1
- package/groupMembership.d.ts +1 -1
- package/groupMembership.js +1 -1
- package/groupProjectFileTemplate.d.ts +21 -0
- package/groupProjectFileTemplate.js +21 -0
- package/groupProjectFileTemplate.js.map +1 -1
- package/index.d.ts +14 -0
- package/index.js +23 -3
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/pagesDomain.d.ts +167 -0
- package/pagesDomain.js +108 -0
- package/pagesDomain.js.map +1 -0
- package/personalAccessToken.d.ts +3 -3
- package/project.d.ts +272 -25
- package/project.js +69 -1
- package/project.js.map +1 -1
- package/projectApprovalRule.d.ts +12 -6
- package/projectApprovalRule.js +2 -6
- package/projectApprovalRule.js.map +1 -1
- package/projectIssue.d.ts +0 -3
- package/projectIssue.js.map +1 -1
- package/projectMembership.d.ts +1 -1
- package/projectMembership.js +1 -1
- package/projectMilestone.d.ts +2 -2
- package/projectProtectedEnvironment.d.ts +3 -3
- package/projectProtectedEnvironment.js +0 -3
- package/projectProtectedEnvironment.js.map +1 -1
- package/provider.d.ts +7 -6
- package/provider.js +3 -4
- package/provider.js.map +1 -1
- package/repositoryFile.d.ts +15 -3
- package/repositoryFile.js +2 -0
- package/repositoryFile.js.map +1 -1
- package/serviceCustomIssueTracker.d.ts +134 -0
- package/serviceCustomIssueTracker.js +100 -0
- package/serviceCustomIssueTracker.js.map +1 -0
- package/serviceMicrosoftTeams.d.ts +3 -3
- package/serviceSlack.d.ts +3 -3
- package/types/input.d.ts +8 -2
- package/types/output.d.ts +45 -9
- package/userGpgKey.d.ts +3 -3
- package/userSshKey.d.ts +2 -2
- package/userSshKey.js +2 -2
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
[](https://www.npmjs.com/package/@pulumi/gitlab)
|
|
4
4
|
[](https://pypi.org/project/pulumi-gitlab)
|
|
5
5
|
[](https://badge.fury.io/nu/pulumi.gitlab)
|
|
6
|
-
[](https://pkg.go.dev/github.com/pulumi/pulumi-gitlab/sdk/
|
|
6
|
+
[](https://pkg.go.dev/github.com/pulumi/pulumi-gitlab/sdk/v5/go)
|
|
7
7
|
[](https://github.com/pulumi/pulumi-gitlab/blob/master/LICENSE)
|
|
8
8
|
|
|
9
9
|
# GitLab provider
|
|
@@ -35,7 +35,7 @@ To use from Python, install using `pip`:
|
|
|
35
35
|
|
|
36
36
|
To use from Go, use `go get` to grab the latest version of the library
|
|
37
37
|
|
|
38
|
-
$ go get github.com/pulumi/pulumi-gitlab/sdk/
|
|
38
|
+
$ go get github.com/pulumi/pulumi-gitlab/sdk/v5
|
|
39
39
|
|
|
40
40
|
### .NET
|
|
41
41
|
|
package/application.d.ts
ADDED
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* The `gitlab.Application` resource allows to manage the lifecycle of applications in gitlab.
|
|
4
|
+
*
|
|
5
|
+
* > In order to use a user for a user to create an application, they must have admin privileges at the instance level.
|
|
6
|
+
* To create an OIDC application, a scope of "openid".
|
|
7
|
+
*
|
|
8
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/ee/api/applications.html)
|
|
9
|
+
*
|
|
10
|
+
* ## Example Usage
|
|
11
|
+
*
|
|
12
|
+
* ```typescript
|
|
13
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
14
|
+
* import * as gitlab from "@pulumi/gitlab";
|
|
15
|
+
*
|
|
16
|
+
* const oidc = new gitlab.Application("oidc", {
|
|
17
|
+
* confidential: true,
|
|
18
|
+
* redirectUrl: "https://mycompany.com",
|
|
19
|
+
* scopes: ["openid"],
|
|
20
|
+
* });
|
|
21
|
+
* ```
|
|
22
|
+
*
|
|
23
|
+
* ## Import
|
|
24
|
+
*
|
|
25
|
+
* Gitlab applications can be imported with their id, e.g.
|
|
26
|
+
*
|
|
27
|
+
* ```sh
|
|
28
|
+
* $ pulumi import gitlab:index/application:Application example "1"
|
|
29
|
+
* ```
|
|
30
|
+
*
|
|
31
|
+
* NOTEthe secret and scopes cannot be imported
|
|
32
|
+
*/
|
|
33
|
+
export declare class Application extends pulumi.CustomResource {
|
|
34
|
+
/**
|
|
35
|
+
* Get an existing Application resource's state with the given name, ID, and optional extra
|
|
36
|
+
* properties used to qualify the lookup.
|
|
37
|
+
*
|
|
38
|
+
* @param name The _unique_ name of the resulting resource.
|
|
39
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
40
|
+
* @param state Any extra arguments used during the lookup.
|
|
41
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
42
|
+
*/
|
|
43
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ApplicationState, opts?: pulumi.CustomResourceOptions): Application;
|
|
44
|
+
/**
|
|
45
|
+
* Returns true if the given object is an instance of Application. This is designed to work even
|
|
46
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
47
|
+
*/
|
|
48
|
+
static isInstance(obj: any): obj is Application;
|
|
49
|
+
/**
|
|
50
|
+
* Internal name of the application.
|
|
51
|
+
*/
|
|
52
|
+
readonly applicationId: pulumi.Output<string>;
|
|
53
|
+
/**
|
|
54
|
+
* The application is used where the client secret can be kept confidential. Native mobile apps and Single Page Apps are considered non-confidential. Defaults to true if not supplied
|
|
55
|
+
*/
|
|
56
|
+
readonly confidential: pulumi.Output<boolean>;
|
|
57
|
+
/**
|
|
58
|
+
* Name of the application.
|
|
59
|
+
*/
|
|
60
|
+
readonly name: pulumi.Output<string>;
|
|
61
|
+
/**
|
|
62
|
+
* The URL gitlab should send the user to after authentication.
|
|
63
|
+
*/
|
|
64
|
+
readonly redirectUrl: pulumi.Output<string>;
|
|
65
|
+
/**
|
|
66
|
+
* Scopes of the application. Use "openid" if you plan to use this as an oidc authentication application. Valid options are: `api`, `readApi`, `readUser`, `readRepository`, `writeRepository`, `readRegistry`, `writeRegistry`, `sudo`, `adminMode`, `openid`, `profile`, `email`.
|
|
67
|
+
* This is only populated when creating a new application. This attribute is not available for imported resources
|
|
68
|
+
*/
|
|
69
|
+
readonly scopes: pulumi.Output<string[]>;
|
|
70
|
+
/**
|
|
71
|
+
* Application secret. Sensitive and must be kept secret. This is only populated when creating a new application. This attribute is not available for imported resources.
|
|
72
|
+
*/
|
|
73
|
+
readonly secret: pulumi.Output<string>;
|
|
74
|
+
/**
|
|
75
|
+
* Create a Application resource with the given unique name, arguments, and options.
|
|
76
|
+
*
|
|
77
|
+
* @param name The _unique_ name of the resource.
|
|
78
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
79
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
80
|
+
*/
|
|
81
|
+
constructor(name: string, args: ApplicationArgs, opts?: pulumi.CustomResourceOptions);
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
* Input properties used for looking up and filtering Application resources.
|
|
85
|
+
*/
|
|
86
|
+
export interface ApplicationState {
|
|
87
|
+
/**
|
|
88
|
+
* Internal name of the application.
|
|
89
|
+
*/
|
|
90
|
+
applicationId?: pulumi.Input<string>;
|
|
91
|
+
/**
|
|
92
|
+
* The application is used where the client secret can be kept confidential. Native mobile apps and Single Page Apps are considered non-confidential. Defaults to true if not supplied
|
|
93
|
+
*/
|
|
94
|
+
confidential?: pulumi.Input<boolean>;
|
|
95
|
+
/**
|
|
96
|
+
* Name of the application.
|
|
97
|
+
*/
|
|
98
|
+
name?: pulumi.Input<string>;
|
|
99
|
+
/**
|
|
100
|
+
* The URL gitlab should send the user to after authentication.
|
|
101
|
+
*/
|
|
102
|
+
redirectUrl?: pulumi.Input<string>;
|
|
103
|
+
/**
|
|
104
|
+
* Scopes of the application. Use "openid" if you plan to use this as an oidc authentication application. Valid options are: `api`, `readApi`, `readUser`, `readRepository`, `writeRepository`, `readRegistry`, `writeRegistry`, `sudo`, `adminMode`, `openid`, `profile`, `email`.
|
|
105
|
+
* This is only populated when creating a new application. This attribute is not available for imported resources
|
|
106
|
+
*/
|
|
107
|
+
scopes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
108
|
+
/**
|
|
109
|
+
* Application secret. Sensitive and must be kept secret. This is only populated when creating a new application. This attribute is not available for imported resources.
|
|
110
|
+
*/
|
|
111
|
+
secret?: pulumi.Input<string>;
|
|
112
|
+
}
|
|
113
|
+
/**
|
|
114
|
+
* The set of arguments for constructing a Application resource.
|
|
115
|
+
*/
|
|
116
|
+
export interface ApplicationArgs {
|
|
117
|
+
/**
|
|
118
|
+
* The application is used where the client secret can be kept confidential. Native mobile apps and Single Page Apps are considered non-confidential. Defaults to true if not supplied
|
|
119
|
+
*/
|
|
120
|
+
confidential?: pulumi.Input<boolean>;
|
|
121
|
+
/**
|
|
122
|
+
* Name of the application.
|
|
123
|
+
*/
|
|
124
|
+
name?: pulumi.Input<string>;
|
|
125
|
+
/**
|
|
126
|
+
* The URL gitlab should send the user to after authentication.
|
|
127
|
+
*/
|
|
128
|
+
redirectUrl: pulumi.Input<string>;
|
|
129
|
+
/**
|
|
130
|
+
* Scopes of the application. Use "openid" if you plan to use this as an oidc authentication application. Valid options are: `api`, `readApi`, `readUser`, `readRepository`, `writeRepository`, `readRegistry`, `writeRegistry`, `sudo`, `adminMode`, `openid`, `profile`, `email`.
|
|
131
|
+
* This is only populated when creating a new application. This attribute is not available for imported resources
|
|
132
|
+
*/
|
|
133
|
+
scopes: pulumi.Input<pulumi.Input<string>[]>;
|
|
134
|
+
}
|
package/application.js
ADDED
|
@@ -0,0 +1,98 @@
|
|
|
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.Application = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* The `gitlab.Application` resource allows to manage the lifecycle of applications in gitlab.
|
|
10
|
+
*
|
|
11
|
+
* > In order to use a user for a user to create an application, they must have admin privileges at the instance level.
|
|
12
|
+
* To create an OIDC application, a scope of "openid".
|
|
13
|
+
*
|
|
14
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/ee/api/applications.html)
|
|
15
|
+
*
|
|
16
|
+
* ## Example Usage
|
|
17
|
+
*
|
|
18
|
+
* ```typescript
|
|
19
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
20
|
+
* import * as gitlab from "@pulumi/gitlab";
|
|
21
|
+
*
|
|
22
|
+
* const oidc = new gitlab.Application("oidc", {
|
|
23
|
+
* confidential: true,
|
|
24
|
+
* redirectUrl: "https://mycompany.com",
|
|
25
|
+
* scopes: ["openid"],
|
|
26
|
+
* });
|
|
27
|
+
* ```
|
|
28
|
+
*
|
|
29
|
+
* ## Import
|
|
30
|
+
*
|
|
31
|
+
* Gitlab applications can be imported with their id, e.g.
|
|
32
|
+
*
|
|
33
|
+
* ```sh
|
|
34
|
+
* $ pulumi import gitlab:index/application:Application example "1"
|
|
35
|
+
* ```
|
|
36
|
+
*
|
|
37
|
+
* NOTEthe secret and scopes cannot be imported
|
|
38
|
+
*/
|
|
39
|
+
class Application extends pulumi.CustomResource {
|
|
40
|
+
/**
|
|
41
|
+
* Get an existing Application resource's state with the given name, ID, and optional extra
|
|
42
|
+
* properties used to qualify the lookup.
|
|
43
|
+
*
|
|
44
|
+
* @param name The _unique_ name of the resulting resource.
|
|
45
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
46
|
+
* @param state Any extra arguments used during the lookup.
|
|
47
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
48
|
+
*/
|
|
49
|
+
static get(name, id, state, opts) {
|
|
50
|
+
return new Application(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* Returns true if the given object is an instance of Application. This is designed to work even
|
|
54
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
55
|
+
*/
|
|
56
|
+
static isInstance(obj) {
|
|
57
|
+
if (obj === undefined || obj === null) {
|
|
58
|
+
return false;
|
|
59
|
+
}
|
|
60
|
+
return obj['__pulumiType'] === Application.__pulumiType;
|
|
61
|
+
}
|
|
62
|
+
constructor(name, argsOrState, opts) {
|
|
63
|
+
let resourceInputs = {};
|
|
64
|
+
opts = opts || {};
|
|
65
|
+
if (opts.id) {
|
|
66
|
+
const state = argsOrState;
|
|
67
|
+
resourceInputs["applicationId"] = state ? state.applicationId : undefined;
|
|
68
|
+
resourceInputs["confidential"] = state ? state.confidential : undefined;
|
|
69
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
70
|
+
resourceInputs["redirectUrl"] = state ? state.redirectUrl : undefined;
|
|
71
|
+
resourceInputs["scopes"] = state ? state.scopes : undefined;
|
|
72
|
+
resourceInputs["secret"] = state ? state.secret : undefined;
|
|
73
|
+
}
|
|
74
|
+
else {
|
|
75
|
+
const args = argsOrState;
|
|
76
|
+
if ((!args || args.redirectUrl === undefined) && !opts.urn) {
|
|
77
|
+
throw new Error("Missing required property 'redirectUrl'");
|
|
78
|
+
}
|
|
79
|
+
if ((!args || args.scopes === undefined) && !opts.urn) {
|
|
80
|
+
throw new Error("Missing required property 'scopes'");
|
|
81
|
+
}
|
|
82
|
+
resourceInputs["confidential"] = args ? args.confidential : undefined;
|
|
83
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
84
|
+
resourceInputs["redirectUrl"] = args ? args.redirectUrl : undefined;
|
|
85
|
+
resourceInputs["scopes"] = args ? args.scopes : undefined;
|
|
86
|
+
resourceInputs["applicationId"] = undefined /*out*/;
|
|
87
|
+
resourceInputs["secret"] = undefined /*out*/;
|
|
88
|
+
}
|
|
89
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
90
|
+
const secretOpts = { additionalSecretOutputs: ["secret"] };
|
|
91
|
+
opts = pulumi.mergeOptions(opts, secretOpts);
|
|
92
|
+
super(Application.__pulumiType, name, resourceInputs, opts);
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
exports.Application = Application;
|
|
96
|
+
/** @internal */
|
|
97
|
+
Application.__pulumiType = 'gitlab:index/application:Application';
|
|
98
|
+
//# sourceMappingURL=application.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"application.js","sourceRoot":"","sources":["../application.ts"],"names":[],"mappings":"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"}
|