@pulumi/gitlab 9.4.0-alpha.1760375462 → 9.4.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/applicationSettings.d.ts +9 -3
- package/applicationSettings.js.map +1 -1
- package/getGroup.d.ts +2 -2
- package/getGroupHook.d.ts +1 -1
- package/getGroupHooks.d.ts +3 -3
- package/getGroupHooks.js +2 -2
- package/getGroupSubgroups.d.ts +1 -1
- package/getGroups.d.ts +1 -1
- package/getProject.d.ts +18 -6
- package/getProject.js.map +1 -1
- package/getProjectApprovalRules.d.ts +83 -0
- package/getProjectApprovalRules.js +62 -0
- package/getProjectApprovalRules.js.map +1 -0
- package/getProjectHook.d.ts +1 -1
- package/getProjectMembership.d.ts +12 -12
- package/groupAccessToken.d.ts +12 -0
- package/groupAccessToken.js +2 -0
- package/groupAccessToken.js.map +1 -1
- package/groupDeployToken.d.ts +12 -0
- package/groupDeployToken.js +2 -0
- package/groupDeployToken.js.map +1 -1
- package/groupMembership.d.ts +4 -4
- package/groupServiceAccount.d.ts +5 -0
- package/groupServiceAccount.js +2 -0
- package/groupServiceAccount.js.map +1 -1
- package/groupServiceAccountAccessToken.d.ts +12 -0
- package/groupServiceAccountAccessToken.js +2 -0
- package/groupServiceAccountAccessToken.js.map +1 -1
- package/index.d.ts +3 -0
- package/index.js +7 -4
- package/index.js.map +1 -1
- package/integrationCustomIssueTracker.d.ts +2 -0
- package/integrationCustomIssueTracker.js +2 -0
- package/integrationCustomIssueTracker.js.map +1 -1
- package/integrationHarbor.d.ts +2 -0
- package/integrationHarbor.js +2 -0
- package/integrationHarbor.js.map +1 -1
- package/integrationJenkins.d.ts +2 -0
- package/integrationJenkins.js +2 -0
- package/integrationJenkins.js.map +1 -1
- package/integrationRedmine.d.ts +2 -1
- package/integrationRedmine.js +2 -1
- package/integrationRedmine.js.map +1 -1
- package/integrationTelegram.d.ts +2 -0
- package/integrationTelegram.js +2 -0
- package/integrationTelegram.js.map +1 -1
- package/label.d.ts +2 -0
- package/label.js +2 -0
- package/label.js.map +1 -1
- package/package.json +2 -2
- package/personalAccessToken.d.ts +12 -0
- package/personalAccessToken.js +2 -0
- package/personalAccessToken.js.map +1 -1
- package/project.d.ts +87 -42
- package/project.js +2 -0
- package/project.js.map +1 -1
- package/projectAccessToken.d.ts +12 -0
- package/projectAccessToken.js +2 -0
- package/projectAccessToken.js.map +1 -1
- package/projectDeployToken.d.ts +12 -0
- package/projectDeployToken.js +2 -0
- package/projectDeployToken.js.map +1 -1
- package/projectJobTokenScopes.d.ts +6 -6
- package/projectMembership.d.ts +3 -3
- package/projectProtectedEnvironment.d.ts +6 -6
- package/runner.d.ts +3 -1
- package/runner.js +3 -1
- package/runner.js.map +1 -1
- package/types/input.d.ts +90 -0
- package/types/output.d.ts +160 -12
- package/userImpersonationToken.d.ts +12 -0
- package/userImpersonationToken.js +2 -0
- package/userImpersonationToken.js.map +1 -1
package/types/output.d.ts
CHANGED
|
@@ -309,7 +309,9 @@ export interface GetGroupHooksHook {
|
|
|
309
309
|
*/
|
|
310
310
|
tagPushEvents: boolean;
|
|
311
311
|
/**
|
|
312
|
-
* A token to present when invoking the hook. The token is
|
|
312
|
+
* A token to present when invoking the hook. The token is only available on resource creation, not in this datasource. It will always be blank. To be removed in 19.0.
|
|
313
|
+
*
|
|
314
|
+
* @deprecated The token is only available on resource creation, not in this datasource. It will always be blank. To be removed in 19.0.
|
|
313
315
|
*/
|
|
314
316
|
token: string;
|
|
315
317
|
/**
|
|
@@ -494,35 +496,119 @@ export interface GetGroupSharedWithGroup {
|
|
|
494
496
|
groupName: string;
|
|
495
497
|
}
|
|
496
498
|
export interface GetGroupSubgroupsSubgroup {
|
|
499
|
+
/**
|
|
500
|
+
* A list of email address domains to allow group access.
|
|
501
|
+
*/
|
|
497
502
|
allowedEmailDomainsList: string;
|
|
503
|
+
/**
|
|
504
|
+
* Default to Auto DevOps pipeline for all projects within this group.
|
|
505
|
+
*/
|
|
498
506
|
autoDevopsEnabled: boolean;
|
|
507
|
+
/**
|
|
508
|
+
* The URL of the avatar image.
|
|
509
|
+
*/
|
|
499
510
|
avatarUrl: string;
|
|
511
|
+
/**
|
|
512
|
+
* Group created at date.
|
|
513
|
+
*/
|
|
500
514
|
createdAt: string;
|
|
515
|
+
/**
|
|
516
|
+
* Whether developers and maintainers can push to the applicable default branch.
|
|
517
|
+
*/
|
|
501
518
|
defaultBranchProtection: number;
|
|
519
|
+
/**
|
|
520
|
+
* The description of the group.
|
|
521
|
+
*/
|
|
502
522
|
description: string;
|
|
523
|
+
/**
|
|
524
|
+
* Enable email notifications.
|
|
525
|
+
*/
|
|
503
526
|
emailsEnabled: boolean;
|
|
527
|
+
/**
|
|
528
|
+
* The ID of the project that will be used for file templates.
|
|
529
|
+
*/
|
|
504
530
|
fileTemplateProjectId: number;
|
|
531
|
+
/**
|
|
532
|
+
* The full name of the group.
|
|
533
|
+
*/
|
|
505
534
|
fullName: string;
|
|
535
|
+
/**
|
|
536
|
+
* The full path of the group.
|
|
537
|
+
*/
|
|
506
538
|
fullPath: string;
|
|
539
|
+
/**
|
|
540
|
+
* The ID of the group.
|
|
541
|
+
*/
|
|
507
542
|
groupId: number;
|
|
543
|
+
/**
|
|
544
|
+
* A list of IP addresses or subnet masks to restrict group access.
|
|
545
|
+
*/
|
|
508
546
|
ipRestrictionRanges: string;
|
|
547
|
+
/**
|
|
548
|
+
* Is LFS enabled for projects in this group.
|
|
549
|
+
*/
|
|
509
550
|
lfsEnabled: boolean;
|
|
551
|
+
/**
|
|
552
|
+
* Disable the capability of a group from getting mentioned.
|
|
553
|
+
*/
|
|
510
554
|
mentionsDisabled: boolean;
|
|
555
|
+
/**
|
|
556
|
+
* The name of this group.
|
|
557
|
+
*/
|
|
511
558
|
name: string;
|
|
559
|
+
/**
|
|
560
|
+
* ID of the parent group.
|
|
561
|
+
*/
|
|
512
562
|
parentId: number;
|
|
563
|
+
/**
|
|
564
|
+
* The path of the group.
|
|
565
|
+
*/
|
|
513
566
|
path: string;
|
|
567
|
+
/**
|
|
568
|
+
* Determine if developers can create projects in the group. Valid values are: `noone`, `owner`, `maintainer`, `developer`, `administrator`
|
|
569
|
+
*/
|
|
514
570
|
projectCreationLevel: string;
|
|
571
|
+
/**
|
|
572
|
+
* Is request for access enabled to the group.
|
|
573
|
+
*/
|
|
515
574
|
requestAccessEnabled: boolean;
|
|
575
|
+
/**
|
|
576
|
+
* Require all users in this group to setup Two-factor authentication.
|
|
577
|
+
*/
|
|
516
578
|
requireTwoFactorAuthentication: boolean;
|
|
579
|
+
/**
|
|
580
|
+
* Prevent sharing a project with another group within this group.
|
|
581
|
+
*/
|
|
517
582
|
shareWithGroupLock: boolean;
|
|
583
|
+
/**
|
|
584
|
+
* Enable or disable shared runners for a group's subgroups and projects. Valid values are: `enabled`, `disabledAndOverridable`, `disabledAndUnoverridable`, `disabledWithOverride`.
|
|
585
|
+
*/
|
|
518
586
|
sharedRunnersSetting: string;
|
|
587
|
+
/**
|
|
588
|
+
* Group statistics.
|
|
589
|
+
*/
|
|
519
590
|
statistics: {
|
|
520
591
|
[key: string]: string;
|
|
521
592
|
};
|
|
593
|
+
/**
|
|
594
|
+
* Allowed to create subgroups. Valid values are: `owner`, `maintainer`.
|
|
595
|
+
*/
|
|
522
596
|
subgroupCreationLevel: string;
|
|
597
|
+
/**
|
|
598
|
+
* Time before Two-factor authentication is enforced (in hours).
|
|
599
|
+
*/
|
|
523
600
|
twoFactorGracePeriod: number;
|
|
601
|
+
/**
|
|
602
|
+
* Limited by visibility `public`, `internal`, or `private`.
|
|
603
|
+
*/
|
|
524
604
|
visibility: string;
|
|
605
|
+
/**
|
|
606
|
+
* Web URL of the group.
|
|
607
|
+
*/
|
|
525
608
|
webUrl: string;
|
|
609
|
+
/**
|
|
610
|
+
* The group's wiki access level. Only available on Premium and Ultimate plans. Valid values are `disabled`, `private`, `enabled`.
|
|
611
|
+
*/
|
|
526
612
|
wikiAccessLevel: string;
|
|
527
613
|
}
|
|
528
614
|
export interface GetGroupVariablesVariable {
|
|
@@ -538,7 +624,9 @@ export interface GetGroupVariablesVariable {
|
|
|
538
624
|
}
|
|
539
625
|
export interface GetGroupsGroup {
|
|
540
626
|
/**
|
|
541
|
-
* Whether developers and maintainers can push to the applicable default branch.
|
|
627
|
+
* Whether developers and maintainers can push to the applicable default branch. Will be removed in 19.0.
|
|
628
|
+
*
|
|
629
|
+
* @deprecated Will be removed in 19.0.
|
|
542
630
|
*/
|
|
543
631
|
defaultBranchProtection: number;
|
|
544
632
|
/**
|
|
@@ -558,7 +646,7 @@ export interface GetGroupsGroup {
|
|
|
558
646
|
*/
|
|
559
647
|
groupId: number;
|
|
560
648
|
/**
|
|
561
|
-
*
|
|
649
|
+
* Is LFS enabled for projects in this group.
|
|
562
650
|
*/
|
|
563
651
|
lfsEnabled: boolean;
|
|
564
652
|
/**
|
|
@@ -566,7 +654,7 @@ export interface GetGroupsGroup {
|
|
|
566
654
|
*/
|
|
567
655
|
name: string;
|
|
568
656
|
/**
|
|
569
|
-
*
|
|
657
|
+
* ID of the parent group.
|
|
570
658
|
*/
|
|
571
659
|
parentId: number;
|
|
572
660
|
/**
|
|
@@ -578,7 +666,7 @@ export interface GetGroupsGroup {
|
|
|
578
666
|
*/
|
|
579
667
|
preventForkingOutsideGroup: boolean;
|
|
580
668
|
/**
|
|
581
|
-
*
|
|
669
|
+
* Is request for access enabled to the group.
|
|
582
670
|
*/
|
|
583
671
|
requestAccessEnabled: boolean;
|
|
584
672
|
/**
|
|
@@ -586,7 +674,7 @@ export interface GetGroupsGroup {
|
|
|
586
674
|
*/
|
|
587
675
|
runnersToken: string;
|
|
588
676
|
/**
|
|
589
|
-
* Enable or disable shared runners for a group
|
|
677
|
+
* Enable or disable shared runners for a group's subgroups and projects. Valid values are: `enabled`, `disabledAndOverridable`, `disabledAndUnoverridable`, `disabledWithOverride`.
|
|
590
678
|
*/
|
|
591
679
|
sharedRunnersSetting: string;
|
|
592
680
|
/**
|
|
@@ -846,6 +934,48 @@ export interface GetProjectAccessTokensAccessToken {
|
|
|
846
934
|
scopes: string[];
|
|
847
935
|
userId: number;
|
|
848
936
|
}
|
|
937
|
+
export interface GetProjectApprovalRulesApprovalRule {
|
|
938
|
+
/**
|
|
939
|
+
* If true, applies the rule to all protected branches, ignoring the protected branches attribute.
|
|
940
|
+
*/
|
|
941
|
+
appliesToAllProtectedBranches: boolean;
|
|
942
|
+
/**
|
|
943
|
+
* The number of approvals required for this rule.
|
|
944
|
+
*/
|
|
945
|
+
approvalsRequired: number;
|
|
946
|
+
/**
|
|
947
|
+
* List of all approver IDs that are eligible to approve this rule.
|
|
948
|
+
*/
|
|
949
|
+
eligibleApproverIds: number[];
|
|
950
|
+
/**
|
|
951
|
+
* List of group IDs that are eligible to approve this rule.
|
|
952
|
+
*/
|
|
953
|
+
groupIds: number[];
|
|
954
|
+
/**
|
|
955
|
+
* The ID of the approval rule.
|
|
956
|
+
*/
|
|
957
|
+
id: number;
|
|
958
|
+
/**
|
|
959
|
+
* The name of the approval rule.
|
|
960
|
+
*/
|
|
961
|
+
name: string;
|
|
962
|
+
/**
|
|
963
|
+
* List of protected branch IDs that this rule applies to.
|
|
964
|
+
*/
|
|
965
|
+
protectedBranchIds: number[];
|
|
966
|
+
/**
|
|
967
|
+
* The report type. Required when the rule type is `reportApprover`. The supported report types are `licenseScanning` and `codeCoverage`.
|
|
968
|
+
*/
|
|
969
|
+
reportType: string;
|
|
970
|
+
/**
|
|
971
|
+
* The type of the approval rule. Can be `anyApprover`, `regular` or `reportApprover`.
|
|
972
|
+
*/
|
|
973
|
+
ruleType: string;
|
|
974
|
+
/**
|
|
975
|
+
* List of user IDs that are eligible to approve this rule.
|
|
976
|
+
*/
|
|
977
|
+
userIds: number[];
|
|
978
|
+
}
|
|
849
979
|
export interface GetProjectBranchesBranch {
|
|
850
980
|
/**
|
|
851
981
|
* Bool, true if you can push to the branch.
|
|
@@ -1088,7 +1218,7 @@ export interface GetProjectHooksHook {
|
|
|
1088
1218
|
*/
|
|
1089
1219
|
tagPushEvents: boolean;
|
|
1090
1220
|
/**
|
|
1091
|
-
* A token to present when invoking the hook. The token is
|
|
1221
|
+
* A token to present when invoking the hook. The token is only available on resource creation, not in this datasource. It will always be blank. Will be removed in 19.0.
|
|
1092
1222
|
*
|
|
1093
1223
|
* @deprecated The token is only available on resource creation, not in this datasource. It will always be blank.
|
|
1094
1224
|
*/
|
|
@@ -1773,11 +1903,11 @@ export interface GetProjectPushRule {
|
|
|
1773
1903
|
*/
|
|
1774
1904
|
preventSecrets: boolean;
|
|
1775
1905
|
/**
|
|
1776
|
-
* Reject commit when it
|
|
1906
|
+
* Reject commit when it's not DCO certified.
|
|
1777
1907
|
*/
|
|
1778
1908
|
rejectNonDcoCommits: boolean;
|
|
1779
1909
|
/**
|
|
1780
|
-
* Reject commit when it
|
|
1910
|
+
* Reject commit when it's not signed through GPG.
|
|
1781
1911
|
*/
|
|
1782
1912
|
rejectUnsignedCommits: boolean;
|
|
1783
1913
|
}
|
|
@@ -1977,7 +2107,9 @@ export interface GetProjectVariablesVariable {
|
|
|
1977
2107
|
}
|
|
1978
2108
|
export interface GetProjectsProject {
|
|
1979
2109
|
/**
|
|
1980
|
-
* Links for the project.
|
|
2110
|
+
* Links for the project. Use `links` instead. To be removed in 19.0.
|
|
2111
|
+
*
|
|
2112
|
+
* @deprecated Use `links` instead. To be removed in 19.0.
|
|
1981
2113
|
*/
|
|
1982
2114
|
_links: {
|
|
1983
2115
|
[key: string]: string;
|
|
@@ -2188,6 +2320,12 @@ export interface GetProjectsProject {
|
|
|
2188
2320
|
* Whether LFS (large file storage) is enabled for the project.
|
|
2189
2321
|
*/
|
|
2190
2322
|
lfsEnabled: boolean;
|
|
2323
|
+
/**
|
|
2324
|
+
* Links for the project.
|
|
2325
|
+
*/
|
|
2326
|
+
links: {
|
|
2327
|
+
[key: string]: string;
|
|
2328
|
+
};
|
|
2191
2329
|
/**
|
|
2192
2330
|
* Template used to create merge commit message in merge requests.
|
|
2193
2331
|
*/
|
|
@@ -2321,6 +2459,10 @@ export interface GetProjectsProject {
|
|
|
2321
2459
|
* Whether resolveOutdatedDiffDiscussions is enabled for the project
|
|
2322
2460
|
*/
|
|
2323
2461
|
resolveOutdatedDiffDiscussions: boolean;
|
|
2462
|
+
/**
|
|
2463
|
+
* The default resource group process mode for the project.
|
|
2464
|
+
*/
|
|
2465
|
+
resourceGroupDefaultProcessMode: string;
|
|
2324
2466
|
/**
|
|
2325
2467
|
* Allow only users with the Maintainer role to pass user-defined variables when triggering a pipeline.
|
|
2326
2468
|
*/
|
|
@@ -2614,9 +2756,9 @@ export interface GetReleaseLinksReleaseLink {
|
|
|
2614
2756
|
}
|
|
2615
2757
|
export interface GetRepositoryTreeTree {
|
|
2616
2758
|
/**
|
|
2617
|
-
* The project ID.
|
|
2759
|
+
* The project ID. Use `nodeId` instead. To be removed in 19.0.
|
|
2618
2760
|
*
|
|
2619
|
-
* @deprecated Use `nodeId` instead. To be removed in
|
|
2761
|
+
* @deprecated Use `nodeId` instead. To be removed in 19.0.
|
|
2620
2762
|
*/
|
|
2621
2763
|
id: string;
|
|
2622
2764
|
/**
|
|
@@ -2996,6 +3138,12 @@ export interface GroupServiceAccountAccessTokenRotationConfiguration {
|
|
|
2996
3138
|
*/
|
|
2997
3139
|
rotateBeforeDays: number;
|
|
2998
3140
|
}
|
|
3141
|
+
export interface GroupServiceAccountTimeouts {
|
|
3142
|
+
/**
|
|
3143
|
+
* How long to wait for the service account to be fully deleted. Defaults to 10 minutes.
|
|
3144
|
+
*/
|
|
3145
|
+
delete?: string;
|
|
3146
|
+
}
|
|
2999
3147
|
export interface InstanceServiceAccountTimeouts {
|
|
3000
3148
|
/**
|
|
3001
3149
|
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
@@ -99,6 +99,10 @@ export declare class UserImpersonationToken extends pulumi.CustomResource {
|
|
|
99
99
|
* The ID of the user.
|
|
100
100
|
*/
|
|
101
101
|
readonly userId: pulumi.Output<number>;
|
|
102
|
+
/**
|
|
103
|
+
* Wether to validate if the expiration date is in the future.
|
|
104
|
+
*/
|
|
105
|
+
readonly validatePastExpirationDate: pulumi.Output<boolean>;
|
|
102
106
|
/**
|
|
103
107
|
* Create a UserImpersonationToken resource with the given unique name, arguments, and options.
|
|
104
108
|
*
|
|
@@ -152,6 +156,10 @@ export interface UserImpersonationTokenState {
|
|
|
152
156
|
* The ID of the user.
|
|
153
157
|
*/
|
|
154
158
|
userId?: pulumi.Input<number>;
|
|
159
|
+
/**
|
|
160
|
+
* Wether to validate if the expiration date is in the future.
|
|
161
|
+
*/
|
|
162
|
+
validatePastExpirationDate?: pulumi.Input<boolean>;
|
|
155
163
|
}
|
|
156
164
|
/**
|
|
157
165
|
* The set of arguments for constructing a UserImpersonationToken resource.
|
|
@@ -173,4 +181,8 @@ export interface UserImpersonationTokenArgs {
|
|
|
173
181
|
* The ID of the user.
|
|
174
182
|
*/
|
|
175
183
|
userId: pulumi.Input<number>;
|
|
184
|
+
/**
|
|
185
|
+
* Wether to validate if the expiration date is in the future.
|
|
186
|
+
*/
|
|
187
|
+
validatePastExpirationDate?: pulumi.Input<boolean>;
|
|
176
188
|
}
|
|
@@ -87,6 +87,7 @@ class UserImpersonationToken extends pulumi.CustomResource {
|
|
|
87
87
|
resourceInputs["token"] = state?.token;
|
|
88
88
|
resourceInputs["tokenId"] = state?.tokenId;
|
|
89
89
|
resourceInputs["userId"] = state?.userId;
|
|
90
|
+
resourceInputs["validatePastExpirationDate"] = state?.validatePastExpirationDate;
|
|
90
91
|
}
|
|
91
92
|
else {
|
|
92
93
|
const args = argsOrState;
|
|
@@ -103,6 +104,7 @@ class UserImpersonationToken extends pulumi.CustomResource {
|
|
|
103
104
|
resourceInputs["name"] = args?.name;
|
|
104
105
|
resourceInputs["scopes"] = args?.scopes;
|
|
105
106
|
resourceInputs["userId"] = args?.userId;
|
|
107
|
+
resourceInputs["validatePastExpirationDate"] = args?.validatePastExpirationDate;
|
|
106
108
|
resourceInputs["active"] = undefined /*out*/;
|
|
107
109
|
resourceInputs["createdAt"] = undefined /*out*/;
|
|
108
110
|
resourceInputs["impersonation"] = undefined /*out*/;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"userImpersonationToken.js","sourceRoot":"","sources":["../userImpersonationToken.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2CG;AACH,MAAa,sBAAuB,SAAQ,MAAM,CAAC,cAAc;IAC7D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAmC,EAAE,IAAmC;QACjI,OAAO,IAAI,sBAAsB,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC7E,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,sBAAsB,CAAC,YAAY,CAAC;IACvE,CAAC;
|
|
1
|
+
{"version":3,"file":"userImpersonationToken.js","sourceRoot":"","sources":["../userImpersonationToken.ts"],"names":[],"mappings":"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"}
|