@pulumi/artifactory 8.11.0-alpha.1766173037 → 8.11.0-alpha.1766207602

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 (44) hide show
  1. package/artifactoryReleaseBundleCustomWebhook.d.ts +0 -1
  2. package/artifactoryReleaseBundleCustomWebhook.js +0 -1
  3. package/artifactoryReleaseBundleCustomWebhook.js.map +1 -1
  4. package/artifactoryReleaseBundleWebhook.d.ts +0 -1
  5. package/artifactoryReleaseBundleWebhook.js +0 -1
  6. package/artifactoryReleaseBundleWebhook.js.map +1 -1
  7. package/buildCustomWebhook.d.ts +1 -1
  8. package/buildCustomWebhook.js +1 -1
  9. package/buildWebhook.d.ts +1 -2
  10. package/buildWebhook.js +1 -2
  11. package/buildWebhook.js.map +1 -1
  12. package/getLocalHexRepository.d.ts +78 -0
  13. package/getLocalHexRepository.js +50 -0
  14. package/getLocalHexRepository.js.map +1 -0
  15. package/getRemoteHexRepository.d.ts +105 -0
  16. package/getRemoteHexRepository.js +50 -0
  17. package/getRemoteHexRepository.js.map +1 -0
  18. package/getVirtualHexRepository.d.ts +71 -0
  19. package/getVirtualHexRepository.js +50 -0
  20. package/getVirtualHexRepository.js.map +1 -0
  21. package/index.d.ts +18 -0
  22. package/index.js +32 -7
  23. package/index.js.map +1 -1
  24. package/localHexRepository.d.ts +261 -0
  25. package/localHexRepository.js +124 -0
  26. package/localHexRepository.js.map +1 -0
  27. package/package.json +2 -2
  28. package/releaseBundleV2CleanupPolicy.d.ts +0 -41
  29. package/releaseBundleV2CleanupPolicy.js +0 -41
  30. package/releaseBundleV2CleanupPolicy.js.map +1 -1
  31. package/releaseBundleV2CustomWebhook.d.ts +0 -2
  32. package/releaseBundleV2CustomWebhook.js +0 -2
  33. package/releaseBundleV2CustomWebhook.js.map +1 -1
  34. package/releaseBundleV2Webhook.d.ts +0 -2
  35. package/releaseBundleV2Webhook.js +0 -2
  36. package/releaseBundleV2Webhook.js.map +1 -1
  37. package/remoteHexRepository.d.ts +590 -0
  38. package/remoteHexRepository.js +196 -0
  39. package/remoteHexRepository.js.map +1 -0
  40. package/types/input.d.ts +55 -29
  41. package/types/output.d.ts +55 -29
  42. package/virtualHexRepository.d.ts +232 -0
  43. package/virtualHexRepository.js +138 -0
  44. package/virtualHexRepository.js.map +1 -0
@@ -0,0 +1,261 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * Creates a local Hex repository for storing Elixir/Erlang packages.
4
+ *
5
+ * ## Example Usage
6
+ *
7
+ * ```typescript
8
+ * import * as pulumi from "@pulumi/pulumi";
9
+ * import * as artifactory from "@pulumi/artifactory";
10
+ * import * as std from "@pulumi/std";
11
+ *
12
+ * const some_keypairRSA = new artifactory.Keypair("some-keypairRSA", {
13
+ * pairName: `some-keypair${randid.id}`,
14
+ * pairType: "RSA",
15
+ * alias: "foo-alias",
16
+ * privateKey: std.file({
17
+ * input: "samples/rsa.priv",
18
+ * }).then(invoke => invoke.result),
19
+ * publicKey: std.file({
20
+ * input: "samples/rsa.pub",
21
+ * }).then(invoke => invoke.result),
22
+ * });
23
+ * const my_hex_repo = new artifactory.LocalHexRepository("my-hex-repo", {
24
+ * key: "my-hex-repo",
25
+ * hexPrimaryKeypairRef: some_keypairRSA.pairName,
26
+ * description: "Local Hex repository for Elixir packages",
27
+ * notes: "Internal repository",
28
+ * }, {
29
+ * dependsOn: [some_keypairRSA],
30
+ * });
31
+ * ```
32
+ *
33
+ * ## Import
34
+ *
35
+ * Local repositories can be imported using their name, e.g.
36
+ *
37
+ * ```sh
38
+ * $ pulumi import artifactory:index/localHexRepository:LocalHexRepository my-hex-repo my-hex-repo
39
+ * ```
40
+ */
41
+ export declare class LocalHexRepository extends pulumi.CustomResource {
42
+ /**
43
+ * Get an existing LocalHexRepository resource's state with the given name, ID, and optional extra
44
+ * properties used to qualify the lookup.
45
+ *
46
+ * @param name The _unique_ name of the resulting resource.
47
+ * @param id The _unique_ provider ID of the resource to lookup.
48
+ * @param state Any extra arguments used during the lookup.
49
+ * @param opts Optional settings to control the behavior of the CustomResource.
50
+ */
51
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: LocalHexRepositoryState, opts?: pulumi.CustomResourceOptions): LocalHexRepository;
52
+ /**
53
+ * Returns true if the given object is an instance of LocalHexRepository. This is designed to work even
54
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
55
+ */
56
+ static isInstance(obj: any): obj is LocalHexRepository;
57
+ /**
58
+ * When set, you may view content such as HTML or Javadoc files directly from Artifactory.
59
+ * This may not be safe and therefore requires strict content moderation to prevent malicious users from uploading content that may compromise security (e.g., cross-site scripting attacks).
60
+ */
61
+ readonly archiveBrowsingEnabled: pulumi.Output<boolean>;
62
+ /**
63
+ * When set, the repository does not participate in artifact resolution and new artifacts cannot be deployed.
64
+ */
65
+ readonly blackedOut: pulumi.Output<boolean>;
66
+ /**
67
+ * When set, download requests to this repository will redirect the client to download the artifact directly from AWS CloudFront. Available in Enterprise+ and Edge licenses only. Default value is 'false'
68
+ */
69
+ readonly cdnRedirect: pulumi.Output<boolean>;
70
+ /**
71
+ * Public description.
72
+ */
73
+ readonly description: pulumi.Output<string>;
74
+ /**
75
+ * When set, download requests to this repository will redirect the client to download the artifact directly from the cloud storage provider. Available in Enterprise+ and Edge licenses only.
76
+ */
77
+ readonly downloadDirect: pulumi.Output<boolean>;
78
+ /**
79
+ * List of artifact patterns to exclude when evaluating artifact requests, in the form of `x/y/**&#47;z/*`.By default no artifacts are excluded.
80
+ */
81
+ readonly excludesPattern: pulumi.Output<string>;
82
+ /**
83
+ * Select the RSA key pair to sign and encrypt content for secure communication between Artifactory and the Mix client.
84
+ */
85
+ readonly hexPrimaryKeypairRef: pulumi.Output<string>;
86
+ /**
87
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of `x/y/**&#47;z/*`. When used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (`**&#47;*`).
88
+ */
89
+ readonly includesPattern: pulumi.Output<string>;
90
+ /**
91
+ * the identity key of the repo.
92
+ */
93
+ readonly key: pulumi.Output<string>;
94
+ /**
95
+ * Internal description.
96
+ */
97
+ readonly notes: pulumi.Output<string>;
98
+ /**
99
+ * Setting repositories with priority will cause metadata to be merged only from repositories set with this field
100
+ */
101
+ readonly priorityResolution: pulumi.Output<boolean>;
102
+ readonly projectEnvironments: pulumi.Output<string[]>;
103
+ /**
104
+ * Project key for assigning this repository to. Must be 2 - 32 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
105
+ */
106
+ readonly projectKey: pulumi.Output<string>;
107
+ /**
108
+ * List of property set name
109
+ */
110
+ readonly propertySets: pulumi.Output<string[] | undefined>;
111
+ /**
112
+ * Sets the layout that the repository should use for storing and identifying modules. A recommended layout that corresponds to the package type defined is suggested, and index packages uploaded and calculate metadata accordingly.
113
+ */
114
+ readonly repoLayoutRef: pulumi.Output<string>;
115
+ /**
116
+ * Enable Indexing In Xray. Repository will be indexed with the default retention period. You will be able to change it via Xray settings.
117
+ */
118
+ readonly xrayIndex: pulumi.Output<boolean>;
119
+ /**
120
+ * Create a LocalHexRepository resource with the given unique name, arguments, and options.
121
+ *
122
+ * @param name The _unique_ name of the resource.
123
+ * @param args The arguments to use to populate this resource's properties.
124
+ * @param opts A bag of options that control this resource's behavior.
125
+ */
126
+ constructor(name: string, args: LocalHexRepositoryArgs, opts?: pulumi.CustomResourceOptions);
127
+ }
128
+ /**
129
+ * Input properties used for looking up and filtering LocalHexRepository resources.
130
+ */
131
+ export interface LocalHexRepositoryState {
132
+ /**
133
+ * When set, you may view content such as HTML or Javadoc files directly from Artifactory.
134
+ * This may not be safe and therefore requires strict content moderation to prevent malicious users from uploading content that may compromise security (e.g., cross-site scripting attacks).
135
+ */
136
+ archiveBrowsingEnabled?: pulumi.Input<boolean>;
137
+ /**
138
+ * When set, the repository does not participate in artifact resolution and new artifacts cannot be deployed.
139
+ */
140
+ blackedOut?: pulumi.Input<boolean>;
141
+ /**
142
+ * When set, download requests to this repository will redirect the client to download the artifact directly from AWS CloudFront. Available in Enterprise+ and Edge licenses only. Default value is 'false'
143
+ */
144
+ cdnRedirect?: pulumi.Input<boolean>;
145
+ /**
146
+ * Public description.
147
+ */
148
+ description?: pulumi.Input<string>;
149
+ /**
150
+ * When set, download requests to this repository will redirect the client to download the artifact directly from the cloud storage provider. Available in Enterprise+ and Edge licenses only.
151
+ */
152
+ downloadDirect?: pulumi.Input<boolean>;
153
+ /**
154
+ * List of artifact patterns to exclude when evaluating artifact requests, in the form of `x/y/**&#47;z/*`.By default no artifacts are excluded.
155
+ */
156
+ excludesPattern?: pulumi.Input<string>;
157
+ /**
158
+ * Select the RSA key pair to sign and encrypt content for secure communication between Artifactory and the Mix client.
159
+ */
160
+ hexPrimaryKeypairRef?: pulumi.Input<string>;
161
+ /**
162
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of `x/y/**&#47;z/*`. When used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (`**&#47;*`).
163
+ */
164
+ includesPattern?: pulumi.Input<string>;
165
+ /**
166
+ * the identity key of the repo.
167
+ */
168
+ key?: pulumi.Input<string>;
169
+ /**
170
+ * Internal description.
171
+ */
172
+ notes?: pulumi.Input<string>;
173
+ /**
174
+ * Setting repositories with priority will cause metadata to be merged only from repositories set with this field
175
+ */
176
+ priorityResolution?: pulumi.Input<boolean>;
177
+ projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
178
+ /**
179
+ * Project key for assigning this repository to. Must be 2 - 32 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
180
+ */
181
+ projectKey?: pulumi.Input<string>;
182
+ /**
183
+ * List of property set name
184
+ */
185
+ propertySets?: pulumi.Input<pulumi.Input<string>[]>;
186
+ /**
187
+ * Sets the layout that the repository should use for storing and identifying modules. A recommended layout that corresponds to the package type defined is suggested, and index packages uploaded and calculate metadata accordingly.
188
+ */
189
+ repoLayoutRef?: pulumi.Input<string>;
190
+ /**
191
+ * Enable Indexing In Xray. Repository will be indexed with the default retention period. You will be able to change it via Xray settings.
192
+ */
193
+ xrayIndex?: pulumi.Input<boolean>;
194
+ }
195
+ /**
196
+ * The set of arguments for constructing a LocalHexRepository resource.
197
+ */
198
+ export interface LocalHexRepositoryArgs {
199
+ /**
200
+ * When set, you may view content such as HTML or Javadoc files directly from Artifactory.
201
+ * This may not be safe and therefore requires strict content moderation to prevent malicious users from uploading content that may compromise security (e.g., cross-site scripting attacks).
202
+ */
203
+ archiveBrowsingEnabled?: pulumi.Input<boolean>;
204
+ /**
205
+ * When set, the repository does not participate in artifact resolution and new artifacts cannot be deployed.
206
+ */
207
+ blackedOut?: pulumi.Input<boolean>;
208
+ /**
209
+ * When set, download requests to this repository will redirect the client to download the artifact directly from AWS CloudFront. Available in Enterprise+ and Edge licenses only. Default value is 'false'
210
+ */
211
+ cdnRedirect?: pulumi.Input<boolean>;
212
+ /**
213
+ * Public description.
214
+ */
215
+ description?: pulumi.Input<string>;
216
+ /**
217
+ * When set, download requests to this repository will redirect the client to download the artifact directly from the cloud storage provider. Available in Enterprise+ and Edge licenses only.
218
+ */
219
+ downloadDirect?: pulumi.Input<boolean>;
220
+ /**
221
+ * List of artifact patterns to exclude when evaluating artifact requests, in the form of `x/y/**&#47;z/*`.By default no artifacts are excluded.
222
+ */
223
+ excludesPattern?: pulumi.Input<string>;
224
+ /**
225
+ * Select the RSA key pair to sign and encrypt content for secure communication between Artifactory and the Mix client.
226
+ */
227
+ hexPrimaryKeypairRef: pulumi.Input<string>;
228
+ /**
229
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of `x/y/**&#47;z/*`. When used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (`**&#47;*`).
230
+ */
231
+ includesPattern?: pulumi.Input<string>;
232
+ /**
233
+ * the identity key of the repo.
234
+ */
235
+ key: pulumi.Input<string>;
236
+ /**
237
+ * Internal description.
238
+ */
239
+ notes?: pulumi.Input<string>;
240
+ /**
241
+ * Setting repositories with priority will cause metadata to be merged only from repositories set with this field
242
+ */
243
+ priorityResolution?: pulumi.Input<boolean>;
244
+ projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
245
+ /**
246
+ * Project key for assigning this repository to. Must be 2 - 32 lowercase alphanumeric and hyphen characters. When assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
247
+ */
248
+ projectKey?: pulumi.Input<string>;
249
+ /**
250
+ * List of property set name
251
+ */
252
+ propertySets?: pulumi.Input<pulumi.Input<string>[]>;
253
+ /**
254
+ * Sets the layout that the repository should use for storing and identifying modules. A recommended layout that corresponds to the package type defined is suggested, and index packages uploaded and calculate metadata accordingly.
255
+ */
256
+ repoLayoutRef?: pulumi.Input<string>;
257
+ /**
258
+ * Enable Indexing In Xray. Repository will be indexed with the default retention period. You will be able to change it via Xray settings.
259
+ */
260
+ xrayIndex?: pulumi.Input<boolean>;
261
+ }
@@ -0,0 +1,124 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by pulumi-language-nodejs. ***
3
+ // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.LocalHexRepository = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * Creates a local Hex repository for storing Elixir/Erlang packages.
10
+ *
11
+ * ## Example Usage
12
+ *
13
+ * ```typescript
14
+ * import * as pulumi from "@pulumi/pulumi";
15
+ * import * as artifactory from "@pulumi/artifactory";
16
+ * import * as std from "@pulumi/std";
17
+ *
18
+ * const some_keypairRSA = new artifactory.Keypair("some-keypairRSA", {
19
+ * pairName: `some-keypair${randid.id}`,
20
+ * pairType: "RSA",
21
+ * alias: "foo-alias",
22
+ * privateKey: std.file({
23
+ * input: "samples/rsa.priv",
24
+ * }).then(invoke => invoke.result),
25
+ * publicKey: std.file({
26
+ * input: "samples/rsa.pub",
27
+ * }).then(invoke => invoke.result),
28
+ * });
29
+ * const my_hex_repo = new artifactory.LocalHexRepository("my-hex-repo", {
30
+ * key: "my-hex-repo",
31
+ * hexPrimaryKeypairRef: some_keypairRSA.pairName,
32
+ * description: "Local Hex repository for Elixir packages",
33
+ * notes: "Internal repository",
34
+ * }, {
35
+ * dependsOn: [some_keypairRSA],
36
+ * });
37
+ * ```
38
+ *
39
+ * ## Import
40
+ *
41
+ * Local repositories can be imported using their name, e.g.
42
+ *
43
+ * ```sh
44
+ * $ pulumi import artifactory:index/localHexRepository:LocalHexRepository my-hex-repo my-hex-repo
45
+ * ```
46
+ */
47
+ class LocalHexRepository extends pulumi.CustomResource {
48
+ /**
49
+ * Get an existing LocalHexRepository resource's state with the given name, ID, and optional extra
50
+ * properties used to qualify the lookup.
51
+ *
52
+ * @param name The _unique_ name of the resulting resource.
53
+ * @param id The _unique_ provider ID of the resource to lookup.
54
+ * @param state Any extra arguments used during the lookup.
55
+ * @param opts Optional settings to control the behavior of the CustomResource.
56
+ */
57
+ static get(name, id, state, opts) {
58
+ return new LocalHexRepository(name, state, { ...opts, id: id });
59
+ }
60
+ /**
61
+ * Returns true if the given object is an instance of LocalHexRepository. This is designed to work even
62
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
63
+ */
64
+ static isInstance(obj) {
65
+ if (obj === undefined || obj === null) {
66
+ return false;
67
+ }
68
+ return obj['__pulumiType'] === LocalHexRepository.__pulumiType;
69
+ }
70
+ constructor(name, argsOrState, opts) {
71
+ let resourceInputs = {};
72
+ opts = opts || {};
73
+ if (opts.id) {
74
+ const state = argsOrState;
75
+ resourceInputs["archiveBrowsingEnabled"] = state?.archiveBrowsingEnabled;
76
+ resourceInputs["blackedOut"] = state?.blackedOut;
77
+ resourceInputs["cdnRedirect"] = state?.cdnRedirect;
78
+ resourceInputs["description"] = state?.description;
79
+ resourceInputs["downloadDirect"] = state?.downloadDirect;
80
+ resourceInputs["excludesPattern"] = state?.excludesPattern;
81
+ resourceInputs["hexPrimaryKeypairRef"] = state?.hexPrimaryKeypairRef;
82
+ resourceInputs["includesPattern"] = state?.includesPattern;
83
+ resourceInputs["key"] = state?.key;
84
+ resourceInputs["notes"] = state?.notes;
85
+ resourceInputs["priorityResolution"] = state?.priorityResolution;
86
+ resourceInputs["projectEnvironments"] = state?.projectEnvironments;
87
+ resourceInputs["projectKey"] = state?.projectKey;
88
+ resourceInputs["propertySets"] = state?.propertySets;
89
+ resourceInputs["repoLayoutRef"] = state?.repoLayoutRef;
90
+ resourceInputs["xrayIndex"] = state?.xrayIndex;
91
+ }
92
+ else {
93
+ const args = argsOrState;
94
+ if (args?.hexPrimaryKeypairRef === undefined && !opts.urn) {
95
+ throw new Error("Missing required property 'hexPrimaryKeypairRef'");
96
+ }
97
+ if (args?.key === undefined && !opts.urn) {
98
+ throw new Error("Missing required property 'key'");
99
+ }
100
+ resourceInputs["archiveBrowsingEnabled"] = args?.archiveBrowsingEnabled;
101
+ resourceInputs["blackedOut"] = args?.blackedOut;
102
+ resourceInputs["cdnRedirect"] = args?.cdnRedirect;
103
+ resourceInputs["description"] = args?.description;
104
+ resourceInputs["downloadDirect"] = args?.downloadDirect;
105
+ resourceInputs["excludesPattern"] = args?.excludesPattern;
106
+ resourceInputs["hexPrimaryKeypairRef"] = args?.hexPrimaryKeypairRef;
107
+ resourceInputs["includesPattern"] = args?.includesPattern;
108
+ resourceInputs["key"] = args?.key;
109
+ resourceInputs["notes"] = args?.notes;
110
+ resourceInputs["priorityResolution"] = args?.priorityResolution;
111
+ resourceInputs["projectEnvironments"] = args?.projectEnvironments;
112
+ resourceInputs["projectKey"] = args?.projectKey;
113
+ resourceInputs["propertySets"] = args?.propertySets;
114
+ resourceInputs["repoLayoutRef"] = args?.repoLayoutRef;
115
+ resourceInputs["xrayIndex"] = args?.xrayIndex;
116
+ }
117
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
118
+ super(LocalHexRepository.__pulumiType, name, resourceInputs, opts);
119
+ }
120
+ }
121
+ exports.LocalHexRepository = LocalHexRepository;
122
+ /** @internal */
123
+ LocalHexRepository.__pulumiType = 'artifactory:index/localHexRepository:LocalHexRepository';
124
+ //# sourceMappingURL=localHexRepository.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"localHexRepository.js","sourceRoot":"","sources":["../localHexRepository.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/artifactory",
3
- "version": "8.11.0-alpha.1766173037",
3
+ "version": "8.11.0-alpha.1766207602",
4
4
  "description": "A Pulumi package for creating and managing artifactory cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -23,6 +23,6 @@
23
23
  "pulumi": {
24
24
  "resource": true,
25
25
  "name": "artifactory",
26
- "version": "8.11.0-alpha.1766173037"
26
+ "version": "8.11.0-alpha.1766207602"
27
27
  }
28
28
  }
@@ -2,47 +2,6 @@ import * as pulumi from "@pulumi/pulumi";
2
2
  import * as inputs from "./types/input";
3
3
  import * as outputs from "./types/output";
4
4
  /**
5
- * Provides an Artifactory Archive Policy resource. This resource enable system administrators to configure and maintain JFrog cleanup policies for Release Bundles V2. See [Cleanup Policies](https://jfrog.com/help/r/jfrog-rest-apis/cleanup-policies-release-bundles-v2-apis) for more details.
6
- *
7
- * ~>Release Bundles V2 Cleanup Policies APIs are supported on Artifactory version 7.104.2 and later.
8
- *
9
- * ## Example Usage
10
- *
11
- * ```typescript
12
- * import * as pulumi from "@pulumi/pulumi";
13
- * import * as artifactory from "@pulumi/artifactory";
14
- *
15
- * const my_release_bundle_v2_rb = new artifactory.ReleaseBundleV2("my-release-bundle-v2-rb", {
16
- * name: "my-release-bundle-v2-rb",
17
- * version: "2.0.0",
18
- * keypairName: "my-keypair-name",
19
- * skipDockerManifestResolution: true,
20
- * sourceType: "release_bundles",
21
- * source: {
22
- * releaseBundles: [{
23
- * name: "my-rb-name",
24
- * version: "1.0.0",
25
- * }],
26
- * },
27
- * });
28
- * const my_resource_bundle_v2_cleanup_policy = new artifactory.ReleaseBundleV2CleanupPolicy("my-resource-bundle-v2-cleanup-policy", {
29
- * key: "my-release-bundle-v2-policy-key",
30
- * description: "Cleanup policy description",
31
- * cronExpression: "0 0 2 * * ?",
32
- * durationInMinutes: 60,
33
- * enabled: true,
34
- * searchCriteria: {
35
- * includeAllProjects: true,
36
- * includedProjects: [],
37
- * releaseBundles: [{
38
- * name: "my-release-bundle-v2-rb",
39
- * projectKey: "",
40
- * }],
41
- * excludePromotedEnvironments: ["**"],
42
- * },
43
- * });
44
- * ```
45
- *
46
5
  * ## Import
47
6
  *
48
7
  * ```sh
@@ -6,47 +6,6 @@ exports.ReleaseBundleV2CleanupPolicy = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("./utilities");
8
8
  /**
9
- * Provides an Artifactory Archive Policy resource. This resource enable system administrators to configure and maintain JFrog cleanup policies for Release Bundles V2. See [Cleanup Policies](https://jfrog.com/help/r/jfrog-rest-apis/cleanup-policies-release-bundles-v2-apis) for more details.
10
- *
11
- * ~>Release Bundles V2 Cleanup Policies APIs are supported on Artifactory version 7.104.2 and later.
12
- *
13
- * ## Example Usage
14
- *
15
- * ```typescript
16
- * import * as pulumi from "@pulumi/pulumi";
17
- * import * as artifactory from "@pulumi/artifactory";
18
- *
19
- * const my_release_bundle_v2_rb = new artifactory.ReleaseBundleV2("my-release-bundle-v2-rb", {
20
- * name: "my-release-bundle-v2-rb",
21
- * version: "2.0.0",
22
- * keypairName: "my-keypair-name",
23
- * skipDockerManifestResolution: true,
24
- * sourceType: "release_bundles",
25
- * source: {
26
- * releaseBundles: [{
27
- * name: "my-rb-name",
28
- * version: "1.0.0",
29
- * }],
30
- * },
31
- * });
32
- * const my_resource_bundle_v2_cleanup_policy = new artifactory.ReleaseBundleV2CleanupPolicy("my-resource-bundle-v2-cleanup-policy", {
33
- * key: "my-release-bundle-v2-policy-key",
34
- * description: "Cleanup policy description",
35
- * cronExpression: "0 0 2 * * ?",
36
- * durationInMinutes: 60,
37
- * enabled: true,
38
- * searchCriteria: {
39
- * includeAllProjects: true,
40
- * includedProjects: [],
41
- * releaseBundles: [{
42
- * name: "my-release-bundle-v2-rb",
43
- * projectKey: "",
44
- * }],
45
- * excludePromotedEnvironments: ["**"],
46
- * },
47
- * });
48
- * ```
49
- *
50
9
  * ## Import
51
10
  *
52
11
  * ```sh
@@ -1 +1 @@
1
- {"version":3,"file":"releaseBundleV2CleanupPolicy.js","sourceRoot":"","sources":["../releaseBundleV2CleanupPolicy.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+CG;AACH,MAAa,4BAA6B,SAAQ,MAAM,CAAC,cAAc;IACnE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyC,EAAE,IAAmC;QACvI,OAAO,IAAI,4BAA4B,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACnF,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,4BAA4B,CAAC,YAAY,CAAC;IAC7E,CAAC;IAiCD,YAAY,IAAY,EAAE,WAAkF,EAAE,IAAmC;QAC7I,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA4D,CAAC;YAC3E,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,EAAE,iBAAiB,CAAC;YAC/D,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,EAAE,GAAG,CAAC;YACnC,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;SAC5D;aAAM;YACH,MAAM,IAAI,GAAG,WAA2D,CAAC;YACzE,IAAI,IAAI,EAAE,GAAG,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACtC,MAAM,IAAI,KAAK,CAAC,iCAAiC,CAAC,CAAC;aACtD;YACD,IAAI,IAAI,EAAE,cAAc,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACjD,MAAM,IAAI,KAAK,CAAC,4CAA4C,CAAC,CAAC;aACjE;YACD,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;YACxD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,EAAE,iBAAiB,CAAC;YAC9D,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;YAC1C,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,KAAK,CAAC,GAAG,IAAI,EAAE,GAAG,CAAC;YAClC,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;SAC3D;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,4BAA4B,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACjF,CAAC;;AAzFL,oEA0FC;AA5EG,gBAAgB;AACO,yCAAY,GAAG,6EAA6E,CAAC"}
1
+ {"version":3,"file":"releaseBundleV2CleanupPolicy.js","sourceRoot":"","sources":["../releaseBundleV2CleanupPolicy.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;GAMG;AACH,MAAa,4BAA6B,SAAQ,MAAM,CAAC,cAAc;IACnE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyC,EAAE,IAAmC;QACvI,OAAO,IAAI,4BAA4B,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACnF,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,4BAA4B,CAAC,YAAY,CAAC;IAC7E,CAAC;IAiCD,YAAY,IAAY,EAAE,WAAkF,EAAE,IAAmC;QAC7I,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA4D,CAAC;YAC3E,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,EAAE,iBAAiB,CAAC;YAC/D,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,EAAE,GAAG,CAAC;YACnC,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;SAC5D;aAAM;YACH,MAAM,IAAI,GAAG,WAA2D,CAAC;YACzE,IAAI,IAAI,EAAE,GAAG,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACtC,MAAM,IAAI,KAAK,CAAC,iCAAiC,CAAC,CAAC;aACtD;YACD,IAAI,IAAI,EAAE,cAAc,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACjD,MAAM,IAAI,KAAK,CAAC,4CAA4C,CAAC,CAAC;aACjE;YACD,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;YACxD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,EAAE,iBAAiB,CAAC;YAC9D,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;YAC1C,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,KAAK,CAAC,GAAG,IAAI,EAAE,GAAG,CAAC;YAClC,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;SAC3D;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,4BAA4B,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACjF,CAAC;;AAzFL,oEA0FC;AA5EG,gBAAgB;AACO,yCAAY,GAAG,6EAA6E,CAAC"}
@@ -20,8 +20,6 @@ import * as outputs from "./types/output";
20
20
  * criteria: {
21
21
  * anyReleaseBundle: false,
22
22
  * selectedReleaseBundles: ["bundle-name"],
23
- * includePatterns: ["foo/**"],
24
- * excludePatterns: ["bar/**"],
25
23
  * },
26
24
  * handlers: [{
27
25
  * url: "https://tempurl.org",
@@ -24,8 +24,6 @@ const utilities = require("./utilities");
24
24
  * criteria: {
25
25
  * anyReleaseBundle: false,
26
26
  * selectedReleaseBundles: ["bundle-name"],
27
- * includePatterns: ["foo/**"],
28
- * excludePatterns: ["bar/**"],
29
27
  * },
30
28
  * handlers: [{
31
29
  * url: "https://tempurl.org",
@@ -1 +1 @@
1
- {"version":3,"file":"releaseBundleV2CustomWebhook.js","sourceRoot":"","sources":["../releaseBundleV2CustomWebhook.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqCG;AACH,MAAa,4BAA6B,SAAQ,MAAM,CAAC,cAAc;IACnE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyC,EAAE,IAAmC;QACvI,OAAO,IAAI,4BAA4B,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACnF,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,4BAA4B,CAAC,YAAY,CAAC;IAC7E,CAAC;IAmCD,YAAY,IAAY,EAAE,WAAkF,EAAE,IAAmC;QAC7I,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA4D,CAAC;YAC3E,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,EAAE,GAAG,CAAC;SACtC;aAAM;YACH,MAAM,IAAI,GAAG,WAA2D,CAAC;YACzE,IAAI,IAAI,EAAE,UAAU,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC7C,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;aAC7D;YACD,IAAI,IAAI,EAAE,GAAG,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACtC,MAAM,IAAI,KAAK,CAAC,iCAAiC,CAAC,CAAC;aACtD;YACD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;YAC1C,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,KAAK,CAAC,GAAG,IAAI,EAAE,GAAG,CAAC;SACrC;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,4BAA4B,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACjF,CAAC;;AAzFL,oEA0FC;AA5EG,gBAAgB;AACO,yCAAY,GAAG,6EAA6E,CAAC"}
1
+ {"version":3,"file":"releaseBundleV2CustomWebhook.js","sourceRoot":"","sources":["../releaseBundleV2CustomWebhook.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmCG;AACH,MAAa,4BAA6B,SAAQ,MAAM,CAAC,cAAc;IACnE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyC,EAAE,IAAmC;QACvI,OAAO,IAAI,4BAA4B,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACnF,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,4BAA4B,CAAC,YAAY,CAAC;IAC7E,CAAC;IAmCD,YAAY,IAAY,EAAE,WAAkF,EAAE,IAAmC;QAC7I,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA4D,CAAC;YAC3E,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,EAAE,GAAG,CAAC;SACtC;aAAM;YACH,MAAM,IAAI,GAAG,WAA2D,CAAC;YACzE,IAAI,IAAI,EAAE,UAAU,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC7C,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;aAC7D;YACD,IAAI,IAAI,EAAE,GAAG,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACtC,MAAM,IAAI,KAAK,CAAC,iCAAiC,CAAC,CAAC;aACtD;YACD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;YAC1C,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,KAAK,CAAC,GAAG,IAAI,EAAE,GAAG,CAAC;SACrC;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,4BAA4B,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACjF,CAAC;;AAzFL,oEA0FC;AA5EG,gBAAgB;AACO,yCAAY,GAAG,6EAA6E,CAAC"}
@@ -21,8 +21,6 @@ import * as outputs from "./types/output";
21
21
  * criteria: {
22
22
  * anyReleaseBundle: false,
23
23
  * selectedReleaseBundles: ["bundle-name"],
24
- * includePatterns: ["foo/**"],
25
- * excludePatterns: ["bar/**"],
26
24
  * },
27
25
  * handlers: [{
28
26
  * url: "http://tempurl.org/webhook",
@@ -25,8 +25,6 @@ const utilities = require("./utilities");
25
25
  * criteria: {
26
26
  * anyReleaseBundle: false,
27
27
  * selectedReleaseBundles: ["bundle-name"],
28
- * includePatterns: ["foo/**"],
29
- * excludePatterns: ["bar/**"],
30
28
  * },
31
29
  * handlers: [{
32
30
  * url: "http://tempurl.org/webhook",
@@ -1 +1 @@
1
- {"version":3,"file":"releaseBundleV2Webhook.js","sourceRoot":"","sources":["../releaseBundleV2Webhook.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;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;IAmCD,YAAY,IAAY,EAAE,WAAsE,EAAE,IAAmC;QACjI,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAsD,CAAC;YACrE,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,EAAE,GAAG,CAAC;SACtC;aAAM;YACH,MAAM,IAAI,GAAG,WAAqD,CAAC;YACnE,IAAI,IAAI,EAAE,UAAU,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC7C,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;aAC7D;YACD,IAAI,IAAI,EAAE,GAAG,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACtC,MAAM,IAAI,KAAK,CAAC,iCAAiC,CAAC,CAAC;aACtD;YACD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;YAC1C,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,KAAK,CAAC,GAAG,IAAI,EAAE,GAAG,CAAC;SACrC;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,sBAAsB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC3E,CAAC;;AAzFL,wDA0FC;AA5EG,gBAAgB;AACO,mCAAY,GAAG,iEAAiE,CAAC"}
1
+ {"version":3,"file":"releaseBundleV2Webhook.js","sourceRoot":"","sources":["../releaseBundleV2Webhook.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgCG;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;IAmCD,YAAY,IAAY,EAAE,WAAsE,EAAE,IAAmC;QACjI,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAsD,CAAC;YACrE,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,EAAE,GAAG,CAAC;SACtC;aAAM;YACH,MAAM,IAAI,GAAG,WAAqD,CAAC;YACnE,IAAI,IAAI,EAAE,UAAU,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC7C,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;aAC7D;YACD,IAAI,IAAI,EAAE,GAAG,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACtC,MAAM,IAAI,KAAK,CAAC,iCAAiC,CAAC,CAAC;aACtD;YACD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;YAC1C,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,KAAK,CAAC,GAAG,IAAI,EAAE,GAAG,CAAC;SACrC;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,sBAAsB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC3E,CAAC;;AAzFL,wDA0FC;AA5EG,gBAAgB;AACO,mCAAY,GAAG,iEAAiE,CAAC"}