@pulumi/gitlab 9.6.0-alpha.1766429294 → 9.6.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/getArtifactFile.d.ts +2 -2
- package/getArtifactFile.js +2 -2
- package/getGroupBillableMemberMemberships.d.ts +2 -2
- package/getGroupBillableMemberMemberships.js +2 -2
- package/getGroupMembership.d.ts +2 -2
- package/getGroupMembership.js +2 -2
- package/getGroupServiceAccount.d.ts +2 -2
- package/getGroupServiceAccount.js +2 -2
- package/getGroupVariable.d.ts +1 -1
- package/getInstanceServiceAccount.d.ts +2 -2
- package/getInstanceServiceAccount.js +2 -2
- package/getProject.d.ts +0 -4
- package/getProject.js.map +1 -1
- package/getProjectMembership.d.ts +2 -2
- package/getProjectMembership.js +2 -2
- package/getProjectProtectedTag.d.ts +2 -2
- package/getProjectProtectedTag.js +2 -2
- package/getProjects.d.ts +3 -3
- package/getReleaseLink.d.ts +5 -5
- package/getReleaseLinks.d.ts +3 -3
- package/globalLevelNotifications.d.ts +1 -1
- package/globalLevelNotifications.js +1 -1
- package/groupAccessToken.d.ts +2 -2
- package/groupAccessToken.js +2 -2
- package/groupLabel.d.ts +3 -3
- package/groupMembership.d.ts +1 -1
- package/groupMembership.js +1 -1
- package/groupServiceAccount.d.ts +1 -1
- package/groupServiceAccount.js +1 -1
- package/groupServiceAccountAccessToken.d.ts +1 -1
- package/groupServiceAccountAccessToken.js +1 -1
- package/groupShareGroup.d.ts +1 -1
- package/groupShareGroup.js +1 -1
- package/index.d.ts +0 -15
- package/index.js +5 -23
- package/index.js.map +1 -1
- package/instanceServiceAccount.d.ts +1 -1
- package/instanceServiceAccount.js +1 -1
- package/instanceVariable.d.ts +8 -8
- package/label.d.ts +3 -3
- package/memberRole.d.ts +4 -4
- package/memberRole.js +1 -1
- package/package.json +2 -2
- package/pagesDomain.d.ts +3 -3
- package/personalAccessToken.d.ts +1 -1
- package/personalAccessToken.js +1 -1
- package/pipelineScheduleVariable.d.ts +1 -1
- package/pipelineScheduleVariable.js +1 -1
- package/project.d.ts +3 -15
- package/project.js +0 -2
- package/project.js.map +1 -1
- package/projectAccessToken.d.ts +1 -1
- package/projectAccessToken.js +1 -1
- package/projectDeployToken.d.ts +1 -1
- package/projectDeployToken.js +1 -1
- package/projectHook.d.ts +1 -1
- package/projectHook.js +1 -1
- package/projectLabel.d.ts +5 -5
- package/projectLabel.js +2 -2
- package/projectLevelMrApprovals.d.ts +1 -1
- package/projectLevelMrApprovals.js +1 -1
- package/projectLevelNotifications.d.ts +1 -1
- package/projectLevelNotifications.js +1 -1
- package/projectMembership.d.ts +1 -1
- package/projectMembership.js +1 -1
- package/projectTargetBranchRule.d.ts +1 -1
- package/projectTargetBranchRule.js +1 -1
- package/projectVariable.d.ts +3 -3
- package/releaseLink.d.ts +8 -8
- package/runner.d.ts +1 -1
- package/runner.js +1 -1
- package/systemHook.d.ts +3 -3
- package/types/input.d.ts +0 -224
- package/types/output.d.ts +4 -257
- package/userGpgKey.d.ts +1 -1
- package/userGpgKey.js +1 -1
- package/userImpersonationToken.d.ts +1 -1
- package/userImpersonationToken.js +1 -1
- package/userRunner.d.ts +1 -1
- package/userRunner.js +1 -1
- package/userSshKey.d.ts +1 -1
- package/userSshKey.js +1 -1
- package/getGroupServiceAccountAccessTokens.d.ts +0 -66
- package/getGroupServiceAccountAccessTokens.js +0 -42
- package/getGroupServiceAccountAccessTokens.js.map +0 -1
- package/getProjectIssueLabelEvents.d.ts +0 -94
- package/getProjectIssueLabelEvents.js +0 -60
- package/getProjectIssueLabelEvents.js.map +0 -1
- package/getProjectSecureFile.d.ts +0 -125
- package/getProjectSecureFile.js +0 -68
- package/getProjectSecureFile.js.map +0 -1
- package/getSecurityPolicyDocument.d.ts +0 -112
- package/getSecurityPolicyDocument.js +0 -96
- package/getSecurityPolicyDocument.js.map +0 -1
- package/userAvatar.d.ts +0 -126
- package/userAvatar.js +0 -99
- package/userAvatar.js.map +0 -1
package/getArtifactFile.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
3
|
* The `gitlab.getArtifactFile` data source allows downloading a single artifact file from a specific job in the latest successful pipeline for a given reference (branch, tag, or commit).
|
|
4
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/job_artifacts
|
|
4
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/ee/api/job_artifacts.html#download-a-single-artifact-file-from-specific-tag-or-branch)
|
|
5
5
|
*
|
|
6
6
|
* ## Example Usage
|
|
7
7
|
*
|
|
@@ -107,7 +107,7 @@ export interface GetArtifactFileResult {
|
|
|
107
107
|
}
|
|
108
108
|
/**
|
|
109
109
|
* The `gitlab.getArtifactFile` data source allows downloading a single artifact file from a specific job in the latest successful pipeline for a given reference (branch, tag, or commit).
|
|
110
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/job_artifacts
|
|
110
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/ee/api/job_artifacts.html#download-a-single-artifact-file-from-specific-tag-or-branch)
|
|
111
111
|
*
|
|
112
112
|
* ## Example Usage
|
|
113
113
|
*
|
package/getArtifactFile.js
CHANGED
|
@@ -7,7 +7,7 @@ const pulumi = require("@pulumi/pulumi");
|
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
9
|
* The `gitlab.getArtifactFile` data source allows downloading a single artifact file from a specific job in the latest successful pipeline for a given reference (branch, tag, or commit).
|
|
10
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/job_artifacts
|
|
10
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/ee/api/job_artifacts.html#download-a-single-artifact-file-from-specific-tag-or-branch)
|
|
11
11
|
*
|
|
12
12
|
* ## Example Usage
|
|
13
13
|
*
|
|
@@ -61,7 +61,7 @@ function getArtifactFile(args, opts) {
|
|
|
61
61
|
exports.getArtifactFile = getArtifactFile;
|
|
62
62
|
/**
|
|
63
63
|
* The `gitlab.getArtifactFile` data source allows downloading a single artifact file from a specific job in the latest successful pipeline for a given reference (branch, tag, or commit).
|
|
64
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/job_artifacts
|
|
64
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/ee/api/job_artifacts.html#download-a-single-artifact-file-from-specific-tag-or-branch)
|
|
65
65
|
*
|
|
66
66
|
* ## Example Usage
|
|
67
67
|
*
|
|
@@ -8,7 +8,7 @@ import * as outputs from "./types/output";
|
|
|
8
8
|
* > When using the `email` attribute, an exact match is not guaranteed. The most related match will be returned. Starting with GitLab 16.6,
|
|
9
9
|
* the most related match will prioritize an exact match if one is available.
|
|
10
10
|
*
|
|
11
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
11
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/members/#list-memberships-for-a-billable-member-of-a-group)
|
|
12
12
|
*
|
|
13
13
|
* ## Example Usage
|
|
14
14
|
*
|
|
@@ -65,7 +65,7 @@ export interface GetGroupBillableMemberMembershipsResult {
|
|
|
65
65
|
* > When using the `email` attribute, an exact match is not guaranteed. The most related match will be returned. Starting with GitLab 16.6,
|
|
66
66
|
* the most related match will prioritize an exact match if one is available.
|
|
67
67
|
*
|
|
68
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
68
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/members/#list-memberships-for-a-billable-member-of-a-group)
|
|
69
69
|
*
|
|
70
70
|
* ## Example Usage
|
|
71
71
|
*
|
|
@@ -13,7 +13,7 @@ const utilities = require("./utilities");
|
|
|
13
13
|
* > When using the `email` attribute, an exact match is not guaranteed. The most related match will be returned. Starting with GitLab 16.6,
|
|
14
14
|
* the most related match will prioritize an exact match if one is available.
|
|
15
15
|
*
|
|
16
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
16
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/members/#list-memberships-for-a-billable-member-of-a-group)
|
|
17
17
|
*
|
|
18
18
|
* ## Example Usage
|
|
19
19
|
*
|
|
@@ -43,7 +43,7 @@ exports.getGroupBillableMemberMemberships = getGroupBillableMemberMemberships;
|
|
|
43
43
|
* > When using the `email` attribute, an exact match is not guaranteed. The most related match will be returned. Starting with GitLab 16.6,
|
|
44
44
|
* the most related match will prioritize an exact match if one is available.
|
|
45
45
|
*
|
|
46
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
46
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/members/#list-memberships-for-a-billable-member-of-a-group)
|
|
47
47
|
*
|
|
48
48
|
* ## Example Usage
|
|
49
49
|
*
|
package/getGroupMembership.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import * as outputs from "./types/output";
|
|
|
3
3
|
/**
|
|
4
4
|
* The `gitlab.GroupMembership` data source allows to list and filter all members of a group specified by either its id or full path.
|
|
5
5
|
*
|
|
6
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
6
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/members/#list-all-members-of-a-group-or-project)
|
|
7
7
|
*/
|
|
8
8
|
export declare function getGroupMembership(args?: GetGroupMembershipArgs, opts?: pulumi.InvokeOptions): Promise<GetGroupMembershipResult>;
|
|
9
9
|
/**
|
|
@@ -59,7 +59,7 @@ export interface GetGroupMembershipResult {
|
|
|
59
59
|
/**
|
|
60
60
|
* The `gitlab.GroupMembership` data source allows to list and filter all members of a group specified by either its id or full path.
|
|
61
61
|
*
|
|
62
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
62
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/members/#list-all-members-of-a-group-or-project)
|
|
63
63
|
*/
|
|
64
64
|
export declare function getGroupMembershipOutput(args?: GetGroupMembershipOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetGroupMembershipResult>;
|
|
65
65
|
/**
|
package/getGroupMembership.js
CHANGED
|
@@ -8,7 +8,7 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* The `gitlab.GroupMembership` data source allows to list and filter all members of a group specified by either its id or full path.
|
|
10
10
|
*
|
|
11
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
11
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/members/#list-all-members-of-a-group-or-project)
|
|
12
12
|
*/
|
|
13
13
|
function getGroupMembership(args, opts) {
|
|
14
14
|
args = args || {};
|
|
@@ -24,7 +24,7 @@ exports.getGroupMembership = getGroupMembership;
|
|
|
24
24
|
/**
|
|
25
25
|
* The `gitlab.GroupMembership` data source allows to list and filter all members of a group specified by either its id or full path.
|
|
26
26
|
*
|
|
27
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
27
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/members/#list-all-members-of-a-group-or-project)
|
|
28
28
|
*/
|
|
29
29
|
function getGroupMembershipOutput(args, opts) {
|
|
30
30
|
args = args || {};
|
|
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
/**
|
|
3
3
|
* The `gitlab.GroupServiceAccount` data source retrieves information about a GitLab service account in a group.
|
|
4
4
|
*
|
|
5
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
5
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/group_service_accounts/#list-service-account-users)
|
|
6
6
|
*
|
|
7
7
|
* ## Example Usage
|
|
8
8
|
*/
|
|
@@ -45,7 +45,7 @@ export interface GetGroupServiceAccountResult {
|
|
|
45
45
|
/**
|
|
46
46
|
* The `gitlab.GroupServiceAccount` data source retrieves information about a GitLab service account in a group.
|
|
47
47
|
*
|
|
48
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
48
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/group_service_accounts/#list-service-account-users)
|
|
49
49
|
*
|
|
50
50
|
* ## Example Usage
|
|
51
51
|
*/
|
|
@@ -8,7 +8,7 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* The `gitlab.GroupServiceAccount` data source retrieves information about a GitLab service account in a group.
|
|
10
10
|
*
|
|
11
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
11
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/group_service_accounts/#list-service-account-users)
|
|
12
12
|
*
|
|
13
13
|
* ## Example Usage
|
|
14
14
|
*/
|
|
@@ -23,7 +23,7 @@ exports.getGroupServiceAccount = getGroupServiceAccount;
|
|
|
23
23
|
/**
|
|
24
24
|
* The `gitlab.GroupServiceAccount` data source retrieves information about a GitLab service account in a group.
|
|
25
25
|
*
|
|
26
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
26
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/group_service_accounts/#list-service-account-users)
|
|
27
27
|
*
|
|
28
28
|
* ## Example Usage
|
|
29
29
|
*/
|
package/getGroupVariable.d.ts
CHANGED
|
@@ -62,7 +62,7 @@ export interface GetGroupVariableResult {
|
|
|
62
62
|
*/
|
|
63
63
|
readonly key: string;
|
|
64
64
|
/**
|
|
65
|
-
* If set to `true`, the value of the variable will be hidden in job logs. The value must meet the [masking requirements](https://docs.gitlab.com/ci/variables/#
|
|
65
|
+
* If set to `true`, the value of the variable will be hidden in job logs. The value must meet the [masking requirements](https://docs.gitlab.com/ci/variables/#masked-variables).
|
|
66
66
|
*/
|
|
67
67
|
readonly masked: boolean;
|
|
68
68
|
/**
|
|
@@ -4,7 +4,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
4
4
|
*
|
|
5
5
|
* > In order for a user to create a user account, they must have admin privileges at the instance level. This makes this feature unavailable on `gitlab.com`
|
|
6
6
|
*
|
|
7
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
7
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/user_service_accounts/)
|
|
8
8
|
*
|
|
9
9
|
* ## Example Usage
|
|
10
10
|
*
|
|
@@ -54,7 +54,7 @@ export interface GetInstanceServiceAccountResult {
|
|
|
54
54
|
*
|
|
55
55
|
* > In order for a user to create a user account, they must have admin privileges at the instance level. This makes this feature unavailable on `gitlab.com`
|
|
56
56
|
*
|
|
57
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
57
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/user_service_accounts/)
|
|
58
58
|
*
|
|
59
59
|
* ## Example Usage
|
|
60
60
|
*
|
|
@@ -10,7 +10,7 @@ const utilities = require("./utilities");
|
|
|
10
10
|
*
|
|
11
11
|
* > In order for a user to create a user account, they must have admin privileges at the instance level. This makes this feature unavailable on `gitlab.com`
|
|
12
12
|
*
|
|
13
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
13
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/user_service_accounts/)
|
|
14
14
|
*
|
|
15
15
|
* ## Example Usage
|
|
16
16
|
*
|
|
@@ -35,7 +35,7 @@ exports.getInstanceServiceAccount = getInstanceServiceAccount;
|
|
|
35
35
|
*
|
|
36
36
|
* > In order for a user to create a user account, they must have admin privileges at the instance level. This makes this feature unavailable on `gitlab.com`
|
|
37
37
|
*
|
|
38
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
38
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/user_service_accounts/)
|
|
39
39
|
*
|
|
40
40
|
* ## Example Usage
|
|
41
41
|
*
|
package/getProject.d.ts
CHANGED
|
@@ -199,10 +199,6 @@ export interface GetProjectResult {
|
|
|
199
199
|
* Enable or disable merge trains.
|
|
200
200
|
*/
|
|
201
201
|
readonly mergeTrainsEnabled: boolean;
|
|
202
|
-
/**
|
|
203
|
-
* Allows merge train merge requests to be merged without waiting for pipelines to finish.
|
|
204
|
-
*/
|
|
205
|
-
readonly mergeTrainsSkipTrainAllowed: boolean;
|
|
206
202
|
/**
|
|
207
203
|
* The visibility of machine learning model experiments.
|
|
208
204
|
*/
|
package/getProject.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getProject.js","sourceRoot":"","sources":["../getProject.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;GAIG;AACH,SAAgB,UAAU,CAAC,IAAqB,EAAE,IAA2B;IACzE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oCAAoC,EAAE;QAC/D,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,6BAA6B,EAAE,IAAI,CAAC,2BAA2B;QAC/D,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,gCAUC;
|
|
1
|
+
{"version":3,"file":"getProject.js","sourceRoot":"","sources":["../getProject.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;GAIG;AACH,SAAgB,UAAU,CAAC,IAAqB,EAAE,IAA2B;IACzE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oCAAoC,EAAE;QAC/D,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,6BAA6B,EAAE,IAAI,CAAC,2BAA2B;QAC/D,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,gCAUC;AAiVD;;;;GAIG;AACH,SAAgB,gBAAgB,CAAC,IAA2B,EAAE,IAAiC;IAC3F,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,oCAAoC,EAAE;QACrE,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,6BAA6B,EAAE,IAAI,CAAC,2BAA2B;QAC/D,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,4CAUC"}
|
|
@@ -3,7 +3,7 @@ import * as outputs from "./types/output";
|
|
|
3
3
|
/**
|
|
4
4
|
* The `gitlab.ProjectMembership` data source allows you to list and filter all members of a project.
|
|
5
5
|
*
|
|
6
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
6
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/members/#list-all-members-of-a-group-or-project)
|
|
7
7
|
*/
|
|
8
8
|
export declare function getProjectMembership(args?: GetProjectMembershipArgs, opts?: pulumi.InvokeOptions): Promise<GetProjectMembershipResult>;
|
|
9
9
|
/**
|
|
@@ -83,7 +83,7 @@ export interface GetProjectMembershipResult {
|
|
|
83
83
|
/**
|
|
84
84
|
* The `gitlab.ProjectMembership` data source allows you to list and filter all members of a project.
|
|
85
85
|
*
|
|
86
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
86
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/members/#list-all-members-of-a-group-or-project)
|
|
87
87
|
*/
|
|
88
88
|
export declare function getProjectMembershipOutput(args?: GetProjectMembershipOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetProjectMembershipResult>;
|
|
89
89
|
/**
|
package/getProjectMembership.js
CHANGED
|
@@ -8,7 +8,7 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* The `gitlab.ProjectMembership` data source allows you to list and filter all members of a project.
|
|
10
10
|
*
|
|
11
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
11
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/members/#list-all-members-of-a-group-or-project)
|
|
12
12
|
*/
|
|
13
13
|
function getProjectMembership(args, opts) {
|
|
14
14
|
args = args || {};
|
|
@@ -26,7 +26,7 @@ exports.getProjectMembership = getProjectMembership;
|
|
|
26
26
|
/**
|
|
27
27
|
* The `gitlab.ProjectMembership` data source allows you to list and filter all members of a project.
|
|
28
28
|
*
|
|
29
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
29
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/members/#list-all-members-of-a-group-or-project)
|
|
30
30
|
*/
|
|
31
31
|
function getProjectMembershipOutput(args, opts) {
|
|
32
32
|
args = args || {};
|
|
@@ -3,7 +3,7 @@ import * as outputs from "./types/output";
|
|
|
3
3
|
/**
|
|
4
4
|
* The `gitlab.getProjectProtectedTag` data source allows details of a protected tag to be retrieved by its name and the project it belongs to.
|
|
5
5
|
*
|
|
6
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/protected_tags/#get-a-protected-tag-or-wildcard-protected-tag)
|
|
6
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/protected_tags/#get-a-single-protected-tag-or-wildcard-protected-tag)
|
|
7
7
|
*/
|
|
8
8
|
export declare function getProjectProtectedTag(args: GetProjectProtectedTagArgs, opts?: pulumi.InvokeOptions): Promise<GetProjectProtectedTagResult>;
|
|
9
9
|
/**
|
|
@@ -43,7 +43,7 @@ export interface GetProjectProtectedTagResult {
|
|
|
43
43
|
/**
|
|
44
44
|
* The `gitlab.getProjectProtectedTag` data source allows details of a protected tag to be retrieved by its name and the project it belongs to.
|
|
45
45
|
*
|
|
46
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/protected_tags/#get-a-protected-tag-or-wildcard-protected-tag)
|
|
46
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/protected_tags/#get-a-single-protected-tag-or-wildcard-protected-tag)
|
|
47
47
|
*/
|
|
48
48
|
export declare function getProjectProtectedTagOutput(args: GetProjectProtectedTagOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetProjectProtectedTagResult>;
|
|
49
49
|
/**
|
|
@@ -8,7 +8,7 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* The `gitlab.getProjectProtectedTag` data source allows details of a protected tag to be retrieved by its name and the project it belongs to.
|
|
10
10
|
*
|
|
11
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/protected_tags/#get-a-protected-tag-or-wildcard-protected-tag)
|
|
11
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/protected_tags/#get-a-single-protected-tag-or-wildcard-protected-tag)
|
|
12
12
|
*/
|
|
13
13
|
function getProjectProtectedTag(args, opts) {
|
|
14
14
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
@@ -21,7 +21,7 @@ exports.getProjectProtectedTag = getProjectProtectedTag;
|
|
|
21
21
|
/**
|
|
22
22
|
* The `gitlab.getProjectProtectedTag` data source allows details of a protected tag to be retrieved by its name and the project it belongs to.
|
|
23
23
|
*
|
|
24
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/protected_tags/#get-a-protected-tag-or-wildcard-protected-tag)
|
|
24
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/protected_tags/#get-a-single-protected-tag-or-wildcard-protected-tag)
|
|
25
25
|
*/
|
|
26
26
|
function getProjectProtectedTagOutput(args, opts) {
|
|
27
27
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
package/getProjects.d.ts
CHANGED
|
@@ -58,7 +58,7 @@ export interface GetProjectsArgs {
|
|
|
58
58
|
*/
|
|
59
59
|
membership?: boolean;
|
|
60
60
|
/**
|
|
61
|
-
* Limit to projects where current user has at least this access level, refer to the [official documentation](https://docs.gitlab.com/
|
|
61
|
+
* Limit to projects where current user has at least this access level, refer to the [official documentation](https://docs.gitlab.com/api/members/) for values. Cannot be used with `groupId`.
|
|
62
62
|
*/
|
|
63
63
|
minAccessLevel?: number;
|
|
64
64
|
/**
|
|
@@ -155,7 +155,7 @@ export interface GetProjectsResult {
|
|
|
155
155
|
*/
|
|
156
156
|
readonly membership?: boolean;
|
|
157
157
|
/**
|
|
158
|
-
* Limit to projects where current user has at least this access level, refer to the [official documentation](https://docs.gitlab.com/
|
|
158
|
+
* Limit to projects where current user has at least this access level, refer to the [official documentation](https://docs.gitlab.com/api/members/) for values. Cannot be used with `groupId`.
|
|
159
159
|
*/
|
|
160
160
|
readonly minAccessLevel?: number;
|
|
161
161
|
/**
|
|
@@ -285,7 +285,7 @@ export interface GetProjectsOutputArgs {
|
|
|
285
285
|
*/
|
|
286
286
|
membership?: pulumi.Input<boolean>;
|
|
287
287
|
/**
|
|
288
|
-
* Limit to projects where current user has at least this access level, refer to the [official documentation](https://docs.gitlab.com/
|
|
288
|
+
* Limit to projects where current user has at least this access level, refer to the [official documentation](https://docs.gitlab.com/api/members/) for values. Cannot be used with `groupId`.
|
|
289
289
|
*/
|
|
290
290
|
minAccessLevel?: pulumi.Input<number>;
|
|
291
291
|
/**
|
package/getReleaseLink.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ export interface GetReleaseLinkArgs {
|
|
|
14
14
|
*/
|
|
15
15
|
linkId: number;
|
|
16
16
|
/**
|
|
17
|
-
* The ID or
|
|
17
|
+
* The ID or [URL-encoded path of the project](https://docs.gitlab.com/api/index/#namespaced-path-encoding).
|
|
18
18
|
*/
|
|
19
19
|
project: string;
|
|
20
20
|
/**
|
|
@@ -27,7 +27,7 @@ export interface GetReleaseLinkArgs {
|
|
|
27
27
|
*/
|
|
28
28
|
export interface GetReleaseLinkResult {
|
|
29
29
|
/**
|
|
30
|
-
* Full path for a [Direct Asset link](https://docs.gitlab.com/user/project/releases/
|
|
30
|
+
* Full path for a [Direct Asset link](https://docs.gitlab.com/user/project/releases/index/#permanent-links-to-release-assets).
|
|
31
31
|
*/
|
|
32
32
|
readonly directAssetUrl: string;
|
|
33
33
|
/**
|
|
@@ -35,7 +35,7 @@ export interface GetReleaseLinkResult {
|
|
|
35
35
|
*/
|
|
36
36
|
readonly external: boolean;
|
|
37
37
|
/**
|
|
38
|
-
* Relative path for a [Direct Asset link](https://docs.gitlab.com/user/project/releases/
|
|
38
|
+
* Relative path for a [Direct Asset link](https://docs.gitlab.com/user/project/releases/index/#permanent-links-to-release-assets).
|
|
39
39
|
*/
|
|
40
40
|
readonly filepath: string;
|
|
41
41
|
/**
|
|
@@ -55,7 +55,7 @@ export interface GetReleaseLinkResult {
|
|
|
55
55
|
*/
|
|
56
56
|
readonly name: string;
|
|
57
57
|
/**
|
|
58
|
-
* The ID or
|
|
58
|
+
* The ID or [URL-encoded path of the project](https://docs.gitlab.com/api/index/#namespaced-path-encoding).
|
|
59
59
|
*/
|
|
60
60
|
readonly project: string;
|
|
61
61
|
/**
|
|
@@ -82,7 +82,7 @@ export interface GetReleaseLinkOutputArgs {
|
|
|
82
82
|
*/
|
|
83
83
|
linkId: pulumi.Input<number>;
|
|
84
84
|
/**
|
|
85
|
-
* The ID or
|
|
85
|
+
* The ID or [URL-encoded path of the project](https://docs.gitlab.com/api/index/#namespaced-path-encoding).
|
|
86
86
|
*/
|
|
87
87
|
project: pulumi.Input<string>;
|
|
88
88
|
/**
|
package/getReleaseLinks.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ export declare function getReleaseLinks(args: GetReleaseLinksArgs, opts?: pulumi
|
|
|
11
11
|
*/
|
|
12
12
|
export interface GetReleaseLinksArgs {
|
|
13
13
|
/**
|
|
14
|
-
* The ID or
|
|
14
|
+
* The ID or [URL-encoded path of the project](https://docs.gitlab.com/api/index/#namespaced-path-encoding).
|
|
15
15
|
*/
|
|
16
16
|
project: string;
|
|
17
17
|
/**
|
|
@@ -28,7 +28,7 @@ export interface GetReleaseLinksResult {
|
|
|
28
28
|
*/
|
|
29
29
|
readonly id: string;
|
|
30
30
|
/**
|
|
31
|
-
* The ID or
|
|
31
|
+
* The ID or [URL-encoded path of the project](https://docs.gitlab.com/api/index/#namespaced-path-encoding).
|
|
32
32
|
*/
|
|
33
33
|
readonly project: string;
|
|
34
34
|
/**
|
|
@@ -51,7 +51,7 @@ export declare function getReleaseLinksOutput(args: GetReleaseLinksOutputArgs, o
|
|
|
51
51
|
*/
|
|
52
52
|
export interface GetReleaseLinksOutputArgs {
|
|
53
53
|
/**
|
|
54
|
-
* The ID or
|
|
54
|
+
* The ID or [URL-encoded path of the project](https://docs.gitlab.com/api/index/#namespaced-path-encoding).
|
|
55
55
|
*/
|
|
56
56
|
project: pulumi.Input<string>;
|
|
57
57
|
/**
|
|
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
/**
|
|
3
3
|
* The `gitlab.GlobalLevelNotifications` resource allows to manage global notifications.
|
|
4
4
|
*
|
|
5
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/notification_settings/#
|
|
5
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/notification_settings/#group--project-level-notification-settings)
|
|
6
6
|
*
|
|
7
7
|
* ## Import
|
|
8
8
|
*
|
|
@@ -8,7 +8,7 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* The `gitlab.GlobalLevelNotifications` resource allows to manage global notifications.
|
|
10
10
|
*
|
|
11
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/notification_settings/#
|
|
11
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/notification_settings/#group--project-level-notification-settings)
|
|
12
12
|
*
|
|
13
13
|
* ## Import
|
|
14
14
|
*
|
package/groupAccessToken.d.ts
CHANGED
|
@@ -4,11 +4,11 @@ import * as outputs from "./types/output";
|
|
|
4
4
|
/**
|
|
5
5
|
* The `gitlab.GroupAccessToken` resource allows to manage the lifecycle of a group access token.
|
|
6
6
|
*
|
|
7
|
-
* > Observability scopes are in beta and may not work on all instances. See more details in [the documentation](https://docs.gitlab.com/
|
|
7
|
+
* > Observability scopes are in beta and may not work on all instances. See more details in [the documentation](https://docs.gitlab.com/operations/tracing/)
|
|
8
8
|
*
|
|
9
9
|
* > Use `rotationConfiguration` to automatically rotate tokens instead of using `timestamp()` as timestamp will cause changes with every plan. `pulumi up` must still be run to rotate the token.
|
|
10
10
|
*
|
|
11
|
-
* > Due to [Automatic reuse detection](https://docs.gitlab.com/api/
|
|
11
|
+
* > Due to [Automatic reuse detection](https://docs.gitlab.com/api/group_access_tokens/#automatic-reuse-detection) it's possible that a new Group Access Token will immediately be revoked. Check if an old process using the old token is running if this happens.
|
|
12
12
|
*
|
|
13
13
|
* **Upstream API**: [GitLab REST API](https://docs.gitlab.com/api/group_access_tokens/)
|
|
14
14
|
*
|
package/groupAccessToken.js
CHANGED
|
@@ -8,11 +8,11 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* The `gitlab.GroupAccessToken` resource allows to manage the lifecycle of a group access token.
|
|
10
10
|
*
|
|
11
|
-
* > Observability scopes are in beta and may not work on all instances. See more details in [the documentation](https://docs.gitlab.com/
|
|
11
|
+
* > Observability scopes are in beta and may not work on all instances. See more details in [the documentation](https://docs.gitlab.com/operations/tracing/)
|
|
12
12
|
*
|
|
13
13
|
* > Use `rotationConfiguration` to automatically rotate tokens instead of using `timestamp()` as timestamp will cause changes with every plan. `pulumi up` must still be run to rotate the token.
|
|
14
14
|
*
|
|
15
|
-
* > Due to [Automatic reuse detection](https://docs.gitlab.com/api/
|
|
15
|
+
* > Due to [Automatic reuse detection](https://docs.gitlab.com/api/group_access_tokens/#automatic-reuse-detection) it's possible that a new Group Access Token will immediately be revoked. Check if an old process using the old token is running if this happens.
|
|
16
16
|
*
|
|
17
17
|
* **Upstream API**: [GitLab REST API](https://docs.gitlab.com/api/group_access_tokens/)
|
|
18
18
|
*
|
package/groupLabel.d.ts
CHANGED
|
@@ -57,7 +57,7 @@ export declare class GroupLabel extends pulumi.CustomResource {
|
|
|
57
57
|
*/
|
|
58
58
|
static isInstance(obj: any): obj is GroupLabel;
|
|
59
59
|
/**
|
|
60
|
-
* The color of the label given in 6-digit hex notation with leading '#' sign (e.g. #FFAABB) or one of the [CSS color names](https://developer.mozilla.org/en-US/docs/Web/CSS/
|
|
60
|
+
* The color of the label given in 6-digit hex notation with leading '#' sign (e.g. #FFAABB) or one of the [CSS color names](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#Color_keywords).
|
|
61
61
|
*/
|
|
62
62
|
readonly color: pulumi.Output<string>;
|
|
63
63
|
/**
|
|
@@ -94,7 +94,7 @@ export declare class GroupLabel extends pulumi.CustomResource {
|
|
|
94
94
|
*/
|
|
95
95
|
export interface GroupLabelState {
|
|
96
96
|
/**
|
|
97
|
-
* The color of the label given in 6-digit hex notation with leading '#' sign (e.g. #FFAABB) or one of the [CSS color names](https://developer.mozilla.org/en-US/docs/Web/CSS/
|
|
97
|
+
* The color of the label given in 6-digit hex notation with leading '#' sign (e.g. #FFAABB) or one of the [CSS color names](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#Color_keywords).
|
|
98
98
|
*/
|
|
99
99
|
color?: pulumi.Input<string>;
|
|
100
100
|
/**
|
|
@@ -123,7 +123,7 @@ export interface GroupLabelState {
|
|
|
123
123
|
*/
|
|
124
124
|
export interface GroupLabelArgs {
|
|
125
125
|
/**
|
|
126
|
-
* The color of the label given in 6-digit hex notation with leading '#' sign (e.g. #FFAABB) or one of the [CSS color names](https://developer.mozilla.org/en-US/docs/Web/CSS/
|
|
126
|
+
* The color of the label given in 6-digit hex notation with leading '#' sign (e.g. #FFAABB) or one of the [CSS color names](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#Color_keywords).
|
|
127
127
|
*/
|
|
128
128
|
color: pulumi.Input<string>;
|
|
129
129
|
/**
|
package/groupMembership.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
4
4
|
*
|
|
5
5
|
* > If a group should grant membership to another group use the `gitlab.GroupShareGroup` resource instead.
|
|
6
6
|
*
|
|
7
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
7
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/members/)
|
|
8
8
|
*
|
|
9
9
|
* ## Example Usage
|
|
10
10
|
*
|
package/groupMembership.js
CHANGED
|
@@ -10,7 +10,7 @@ const utilities = require("./utilities");
|
|
|
10
10
|
*
|
|
11
11
|
* > If a group should grant membership to another group use the `gitlab.GroupShareGroup` resource instead.
|
|
12
12
|
*
|
|
13
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
13
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/members/)
|
|
14
14
|
*
|
|
15
15
|
* ## Example Usage
|
|
16
16
|
*
|
package/groupServiceAccount.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import * as outputs from "./types/output";
|
|
|
4
4
|
/**
|
|
5
5
|
* The `gitlab.GroupServiceAccount` resource allows creating a GitLab group service account.
|
|
6
6
|
*
|
|
7
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
7
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/group_service_accounts/)
|
|
8
8
|
*
|
|
9
9
|
* ## Example Usage
|
|
10
10
|
*
|
package/groupServiceAccount.js
CHANGED
|
@@ -8,7 +8,7 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* The `gitlab.GroupServiceAccount` resource allows creating a GitLab group service account.
|
|
10
10
|
*
|
|
11
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/
|
|
11
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/group_service_accounts/)
|
|
12
12
|
*
|
|
13
13
|
* ## Example Usage
|
|
14
14
|
*
|
|
@@ -12,7 +12,7 @@ import * as outputs from "./types/output";
|
|
|
12
12
|
*
|
|
13
13
|
* > Due to a limitation in the API, the `rotationConfiguration` is unable to set the new expiry date before GitLab 17.9. Instead, when the resource is created, it will default the expiry date to 7 days in the future. On each subsequent apply, the new expiry will be 7 days from the date of the apply.
|
|
14
14
|
*
|
|
15
|
-
* **Upstream API**: [GitLab API docs](https://docs.gitlab.com/api/
|
|
15
|
+
* **Upstream API**: [GitLab API docs](https://docs.gitlab.com/api/group_service_accounts/#create-a-personal-access-token-for-a-service-account-user)
|
|
16
16
|
*
|
|
17
17
|
* ## Example Usage
|
|
18
18
|
*
|
|
@@ -16,7 +16,7 @@ const utilities = require("./utilities");
|
|
|
16
16
|
*
|
|
17
17
|
* > Due to a limitation in the API, the `rotationConfiguration` is unable to set the new expiry date before GitLab 17.9. Instead, when the resource is created, it will default the expiry date to 7 days in the future. On each subsequent apply, the new expiry will be 7 days from the date of the apply.
|
|
18
18
|
*
|
|
19
|
-
* **Upstream API**: [GitLab API docs](https://docs.gitlab.com/api/
|
|
19
|
+
* **Upstream API**: [GitLab API docs](https://docs.gitlab.com/api/group_service_accounts/#create-a-personal-access-token-for-a-service-account-user)
|
|
20
20
|
*
|
|
21
21
|
* ## Example Usage
|
|
22
22
|
*
|
package/groupShareGroup.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
4
4
|
*
|
|
5
5
|
* > Note that `memberRoleId` requires a feature flag enabled, see [this feature issue](https://gitlab.com/gitlab-org/gitlab/-/issues/443369) for details.
|
|
6
6
|
*
|
|
7
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/groups/#
|
|
7
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/groups/#share-groups-with-groups)
|
|
8
8
|
*
|
|
9
9
|
* ## Example Usage
|
|
10
10
|
*
|
package/groupShareGroup.js
CHANGED
|
@@ -10,7 +10,7 @@ const utilities = require("./utilities");
|
|
|
10
10
|
*
|
|
11
11
|
* > Note that `memberRoleId` requires a feature flag enabled, see [this feature issue](https://gitlab.com/gitlab-org/gitlab/-/issues/443369) for details.
|
|
12
12
|
*
|
|
13
|
-
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/groups/#
|
|
13
|
+
* **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/groups/#share-groups-with-groups)
|
|
14
14
|
*
|
|
15
15
|
* ## Example Usage
|
|
16
16
|
*
|
package/index.d.ts
CHANGED
|
@@ -82,9 +82,6 @@ export declare const getGroupSamlLinksOutput: typeof import("./getGroupSamlLinks
|
|
|
82
82
|
export { GetGroupServiceAccountArgs, GetGroupServiceAccountResult, GetGroupServiceAccountOutputArgs } from "./getGroupServiceAccount";
|
|
83
83
|
export declare const getGroupServiceAccount: typeof import("./getGroupServiceAccount").getGroupServiceAccount;
|
|
84
84
|
export declare const getGroupServiceAccountOutput: typeof import("./getGroupServiceAccount").getGroupServiceAccountOutput;
|
|
85
|
-
export { GetGroupServiceAccountAccessTokensArgs, GetGroupServiceAccountAccessTokensResult, GetGroupServiceAccountAccessTokensOutputArgs } from "./getGroupServiceAccountAccessTokens";
|
|
86
|
-
export declare const getGroupServiceAccountAccessTokens: typeof import("./getGroupServiceAccountAccessTokens").getGroupServiceAccountAccessTokens;
|
|
87
|
-
export declare const getGroupServiceAccountAccessTokensOutput: typeof import("./getGroupServiceAccountAccessTokens").getGroupServiceAccountAccessTokensOutput;
|
|
88
85
|
export { GetGroupSubgroupsArgs, GetGroupSubgroupsResult, GetGroupSubgroupsOutputArgs } from "./getGroupSubgroups";
|
|
89
86
|
export declare const getGroupSubgroups: typeof import("./getGroupSubgroups").getGroupSubgroups;
|
|
90
87
|
export declare const getGroupSubgroupsOutput: typeof import("./getGroupSubgroups").getGroupSubgroupsOutput;
|
|
@@ -148,9 +145,6 @@ export declare const getProjectIdsOutput: typeof import("./getProjectIds").getPr
|
|
|
148
145
|
export { GetProjectIssueArgs, GetProjectIssueResult, GetProjectIssueOutputArgs } from "./getProjectIssue";
|
|
149
146
|
export declare const getProjectIssue: typeof import("./getProjectIssue").getProjectIssue;
|
|
150
147
|
export declare const getProjectIssueOutput: typeof import("./getProjectIssue").getProjectIssueOutput;
|
|
151
|
-
export { GetProjectIssueLabelEventsArgs, GetProjectIssueLabelEventsResult, GetProjectIssueLabelEventsOutputArgs } from "./getProjectIssueLabelEvents";
|
|
152
|
-
export declare const getProjectIssueLabelEvents: typeof import("./getProjectIssueLabelEvents").getProjectIssueLabelEvents;
|
|
153
|
-
export declare const getProjectIssueLabelEventsOutput: typeof import("./getProjectIssueLabelEvents").getProjectIssueLabelEventsOutput;
|
|
154
148
|
export { GetProjectIssuesArgs, GetProjectIssuesResult, GetProjectIssuesOutputArgs } from "./getProjectIssues";
|
|
155
149
|
export declare const getProjectIssues: typeof import("./getProjectIssues").getProjectIssues;
|
|
156
150
|
export declare const getProjectIssuesOutput: typeof import("./getProjectIssues").getProjectIssuesOutput;
|
|
@@ -184,9 +178,6 @@ export declare const getProjectProtectedTagOutput: typeof import("./getProjectPr
|
|
|
184
178
|
export { GetProjectProtectedTagsArgs, GetProjectProtectedTagsResult, GetProjectProtectedTagsOutputArgs } from "./getProjectProtectedTags";
|
|
185
179
|
export declare const getProjectProtectedTags: typeof import("./getProjectProtectedTags").getProjectProtectedTags;
|
|
186
180
|
export declare const getProjectProtectedTagsOutput: typeof import("./getProjectProtectedTags").getProjectProtectedTagsOutput;
|
|
187
|
-
export { GetProjectSecureFileArgs, GetProjectSecureFileResult, GetProjectSecureFileOutputArgs } from "./getProjectSecureFile";
|
|
188
|
-
export declare const getProjectSecureFile: typeof import("./getProjectSecureFile").getProjectSecureFile;
|
|
189
|
-
export declare const getProjectSecureFileOutput: typeof import("./getProjectSecureFile").getProjectSecureFileOutput;
|
|
190
181
|
export { GetProjectTagArgs, GetProjectTagResult, GetProjectTagOutputArgs } from "./getProjectTag";
|
|
191
182
|
export declare const getProjectTag: typeof import("./getProjectTag").getProjectTag;
|
|
192
183
|
export declare const getProjectTagOutput: typeof import("./getProjectTag").getProjectTagOutput;
|
|
@@ -220,9 +211,6 @@ export declare const getRepositoryTreeOutput: typeof import("./getRepositoryTree
|
|
|
220
211
|
export { GetRunnersArgs, GetRunnersResult, GetRunnersOutputArgs } from "./getRunners";
|
|
221
212
|
export declare const getRunners: typeof import("./getRunners").getRunners;
|
|
222
213
|
export declare const getRunnersOutput: typeof import("./getRunners").getRunnersOutput;
|
|
223
|
-
export { GetSecurityPolicyDocumentArgs, GetSecurityPolicyDocumentResult, GetSecurityPolicyDocumentOutputArgs } from "./getSecurityPolicyDocument";
|
|
224
|
-
export declare const getSecurityPolicyDocument: typeof import("./getSecurityPolicyDocument").getSecurityPolicyDocument;
|
|
225
|
-
export declare const getSecurityPolicyDocumentOutput: typeof import("./getSecurityPolicyDocument").getSecurityPolicyDocumentOutput;
|
|
226
214
|
export { GetUserArgs, GetUserResult, GetUserOutputArgs } from "./getUser";
|
|
227
215
|
export declare const getUser: typeof import("./getUser").getUser;
|
|
228
216
|
export declare const getUserOutput: typeof import("./getUser").getUserOutput;
|
|
@@ -536,9 +524,6 @@ export declare const Topic: typeof import("./topic").Topic;
|
|
|
536
524
|
export { UserArgs, UserState } from "./user";
|
|
537
525
|
export type User = import("./user").User;
|
|
538
526
|
export declare const User: typeof import("./user").User;
|
|
539
|
-
export { UserAvatarArgs, UserAvatarState } from "./userAvatar";
|
|
540
|
-
export type UserAvatar = import("./userAvatar").UserAvatar;
|
|
541
|
-
export declare const UserAvatar: typeof import("./userAvatar").UserAvatar;
|
|
542
527
|
export { UserCustomAttributeArgs, UserCustomAttributeState } from "./userCustomAttribute";
|
|
543
528
|
export type UserCustomAttribute = import("./userCustomAttribute").UserCustomAttribute;
|
|
544
529
|
export declare const UserCustomAttribute: typeof import("./userCustomAttribute").UserCustomAttribute;
|