@pulumi/gitlab 10.2.0-alpha.1787648737 → 10.2.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.
Files changed (73) hide show
  1. package/applicationSettings.d.ts +24 -0
  2. package/applicationSettings.d.ts.map +1 -1
  3. package/applicationSettings.js +4 -0
  4. package/applicationSettings.js.map +1 -1
  5. package/complianceRequirement.d.ts +201 -0
  6. package/complianceRequirement.d.ts.map +1 -0
  7. package/complianceRequirement.js +181 -0
  8. package/complianceRequirement.js.map +1 -0
  9. package/getGroup.d.ts +4 -0
  10. package/getGroup.d.ts.map +1 -1
  11. package/getGroup.js.map +1 -1
  12. package/getGroupServiceAccount.d.ts +4 -0
  13. package/getGroupServiceAccount.d.ts.map +1 -1
  14. package/getGroupServiceAccount.js.map +1 -1
  15. package/getProject.d.ts +8 -0
  16. package/getProject.d.ts.map +1 -1
  17. package/getProject.js.map +1 -1
  18. package/getProjectServiceAccount.d.ts +4 -0
  19. package/getProjectServiceAccount.d.ts.map +1 -1
  20. package/getProjectServiceAccount.js.map +1 -1
  21. package/group.d.ts +12 -0
  22. package/group.d.ts.map +1 -1
  23. package/group.js +2 -0
  24. package/group.js.map +1 -1
  25. package/groupDependencyProxyImageTtlPolicy.d.ts +105 -0
  26. package/groupDependencyProxyImageTtlPolicy.d.ts.map +1 -0
  27. package/groupDependencyProxyImageTtlPolicy.js +111 -0
  28. package/groupDependencyProxyImageTtlPolicy.js.map +1 -0
  29. package/groupIntegrationJira.d.ts +297 -0
  30. package/groupIntegrationJira.d.ts.map +1 -0
  31. package/groupIntegrationJira.js +157 -0
  32. package/groupIntegrationJira.js.map +1 -0
  33. package/groupServiceAccount.d.ts +4 -4
  34. package/groupServiceAccount.d.ts.map +1 -1
  35. package/groupServiceAccountAccessToken.d.ts +13 -0
  36. package/groupServiceAccountAccessToken.d.ts.map +1 -1
  37. package/groupServiceAccountAccessToken.js +3 -0
  38. package/groupServiceAccountAccessToken.js.map +1 -1
  39. package/index.d.ts +21 -0
  40. package/index.d.ts.map +1 -1
  41. package/index.js +41 -6
  42. package/index.js.map +1 -1
  43. package/package.json +2 -2
  44. package/project.d.ts +30 -0
  45. package/project.d.ts.map +1 -1
  46. package/project.js +4 -0
  47. package/project.js.map +1 -1
  48. package/projectFeatureFlag.d.ts +175 -0
  49. package/projectFeatureFlag.d.ts.map +1 -0
  50. package/projectFeatureFlag.js +153 -0
  51. package/projectFeatureFlag.js.map +1 -0
  52. package/projectFeatureFlagUserList.d.ts +145 -0
  53. package/projectFeatureFlagUserList.d.ts.map +1 -0
  54. package/projectFeatureFlagUserList.js +127 -0
  55. package/projectFeatureFlagUserList.js.map +1 -0
  56. package/projectSecuritySettings.d.ts +143 -0
  57. package/projectSecuritySettings.d.ts.map +1 -0
  58. package/projectSecuritySettings.js +126 -0
  59. package/projectSecuritySettings.js.map +1 -0
  60. package/projectServiceAccount.d.ts +4 -4
  61. package/projectServiceAccount.d.ts.map +1 -1
  62. package/projectServiceAccountAccessToken.d.ts +230 -0
  63. package/projectServiceAccountAccessToken.d.ts.map +1 -0
  64. package/projectServiceAccountAccessToken.js +178 -0
  65. package/projectServiceAccountAccessToken.js.map +1 -0
  66. package/types/input.d.ts +113 -0
  67. package/types/input.d.ts.map +1 -1
  68. package/types/output.d.ts +126 -0
  69. package/types/output.d.ts.map +1 -1
  70. package/user.d.ts +13 -0
  71. package/user.d.ts.map +1 -1
  72. package/user.js +3 -0
  73. package/user.js.map +1 -1
@@ -0,0 +1,145 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * The `gitlab.ProjectFeatureFlagUserList` resource manages the lifecycle of a project-level
4
+ * feature flag user list.
5
+ *
6
+ * User lists let you target a fixed set of users (by external ID) with a feature flag strategy, instead of a
7
+ * percentage-based rollout. Assign a list to a flag's `gitlabUserList` strategy from the GitLab UI or API;
8
+ * that binding isn't managed by this resource (see `gitlab.ProjectFeatureFlag` for why).
9
+ *
10
+ * **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/feature_flag_user_lists/)
11
+ *
12
+ * ## Example Usage
13
+ *
14
+ * ```typescript
15
+ * import * as pulumi from "@pulumi/pulumi";
16
+ * import * as gitlab from "@pulumi/gitlab";
17
+ *
18
+ * const example = new gitlab.Project("example", {
19
+ * name: "example",
20
+ * visibilityLevel: "private",
21
+ * });
22
+ * const exampleProjectFeatureFlagUserList = new gitlab.ProjectFeatureFlagUserList("example", {
23
+ * project: example.id,
24
+ * name: "beta_testers",
25
+ * userXids: "user1,user2,user3",
26
+ * });
27
+ * ```
28
+ *
29
+ * ## Import
30
+ *
31
+ * Starting in Terraform v1.5.0, you can use an import block to import `gitlab.ProjectFeatureFlagUserList`. For example:
32
+ *
33
+ * Importing using the CLI is supported with the following syntax:
34
+ *
35
+ * A GitLab Project Feature Flag User List can be imported using a key composed of
36
+ * `<project>:<list-iid>`, e.g.
37
+ *
38
+ * ```sh
39
+ * $ pulumi import gitlab:index/projectFeatureFlagUserList:ProjectFeatureFlagUserList example "12345:1"
40
+ * ```
41
+ */
42
+ export declare class ProjectFeatureFlagUserList extends pulumi.CustomResource {
43
+ /**
44
+ * Get an existing ProjectFeatureFlagUserList resource's state with the given name, ID, and optional extra
45
+ * properties used to qualify the lookup.
46
+ *
47
+ * @param name The _unique_ name of the resulting resource.
48
+ * @param id The _unique_ provider ID of the resource to lookup.
49
+ * @param state Any extra arguments used during the lookup.
50
+ * @param opts Optional settings to control the behavior of the CustomResource.
51
+ */
52
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ProjectFeatureFlagUserListState, opts?: pulumi.CustomResourceOptions): ProjectFeatureFlagUserList;
53
+ /**
54
+ * Returns true if the given object is an instance of ProjectFeatureFlagUserList. This is designed to work even
55
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
56
+ */
57
+ static isInstance(obj: any): obj is ProjectFeatureFlagUserList;
58
+ /**
59
+ * The date and time the user list was created, in ISO 8601 format.
60
+ */
61
+ readonly createdAt: pulumi.Output<string>;
62
+ /**
63
+ * The internal ID of the user list, assigned by GitLab.
64
+ */
65
+ readonly iid: pulumi.Output<number>;
66
+ /**
67
+ * The ID of the user list, assigned by GitLab. Unlike `iid`, this is the value expected by a `gitlab.ProjectFeatureFlag` strategy's `userListId` attribute to bind this list to a `gitlabUserList` strategy.
68
+ */
69
+ readonly listId: pulumi.Output<number>;
70
+ /**
71
+ * The name of the user list.
72
+ */
73
+ readonly name: pulumi.Output<string>;
74
+ /**
75
+ * The ID or URL-encoded path of the project.
76
+ */
77
+ readonly project: pulumi.Output<string>;
78
+ /**
79
+ * The date and time the user list was last updated, in ISO 8601 format.
80
+ */
81
+ readonly updatedAt: pulumi.Output<string>;
82
+ /**
83
+ * A comma-separated list of external user IDs.
84
+ */
85
+ readonly userXids: pulumi.Output<string>;
86
+ /**
87
+ * Create a ProjectFeatureFlagUserList 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: ProjectFeatureFlagUserListArgs, opts?: pulumi.CustomResourceOptions);
94
+ }
95
+ /**
96
+ * Input properties used for looking up and filtering ProjectFeatureFlagUserList resources.
97
+ */
98
+ export interface ProjectFeatureFlagUserListState {
99
+ /**
100
+ * The date and time the user list was created, in ISO 8601 format.
101
+ */
102
+ createdAt?: pulumi.Input<string | undefined>;
103
+ /**
104
+ * The internal ID of the user list, assigned by GitLab.
105
+ */
106
+ iid?: pulumi.Input<number | undefined>;
107
+ /**
108
+ * The ID of the user list, assigned by GitLab. Unlike `iid`, this is the value expected by a `gitlab.ProjectFeatureFlag` strategy's `userListId` attribute to bind this list to a `gitlabUserList` strategy.
109
+ */
110
+ listId?: pulumi.Input<number | undefined>;
111
+ /**
112
+ * The name of the user list.
113
+ */
114
+ name?: pulumi.Input<string | undefined>;
115
+ /**
116
+ * The ID or URL-encoded path of the project.
117
+ */
118
+ project?: pulumi.Input<string | undefined>;
119
+ /**
120
+ * The date and time the user list was last updated, in ISO 8601 format.
121
+ */
122
+ updatedAt?: pulumi.Input<string | undefined>;
123
+ /**
124
+ * A comma-separated list of external user IDs.
125
+ */
126
+ userXids?: pulumi.Input<string | undefined>;
127
+ }
128
+ /**
129
+ * The set of arguments for constructing a ProjectFeatureFlagUserList resource.
130
+ */
131
+ export interface ProjectFeatureFlagUserListArgs {
132
+ /**
133
+ * The name of the user list.
134
+ */
135
+ name?: pulumi.Input<string | undefined>;
136
+ /**
137
+ * The ID or URL-encoded path of the project.
138
+ */
139
+ project: pulumi.Input<string>;
140
+ /**
141
+ * A comma-separated list of external user IDs.
142
+ */
143
+ userXids?: pulumi.Input<string | undefined>;
144
+ }
145
+ //# sourceMappingURL=projectFeatureFlagUserList.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"projectFeatureFlagUserList.d.ts","sourceRoot":"","sources":["../projectFeatureFlagUserList.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAGzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuCG;AACH,qBAAa,0BAA2B,SAAQ,MAAM,CAAC,cAAc;IACjE;;;;;;;;OAQG;WACW,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC,EAAE,KAAK,CAAC,EAAE,+BAA+B,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB,GAAG,0BAA0B;IAOtK;;;OAGG;WACW,UAAU,CAAC,GAAG,EAAE,GAAG,GAAG,GAAG,IAAI,0BAA0B;IAOrE;;OAEG;IACH,SAAgC,SAAS,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACjE;;OAEG;IACH,SAAgC,GAAG,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAC3D;;OAEG;IACH,SAAgC,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAC9D;;OAEG;IACH,SAAwB,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACpD;;OAEG;IACH,SAAwB,OAAO,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACvD;;OAEG;IACH,SAAgC,SAAS,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACjE;;OAEG;IACH,SAAwB,QAAQ,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAExD;;;;;;OAMG;gBACS,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,8BAA8B,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB;CA6BtG;AAED;;GAEG;AACH,MAAM,WAAW,+BAA+B;IAC5C;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC7C;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACvC;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC1C;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACxC;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC3C;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC7C;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;CAC/C;AAED;;GAEG;AACH,MAAM,WAAW,8BAA8B;IAC3C;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACxC;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IAC9B;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;CAC/C"}
@@ -0,0 +1,127 @@
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.ProjectFeatureFlagUserList = void 0;
29
+ const pulumi = __importStar(require("@pulumi/pulumi"));
30
+ const utilities = __importStar(require("./utilities"));
31
+ /**
32
+ * The `gitlab.ProjectFeatureFlagUserList` resource manages the lifecycle of a project-level
33
+ * feature flag user list.
34
+ *
35
+ * User lists let you target a fixed set of users (by external ID) with a feature flag strategy, instead of a
36
+ * percentage-based rollout. Assign a list to a flag's `gitlabUserList` strategy from the GitLab UI or API;
37
+ * that binding isn't managed by this resource (see `gitlab.ProjectFeatureFlag` for why).
38
+ *
39
+ * **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/feature_flag_user_lists/)
40
+ *
41
+ * ## Example Usage
42
+ *
43
+ * ```typescript
44
+ * import * as pulumi from "@pulumi/pulumi";
45
+ * import * as gitlab from "@pulumi/gitlab";
46
+ *
47
+ * const example = new gitlab.Project("example", {
48
+ * name: "example",
49
+ * visibilityLevel: "private",
50
+ * });
51
+ * const exampleProjectFeatureFlagUserList = new gitlab.ProjectFeatureFlagUserList("example", {
52
+ * project: example.id,
53
+ * name: "beta_testers",
54
+ * userXids: "user1,user2,user3",
55
+ * });
56
+ * ```
57
+ *
58
+ * ## Import
59
+ *
60
+ * Starting in Terraform v1.5.0, you can use an import block to import `gitlab.ProjectFeatureFlagUserList`. For example:
61
+ *
62
+ * Importing using the CLI is supported with the following syntax:
63
+ *
64
+ * A GitLab Project Feature Flag User List can be imported using a key composed of
65
+ * `<project>:<list-iid>`, e.g.
66
+ *
67
+ * ```sh
68
+ * $ pulumi import gitlab:index/projectFeatureFlagUserList:ProjectFeatureFlagUserList example "12345:1"
69
+ * ```
70
+ */
71
+ class ProjectFeatureFlagUserList extends pulumi.CustomResource {
72
+ /**
73
+ * Get an existing ProjectFeatureFlagUserList resource's state with the given name, ID, and optional extra
74
+ * properties used to qualify the lookup.
75
+ *
76
+ * @param name The _unique_ name of the resulting resource.
77
+ * @param id The _unique_ provider ID of the resource to lookup.
78
+ * @param state Any extra arguments used during the lookup.
79
+ * @param opts Optional settings to control the behavior of the CustomResource.
80
+ */
81
+ static get(name, id, state, opts) {
82
+ return new ProjectFeatureFlagUserList(name, state, { ...opts, id: id });
83
+ }
84
+ /** @internal */
85
+ static __pulumiType = 'gitlab:index/projectFeatureFlagUserList:ProjectFeatureFlagUserList';
86
+ /**
87
+ * Returns true if the given object is an instance of ProjectFeatureFlagUserList. This is designed to work even
88
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
89
+ */
90
+ static isInstance(obj) {
91
+ if (obj === undefined || obj === null) {
92
+ return false;
93
+ }
94
+ return obj['__pulumiType'] === ProjectFeatureFlagUserList.__pulumiType;
95
+ }
96
+ constructor(name, argsOrState, opts) {
97
+ let resourceInputs = {};
98
+ opts = opts || {};
99
+ if (opts.id) {
100
+ const state = argsOrState;
101
+ resourceInputs["createdAt"] = state?.createdAt;
102
+ resourceInputs["iid"] = state?.iid;
103
+ resourceInputs["listId"] = state?.listId;
104
+ resourceInputs["name"] = state?.name;
105
+ resourceInputs["project"] = state?.project;
106
+ resourceInputs["updatedAt"] = state?.updatedAt;
107
+ resourceInputs["userXids"] = state?.userXids;
108
+ }
109
+ else {
110
+ const args = argsOrState;
111
+ if (args?.project === undefined && !opts.urn) {
112
+ throw new Error("Missing required property 'project'");
113
+ }
114
+ resourceInputs["name"] = args?.name;
115
+ resourceInputs["project"] = args?.project;
116
+ resourceInputs["userXids"] = args?.userXids;
117
+ resourceInputs["createdAt"] = undefined /*out*/;
118
+ resourceInputs["iid"] = undefined /*out*/;
119
+ resourceInputs["listId"] = undefined /*out*/;
120
+ resourceInputs["updatedAt"] = undefined /*out*/;
121
+ }
122
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
123
+ super(ProjectFeatureFlagUserList.__pulumiType, name, resourceInputs, opts);
124
+ }
125
+ }
126
+ exports.ProjectFeatureFlagUserList = ProjectFeatureFlagUserList;
127
+ //# sourceMappingURL=projectFeatureFlagUserList.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"projectFeatureFlagUserList.js","sourceRoot":"","sources":["../projectFeatureFlagUserList.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AACzC,uDAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuCG;AACH,MAAa,0BAA2B,SAAQ,MAAM,CAAC,cAAc;IACjE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAuC,EAAE,IAAmC;QACrI,OAAO,IAAI,0BAA0B,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACjF,CAAC;IAED,gBAAgB;IACT,MAAM,CAAU,YAAY,GAAG,oEAAoE,CAAC;IAE3G;;;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,0BAA0B,CAAC,YAAY,CAAC;IAC3E,CAAC;IAuCD,YAAY,IAAY,EAAE,WAA8E,EAAE,IAAmC;QACzI,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA0D,CAAC;YACzE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,EAAE,GAAG,CAAC;YACnC,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;SAChD;aAAM;YACH,MAAM,IAAI,GAAG,WAAyD,CAAC;YACvE,IAAI,IAAI,EAAE,OAAO,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC1C,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;aAC1D;YACD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;YAC1C,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAChD,cAAc,CAAC,KAAK,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC1C,cAAc,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC7C,cAAc,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACnD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,0BAA0B,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC/E,CAAC;;AA5FL,gEA6FC"}
@@ -0,0 +1,143 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * The `gitlab.ProjectSecuritySettings` resource allows managing security settings on a project.
4
+ *
5
+ * > Only `secretPushProtectionEnabled` can currently be changed through this API. The other attributes are read-only and reflect the project's current security configuration.
6
+ *
7
+ * > When you destroy this resource, `secretPushProtectionEnabled` is reverted to the value it had before Terraform started managing the project (captured on create or import), rather than being set to `false`.
8
+ *
9
+ * **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/project_security_settings/)
10
+ *
11
+ * ## Example Usage
12
+ *
13
+ * ```typescript
14
+ * import * as pulumi from "@pulumi/pulumi";
15
+ * import * as gitlab from "@pulumi/gitlab";
16
+ *
17
+ * const example = new gitlab.Project("example", {name: "example"});
18
+ * const exampleProjectSecuritySettings = new gitlab.ProjectSecuritySettings("example", {
19
+ * project: example.id,
20
+ * secretPushProtectionEnabled: true,
21
+ * });
22
+ * ```
23
+ *
24
+ * ## Import
25
+ *
26
+ * Starting in Terraform v1.5.0, you can use an import block to import `gitlab.ProjectSecuritySettings`. For example:
27
+ *
28
+ * Importing using the CLI is supported with the following syntax:
29
+ *
30
+ * GitLab project security settings can be imported using the project ID or full path, e.g.
31
+ *
32
+ * ```sh
33
+ * $ pulumi import gitlab:index/projectSecuritySettings:ProjectSecuritySettings example "12345"
34
+ * ```
35
+ */
36
+ export declare class ProjectSecuritySettings extends pulumi.CustomResource {
37
+ /**
38
+ * Get an existing ProjectSecuritySettings resource's state with the given name, ID, and optional extra
39
+ * properties used to qualify the lookup.
40
+ *
41
+ * @param name The _unique_ name of the resulting resource.
42
+ * @param id The _unique_ provider ID of the resource to lookup.
43
+ * @param state Any extra arguments used during the lookup.
44
+ * @param opts Optional settings to control the behavior of the CustomResource.
45
+ */
46
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ProjectSecuritySettingsState, opts?: pulumi.CustomResourceOptions): ProjectSecuritySettings;
47
+ /**
48
+ * Returns true if the given object is an instance of ProjectSecuritySettings. This is designed to work even
49
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
50
+ */
51
+ static isInstance(obj: any): obj is ProjectSecuritySettings;
52
+ /**
53
+ * Whether auto-fix for container scanning is enabled. Read-only, reflects the project's current configuration.
54
+ */
55
+ readonly autoFixContainerScanning: pulumi.Output<boolean>;
56
+ /**
57
+ * Whether auto-fix for DAST is enabled. Read-only, reflects the project's current configuration.
58
+ */
59
+ readonly autoFixDast: pulumi.Output<boolean>;
60
+ /**
61
+ * Whether auto-fix for dependency scanning is enabled. Read-only, reflects the project's current configuration.
62
+ */
63
+ readonly autoFixDependencyScanning: pulumi.Output<boolean>;
64
+ /**
65
+ * Whether auto-fix for SAST is enabled. Read-only, reflects the project's current configuration.
66
+ */
67
+ readonly autoFixSast: pulumi.Output<boolean>;
68
+ /**
69
+ * Whether container scanning for registry is enabled. Read-only, reflects the project's current configuration.
70
+ */
71
+ readonly containerScanningForRegistryEnabled: pulumi.Output<boolean>;
72
+ /**
73
+ * Whether continuous vulnerability scans are enabled. Read-only, reflects the project's current configuration.
74
+ */
75
+ readonly continuousVulnerabilityScansEnabled: pulumi.Output<boolean>;
76
+ /**
77
+ * The ID or full path of the project to change the security settings of.
78
+ */
79
+ readonly project: pulumi.Output<string>;
80
+ /**
81
+ * Whether to enable secret push protection for the project.
82
+ */
83
+ readonly secretPushProtectionEnabled: pulumi.Output<boolean>;
84
+ /**
85
+ * Create a ProjectSecuritySettings resource with the given unique name, arguments, and options.
86
+ *
87
+ * @param name The _unique_ name of the resource.
88
+ * @param args The arguments to use to populate this resource's properties.
89
+ * @param opts A bag of options that control this resource's behavior.
90
+ */
91
+ constructor(name: string, args: ProjectSecuritySettingsArgs, opts?: pulumi.CustomResourceOptions);
92
+ }
93
+ /**
94
+ * Input properties used for looking up and filtering ProjectSecuritySettings resources.
95
+ */
96
+ export interface ProjectSecuritySettingsState {
97
+ /**
98
+ * Whether auto-fix for container scanning is enabled. Read-only, reflects the project's current configuration.
99
+ */
100
+ autoFixContainerScanning?: pulumi.Input<boolean | undefined>;
101
+ /**
102
+ * Whether auto-fix for DAST is enabled. Read-only, reflects the project's current configuration.
103
+ */
104
+ autoFixDast?: pulumi.Input<boolean | undefined>;
105
+ /**
106
+ * Whether auto-fix for dependency scanning is enabled. Read-only, reflects the project's current configuration.
107
+ */
108
+ autoFixDependencyScanning?: pulumi.Input<boolean | undefined>;
109
+ /**
110
+ * Whether auto-fix for SAST is enabled. Read-only, reflects the project's current configuration.
111
+ */
112
+ autoFixSast?: pulumi.Input<boolean | undefined>;
113
+ /**
114
+ * Whether container scanning for registry is enabled. Read-only, reflects the project's current configuration.
115
+ */
116
+ containerScanningForRegistryEnabled?: pulumi.Input<boolean | undefined>;
117
+ /**
118
+ * Whether continuous vulnerability scans are enabled. Read-only, reflects the project's current configuration.
119
+ */
120
+ continuousVulnerabilityScansEnabled?: pulumi.Input<boolean | undefined>;
121
+ /**
122
+ * The ID or full path of the project to change the security settings of.
123
+ */
124
+ project?: pulumi.Input<string | undefined>;
125
+ /**
126
+ * Whether to enable secret push protection for the project.
127
+ */
128
+ secretPushProtectionEnabled?: pulumi.Input<boolean | undefined>;
129
+ }
130
+ /**
131
+ * The set of arguments for constructing a ProjectSecuritySettings resource.
132
+ */
133
+ export interface ProjectSecuritySettingsArgs {
134
+ /**
135
+ * The ID or full path of the project to change the security settings of.
136
+ */
137
+ project: pulumi.Input<string>;
138
+ /**
139
+ * Whether to enable secret push protection for the project.
140
+ */
141
+ secretPushProtectionEnabled: pulumi.Input<boolean>;
142
+ }
143
+ //# sourceMappingURL=projectSecuritySettings.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"projectSecuritySettings.d.ts","sourceRoot":"","sources":["../projectSecuritySettings.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAGzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiCG;AACH,qBAAa,uBAAwB,SAAQ,MAAM,CAAC,cAAc;IAC9D;;;;;;;;OAQG;WACW,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC,EAAE,KAAK,CAAC,EAAE,4BAA4B,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB,GAAG,uBAAuB;IAOhK;;;OAGG;WACW,UAAU,CAAC,GAAG,EAAE,GAAG,GAAG,GAAG,IAAI,uBAAuB;IAOlE;;OAEG;IACH,SAAgC,wBAAwB,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;IACjF;;OAEG;IACH,SAAgC,WAAW,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;IACpE;;OAEG;IACH,SAAgC,yBAAyB,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;IAClF;;OAEG;IACH,SAAgC,WAAW,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;IACpE;;OAEG;IACH,SAAgC,mCAAmC,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;IAC5F;;OAEG;IACH,SAAgC,mCAAmC,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;IAC5F;;OAEG;IACH,SAAwB,OAAO,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACvD;;OAEG;IACH,SAAwB,2BAA2B,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;IAE5E;;;;;;OAMG;gBACS,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,2BAA2B,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB;CAkCnG;AAED;;GAEG;AACH,MAAM,WAAW,4BAA4B;IACzC;;OAEG;IACH,wBAAwB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC;IAC7D;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC;IAChD;;OAEG;IACH,yBAAyB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC;IAC9D;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC;IAChD;;OAEG;IACH,mCAAmC,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC;IACxE;;OAEG;IACH,mCAAmC,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC;IACxE;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC3C;;OAEG;IACH,2BAA2B,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC;CACnE;AAED;;GAEG;AACH,MAAM,WAAW,2BAA2B;IACxC;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IAC9B;;OAEG;IACH,2BAA2B,EAAE,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;CACtD"}
@@ -0,0 +1,126 @@
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.ProjectSecuritySettings = void 0;
29
+ const pulumi = __importStar(require("@pulumi/pulumi"));
30
+ const utilities = __importStar(require("./utilities"));
31
+ /**
32
+ * The `gitlab.ProjectSecuritySettings` resource allows managing security settings on a project.
33
+ *
34
+ * > Only `secretPushProtectionEnabled` can currently be changed through this API. The other attributes are read-only and reflect the project's current security configuration.
35
+ *
36
+ * > When you destroy this resource, `secretPushProtectionEnabled` is reverted to the value it had before Terraform started managing the project (captured on create or import), rather than being set to `false`.
37
+ *
38
+ * **Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/api/project_security_settings/)
39
+ *
40
+ * ## Example Usage
41
+ *
42
+ * ```typescript
43
+ * import * as pulumi from "@pulumi/pulumi";
44
+ * import * as gitlab from "@pulumi/gitlab";
45
+ *
46
+ * const example = new gitlab.Project("example", {name: "example"});
47
+ * const exampleProjectSecuritySettings = new gitlab.ProjectSecuritySettings("example", {
48
+ * project: example.id,
49
+ * secretPushProtectionEnabled: true,
50
+ * });
51
+ * ```
52
+ *
53
+ * ## Import
54
+ *
55
+ * Starting in Terraform v1.5.0, you can use an import block to import `gitlab.ProjectSecuritySettings`. For example:
56
+ *
57
+ * Importing using the CLI is supported with the following syntax:
58
+ *
59
+ * GitLab project security settings can be imported using the project ID or full path, e.g.
60
+ *
61
+ * ```sh
62
+ * $ pulumi import gitlab:index/projectSecuritySettings:ProjectSecuritySettings example "12345"
63
+ * ```
64
+ */
65
+ class ProjectSecuritySettings extends pulumi.CustomResource {
66
+ /**
67
+ * Get an existing ProjectSecuritySettings resource's state with the given name, ID, and optional extra
68
+ * properties used to qualify the lookup.
69
+ *
70
+ * @param name The _unique_ name of the resulting resource.
71
+ * @param id The _unique_ provider ID of the resource to lookup.
72
+ * @param state Any extra arguments used during the lookup.
73
+ * @param opts Optional settings to control the behavior of the CustomResource.
74
+ */
75
+ static get(name, id, state, opts) {
76
+ return new ProjectSecuritySettings(name, state, { ...opts, id: id });
77
+ }
78
+ /** @internal */
79
+ static __pulumiType = 'gitlab:index/projectSecuritySettings:ProjectSecuritySettings';
80
+ /**
81
+ * Returns true if the given object is an instance of ProjectSecuritySettings. This is designed to work even
82
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
83
+ */
84
+ static isInstance(obj) {
85
+ if (obj === undefined || obj === null) {
86
+ return false;
87
+ }
88
+ return obj['__pulumiType'] === ProjectSecuritySettings.__pulumiType;
89
+ }
90
+ constructor(name, argsOrState, opts) {
91
+ let resourceInputs = {};
92
+ opts = opts || {};
93
+ if (opts.id) {
94
+ const state = argsOrState;
95
+ resourceInputs["autoFixContainerScanning"] = state?.autoFixContainerScanning;
96
+ resourceInputs["autoFixDast"] = state?.autoFixDast;
97
+ resourceInputs["autoFixDependencyScanning"] = state?.autoFixDependencyScanning;
98
+ resourceInputs["autoFixSast"] = state?.autoFixSast;
99
+ resourceInputs["containerScanningForRegistryEnabled"] = state?.containerScanningForRegistryEnabled;
100
+ resourceInputs["continuousVulnerabilityScansEnabled"] = state?.continuousVulnerabilityScansEnabled;
101
+ resourceInputs["project"] = state?.project;
102
+ resourceInputs["secretPushProtectionEnabled"] = state?.secretPushProtectionEnabled;
103
+ }
104
+ else {
105
+ const args = argsOrState;
106
+ if (args?.project === undefined && !opts.urn) {
107
+ throw new Error("Missing required property 'project'");
108
+ }
109
+ if (args?.secretPushProtectionEnabled === undefined && !opts.urn) {
110
+ throw new Error("Missing required property 'secretPushProtectionEnabled'");
111
+ }
112
+ resourceInputs["project"] = args?.project;
113
+ resourceInputs["secretPushProtectionEnabled"] = args?.secretPushProtectionEnabled;
114
+ resourceInputs["autoFixContainerScanning"] = undefined /*out*/;
115
+ resourceInputs["autoFixDast"] = undefined /*out*/;
116
+ resourceInputs["autoFixDependencyScanning"] = undefined /*out*/;
117
+ resourceInputs["autoFixSast"] = undefined /*out*/;
118
+ resourceInputs["containerScanningForRegistryEnabled"] = undefined /*out*/;
119
+ resourceInputs["continuousVulnerabilityScansEnabled"] = undefined /*out*/;
120
+ }
121
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
122
+ super(ProjectSecuritySettings.__pulumiType, name, resourceInputs, opts);
123
+ }
124
+ }
125
+ exports.ProjectSecuritySettings = ProjectSecuritySettings;
126
+ //# sourceMappingURL=projectSecuritySettings.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"projectSecuritySettings.js","sourceRoot":"","sources":["../projectSecuritySettings.ts"],"names":[],"mappings":"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"}
@@ -81,9 +81,9 @@ export declare class ProjectServiceAccount extends pulumi.CustomResource {
81
81
  readonly skipWaitForDeletion: pulumi.Output<boolean | undefined>;
82
82
  readonly timeouts: pulumi.Output<outputs.ProjectServiceAccountTimeouts | undefined>;
83
83
  /**
84
- * The username of the user. If not specified, its automatically generated.
84
+ * The username of the user. If not specified, it's automatically generated.
85
85
  */
86
- readonly username: pulumi.Output<string | undefined>;
86
+ readonly username: pulumi.Output<string>;
87
87
  /**
88
88
  * Create a ProjectServiceAccount resource with the given unique name, arguments, and options.
89
89
  *
@@ -119,7 +119,7 @@ export interface ProjectServiceAccountState {
119
119
  skipWaitForDeletion?: pulumi.Input<boolean | undefined>;
120
120
  timeouts?: pulumi.Input<inputs.ProjectServiceAccountTimeouts | undefined>;
121
121
  /**
122
- * The username of the user. If not specified, its automatically generated.
122
+ * The username of the user. If not specified, it's automatically generated.
123
123
  */
124
124
  username?: pulumi.Input<string | undefined>;
125
125
  }
@@ -145,7 +145,7 @@ export interface ProjectServiceAccountArgs {
145
145
  skipWaitForDeletion?: pulumi.Input<boolean | undefined>;
146
146
  timeouts?: pulumi.Input<inputs.ProjectServiceAccountTimeouts | undefined>;
147
147
  /**
148
- * The username of the user. If not specified, its automatically generated.
148
+ * The username of the user. If not specified, it's automatically generated.
149
149
  */
150
150
  username?: pulumi.Input<string | undefined>;
151
151
  }
@@ -1 +1 @@
1
- {"version":3,"file":"projectServiceAccount.d.ts","sourceRoot":"","sources":["../projectServiceAccount.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"projectServiceAccount.d.ts","sourceRoot":"","sources":["../projectServiceAccount.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AACzC,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AACxC,OAAO,KAAK,OAAO,MAAM,gBAAgB,CAAC;AAG1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAyCG;AACH,qBAAa,qBAAsB,SAAQ,MAAM,CAAC,cAAc;IAC5D;;;;;;;;OAQG;WACW,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC,EAAE,KAAK,CAAC,EAAE,0BAA0B,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB,GAAG,qBAAqB;IAO5J;;;OAGG;WACW,UAAU,CAAC,GAAG,EAAE,GAAG,GAAG,GAAG,IAAI,qBAAqB;IAOhE;;OAEG;IACH,SAAwB,KAAK,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACrD;;OAEG;IACH,SAAwB,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACpD;;OAEG;IACH,SAAwB,OAAO,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACvD;;OAEG;IACH,SAAgC,gBAAgB,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACxE;;OAEG;IACH,SAAwB,mBAAmB,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC;IAChF,SAAwB,QAAQ,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,6BAA6B,GAAG,SAAS,CAAC,CAAC;IACnG;;OAEG;IACH,SAAwB,QAAQ,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAExD;;;;;;OAMG;gBACS,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,yBAAyB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB;CA6BjG;AAED;;GAEG;AACH,MAAM,WAAW,0BAA0B;IACvC;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACzC;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACxC;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC3C;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACpD;;OAEG;IACH,mBAAmB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC;IACxD,QAAQ,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,6BAA6B,GAAG,SAAS,CAAC,CAAC;IAC1E;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;CAC/C;AAED;;GAEG;AACH,MAAM,WAAW,yBAAyB;IACtC;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACzC;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACxC;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IAC9B;;OAEG;IACH,mBAAmB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC;IACxD,QAAQ,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,6BAA6B,GAAG,SAAS,CAAC,CAAC;IAC1E;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;CAC/C"}