@pulumi/gitlab 9.3.0-alpha.1759182301 → 9.3.0-alpha.1759184134
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/config/vars.d.ts +12 -0
- package/config/vars.js +18 -0
- package/config/vars.js.map +1 -1
- package/deployToken.d.ts +5 -3
- package/deployToken.js +2 -0
- package/deployToken.js.map +1 -1
- package/getBranch.d.ts +1 -1
- package/getClusterAgent.d.ts +3 -3
- package/getClusterAgent.js +2 -2
- package/getClusterAgents.d.ts +6 -6
- package/getClusterAgents.js +2 -2
- package/getCurrentUser.d.ts +1 -1
- package/getGroupHook.d.ts +4 -2
- package/getGroupHook.js.map +1 -1
- package/getGroupSamlLinks.d.ts +46 -0
- package/getGroupSamlLinks.js +32 -0
- package/getGroupSamlLinks.js.map +1 -0
- package/getInstanceDeployKeys.d.ts +1 -1
- package/getInstanceVariable.d.ts +7 -7
- package/getInstanceVariable.js +2 -2
- package/getInstanceVariables.d.ts +4 -4
- package/getInstanceVariables.js +2 -2
- package/getProjectBranches.d.ts +1 -1
- package/getProjectHook.d.ts +6 -4
- package/getProjectHook.js +2 -2
- package/getProjectHook.js.map +1 -1
- package/getProjectHooks.d.ts +1 -1
- package/getProjectMembership.d.ts +27 -7
- package/getProjectMembership.js +4 -6
- package/getProjectMembership.js.map +1 -1
- package/getProjectMilestone.d.ts +1 -1
- package/getProjectMilestones.d.ts +1 -1
- package/getProjectVariable.d.ts +12 -12
- package/getProjectVariables.d.ts +4 -4
- package/getReleaseLink.d.ts +4 -4
- package/getReleaseLink.js +2 -2
- package/getReleaseLinks.d.ts +4 -4
- package/getRepositoryFile.d.ts +1 -1
- package/getRepositoryTree.d.ts +1 -1
- package/getUser.d.ts +1 -1
- package/getUsers.d.ts +13 -1
- package/getUsers.js +2 -0
- package/getUsers.js.map +1 -1
- package/group.d.ts +3 -3
- package/groupDeployToken.d.ts +181 -0
- package/groupDeployToken.js +132 -0
- package/groupDeployToken.js.map +1 -0
- package/groupLevelMrApprovals.d.ts +140 -0
- package/groupLevelMrApprovals.js +93 -0
- package/groupLevelMrApprovals.js.map +1 -0
- package/groupShareGroup.d.ts +5 -3
- package/groupShareGroup.js +2 -0
- package/groupShareGroup.js.map +1 -1
- package/index.d.ts +15 -0
- package/index.js +28 -5
- package/index.js.map +1 -1
- package/instanceServiceAccount.d.ts +1 -1
- package/package.json +2 -2
- package/projectDeployToken.d.ts +181 -0
- package/projectDeployToken.js +132 -0
- package/projectDeployToken.js.map +1 -0
- package/projectEnvironment.d.ts +4 -4
- package/projectExternalStatusCheck.d.ts +158 -0
- package/projectExternalStatusCheck.js +121 -0
- package/projectExternalStatusCheck.js.map +1 -0
- package/projectFreezePeriod.d.ts +10 -10
- package/projectHook.d.ts +3 -3
- package/provider.d.ts +20 -0
- package/provider.js +3 -0
- package/provider.js.map +1 -1
- package/types/output.d.ts +38 -16
package/clusterAgentToken.d.ts
CHANGED
|
@@ -105,7 +105,7 @@ export declare class ClusterAgentToken extends pulumi.CustomResource {
|
|
|
105
105
|
/**
|
|
106
106
|
* The Description for the agent.
|
|
107
107
|
*/
|
|
108
|
-
readonly description: pulumi.Output<string
|
|
108
|
+
readonly description: pulumi.Output<string>;
|
|
109
109
|
/**
|
|
110
110
|
* The ISO8601 datetime when the token was last used.
|
|
111
111
|
*/
|
package/config/vars.d.ts
CHANGED
|
@@ -14,7 +14,19 @@ export declare const clientCert: string | undefined;
|
|
|
14
14
|
* File path to client key when GitLab instance is behind company proxy. File must contain PEM encoded data. Required when `clientCert` is set.
|
|
15
15
|
*/
|
|
16
16
|
export declare const clientKey: string | undefined;
|
|
17
|
+
/**
|
|
18
|
+
* The path to the configuration file to use. It may be sourced from the `GITLAB_CONFIG_FILE` environment variable.
|
|
19
|
+
*/
|
|
20
|
+
export declare const configFile: string | undefined;
|
|
21
|
+
/**
|
|
22
|
+
* The context to use for authentication and configuration. The context must exist in the configuration file. It may be sourced from the `GITLAB_CONTEXT` environment variable.
|
|
23
|
+
*/
|
|
24
|
+
export declare const context: string | undefined;
|
|
17
25
|
export declare const earlyAuthCheck: boolean | undefined;
|
|
26
|
+
/**
|
|
27
|
+
* If automatic CI support should be enabled or not. This only works when not providing a token.
|
|
28
|
+
*/
|
|
29
|
+
export declare const enableAutoCiSupport: boolean | undefined;
|
|
18
30
|
/**
|
|
19
31
|
* A map of headers to append to all API request to the GitLab instance.
|
|
20
32
|
*/
|
package/config/vars.js
CHANGED
|
@@ -28,12 +28,30 @@ Object.defineProperty(exports, "clientKey", {
|
|
|
28
28
|
},
|
|
29
29
|
enumerable: true,
|
|
30
30
|
});
|
|
31
|
+
Object.defineProperty(exports, "configFile", {
|
|
32
|
+
get() {
|
|
33
|
+
return __config.get("configFile");
|
|
34
|
+
},
|
|
35
|
+
enumerable: true,
|
|
36
|
+
});
|
|
37
|
+
Object.defineProperty(exports, "context", {
|
|
38
|
+
get() {
|
|
39
|
+
return __config.get("context");
|
|
40
|
+
},
|
|
41
|
+
enumerable: true,
|
|
42
|
+
});
|
|
31
43
|
Object.defineProperty(exports, "earlyAuthCheck", {
|
|
32
44
|
get() {
|
|
33
45
|
return __config.getObject("earlyAuthCheck");
|
|
34
46
|
},
|
|
35
47
|
enumerable: true,
|
|
36
48
|
});
|
|
49
|
+
Object.defineProperty(exports, "enableAutoCiSupport", {
|
|
50
|
+
get() {
|
|
51
|
+
return __config.getObject("enableAutoCiSupport");
|
|
52
|
+
},
|
|
53
|
+
enumerable: true,
|
|
54
|
+
});
|
|
37
55
|
Object.defineProperty(exports, "headers", {
|
|
38
56
|
get() {
|
|
39
57
|
return __config.getObject("headers");
|
package/config/vars.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vars.js","sourceRoot":"","sources":["../../config/vars.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;AAEjF,yCAAyC;AAIzC,MAAM,QAAQ,GAAG,IAAI,MAAM,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;AAM7C,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,SAAS,EAAE;IACtC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC;IACnC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAMH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE;IACzC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,YAAY,CAAC,CAAC;IACtC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAMH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE;IACzC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,YAAY,CAAC,CAAC;IACtC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAMH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,WAAW,EAAE;IACxC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC;IACrC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,gBAAgB,EAAE;IAC7C,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAAU,gBAAgB,CAAC,CAAC;IACzD,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAMH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,SAAS,EAAE;IACtC,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAA0B,SAAS,CAAC,CAAC;IAClE,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAMH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,UAAU,EAAE;IACvC,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAAU,UAAU,CAAC,CAAC;IACnD,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAMH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,SAAS,EAAE;IACtC,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAAS,SAAS,CAAC,CAAC;IACjD,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAMH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,OAAO,EAAE;IACpC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;IACjC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC"}
|
|
1
|
+
{"version":3,"file":"vars.js","sourceRoot":"","sources":["../../config/vars.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;AAEjF,yCAAyC;AAIzC,MAAM,QAAQ,GAAG,IAAI,MAAM,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;AAM7C,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,SAAS,EAAE;IACtC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC;IACnC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAMH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE;IACzC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,YAAY,CAAC,CAAC;IACtC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAMH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE;IACzC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,YAAY,CAAC,CAAC;IACtC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAMH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,WAAW,EAAE;IACxC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC;IACrC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAMH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE;IACzC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,YAAY,CAAC,CAAC;IACtC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAMH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,SAAS,EAAE;IACtC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC;IACnC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,gBAAgB,EAAE;IAC7C,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAAU,gBAAgB,CAAC,CAAC;IACzD,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAMH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,qBAAqB,EAAE;IAClD,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAAU,qBAAqB,CAAC,CAAC;IAC9D,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAMH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,SAAS,EAAE;IACtC,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAA0B,SAAS,CAAC,CAAC;IAClE,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAMH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,UAAU,EAAE;IACvC,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAAU,UAAU,CAAC,CAAC;IACnD,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAMH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,SAAS,EAAE;IACtC,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAAS,SAAS,CAAC,CAAC;IACjD,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAMH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,OAAO,EAAE;IACpC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;IACjC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC"}
|
package/deployToken.d.ts
CHANGED
|
@@ -2,6 +2,8 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
/**
|
|
3
3
|
* The `gitlab.DeployToken` resource allows to manage the lifecycle of group and project deploy tokens.
|
|
4
4
|
*
|
|
5
|
+
* > This resource is deprecated and will be removed in 19.0. Use `gitlab.ProjectDeployToken` or `gitlab.GroupDeployToken` instead!
|
|
6
|
+
*
|
|
5
7
|
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/deploy_tokens/)
|
|
6
8
|
*
|
|
7
9
|
* ## Import
|
|
@@ -69,7 +71,7 @@ export declare class DeployToken extends pulumi.CustomResource {
|
|
|
69
71
|
*/
|
|
70
72
|
readonly project: pulumi.Output<string | undefined>;
|
|
71
73
|
/**
|
|
72
|
-
* Valid values: `readRepository`, `readRegistry`, `
|
|
74
|
+
* The scopes of the deploy token. Valid values are: `readRepository`, `readRegistry`, `writeRegistry`, `readVirtualRegistry`, `writeVirtualRegistry`, `readPackageRegistry`, `writePackageRegistry`
|
|
73
75
|
*/
|
|
74
76
|
readonly scopes: pulumi.Output<string[]>;
|
|
75
77
|
/**
|
|
@@ -114,7 +116,7 @@ export interface DeployTokenState {
|
|
|
114
116
|
*/
|
|
115
117
|
project?: pulumi.Input<string>;
|
|
116
118
|
/**
|
|
117
|
-
* Valid values: `readRepository`, `readRegistry`, `
|
|
119
|
+
* The scopes of the deploy token. Valid values are: `readRepository`, `readRegistry`, `writeRegistry`, `readVirtualRegistry`, `writeVirtualRegistry`, `readPackageRegistry`, `writePackageRegistry`
|
|
118
120
|
*/
|
|
119
121
|
scopes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
120
122
|
/**
|
|
@@ -147,7 +149,7 @@ export interface DeployTokenArgs {
|
|
|
147
149
|
*/
|
|
148
150
|
project?: pulumi.Input<string>;
|
|
149
151
|
/**
|
|
150
|
-
* Valid values: `readRepository`, `readRegistry`, `
|
|
152
|
+
* The scopes of the deploy token. Valid values are: `readRepository`, `readRegistry`, `writeRegistry`, `readVirtualRegistry`, `writeVirtualRegistry`, `readPackageRegistry`, `writePackageRegistry`
|
|
151
153
|
*/
|
|
152
154
|
scopes: pulumi.Input<pulumi.Input<string>[]>;
|
|
153
155
|
/**
|
package/deployToken.js
CHANGED
|
@@ -8,6 +8,8 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* The `gitlab.DeployToken` resource allows to manage the lifecycle of group and project deploy tokens.
|
|
10
10
|
*
|
|
11
|
+
* > This resource is deprecated and will be removed in 19.0. Use `gitlab.ProjectDeployToken` or `gitlab.GroupDeployToken` instead!
|
|
12
|
+
*
|
|
11
13
|
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/deploy_tokens/)
|
|
12
14
|
*
|
|
13
15
|
* ## Import
|
package/deployToken.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"deployToken.js","sourceRoot":"","sources":["../deployToken.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"deployToken.js","sourceRoot":"","sources":["../deployToken.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;IAClD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwB,EAAE,IAAmC;QACtH,OAAO,IAAI,WAAW,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAClE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,WAAW,CAAC,YAAY,CAAC;IAC5D,CAAC;IA2CD,YAAY,IAAY,EAAE,WAAgD,EAAE,IAAmC;QAC3G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA2C,CAAC;YAC1D,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,EAAE,aAAa,CAAC;YACvD,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;YACvC,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;YACvC,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;SAChD;aAAM;YACH,MAAM,IAAI,GAAG,WAA0C,CAAC;YACxD,IAAI,IAAI,EAAE,MAAM,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACzC,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;aACzD;YACD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,EAAE,KAAK,CAAC;YACtC,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;YAC1C,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;YACxC,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,eAAe,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACpD,cAAc,CAAC,OAAO,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAC/C;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,UAAU,GAAG,EAAE,uBAAuB,EAAE,CAAC,OAAO,CAAC,EAAE,CAAC;QAC1D,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;QAC7C,KAAK,CAAC,WAAW,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAChE,CAAC;;AApGL,kCAqGC;AAvFG,gBAAgB;AACO,wBAAY,GAAG,sCAAsC,CAAC"}
|
package/getBranch.d.ts
CHANGED
package/getClusterAgent.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
-
* The `gitlab.ClusterAgent` data source
|
|
3
|
+
* The `gitlab.ClusterAgent` data source retrieves details about a GitLab Agent for Kubernetes.
|
|
4
4
|
*
|
|
5
5
|
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/cluster_agents/)
|
|
6
6
|
*
|
|
@@ -47,7 +47,7 @@ export interface GetClusterAgentResult {
|
|
|
47
47
|
*/
|
|
48
48
|
readonly createdByUserId: number;
|
|
49
49
|
/**
|
|
50
|
-
* The
|
|
50
|
+
* The ID of this data source. In the format project:agent_id
|
|
51
51
|
*/
|
|
52
52
|
readonly id: string;
|
|
53
53
|
/**
|
|
@@ -60,7 +60,7 @@ export interface GetClusterAgentResult {
|
|
|
60
60
|
readonly project: string;
|
|
61
61
|
}
|
|
62
62
|
/**
|
|
63
|
-
* The `gitlab.ClusterAgent` data source
|
|
63
|
+
* The `gitlab.ClusterAgent` data source retrieves details about a GitLab Agent for Kubernetes.
|
|
64
64
|
*
|
|
65
65
|
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/cluster_agents/)
|
|
66
66
|
*
|
package/getClusterAgent.js
CHANGED
|
@@ -6,7 +6,7 @@ exports.getClusterAgentOutput = exports.getClusterAgent = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* The `gitlab.ClusterAgent` data source
|
|
9
|
+
* The `gitlab.ClusterAgent` data source retrieves details about a GitLab Agent for Kubernetes.
|
|
10
10
|
*
|
|
11
11
|
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/cluster_agents/)
|
|
12
12
|
*
|
|
@@ -31,7 +31,7 @@ function getClusterAgent(args, opts) {
|
|
|
31
31
|
}
|
|
32
32
|
exports.getClusterAgent = getClusterAgent;
|
|
33
33
|
/**
|
|
34
|
-
* The `gitlab.ClusterAgent` data source
|
|
34
|
+
* The `gitlab.ClusterAgent` data source retrieves details about a GitLab Agent for Kubernetes.
|
|
35
35
|
*
|
|
36
36
|
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/cluster_agents/)
|
|
37
37
|
*
|
package/getClusterAgents.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import * as outputs from "./types/output";
|
|
3
3
|
/**
|
|
4
|
-
* The `gitlab.getClusterAgents` data source
|
|
4
|
+
* The `gitlab.getClusterAgents` data source retrieves details of GitLab Agents for Kubernetes in a project.
|
|
5
5
|
*
|
|
6
6
|
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/cluster_agents/)
|
|
7
7
|
*
|
|
@@ -22,7 +22,7 @@ export declare function getClusterAgents(args: GetClusterAgentsArgs, opts?: pulu
|
|
|
22
22
|
*/
|
|
23
23
|
export interface GetClusterAgentsArgs {
|
|
24
24
|
/**
|
|
25
|
-
*
|
|
25
|
+
* ID or full path of the project maintained by the authenticated user.
|
|
26
26
|
*/
|
|
27
27
|
project: string;
|
|
28
28
|
}
|
|
@@ -35,16 +35,16 @@ export interface GetClusterAgentsResult {
|
|
|
35
35
|
*/
|
|
36
36
|
readonly clusterAgents: outputs.GetClusterAgentsClusterAgent[];
|
|
37
37
|
/**
|
|
38
|
-
* The
|
|
38
|
+
* The ID of this data source. In the format \n\n
|
|
39
39
|
*/
|
|
40
40
|
readonly id: string;
|
|
41
41
|
/**
|
|
42
|
-
*
|
|
42
|
+
* ID or full path of the project maintained by the authenticated user.
|
|
43
43
|
*/
|
|
44
44
|
readonly project: string;
|
|
45
45
|
}
|
|
46
46
|
/**
|
|
47
|
-
* The `gitlab.getClusterAgents` data source
|
|
47
|
+
* The `gitlab.getClusterAgents` data source retrieves details of GitLab Agents for Kubernetes in a project.
|
|
48
48
|
*
|
|
49
49
|
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/cluster_agents/)
|
|
50
50
|
*
|
|
@@ -65,7 +65,7 @@ export declare function getClusterAgentsOutput(args: GetClusterAgentsOutputArgs,
|
|
|
65
65
|
*/
|
|
66
66
|
export interface GetClusterAgentsOutputArgs {
|
|
67
67
|
/**
|
|
68
|
-
*
|
|
68
|
+
* ID or full path of the project maintained by the authenticated user.
|
|
69
69
|
*/
|
|
70
70
|
project: pulumi.Input<string>;
|
|
71
71
|
}
|
package/getClusterAgents.js
CHANGED
|
@@ -6,7 +6,7 @@ exports.getClusterAgentsOutput = exports.getClusterAgents = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* The `gitlab.getClusterAgents` data source
|
|
9
|
+
* The `gitlab.getClusterAgents` data source retrieves details of GitLab Agents for Kubernetes in a project.
|
|
10
10
|
*
|
|
11
11
|
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/cluster_agents/)
|
|
12
12
|
*
|
|
@@ -29,7 +29,7 @@ function getClusterAgents(args, opts) {
|
|
|
29
29
|
}
|
|
30
30
|
exports.getClusterAgents = getClusterAgents;
|
|
31
31
|
/**
|
|
32
|
-
* The `gitlab.getClusterAgents` data source
|
|
32
|
+
* The `gitlab.getClusterAgents` data source retrieves details of GitLab Agents for Kubernetes in a project.
|
|
33
33
|
*
|
|
34
34
|
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/cluster_agents/)
|
|
35
35
|
*
|
package/getCurrentUser.d.ts
CHANGED
package/getGroupHook.d.ts
CHANGED
|
@@ -59,7 +59,7 @@ export interface GetGroupHookResult {
|
|
|
59
59
|
*/
|
|
60
60
|
readonly hookId: number;
|
|
61
61
|
/**
|
|
62
|
-
* The
|
|
62
|
+
* The ID of this data source. In the format `<group:hook_id>`.
|
|
63
63
|
*/
|
|
64
64
|
readonly id: string;
|
|
65
65
|
/**
|
|
@@ -103,7 +103,9 @@ export interface GetGroupHookResult {
|
|
|
103
103
|
*/
|
|
104
104
|
readonly tagPushEvents: boolean;
|
|
105
105
|
/**
|
|
106
|
-
* A token to present when invoking the hook. The token is not available
|
|
106
|
+
* A token to present when invoking the hook. The token is not available in this datasource.
|
|
107
|
+
*
|
|
108
|
+
* @deprecated The token is only available on resource creation, not in this datasource. It will always be blank. To be removed in 19.0.
|
|
107
109
|
*/
|
|
108
110
|
readonly token: string;
|
|
109
111
|
/**
|
package/getGroupHook.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getGroupHook.js","sourceRoot":"","sources":["../getGroupHook.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;GAIG;AACH,SAAgB,YAAY,CAAC,IAAsB,EAAE,IAA2B;IAC5E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wCAAwC,EAAE;QACnE,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,oCAMC;
|
|
1
|
+
{"version":3,"file":"getGroupHook.js","sourceRoot":"","sources":["../getGroupHook.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;GAIG;AACH,SAAgB,YAAY,CAAC,IAAsB,EAAE,IAA2B;IAC5E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wCAAwC,EAAE;QACnE,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,oCAMC;AAmHD;;;;GAIG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAAiC;IAC9F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,wCAAwC,EAAE;QACzE,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,gDAMC"}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "./types/output";
|
|
3
|
+
/**
|
|
4
|
+
* The `gitlab.getGroupSamlLinks` data source retrieves all SAML links for a specified group.
|
|
5
|
+
*
|
|
6
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/saml/#saml-group-links)
|
|
7
|
+
*/
|
|
8
|
+
export declare function getGroupSamlLinks(args: GetGroupSamlLinksArgs, opts?: pulumi.InvokeOptions): Promise<GetGroupSamlLinksResult>;
|
|
9
|
+
/**
|
|
10
|
+
* A collection of arguments for invoking getGroupSamlLinks.
|
|
11
|
+
*/
|
|
12
|
+
export interface GetGroupSamlLinksArgs {
|
|
13
|
+
/**
|
|
14
|
+
* The name or id of the group.
|
|
15
|
+
*/
|
|
16
|
+
group: string;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* A collection of values returned by getGroupSamlLinks.
|
|
20
|
+
*/
|
|
21
|
+
export interface GetGroupSamlLinksResult {
|
|
22
|
+
/**
|
|
23
|
+
* The name or id of the group.
|
|
24
|
+
*/
|
|
25
|
+
readonly group: string;
|
|
26
|
+
readonly id: string;
|
|
27
|
+
/**
|
|
28
|
+
* The list of group SAML links returned by the search
|
|
29
|
+
*/
|
|
30
|
+
readonly samlLinks: outputs.GetGroupSamlLinksSamlLink[];
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* The `gitlab.getGroupSamlLinks` data source retrieves all SAML links for a specified group.
|
|
34
|
+
*
|
|
35
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/saml/#saml-group-links)
|
|
36
|
+
*/
|
|
37
|
+
export declare function getGroupSamlLinksOutput(args: GetGroupSamlLinksOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetGroupSamlLinksResult>;
|
|
38
|
+
/**
|
|
39
|
+
* A collection of arguments for invoking getGroupSamlLinks.
|
|
40
|
+
*/
|
|
41
|
+
export interface GetGroupSamlLinksOutputArgs {
|
|
42
|
+
/**
|
|
43
|
+
* The name or id of the group.
|
|
44
|
+
*/
|
|
45
|
+
group: pulumi.Input<string>;
|
|
46
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
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.getGroupSamlLinksOutput = exports.getGroupSamlLinks = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* The `gitlab.getGroupSamlLinks` data source retrieves all SAML links for a specified group.
|
|
10
|
+
*
|
|
11
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/saml/#saml-group-links)
|
|
12
|
+
*/
|
|
13
|
+
function getGroupSamlLinks(args, opts) {
|
|
14
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
15
|
+
return pulumi.runtime.invoke("gitlab:index/getGroupSamlLinks:getGroupSamlLinks", {
|
|
16
|
+
"group": args.group,
|
|
17
|
+
}, opts);
|
|
18
|
+
}
|
|
19
|
+
exports.getGroupSamlLinks = getGroupSamlLinks;
|
|
20
|
+
/**
|
|
21
|
+
* The `gitlab.getGroupSamlLinks` data source retrieves all SAML links for a specified group.
|
|
22
|
+
*
|
|
23
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/saml/#saml-group-links)
|
|
24
|
+
*/
|
|
25
|
+
function getGroupSamlLinksOutput(args, opts) {
|
|
26
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
27
|
+
return pulumi.runtime.invokeOutput("gitlab:index/getGroupSamlLinks:getGroupSamlLinks", {
|
|
28
|
+
"group": args.group,
|
|
29
|
+
}, opts);
|
|
30
|
+
}
|
|
31
|
+
exports.getGroupSamlLinksOutput = getGroupSamlLinksOutput;
|
|
32
|
+
//# sourceMappingURL=getGroupSamlLinks.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getGroupSamlLinks.js","sourceRoot":"","sources":["../getGroupSamlLinks.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;GAIG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAA2B;IACtF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kDAAkD,EAAE;QAC7E,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,8CAKC;AA0BD;;;;GAIG;AACH,SAAgB,uBAAuB,CAAC,IAAiC,EAAE,IAAiC;IACxG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,kDAAkD,EAAE;QACnF,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,0DAKC"}
|
|
@@ -26,7 +26,7 @@ export interface GetInstanceDeployKeysResult {
|
|
|
26
26
|
*/
|
|
27
27
|
readonly deployKeys: outputs.GetInstanceDeployKeysDeployKey[];
|
|
28
28
|
/**
|
|
29
|
-
* The
|
|
29
|
+
* The ID of this datasource. In the format `<public>`.
|
|
30
30
|
*/
|
|
31
31
|
readonly id: string;
|
|
32
32
|
/**
|
package/getInstanceVariable.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
-
* The `gitlab.InstanceVariable` data source
|
|
3
|
+
* The `gitlab.InstanceVariable` data source retrieves details about an instance-level CI/CD variable.
|
|
4
4
|
*
|
|
5
5
|
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/instance_level_ci_variables/)
|
|
6
6
|
*
|
|
@@ -34,7 +34,7 @@ export interface GetInstanceVariableResult {
|
|
|
34
34
|
*/
|
|
35
35
|
readonly description: string;
|
|
36
36
|
/**
|
|
37
|
-
* The
|
|
37
|
+
* The ID of this datasource. In the format `<key>`.
|
|
38
38
|
*/
|
|
39
39
|
readonly id: string;
|
|
40
40
|
/**
|
|
@@ -42,15 +42,15 @@ export interface GetInstanceVariableResult {
|
|
|
42
42
|
*/
|
|
43
43
|
readonly key: string;
|
|
44
44
|
/**
|
|
45
|
-
* If set to `true`, the value of the variable will be hidden in job logs.
|
|
45
|
+
* If set to `true`, the value of the variable will be hidden in job logs.
|
|
46
46
|
*/
|
|
47
47
|
readonly masked: boolean;
|
|
48
48
|
/**
|
|
49
|
-
* If set to `true`, the variable will be passed only to pipelines running on protected branches and tags.
|
|
49
|
+
* If set to `true`, the variable will be passed only to pipelines running on protected branches and tags.
|
|
50
50
|
*/
|
|
51
51
|
readonly protected: boolean;
|
|
52
52
|
/**
|
|
53
|
-
*
|
|
53
|
+
* If set to `true`, the variable will be treated as a raw string.
|
|
54
54
|
*/
|
|
55
55
|
readonly raw: boolean;
|
|
56
56
|
/**
|
|
@@ -58,12 +58,12 @@ export interface GetInstanceVariableResult {
|
|
|
58
58
|
*/
|
|
59
59
|
readonly value: string;
|
|
60
60
|
/**
|
|
61
|
-
* The type of
|
|
61
|
+
* The type of the variable, either `envVar` or `file`.
|
|
62
62
|
*/
|
|
63
63
|
readonly variableType: string;
|
|
64
64
|
}
|
|
65
65
|
/**
|
|
66
|
-
* The `gitlab.InstanceVariable` data source
|
|
66
|
+
* The `gitlab.InstanceVariable` data source retrieves details about an instance-level CI/CD variable.
|
|
67
67
|
*
|
|
68
68
|
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/instance_level_ci_variables/)
|
|
69
69
|
*
|
package/getInstanceVariable.js
CHANGED
|
@@ -6,7 +6,7 @@ exports.getInstanceVariableOutput = exports.getInstanceVariable = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* The `gitlab.InstanceVariable` data source
|
|
9
|
+
* The `gitlab.InstanceVariable` data source retrieves details about an instance-level CI/CD variable.
|
|
10
10
|
*
|
|
11
11
|
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/instance_level_ci_variables/)
|
|
12
12
|
*
|
|
@@ -29,7 +29,7 @@ function getInstanceVariable(args, opts) {
|
|
|
29
29
|
}
|
|
30
30
|
exports.getInstanceVariable = getInstanceVariable;
|
|
31
31
|
/**
|
|
32
|
-
* The `gitlab.InstanceVariable` data source
|
|
32
|
+
* The `gitlab.InstanceVariable` data source retrieves details about an instance-level CI/CD variable.
|
|
33
33
|
*
|
|
34
34
|
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/instance_level_ci_variables/)
|
|
35
35
|
*
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import * as outputs from "./types/output";
|
|
3
3
|
/**
|
|
4
|
-
* The `gitlab.getInstanceVariables` data source
|
|
4
|
+
* The `gitlab.getInstanceVariables` data source retrieves all instance-level CI/CD variables.
|
|
5
5
|
*
|
|
6
6
|
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/instance_level_ci_variables/)
|
|
7
7
|
*
|
|
@@ -20,16 +20,16 @@ export declare function getInstanceVariables(opts?: pulumi.InvokeOptions): Promi
|
|
|
20
20
|
*/
|
|
21
21
|
export interface GetInstanceVariablesResult {
|
|
22
22
|
/**
|
|
23
|
-
* The
|
|
23
|
+
* The ID of this datasource. In the hardcoded format `instanceVariables`.
|
|
24
24
|
*/
|
|
25
25
|
readonly id: string;
|
|
26
26
|
/**
|
|
27
|
-
* The list of variables returned by the search
|
|
27
|
+
* The list of variables returned by the search.
|
|
28
28
|
*/
|
|
29
29
|
readonly variables: outputs.GetInstanceVariablesVariable[];
|
|
30
30
|
}
|
|
31
31
|
/**
|
|
32
|
-
* The `gitlab.getInstanceVariables` data source
|
|
32
|
+
* The `gitlab.getInstanceVariables` data source retrieves all instance-level CI/CD variables.
|
|
33
33
|
*
|
|
34
34
|
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/instance_level_ci_variables/)
|
|
35
35
|
*
|
package/getInstanceVariables.js
CHANGED
|
@@ -6,7 +6,7 @@ exports.getInstanceVariablesOutput = exports.getInstanceVariables = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* The `gitlab.getInstanceVariables` data source
|
|
9
|
+
* The `gitlab.getInstanceVariables` data source retrieves all instance-level CI/CD variables.
|
|
10
10
|
*
|
|
11
11
|
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/instance_level_ci_variables/)
|
|
12
12
|
*
|
|
@@ -25,7 +25,7 @@ function getInstanceVariables(opts) {
|
|
|
25
25
|
}
|
|
26
26
|
exports.getInstanceVariables = getInstanceVariables;
|
|
27
27
|
/**
|
|
28
|
-
* The `gitlab.getInstanceVariables` data source
|
|
28
|
+
* The `gitlab.getInstanceVariables` data source retrieves all instance-level CI/CD variables.
|
|
29
29
|
*
|
|
30
30
|
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/instance_level_ci_variables/)
|
|
31
31
|
*
|
package/getProjectBranches.d.ts
CHANGED
|
@@ -24,7 +24,7 @@ export interface GetProjectBranchesResult {
|
|
|
24
24
|
*/
|
|
25
25
|
readonly branches: outputs.GetProjectBranchesBranch[];
|
|
26
26
|
/**
|
|
27
|
-
* The
|
|
27
|
+
* The ID of this datasource. In the format `<project>`.
|
|
28
28
|
*/
|
|
29
29
|
readonly id: string;
|
|
30
30
|
/**
|
package/getProjectHook.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
-
* The `gitlab.ProjectHook` data source
|
|
3
|
+
* The `gitlab.ProjectHook` data source retrieves details about a hook in a project.
|
|
4
4
|
*
|
|
5
5
|
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/project_webhooks/#get-a-project-webhook)
|
|
6
6
|
*
|
|
@@ -62,7 +62,7 @@ export interface GetProjectHookResult {
|
|
|
62
62
|
*/
|
|
63
63
|
readonly hookId: number;
|
|
64
64
|
/**
|
|
65
|
-
* The
|
|
65
|
+
* The ID of this datasource. In the format `<project>:<hook-id>`.
|
|
66
66
|
*/
|
|
67
67
|
readonly id: string;
|
|
68
68
|
/**
|
|
@@ -110,7 +110,9 @@ export interface GetProjectHookResult {
|
|
|
110
110
|
*/
|
|
111
111
|
readonly tagPushEvents: boolean;
|
|
112
112
|
/**
|
|
113
|
-
* A token to present when invoking the hook. The token is not available
|
|
113
|
+
* A token to present when invoking the hook. The token is not available in this datasource.
|
|
114
|
+
*
|
|
115
|
+
* @deprecated The token is only available on resource creation, not in this datasource. It will always be blank.
|
|
114
116
|
*/
|
|
115
117
|
readonly token: string;
|
|
116
118
|
/**
|
|
@@ -123,7 +125,7 @@ export interface GetProjectHookResult {
|
|
|
123
125
|
readonly wikiPageEvents: boolean;
|
|
124
126
|
}
|
|
125
127
|
/**
|
|
126
|
-
* The `gitlab.ProjectHook` data source
|
|
128
|
+
* The `gitlab.ProjectHook` data source retrieves details about a hook in a project.
|
|
127
129
|
*
|
|
128
130
|
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/project_webhooks/#get-a-project-webhook)
|
|
129
131
|
*
|
package/getProjectHook.js
CHANGED
|
@@ -6,7 +6,7 @@ exports.getProjectHookOutput = exports.getProjectHook = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* The `gitlab.ProjectHook` data source
|
|
9
|
+
* The `gitlab.ProjectHook` data source retrieves details about a hook in a project.
|
|
10
10
|
*
|
|
11
11
|
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/project_webhooks/#get-a-project-webhook)
|
|
12
12
|
*
|
|
@@ -34,7 +34,7 @@ function getProjectHook(args, opts) {
|
|
|
34
34
|
}
|
|
35
35
|
exports.getProjectHook = getProjectHook;
|
|
36
36
|
/**
|
|
37
|
-
* The `gitlab.ProjectHook` data source
|
|
37
|
+
* The `gitlab.ProjectHook` data source retrieves details about a hook in a project.
|
|
38
38
|
*
|
|
39
39
|
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/project_webhooks/#get-a-project-webhook)
|
|
40
40
|
*
|
package/getProjectHook.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getProjectHook.js","sourceRoot":"","sources":["../getProjectHook.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4CAA4C,EAAE;QACvE,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,wCAMC;
|
|
1
|
+
{"version":3,"file":"getProjectHook.js","sourceRoot":"","sources":["../getProjectHook.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4CAA4C,EAAE;QACvE,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,wCAMC;AA2GD;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAAiC;IAClG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,4CAA4C,EAAE;QAC7E,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,oDAMC"}
|
package/getProjectHooks.d.ts
CHANGED
|
@@ -38,7 +38,7 @@ export interface GetProjectHooksResult {
|
|
|
38
38
|
*/
|
|
39
39
|
readonly hooks: outputs.GetProjectHooksHook[];
|
|
40
40
|
/**
|
|
41
|
-
* The
|
|
41
|
+
* The ID of this datasource. In the format `<project>`.
|
|
42
42
|
*/
|
|
43
43
|
readonly id: string;
|
|
44
44
|
/**
|