@pulumi/gitlab 10.1.0-alpha.1784550056 → 10.1.0-alpha.1784550352

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.
Files changed (51) hide show
  1. package/adminRole.d.ts +141 -0
  2. package/adminRole.d.ts.map +1 -0
  3. package/adminRole.js +129 -0
  4. package/adminRole.js.map +1 -0
  5. package/getGroup.d.ts +36 -0
  6. package/getGroup.d.ts.map +1 -1
  7. package/getGroup.js.map +1 -1
  8. package/getProjectErrorTrackingSettings.d.ts +87 -0
  9. package/getProjectErrorTrackingSettings.d.ts.map +1 -0
  10. package/getProjectErrorTrackingSettings.js +77 -0
  11. package/getProjectErrorTrackingSettings.js.map +1 -0
  12. package/groupAccessToken.d.ts +3 -3
  13. package/groupLdapLink.d.ts +3 -3
  14. package/groupMembership.d.ts +3 -3
  15. package/groupSecurityPolicyAttachment.d.ts +5 -0
  16. package/groupSecurityPolicyAttachment.d.ts.map +1 -1
  17. package/groupSecurityPolicyAttachment.js +2 -0
  18. package/groupSecurityPolicyAttachment.js.map +1 -1
  19. package/groupShareGroup.d.ts +3 -3
  20. package/index.d.ts +15 -0
  21. package/index.d.ts.map +1 -1
  22. package/index.js +29 -6
  23. package/index.js.map +1 -1
  24. package/memberRole.d.ts +8 -6
  25. package/memberRole.d.ts.map +1 -1
  26. package/memberRole.js +2 -0
  27. package/memberRole.js.map +1 -1
  28. package/package.json +2 -2
  29. package/project.d.ts +12 -0
  30. package/project.d.ts.map +1 -1
  31. package/project.js +2 -0
  32. package/project.js.map +1 -1
  33. package/projectAccessToken.d.ts +3 -3
  34. package/projectErrorTrackingClientKey.d.ts +101 -0
  35. package/projectErrorTrackingClientKey.d.ts.map +1 -0
  36. package/projectErrorTrackingClientKey.js +105 -0
  37. package/projectErrorTrackingClientKey.js.map +1 -0
  38. package/projectErrorTrackingSettings.d.ts +130 -0
  39. package/projectErrorTrackingSettings.d.ts.map +1 -0
  40. package/projectErrorTrackingSettings.js +111 -0
  41. package/projectErrorTrackingSettings.js.map +1 -0
  42. package/projectMembership.d.ts +3 -3
  43. package/projectSecretDetectionValidityChecks.d.ts +109 -0
  44. package/projectSecretDetectionValidityChecks.d.ts.map +1 -0
  45. package/projectSecretDetectionValidityChecks.js +118 -0
  46. package/projectSecretDetectionValidityChecks.js.map +1 -0
  47. package/projectShareGroup.d.ts +3 -3
  48. package/types/input.d.ts +14 -0
  49. package/types/input.d.ts.map +1 -1
  50. package/types/output.d.ts +50 -0
  51. package/types/output.d.ts.map +1 -1
package/adminRole.d.ts ADDED
@@ -0,0 +1,141 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * The `gitlab.AdminRole` resource manages the lifecycle of a custom admin role.
4
+ *
5
+ * Custom admin roles allow an organization to grant read-only access to the Admin Area without granting Administrator access to the whole instance.
6
+ *
7
+ * Unlike `gitlab.MemberRole`, admin roles have no `baseAccessLevel` and are not scoped to a group, since they grant access to instance-wide administration rather than to a namespace.
8
+ *
9
+ * > This resource requires an Ultimate license and is only available for GitLab Self-Managed.
10
+ *
11
+ * **Upstream API**: [GitLab GraphQL API docs](https://docs.gitlab.com/api/graphql/reference/#mutationmemberroleadmincreate)
12
+ *
13
+ * ## Example Usage
14
+ *
15
+ * ```typescript
16
+ * import * as pulumi from "@pulumi/pulumi";
17
+ * import * as gitlab from "@pulumi/gitlab";
18
+ *
19
+ * // Example is creating a custom admin role for an auditor, with read-only access to several Admin Area pages.
20
+ * const example = new gitlab.AdminRole("example", {
21
+ * name: "Auditor",
22
+ * description: "Read-only access to the Admin Area for auditing purposes",
23
+ * enabledPermissions: [
24
+ * "READ_ADMIN_CICD",
25
+ * "READ_ADMIN_GROUPS",
26
+ * "READ_ADMIN_MONITORING",
27
+ * "READ_ADMIN_PROJECTS",
28
+ * "READ_ADMIN_SUBSCRIPTION",
29
+ * "READ_ADMIN_USERS",
30
+ * ],
31
+ * });
32
+ * ```
33
+ *
34
+ * ## Import
35
+ *
36
+ * Starting in Terraform v1.5.0, you can use an import block to import `gitlab.AdminRole`. For example:
37
+ *
38
+ * Importing using the CLI is supported with the following syntax:
39
+ *
40
+ * GitLab admin role can be imported using the id made up of `gid://gitlab/MemberRole/<ID>` for example:
41
+ *
42
+ * ```sh
43
+ * $ pulumi import gitlab:index/adminRole:AdminRole example 'gid://gitlab/MemberRole/123'
44
+ * ```
45
+ */
46
+ export declare class AdminRole extends pulumi.CustomResource {
47
+ /**
48
+ * Get an existing AdminRole resource's state with the given name, ID, and optional extra
49
+ * properties used to qualify the lookup.
50
+ *
51
+ * @param name The _unique_ name of the resulting resource.
52
+ * @param id The _unique_ provider ID of the resource to lookup.
53
+ * @param state Any extra arguments used during the lookup.
54
+ * @param opts Optional settings to control the behavior of the CustomResource.
55
+ */
56
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AdminRoleState, opts?: pulumi.CustomResourceOptions): AdminRole;
57
+ /**
58
+ * Returns true if the given object is an instance of AdminRole. This is designed to work even
59
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
60
+ */
61
+ static isInstance(obj: any): obj is AdminRole;
62
+ /**
63
+ * Timestamp of when the admin role was created.
64
+ */
65
+ readonly createdAt: pulumi.Output<string>;
66
+ /**
67
+ * Description for the admin role.
68
+ */
69
+ readonly description: pulumi.Output<string>;
70
+ /**
71
+ * The Web UI path to edit the admin role
72
+ */
73
+ readonly editPath: pulumi.Output<string>;
74
+ /**
75
+ * All permissions enabled for the admin role. Valid values are: `READ_ADMIN_CICD`, `READ_ADMIN_GROUPS`, `READ_ADMIN_MONITORING`, `READ_ADMIN_PROJECTS`, `READ_ADMIN_SUBSCRIPTION`, `READ_ADMIN_USERS`
76
+ */
77
+ readonly enabledPermissions: pulumi.Output<string[]>;
78
+ /**
79
+ * The id integer value extracted from the `id` attribute
80
+ */
81
+ readonly iid: pulumi.Output<number>;
82
+ /**
83
+ * Name for the admin role.
84
+ */
85
+ readonly name: pulumi.Output<string>;
86
+ /**
87
+ * Create a AdminRole resource with the given unique name, arguments, and options.
88
+ *
89
+ * @param name The _unique_ name of the resource.
90
+ * @param args The arguments to use to populate this resource's properties.
91
+ * @param opts A bag of options that control this resource's behavior.
92
+ */
93
+ constructor(name: string, args: AdminRoleArgs, opts?: pulumi.CustomResourceOptions);
94
+ }
95
+ /**
96
+ * Input properties used for looking up and filtering AdminRole resources.
97
+ */
98
+ export interface AdminRoleState {
99
+ /**
100
+ * Timestamp of when the admin role was created.
101
+ */
102
+ createdAt?: pulumi.Input<string | undefined>;
103
+ /**
104
+ * Description for the admin role.
105
+ */
106
+ description?: pulumi.Input<string | undefined>;
107
+ /**
108
+ * The Web UI path to edit the admin role
109
+ */
110
+ editPath?: pulumi.Input<string | undefined>;
111
+ /**
112
+ * All permissions enabled for the admin role. Valid values are: `READ_ADMIN_CICD`, `READ_ADMIN_GROUPS`, `READ_ADMIN_MONITORING`, `READ_ADMIN_PROJECTS`, `READ_ADMIN_SUBSCRIPTION`, `READ_ADMIN_USERS`
113
+ */
114
+ enabledPermissions?: pulumi.Input<pulumi.Input<string>[] | undefined>;
115
+ /**
116
+ * The id integer value extracted from the `id` attribute
117
+ */
118
+ iid?: pulumi.Input<number | undefined>;
119
+ /**
120
+ * Name for the admin role.
121
+ */
122
+ name?: pulumi.Input<string | undefined>;
123
+ }
124
+ /**
125
+ * The set of arguments for constructing a AdminRole resource.
126
+ */
127
+ export interface AdminRoleArgs {
128
+ /**
129
+ * Description for the admin role.
130
+ */
131
+ description?: pulumi.Input<string | undefined>;
132
+ /**
133
+ * All permissions enabled for the admin role. Valid values are: `READ_ADMIN_CICD`, `READ_ADMIN_GROUPS`, `READ_ADMIN_MONITORING`, `READ_ADMIN_PROJECTS`, `READ_ADMIN_SUBSCRIPTION`, `READ_ADMIN_USERS`
134
+ */
135
+ enabledPermissions: pulumi.Input<pulumi.Input<string>[]>;
136
+ /**
137
+ * Name for the admin role.
138
+ */
139
+ name?: pulumi.Input<string | undefined>;
140
+ }
141
+ //# sourceMappingURL=adminRole.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"adminRole.d.ts","sourceRoot":"","sources":["../adminRole.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAGzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2CG;AACH,qBAAa,SAAU,SAAQ,MAAM,CAAC,cAAc;IAChD;;;;;;;;OAQG;WACW,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC,EAAE,KAAK,CAAC,EAAE,cAAc,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB,GAAG,SAAS;IAOpI;;;OAGG;WACW,UAAU,CAAC,GAAG,EAAE,GAAG,GAAG,GAAG,IAAI,SAAS;IAOpD;;OAEG;IACH,SAAgC,SAAS,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACjE;;OAEG;IACH,SAAwB,WAAW,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAC3D;;OAEG;IACH,SAAgC,QAAQ,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAChE;;OAEG;IACH,SAAwB,kBAAkB,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,CAAC;IACpE;;OAEG;IACH,SAAgC,GAAG,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAC3D;;OAEG;IACH,SAAwB,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAEpD;;;;;;OAMG;gBACS,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,aAAa,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB;CA2BrF;AAED;;GAEG;AACH,MAAM,WAAW,cAAc;IAC3B;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC7C;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC/C;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC5C;;OAEG;IACH,kBAAkB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE,GAAG,SAAS,CAAC,CAAC;IACtE;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACvC;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;CAC3C;AAED;;GAEG;AACH,MAAM,WAAW,aAAa;IAC1B;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC/C;;OAEG;IACH,kBAAkB,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;IACzD;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;CAC3C"}
package/adminRole.js ADDED
@@ -0,0 +1,129 @@
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
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
5
+ if (k2 === undefined) k2 = k;
6
+ var desc = Object.getOwnPropertyDescriptor(m, k);
7
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
8
+ desc = { enumerable: true, get: function() { return m[k]; } };
9
+ }
10
+ Object.defineProperty(o, k2, desc);
11
+ }) : (function(o, m, k, k2) {
12
+ if (k2 === undefined) k2 = k;
13
+ o[k2] = m[k];
14
+ }));
15
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
16
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
17
+ }) : function(o, v) {
18
+ o["default"] = v;
19
+ });
20
+ var __importStar = (this && this.__importStar) || function (mod) {
21
+ if (mod && mod.__esModule) return mod;
22
+ var result = {};
23
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
24
+ __setModuleDefault(result, mod);
25
+ return result;
26
+ };
27
+ Object.defineProperty(exports, "__esModule", { value: true });
28
+ exports.AdminRole = void 0;
29
+ const pulumi = __importStar(require("@pulumi/pulumi"));
30
+ const utilities = __importStar(require("./utilities"));
31
+ /**
32
+ * The `gitlab.AdminRole` resource manages the lifecycle of a custom admin role.
33
+ *
34
+ * Custom admin roles allow an organization to grant read-only access to the Admin Area without granting Administrator access to the whole instance.
35
+ *
36
+ * Unlike `gitlab.MemberRole`, admin roles have no `baseAccessLevel` and are not scoped to a group, since they grant access to instance-wide administration rather than to a namespace.
37
+ *
38
+ * > This resource requires an Ultimate license and is only available for GitLab Self-Managed.
39
+ *
40
+ * **Upstream API**: [GitLab GraphQL API docs](https://docs.gitlab.com/api/graphql/reference/#mutationmemberroleadmincreate)
41
+ *
42
+ * ## Example Usage
43
+ *
44
+ * ```typescript
45
+ * import * as pulumi from "@pulumi/pulumi";
46
+ * import * as gitlab from "@pulumi/gitlab";
47
+ *
48
+ * // Example is creating a custom admin role for an auditor, with read-only access to several Admin Area pages.
49
+ * const example = new gitlab.AdminRole("example", {
50
+ * name: "Auditor",
51
+ * description: "Read-only access to the Admin Area for auditing purposes",
52
+ * enabledPermissions: [
53
+ * "READ_ADMIN_CICD",
54
+ * "READ_ADMIN_GROUPS",
55
+ * "READ_ADMIN_MONITORING",
56
+ * "READ_ADMIN_PROJECTS",
57
+ * "READ_ADMIN_SUBSCRIPTION",
58
+ * "READ_ADMIN_USERS",
59
+ * ],
60
+ * });
61
+ * ```
62
+ *
63
+ * ## Import
64
+ *
65
+ * Starting in Terraform v1.5.0, you can use an import block to import `gitlab.AdminRole`. For example:
66
+ *
67
+ * Importing using the CLI is supported with the following syntax:
68
+ *
69
+ * GitLab admin role can be imported using the id made up of `gid://gitlab/MemberRole/<ID>` for example:
70
+ *
71
+ * ```sh
72
+ * $ pulumi import gitlab:index/adminRole:AdminRole example 'gid://gitlab/MemberRole/123'
73
+ * ```
74
+ */
75
+ class AdminRole extends pulumi.CustomResource {
76
+ /**
77
+ * Get an existing AdminRole resource's state with the given name, ID, and optional extra
78
+ * properties used to qualify the lookup.
79
+ *
80
+ * @param name The _unique_ name of the resulting resource.
81
+ * @param id The _unique_ provider ID of the resource to lookup.
82
+ * @param state Any extra arguments used during the lookup.
83
+ * @param opts Optional settings to control the behavior of the CustomResource.
84
+ */
85
+ static get(name, id, state, opts) {
86
+ return new AdminRole(name, state, { ...opts, id: id });
87
+ }
88
+ /** @internal */
89
+ static __pulumiType = 'gitlab:index/adminRole:AdminRole';
90
+ /**
91
+ * Returns true if the given object is an instance of AdminRole. This is designed to work even
92
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
93
+ */
94
+ static isInstance(obj) {
95
+ if (obj === undefined || obj === null) {
96
+ return false;
97
+ }
98
+ return obj['__pulumiType'] === AdminRole.__pulumiType;
99
+ }
100
+ constructor(name, argsOrState, opts) {
101
+ let resourceInputs = {};
102
+ opts = opts || {};
103
+ if (opts.id) {
104
+ const state = argsOrState;
105
+ resourceInputs["createdAt"] = state?.createdAt;
106
+ resourceInputs["description"] = state?.description;
107
+ resourceInputs["editPath"] = state?.editPath;
108
+ resourceInputs["enabledPermissions"] = state?.enabledPermissions;
109
+ resourceInputs["iid"] = state?.iid;
110
+ resourceInputs["name"] = state?.name;
111
+ }
112
+ else {
113
+ const args = argsOrState;
114
+ if (args?.enabledPermissions === undefined && !opts.urn) {
115
+ throw new Error("Missing required property 'enabledPermissions'");
116
+ }
117
+ resourceInputs["description"] = args?.description;
118
+ resourceInputs["enabledPermissions"] = args?.enabledPermissions;
119
+ resourceInputs["name"] = args?.name;
120
+ resourceInputs["createdAt"] = undefined /*out*/;
121
+ resourceInputs["editPath"] = undefined /*out*/;
122
+ resourceInputs["iid"] = undefined /*out*/;
123
+ }
124
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
125
+ super(AdminRole.__pulumiType, name, resourceInputs, opts);
126
+ }
127
+ }
128
+ exports.AdminRole = AdminRole;
129
+ //# sourceMappingURL=adminRole.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"adminRole.js","sourceRoot":"","sources":["../adminRole.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AACzC,uDAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2CG;AACH,MAAa,SAAU,SAAQ,MAAM,CAAC,cAAc;IAChD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAsB,EAAE,IAAmC;QACpH,OAAO,IAAI,SAAS,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAChE,CAAC;IAED,gBAAgB;IACT,MAAM,CAAU,YAAY,GAAG,kCAAkC,CAAC;IAEzE;;;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,SAAS,CAAC,YAAY,CAAC;IAC1D,CAAC;IAmCD,YAAY,IAAY,EAAE,WAA4C,EAAE,IAAmC;QACvG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAyC,CAAC;YACxD,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,oBAAoB,CAAC,GAAG,KAAK,EAAE,kBAAkB,CAAC;YACjE,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,EAAE,GAAG,CAAC;YACnC,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;SACxC;aAAM;YACH,MAAM,IAAI,GAAG,WAAwC,CAAC;YACtD,IAAI,IAAI,EAAE,kBAAkB,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACrD,MAAM,IAAI,KAAK,CAAC,gDAAgD,CAAC,CAAC;aACrE;YACD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,oBAAoB,CAAC,GAAG,IAAI,EAAE,kBAAkB,CAAC;YAChE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAChD,cAAc,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC/C,cAAc,CAAC,KAAK,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAC7C;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,SAAS,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC9D,CAAC;;AAtFL,8BAuFC"}
package/getGroup.d.ts CHANGED
@@ -31,6 +31,10 @@ export interface GetGroupResult {
31
31
  * Comma-separated list of email address domains allowed to be added as group members.
32
32
  */
33
33
  readonly allowedEmailDomainsList: string;
34
+ /**
35
+ * Whether the group is archived.
36
+ */
37
+ readonly archived: boolean;
34
38
  /**
35
39
  * Default to Auto DevOps pipeline for all projects within this group.
36
40
  */
@@ -67,6 +71,14 @@ export interface GetGroupResult {
67
71
  * The description of the group.
68
72
  */
69
73
  readonly description: string;
74
+ /**
75
+ * Indicates whether GitLab Duo features are enabled for the group. Valid values are `defaultOn`, `defaultOff`, `neverOn`.
76
+ */
77
+ readonly duoAvailability: string;
78
+ /**
79
+ * Whether GitLab Duo features are enabled for the group.
80
+ */
81
+ readonly duoFeaturesEnabled: boolean;
70
82
  /**
71
83
  * Whether email notifications are disabled for this group. Use `emailsEnabled` instead, to be removed in 19.0.
72
84
  *
@@ -77,6 +89,14 @@ export interface GetGroupResult {
77
89
  * Whether email notifications are enabled for this group.
78
90
  */
79
91
  readonly emailsEnabled: boolean;
92
+ /**
93
+ * Restrict access to group by allowing only certain protocols. Valid values are `ssh`, `http`, `all`.
94
+ */
95
+ readonly enabledGitAccessProtocol: string;
96
+ /**
97
+ * Whether experimental features are enabled for the group.
98
+ */
99
+ readonly experimentFeaturesEnabled: boolean;
80
100
  /**
81
101
  * Available in Self-Managed, Premium and Ultimate plans. Can be set by administrators only. Additional CI/CD minutes for this group.
82
102
  */
@@ -117,10 +137,22 @@ export interface GetGroupResult {
117
137
  * Boolean, is LFS enabled for projects in this group.
118
138
  */
119
139
  readonly lfsEnabled: boolean;
140
+ /**
141
+ * Whether the GitLab Duo features setting is enforced for all subgroups.
142
+ */
143
+ readonly lockDuoFeaturesEnabled: boolean;
144
+ /**
145
+ * Whether the math rendering limits setting is enforced for all subgroups.
146
+ */
147
+ readonly lockMathRenderingLimitsEnabled: boolean;
120
148
  /**
121
149
  * Date on which the group was marked for deletion.
122
150
  */
123
151
  readonly markedForDeletionOn: string;
152
+ /**
153
+ * Whether math rendering limits are enabled for the group.
154
+ */
155
+ readonly mathRenderingLimitsEnabled: boolean;
124
156
  /**
125
157
  * Maximum artifacts size for the group, in MB.
126
158
  */
@@ -145,6 +177,10 @@ export interface GetGroupResult {
145
177
  * Default to only allowing merge if the pipeline succeeds for new projects in the group.
146
178
  */
147
179
  readonly onlyAllowMergeIfPipelineSucceeds: boolean;
180
+ /**
181
+ * The ID of the organization this group belongs to.
182
+ */
183
+ readonly organizationId: number;
148
184
  /**
149
185
  * Integer, ID of the parent group.
150
186
  */
package/getGroup.d.ts.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"getGroup.d.ts","sourceRoot":"","sources":["../getGroup.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"getGroup.d.ts","sourceRoot":"","sources":["../getGroup.ts"],"names":[],"mappings":"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"}
package/getGroup.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"getGroup.js","sourceRoot":"","sources":["../getGroup.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AAGzC,uDAAyC;AAEzC;;;;GAIG;AACH,SAAgB,QAAQ,CAAC,IAAmB,EAAE,IAA2B;IACrE,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,gCAAgC,EAAE;QAC3D,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,4BAOC;AA6ND;;;;GAIG;AACH,SAAgB,cAAc,CAAC,IAAyB,EAAE,IAAiC;IACvF,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,gCAAgC,EAAE;QACjE,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,wCAOC"}
1
+ {"version":3,"file":"getGroup.js","sourceRoot":"","sources":["../getGroup.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AAGzC,uDAAyC;AAEzC;;;;GAIG;AACH,SAAgB,QAAQ,CAAC,IAAmB,EAAE,IAA2B;IACrE,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,gCAAgC,EAAE;QAC3D,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,4BAOC;AAiQD;;;;GAIG;AACH,SAAgB,cAAc,CAAC,IAAyB,EAAE,IAAiC;IACvF,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,gCAAgC,EAAE;QACjE,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,wCAOC"}
@@ -0,0 +1,87 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * The `gitlab.ProjectErrorTrackingSettings` data source retrieves error tracking settings for a GitLab project.
4
+ *
5
+ * **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/error_tracking/)
6
+ *
7
+ * ## Example Usage
8
+ *
9
+ * ```typescript
10
+ * import * as pulumi from "@pulumi/pulumi";
11
+ * import * as gitlab from "@pulumi/gitlab";
12
+ *
13
+ * const example = gitlab.getProjectErrorTrackingSettings({
14
+ * project: "mygroup/myproject",
15
+ * });
16
+ * ```
17
+ */
18
+ export declare function getProjectErrorTrackingSettings(args: GetProjectErrorTrackingSettingsArgs, opts?: pulumi.InvokeOptions): Promise<GetProjectErrorTrackingSettingsResult>;
19
+ /**
20
+ * A collection of arguments for invoking getProjectErrorTrackingSettings.
21
+ */
22
+ export interface GetProjectErrorTrackingSettingsArgs {
23
+ /**
24
+ * The ID or URL-encoded path of the project.
25
+ */
26
+ project: string;
27
+ }
28
+ /**
29
+ * A collection of values returned by getProjectErrorTrackingSettings.
30
+ */
31
+ export interface GetProjectErrorTrackingSettingsResult {
32
+ /**
33
+ * Whether error tracking is enabled for the project.
34
+ */
35
+ readonly active: boolean;
36
+ /**
37
+ * The API URL to the Sentry project.
38
+ */
39
+ readonly apiUrl: string;
40
+ /**
41
+ * The ID of this datasource. In the format `<project-id>`.
42
+ */
43
+ readonly id: string;
44
+ /**
45
+ * Whether the integrated error tracking backend is enabled.
46
+ */
47
+ readonly integrated: boolean;
48
+ /**
49
+ * The ID or URL-encoded path of the project.
50
+ */
51
+ readonly project: string;
52
+ /**
53
+ * The Sentry project name.
54
+ */
55
+ readonly projectName: string;
56
+ /**
57
+ * The external URL to the Sentry project.
58
+ */
59
+ readonly sentryExternalUrl: string;
60
+ }
61
+ /**
62
+ * The `gitlab.ProjectErrorTrackingSettings` data source retrieves error tracking settings for a GitLab project.
63
+ *
64
+ * **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/error_tracking/)
65
+ *
66
+ * ## Example Usage
67
+ *
68
+ * ```typescript
69
+ * import * as pulumi from "@pulumi/pulumi";
70
+ * import * as gitlab from "@pulumi/gitlab";
71
+ *
72
+ * const example = gitlab.getProjectErrorTrackingSettings({
73
+ * project: "mygroup/myproject",
74
+ * });
75
+ * ```
76
+ */
77
+ export declare function getProjectErrorTrackingSettingsOutput(args: GetProjectErrorTrackingSettingsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetProjectErrorTrackingSettingsResult>;
78
+ /**
79
+ * A collection of arguments for invoking getProjectErrorTrackingSettings.
80
+ */
81
+ export interface GetProjectErrorTrackingSettingsOutputArgs {
82
+ /**
83
+ * The ID or URL-encoded path of the project.
84
+ */
85
+ project: pulumi.Input<string>;
86
+ }
87
+ //# sourceMappingURL=getProjectErrorTrackingSettings.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getProjectErrorTrackingSettings.d.ts","sourceRoot":"","sources":["../getProjectErrorTrackingSettings.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAGzC;;;;;;;;;;;;;;;GAeG;AACH,wBAAgB,+BAA+B,CAAC,IAAI,EAAE,mCAAmC,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,aAAa,GAAG,OAAO,CAAC,qCAAqC,CAAC,CAKtK;AAED;;GAEG;AACH,MAAM,WAAW,mCAAmC;IAChD;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;CACnB;AAED;;GAEG;AACH,MAAM,WAAW,qCAAqC;IAClD;;OAEG;IACH,QAAQ,CAAC,MAAM,EAAE,OAAO,CAAC;IACzB;;OAEG;IACH,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;IACxB;;OAEG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,QAAQ,CAAC,UAAU,EAAE,OAAO,CAAC;IAC7B;;OAEG;IACH,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB;;OAEG;IACH,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;IAC7B;;OAEG;IACH,QAAQ,CAAC,iBAAiB,EAAE,MAAM,CAAC;CACtC;AACD;;;;;;;;;;;;;;;GAeG;AACH,wBAAgB,qCAAqC,CAAC,IAAI,EAAE,yCAAyC,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,mBAAmB,GAAG,MAAM,CAAC,MAAM,CAAC,qCAAqC,CAAC,CAK9L;AAED;;GAEG;AACH,MAAM,WAAW,yCAAyC;IACtD;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;CACjC"}
@@ -0,0 +1,77 @@
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
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
5
+ if (k2 === undefined) k2 = k;
6
+ var desc = Object.getOwnPropertyDescriptor(m, k);
7
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
8
+ desc = { enumerable: true, get: function() { return m[k]; } };
9
+ }
10
+ Object.defineProperty(o, k2, desc);
11
+ }) : (function(o, m, k, k2) {
12
+ if (k2 === undefined) k2 = k;
13
+ o[k2] = m[k];
14
+ }));
15
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
16
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
17
+ }) : function(o, v) {
18
+ o["default"] = v;
19
+ });
20
+ var __importStar = (this && this.__importStar) || function (mod) {
21
+ if (mod && mod.__esModule) return mod;
22
+ var result = {};
23
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
24
+ __setModuleDefault(result, mod);
25
+ return result;
26
+ };
27
+ Object.defineProperty(exports, "__esModule", { value: true });
28
+ exports.getProjectErrorTrackingSettingsOutput = exports.getProjectErrorTrackingSettings = void 0;
29
+ const pulumi = __importStar(require("@pulumi/pulumi"));
30
+ const utilities = __importStar(require("./utilities"));
31
+ /**
32
+ * The `gitlab.ProjectErrorTrackingSettings` data source retrieves error tracking settings for a GitLab project.
33
+ *
34
+ * **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/error_tracking/)
35
+ *
36
+ * ## Example Usage
37
+ *
38
+ * ```typescript
39
+ * import * as pulumi from "@pulumi/pulumi";
40
+ * import * as gitlab from "@pulumi/gitlab";
41
+ *
42
+ * const example = gitlab.getProjectErrorTrackingSettings({
43
+ * project: "mygroup/myproject",
44
+ * });
45
+ * ```
46
+ */
47
+ function getProjectErrorTrackingSettings(args, opts) {
48
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
49
+ return pulumi.runtime.invoke("gitlab:index/getProjectErrorTrackingSettings:getProjectErrorTrackingSettings", {
50
+ "project": args.project,
51
+ }, opts);
52
+ }
53
+ exports.getProjectErrorTrackingSettings = getProjectErrorTrackingSettings;
54
+ /**
55
+ * The `gitlab.ProjectErrorTrackingSettings` data source retrieves error tracking settings for a GitLab project.
56
+ *
57
+ * **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/error_tracking/)
58
+ *
59
+ * ## Example Usage
60
+ *
61
+ * ```typescript
62
+ * import * as pulumi from "@pulumi/pulumi";
63
+ * import * as gitlab from "@pulumi/gitlab";
64
+ *
65
+ * const example = gitlab.getProjectErrorTrackingSettings({
66
+ * project: "mygroup/myproject",
67
+ * });
68
+ * ```
69
+ */
70
+ function getProjectErrorTrackingSettingsOutput(args, opts) {
71
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
72
+ return pulumi.runtime.invokeOutput("gitlab:index/getProjectErrorTrackingSettings:getProjectErrorTrackingSettings", {
73
+ "project": args.project,
74
+ }, opts);
75
+ }
76
+ exports.getProjectErrorTrackingSettingsOutput = getProjectErrorTrackingSettingsOutput;
77
+ //# sourceMappingURL=getProjectErrorTrackingSettings.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getProjectErrorTrackingSettings.js","sourceRoot":"","sources":["../getProjectErrorTrackingSettings.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AACzC,uDAAyC;AAEzC;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,+BAA+B,CAAC,IAAyC,EAAE,IAA2B;IAClH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8EAA8E,EAAE;QACzG,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,0EAKC;AA6CD;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,qCAAqC,CAAC,IAA+C,EAAE,IAAiC;IACpI,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,8EAA8E,EAAE;QAC/G,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,sFAKC"}
@@ -63,7 +63,7 @@ export declare class GroupAccessToken extends pulumi.CustomResource {
63
63
  */
64
64
  static isInstance(obj: any): obj is GroupAccessToken;
65
65
  /**
66
- * The access level for the group access token. Valid values are: `no one`, `minimal`, `guest`, `planner`, `reporter`, `developer`, `maintainer`, `owner`. Default is `maintainer`.
66
+ * The access level for the group access token. Valid values are: `no one`, `minimal`, `guest`, `planner`, `reporter`, `securityManager`, `developer`, `maintainer`, `owner`. Default is `maintainer`.
67
67
  */
68
68
  readonly accessLevel: pulumi.Output<string>;
69
69
  /**
@@ -128,7 +128,7 @@ export declare class GroupAccessToken extends pulumi.CustomResource {
128
128
  */
129
129
  export interface GroupAccessTokenState {
130
130
  /**
131
- * The access level for the group access token. Valid values are: `no one`, `minimal`, `guest`, `planner`, `reporter`, `developer`, `maintainer`, `owner`. Default is `maintainer`.
131
+ * The access level for the group access token. Valid values are: `no one`, `minimal`, `guest`, `planner`, `reporter`, `securityManager`, `developer`, `maintainer`, `owner`. Default is `maintainer`.
132
132
  */
133
133
  accessLevel?: pulumi.Input<string | undefined>;
134
134
  /**
@@ -185,7 +185,7 @@ export interface GroupAccessTokenState {
185
185
  */
186
186
  export interface GroupAccessTokenArgs {
187
187
  /**
188
- * The access level for the group access token. Valid values are: `no one`, `minimal`, `guest`, `planner`, `reporter`, `developer`, `maintainer`, `owner`. Default is `maintainer`.
188
+ * The access level for the group access token. Valid values are: `no one`, `minimal`, `guest`, `planner`, `reporter`, `securityManager`, `developer`, `maintainer`, `owner`. Default is `maintainer`.
189
189
  */
190
190
  accessLevel?: pulumi.Input<string | undefined>;
191
191
  /**
@@ -71,7 +71,7 @@ export declare class GroupLdapLink extends pulumi.CustomResource {
71
71
  */
72
72
  readonly group: pulumi.Output<string>;
73
73
  /**
74
- * Minimum access level for members of the LDAP group. Valid values are: `no one`, `minimal`, `guest`, `planner`, `reporter`, `developer`, `maintainer`, `owner`
74
+ * Minimum access level for members of the LDAP group. Valid values are: `no one`, `minimal`, `guest`, `planner`, `reporter`, `securityManager`, `developer`, `maintainer`, `owner`
75
75
  */
76
76
  readonly groupAccess: pulumi.Output<string>;
77
77
  /**
@@ -112,7 +112,7 @@ export interface GroupLdapLinkState {
112
112
  */
113
113
  group?: pulumi.Input<string | undefined>;
114
114
  /**
115
- * Minimum access level for members of the LDAP group. Valid values are: `no one`, `minimal`, `guest`, `planner`, `reporter`, `developer`, `maintainer`, `owner`
115
+ * Minimum access level for members of the LDAP group. Valid values are: `no one`, `minimal`, `guest`, `planner`, `reporter`, `securityManager`, `developer`, `maintainer`, `owner`
116
116
  */
117
117
  groupAccess?: pulumi.Input<string | undefined>;
118
118
  /**
@@ -145,7 +145,7 @@ export interface GroupLdapLinkArgs {
145
145
  */
146
146
  group: pulumi.Input<string>;
147
147
  /**
148
- * Minimum access level for members of the LDAP group. Valid values are: `no one`, `minimal`, `guest`, `planner`, `reporter`, `developer`, `maintainer`, `owner`
148
+ * Minimum access level for members of the LDAP group. Valid values are: `no one`, `minimal`, `guest`, `planner`, `reporter`, `securityManager`, `developer`, `maintainer`, `owner`
149
149
  */
150
150
  groupAccess: pulumi.Input<string>;
151
151
  /**
@@ -49,7 +49,7 @@ export declare class GroupMembership extends pulumi.CustomResource {
49
49
  */
50
50
  static isInstance(obj: any): obj is GroupMembership;
51
51
  /**
52
- * Access level for the member. Valid values are: `no one`, `minimal`, `guest`, `planner`, `reporter`, `developer`, `maintainer`, `owner`.
52
+ * Access level for the member. Valid values are: `no one`, `minimal`, `guest`, `planner`, `reporter`, `securityManager`, `developer`, `maintainer`, `owner`.
53
53
  */
54
54
  readonly accessLevel: pulumi.Output<string>;
55
55
  /**
@@ -90,7 +90,7 @@ export declare class GroupMembership extends pulumi.CustomResource {
90
90
  */
91
91
  export interface GroupMembershipState {
92
92
  /**
93
- * Access level for the member. Valid values are: `no one`, `minimal`, `guest`, `planner`, `reporter`, `developer`, `maintainer`, `owner`.
93
+ * Access level for the member. Valid values are: `no one`, `minimal`, `guest`, `planner`, `reporter`, `securityManager`, `developer`, `maintainer`, `owner`.
94
94
  */
95
95
  accessLevel?: pulumi.Input<string | undefined>;
96
96
  /**
@@ -123,7 +123,7 @@ export interface GroupMembershipState {
123
123
  */
124
124
  export interface GroupMembershipArgs {
125
125
  /**
126
- * Access level for the member. Valid values are: `no one`, `minimal`, `guest`, `planner`, `reporter`, `developer`, `maintainer`, `owner`.
126
+ * Access level for the member. Valid values are: `no one`, `minimal`, `guest`, `planner`, `reporter`, `securityManager`, `developer`, `maintainer`, `owner`.
127
127
  */
128
128
  accessLevel: pulumi.Input<string>;
129
129
  /**