@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.
- package/artifactoryReleaseBundleCustomWebhook.d.ts +0 -1
- package/artifactoryReleaseBundleCustomWebhook.js +0 -1
- package/artifactoryReleaseBundleCustomWebhook.js.map +1 -1
- package/artifactoryReleaseBundleWebhook.d.ts +0 -1
- package/artifactoryReleaseBundleWebhook.js +0 -1
- package/artifactoryReleaseBundleWebhook.js.map +1 -1
- package/buildCustomWebhook.d.ts +1 -1
- package/buildCustomWebhook.js +1 -1
- package/buildWebhook.d.ts +1 -2
- package/buildWebhook.js +1 -2
- package/buildWebhook.js.map +1 -1
- package/getLocalHexRepository.d.ts +78 -0
- package/getLocalHexRepository.js +50 -0
- package/getLocalHexRepository.js.map +1 -0
- package/getRemoteHexRepository.d.ts +105 -0
- package/getRemoteHexRepository.js +50 -0
- package/getRemoteHexRepository.js.map +1 -0
- package/getVirtualHexRepository.d.ts +71 -0
- package/getVirtualHexRepository.js +50 -0
- package/getVirtualHexRepository.js.map +1 -0
- package/index.d.ts +18 -0
- package/index.js +32 -7
- package/index.js.map +1 -1
- package/localHexRepository.d.ts +261 -0
- package/localHexRepository.js +124 -0
- package/localHexRepository.js.map +1 -0
- package/package.json +2 -2
- package/releaseBundleV2CleanupPolicy.d.ts +0 -41
- package/releaseBundleV2CleanupPolicy.js +0 -41
- package/releaseBundleV2CleanupPolicy.js.map +1 -1
- package/releaseBundleV2CustomWebhook.d.ts +0 -2
- package/releaseBundleV2CustomWebhook.js +0 -2
- package/releaseBundleV2CustomWebhook.js.map +1 -1
- package/releaseBundleV2Webhook.d.ts +0 -2
- package/releaseBundleV2Webhook.js +0 -2
- package/releaseBundleV2Webhook.js.map +1 -1
- package/remoteHexRepository.d.ts +590 -0
- package/remoteHexRepository.js +196 -0
- package/remoteHexRepository.js.map +1 -0
- package/types/input.d.ts +55 -29
- package/types/output.d.ts +55 -29
- package/virtualHexRepository.d.ts +232 -0
- package/virtualHexRepository.js +138 -0
- package/virtualHexRepository.js.map +1 -0
|
@@ -0,0 +1,196 @@
|
|
|
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.RemoteHexRepository = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Creates a remote Hex repository for proxying Elixir/Erlang packages from a remote Hex registry.
|
|
10
|
+
*
|
|
11
|
+
* Official documentation can be found [here](https://www.jfrog.com/confluence/display/JFROG/Hex+Registry).
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as artifactory from "@pulumi/artifactory";
|
|
18
|
+
* import * as std from "@pulumi/std";
|
|
19
|
+
*
|
|
20
|
+
* const some_keypairRSA = new artifactory.Keypair("some-keypairRSA", {
|
|
21
|
+
* pairName: `some-keypair${randid.id}`,
|
|
22
|
+
* pairType: "RSA",
|
|
23
|
+
* alias: "foo-alias",
|
|
24
|
+
* privateKey: std.file({
|
|
25
|
+
* input: "samples/rsa.priv",
|
|
26
|
+
* }).then(invoke => invoke.result),
|
|
27
|
+
* publicKey: std.file({
|
|
28
|
+
* input: "samples/rsa.pub",
|
|
29
|
+
* }).then(invoke => invoke.result),
|
|
30
|
+
* });
|
|
31
|
+
* const my_remote_hex = new artifactory.RemoteHexRepository("my-remote-hex", {
|
|
32
|
+
* key: "my-remote-hex",
|
|
33
|
+
* url: "https://repo.hex.pm",
|
|
34
|
+
* hexPrimaryKeypairRef: some_keypairRSA.pairName,
|
|
35
|
+
* publicKey: std.file({
|
|
36
|
+
* input: "samples/rsa.pub",
|
|
37
|
+
* }).then(invoke => invoke.result),
|
|
38
|
+
* description: "Remote Hex repository for Elixir packages",
|
|
39
|
+
* notes: "Internal repository",
|
|
40
|
+
* }, {
|
|
41
|
+
* dependsOn: [some_keypairRSA],
|
|
42
|
+
* });
|
|
43
|
+
* ```
|
|
44
|
+
*
|
|
45
|
+
* ## Import
|
|
46
|
+
*
|
|
47
|
+
* Remote repositories can be imported using their name, e.g.
|
|
48
|
+
*
|
|
49
|
+
* ```sh
|
|
50
|
+
* $ pulumi import artifactory:index/remoteHexRepository:RemoteHexRepository my-remote-hex my-remote-hex
|
|
51
|
+
* ```
|
|
52
|
+
*/
|
|
53
|
+
class RemoteHexRepository extends pulumi.CustomResource {
|
|
54
|
+
/**
|
|
55
|
+
* Get an existing RemoteHexRepository resource's state with the given name, ID, and optional extra
|
|
56
|
+
* properties used to qualify the lookup.
|
|
57
|
+
*
|
|
58
|
+
* @param name The _unique_ name of the resulting resource.
|
|
59
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
60
|
+
* @param state Any extra arguments used during the lookup.
|
|
61
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
62
|
+
*/
|
|
63
|
+
static get(name, id, state, opts) {
|
|
64
|
+
return new RemoteHexRepository(name, state, { ...opts, id: id });
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* Returns true if the given object is an instance of RemoteHexRepository. This is designed to work even
|
|
68
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
69
|
+
*/
|
|
70
|
+
static isInstance(obj) {
|
|
71
|
+
if (obj === undefined || obj === null) {
|
|
72
|
+
return false;
|
|
73
|
+
}
|
|
74
|
+
return obj['__pulumiType'] === RemoteHexRepository.__pulumiType;
|
|
75
|
+
}
|
|
76
|
+
constructor(name, argsOrState, opts) {
|
|
77
|
+
let resourceInputs = {};
|
|
78
|
+
opts = opts || {};
|
|
79
|
+
if (opts.id) {
|
|
80
|
+
const state = argsOrState;
|
|
81
|
+
resourceInputs["allowAnyHostAuth"] = state?.allowAnyHostAuth;
|
|
82
|
+
resourceInputs["archiveBrowsingEnabled"] = state?.archiveBrowsingEnabled;
|
|
83
|
+
resourceInputs["assumedOfflinePeriodSecs"] = state?.assumedOfflinePeriodSecs;
|
|
84
|
+
resourceInputs["blackedOut"] = state?.blackedOut;
|
|
85
|
+
resourceInputs["blockMismatchingMimeTypes"] = state?.blockMismatchingMimeTypes;
|
|
86
|
+
resourceInputs["bypassHeadRequests"] = state?.bypassHeadRequests;
|
|
87
|
+
resourceInputs["cdnRedirect"] = state?.cdnRedirect;
|
|
88
|
+
resourceInputs["clientTlsCertificate"] = state?.clientTlsCertificate;
|
|
89
|
+
resourceInputs["contentSynchronisation"] = state?.contentSynchronisation;
|
|
90
|
+
resourceInputs["description"] = state?.description;
|
|
91
|
+
resourceInputs["disableProxy"] = state?.disableProxy;
|
|
92
|
+
resourceInputs["disableUrlNormalization"] = state?.disableUrlNormalization;
|
|
93
|
+
resourceInputs["downloadDirect"] = state?.downloadDirect;
|
|
94
|
+
resourceInputs["enableCookieManagement"] = state?.enableCookieManagement;
|
|
95
|
+
resourceInputs["excludesPattern"] = state?.excludesPattern;
|
|
96
|
+
resourceInputs["hardFail"] = state?.hardFail;
|
|
97
|
+
resourceInputs["hexPrimaryKeypairRef"] = state?.hexPrimaryKeypairRef;
|
|
98
|
+
resourceInputs["includesPattern"] = state?.includesPattern;
|
|
99
|
+
resourceInputs["key"] = state?.key;
|
|
100
|
+
resourceInputs["listRemoteFolderItems"] = state?.listRemoteFolderItems;
|
|
101
|
+
resourceInputs["localAddress"] = state?.localAddress;
|
|
102
|
+
resourceInputs["metadataRetrievalTimeoutSecs"] = state?.metadataRetrievalTimeoutSecs;
|
|
103
|
+
resourceInputs["mismatchingMimeTypesOverrideList"] = state?.mismatchingMimeTypesOverrideList;
|
|
104
|
+
resourceInputs["missedCachePeriodSeconds"] = state?.missedCachePeriodSeconds;
|
|
105
|
+
resourceInputs["notes"] = state?.notes;
|
|
106
|
+
resourceInputs["offline"] = state?.offline;
|
|
107
|
+
resourceInputs["password"] = state?.password;
|
|
108
|
+
resourceInputs["priorityResolution"] = state?.priorityResolution;
|
|
109
|
+
resourceInputs["projectEnvironments"] = state?.projectEnvironments;
|
|
110
|
+
resourceInputs["projectKey"] = state?.projectKey;
|
|
111
|
+
resourceInputs["propertySets"] = state?.propertySets;
|
|
112
|
+
resourceInputs["proxy"] = state?.proxy;
|
|
113
|
+
resourceInputs["publicKey"] = state?.publicKey;
|
|
114
|
+
resourceInputs["queryParams"] = state?.queryParams;
|
|
115
|
+
resourceInputs["remoteRepoLayoutRef"] = state?.remoteRepoLayoutRef;
|
|
116
|
+
resourceInputs["repoLayoutRef"] = state?.repoLayoutRef;
|
|
117
|
+
resourceInputs["retrievalCachePeriodSeconds"] = state?.retrievalCachePeriodSeconds;
|
|
118
|
+
resourceInputs["shareConfiguration"] = state?.shareConfiguration;
|
|
119
|
+
resourceInputs["socketTimeoutMillis"] = state?.socketTimeoutMillis;
|
|
120
|
+
resourceInputs["storeArtifactsLocally"] = state?.storeArtifactsLocally;
|
|
121
|
+
resourceInputs["synchronizeProperties"] = state?.synchronizeProperties;
|
|
122
|
+
resourceInputs["unusedArtifactsCleanupPeriodHours"] = state?.unusedArtifactsCleanupPeriodHours;
|
|
123
|
+
resourceInputs["url"] = state?.url;
|
|
124
|
+
resourceInputs["username"] = state?.username;
|
|
125
|
+
resourceInputs["xrayIndex"] = state?.xrayIndex;
|
|
126
|
+
}
|
|
127
|
+
else {
|
|
128
|
+
const args = argsOrState;
|
|
129
|
+
if (args?.hexPrimaryKeypairRef === undefined && !opts.urn) {
|
|
130
|
+
throw new Error("Missing required property 'hexPrimaryKeypairRef'");
|
|
131
|
+
}
|
|
132
|
+
if (args?.key === undefined && !opts.urn) {
|
|
133
|
+
throw new Error("Missing required property 'key'");
|
|
134
|
+
}
|
|
135
|
+
if (args?.publicKey === undefined && !opts.urn) {
|
|
136
|
+
throw new Error("Missing required property 'publicKey'");
|
|
137
|
+
}
|
|
138
|
+
if (args?.url === undefined && !opts.urn) {
|
|
139
|
+
throw new Error("Missing required property 'url'");
|
|
140
|
+
}
|
|
141
|
+
resourceInputs["allowAnyHostAuth"] = args?.allowAnyHostAuth;
|
|
142
|
+
resourceInputs["archiveBrowsingEnabled"] = args?.archiveBrowsingEnabled;
|
|
143
|
+
resourceInputs["assumedOfflinePeriodSecs"] = args?.assumedOfflinePeriodSecs;
|
|
144
|
+
resourceInputs["blackedOut"] = args?.blackedOut;
|
|
145
|
+
resourceInputs["blockMismatchingMimeTypes"] = args?.blockMismatchingMimeTypes;
|
|
146
|
+
resourceInputs["bypassHeadRequests"] = args?.bypassHeadRequests;
|
|
147
|
+
resourceInputs["cdnRedirect"] = args?.cdnRedirect;
|
|
148
|
+
resourceInputs["clientTlsCertificate"] = args?.clientTlsCertificate;
|
|
149
|
+
resourceInputs["contentSynchronisation"] = args?.contentSynchronisation;
|
|
150
|
+
resourceInputs["description"] = args?.description;
|
|
151
|
+
resourceInputs["disableProxy"] = args?.disableProxy;
|
|
152
|
+
resourceInputs["disableUrlNormalization"] = args?.disableUrlNormalization;
|
|
153
|
+
resourceInputs["downloadDirect"] = args?.downloadDirect;
|
|
154
|
+
resourceInputs["enableCookieManagement"] = args?.enableCookieManagement;
|
|
155
|
+
resourceInputs["excludesPattern"] = args?.excludesPattern;
|
|
156
|
+
resourceInputs["hardFail"] = args?.hardFail;
|
|
157
|
+
resourceInputs["hexPrimaryKeypairRef"] = args?.hexPrimaryKeypairRef;
|
|
158
|
+
resourceInputs["includesPattern"] = args?.includesPattern;
|
|
159
|
+
resourceInputs["key"] = args?.key;
|
|
160
|
+
resourceInputs["listRemoteFolderItems"] = args?.listRemoteFolderItems;
|
|
161
|
+
resourceInputs["localAddress"] = args?.localAddress;
|
|
162
|
+
resourceInputs["metadataRetrievalTimeoutSecs"] = args?.metadataRetrievalTimeoutSecs;
|
|
163
|
+
resourceInputs["mismatchingMimeTypesOverrideList"] = args?.mismatchingMimeTypesOverrideList;
|
|
164
|
+
resourceInputs["missedCachePeriodSeconds"] = args?.missedCachePeriodSeconds;
|
|
165
|
+
resourceInputs["notes"] = args?.notes;
|
|
166
|
+
resourceInputs["offline"] = args?.offline;
|
|
167
|
+
resourceInputs["password"] = args?.password ? pulumi.secret(args.password) : undefined;
|
|
168
|
+
resourceInputs["priorityResolution"] = args?.priorityResolution;
|
|
169
|
+
resourceInputs["projectEnvironments"] = args?.projectEnvironments;
|
|
170
|
+
resourceInputs["projectKey"] = args?.projectKey;
|
|
171
|
+
resourceInputs["propertySets"] = args?.propertySets;
|
|
172
|
+
resourceInputs["proxy"] = args?.proxy;
|
|
173
|
+
resourceInputs["publicKey"] = args?.publicKey;
|
|
174
|
+
resourceInputs["queryParams"] = args?.queryParams;
|
|
175
|
+
resourceInputs["remoteRepoLayoutRef"] = args?.remoteRepoLayoutRef;
|
|
176
|
+
resourceInputs["repoLayoutRef"] = args?.repoLayoutRef;
|
|
177
|
+
resourceInputs["retrievalCachePeriodSeconds"] = args?.retrievalCachePeriodSeconds;
|
|
178
|
+
resourceInputs["shareConfiguration"] = args?.shareConfiguration;
|
|
179
|
+
resourceInputs["socketTimeoutMillis"] = args?.socketTimeoutMillis;
|
|
180
|
+
resourceInputs["storeArtifactsLocally"] = args?.storeArtifactsLocally;
|
|
181
|
+
resourceInputs["synchronizeProperties"] = args?.synchronizeProperties;
|
|
182
|
+
resourceInputs["unusedArtifactsCleanupPeriodHours"] = args?.unusedArtifactsCleanupPeriodHours;
|
|
183
|
+
resourceInputs["url"] = args?.url;
|
|
184
|
+
resourceInputs["username"] = args?.username;
|
|
185
|
+
resourceInputs["xrayIndex"] = args?.xrayIndex;
|
|
186
|
+
}
|
|
187
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
188
|
+
const secretOpts = { additionalSecretOutputs: ["password"] };
|
|
189
|
+
opts = pulumi.mergeOptions(opts, secretOpts);
|
|
190
|
+
super(RemoteHexRepository.__pulumiType, name, resourceInputs, opts);
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
exports.RemoteHexRepository = RemoteHexRepository;
|
|
194
|
+
/** @internal */
|
|
195
|
+
RemoteHexRepository.__pulumiType = 'artifactory:index/remoteHexRepository:RemoteHexRepository';
|
|
196
|
+
//# sourceMappingURL=remoteHexRepository.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"remoteHexRepository.js","sourceRoot":"","sources":["../remoteHexRepository.ts"],"names":[],"mappings":"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"}
|
package/types/input.d.ts
CHANGED
|
@@ -346,17 +346,17 @@ export interface ArtifactoryReleaseBundleCustomWebhookCriteria {
|
|
|
346
346
|
*/
|
|
347
347
|
anyReleaseBundle: pulumi.Input<boolean>;
|
|
348
348
|
/**
|
|
349
|
-
* Simple comma separated wildcard patterns for repository artifact paths (with no leading slash). Ant-style path expressions are supported (*, *\*, ?). For example: `org/apache
|
|
349
|
+
* Simple comma separated wildcard patterns for repository artifact paths (with no leading slash). Ant-style path expressions are supported (*, *\*, ?). For example: `org/apache/**`. **Cannot be set if `anyReleaseBundle` is set to `true`.**
|
|
350
350
|
*/
|
|
351
351
|
excludePatterns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
352
352
|
/**
|
|
353
|
-
* Simple comma separated wildcard patterns for repository artifact paths (with no leading slash). Ant-style path expressions are supported (*, *\*, ?). For example: `org/apache
|
|
353
|
+
* Simple comma separated wildcard patterns for repository artifact paths (with no leading slash). Ant-style path expressions are supported (*, *\*, ?). For example: `org/apache/**`. **Cannot be set if `anyReleaseBundle` is set to `true`.** Either this or `registeredReleaseBundleNames` must be set when `anyReleaseBundle` is `false`.
|
|
354
354
|
*/
|
|
355
355
|
includePatterns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
356
356
|
/**
|
|
357
357
|
* Trigger on this list of release bundle names
|
|
358
358
|
*/
|
|
359
|
-
registeredReleaseBundleNames
|
|
359
|
+
registeredReleaseBundleNames?: pulumi.Input<pulumi.Input<string>[]>;
|
|
360
360
|
}
|
|
361
361
|
export interface ArtifactoryReleaseBundleCustomWebhookHandler {
|
|
362
362
|
/**
|
|
@@ -394,17 +394,17 @@ export interface ArtifactoryReleaseBundleWebhookCriteria {
|
|
|
394
394
|
*/
|
|
395
395
|
anyReleaseBundle: pulumi.Input<boolean>;
|
|
396
396
|
/**
|
|
397
|
-
* Simple comma separated wildcard patterns for repository artifact paths (with no leading slash). Ant-style path expressions are supported (*, *\*, ?). For example: `org/apache
|
|
397
|
+
* Simple comma separated wildcard patterns for repository artifact paths (with no leading slash). Ant-style path expressions are supported (*, *\*, ?). For example: `org/apache/**`. **Cannot be set if `anyReleaseBundle` is set to `true`.**
|
|
398
398
|
*/
|
|
399
399
|
excludePatterns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
400
400
|
/**
|
|
401
|
-
* Simple comma separated wildcard patterns for repository artifact paths (with no leading slash). Ant-style path expressions are supported (*, *\*, ?). For example: `org/apache
|
|
401
|
+
* Simple comma separated wildcard patterns for repository artifact paths (with no leading slash). Ant-style path expressions are supported (*, *\*, ?). For example: `org/apache/**`. **Cannot be set if `anyReleaseBundle` is set to `true`.** Either this or `registeredReleaseBundleNames` must be set when `anyReleaseBundle` is `false`.
|
|
402
402
|
*/
|
|
403
403
|
includePatterns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
404
404
|
/**
|
|
405
|
-
* Trigger on this list of release bundle names
|
|
405
|
+
* Trigger on this list of release bundle names. Either this or `includePatterns` must be set when `anyReleaseBundle` is `false`.
|
|
406
406
|
*/
|
|
407
|
-
registeredReleaseBundleNames
|
|
407
|
+
registeredReleaseBundleNames?: pulumi.Input<pulumi.Input<string>[]>;
|
|
408
408
|
}
|
|
409
409
|
export interface ArtifactoryReleaseBundleWebhookHandler {
|
|
410
410
|
/**
|
|
@@ -436,17 +436,17 @@ export interface BuildCustomWebhookCriteria {
|
|
|
436
436
|
*/
|
|
437
437
|
anyBuild: pulumi.Input<boolean>;
|
|
438
438
|
/**
|
|
439
|
-
* Simple comma separated wildcard patterns for repository artifact paths (with no leading slash). Ant-style path expressions are supported (*, *\*, ?). For example: `org/apache/**`.
|
|
439
|
+
* Simple comma separated wildcard patterns for repository artifact paths (with no leading slash). Ant-style path expressions are supported (*, *\*, ?). For example: `org/apache/**`. **Cannot be set if `anyBuild` is set to `true`.**
|
|
440
440
|
*/
|
|
441
441
|
excludePatterns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
442
442
|
/**
|
|
443
|
-
* Simple comma separated wildcard patterns for repository artifact paths (with no leading slash). Ant-style path expressions are supported (*, *\*, ?). For example: `org/apache/**`.
|
|
443
|
+
* Simple comma separated wildcard patterns for repository artifact paths (with no leading slash). Ant-style path expressions are supported (*, *\*, ?). For example: `org/apache/**`. **Cannot be set if `anyBuild` is set to `true`.**
|
|
444
444
|
*/
|
|
445
445
|
includePatterns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
446
446
|
/**
|
|
447
447
|
* Trigger on this list of build names.
|
|
448
448
|
*/
|
|
449
|
-
selectedBuilds
|
|
449
|
+
selectedBuilds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
450
450
|
}
|
|
451
451
|
export interface BuildCustomWebhookHandler {
|
|
452
452
|
/**
|
|
@@ -484,17 +484,17 @@ export interface BuildWebhookCriteria {
|
|
|
484
484
|
*/
|
|
485
485
|
anyBuild: pulumi.Input<boolean>;
|
|
486
486
|
/**
|
|
487
|
-
* Simple comma separated wildcard patterns for repository artifact paths (with no leading slash). Ant-style path expressions are supported (*, *\*, ?). For example: `org/apache/**`.
|
|
487
|
+
* Simple comma separated wildcard patterns for repository artifact paths (with no leading slash). Ant-style path expressions are supported (*, *\*, ?). For example: `org/apache/**`. **Cannot be set if `anyBuild` is set to `true`.**
|
|
488
488
|
*/
|
|
489
489
|
excludePatterns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
490
490
|
/**
|
|
491
|
-
* Simple comma separated wildcard patterns for repository artifact paths (with no leading slash). Ant-style path expressions are supported (*, *\*, ?). For example: `org/apache/**`.
|
|
491
|
+
* Simple comma separated wildcard patterns for repository artifact paths (with no leading slash). Ant-style path expressions are supported (*, *\*, ?). For example: `org/apache/**`. **Cannot be set if `anyBuild` is set to `true`.**
|
|
492
492
|
*/
|
|
493
493
|
includePatterns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
494
494
|
/**
|
|
495
495
|
* Trigger on this list of build names.
|
|
496
496
|
*/
|
|
497
|
-
selectedBuilds
|
|
497
|
+
selectedBuilds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
498
498
|
}
|
|
499
499
|
export interface BuildWebhookHandler {
|
|
500
500
|
/**
|
|
@@ -536,7 +536,7 @@ export interface DestinationCustomWebhookCriteria {
|
|
|
536
536
|
/**
|
|
537
537
|
* Trigger on this list of release bundle names
|
|
538
538
|
*/
|
|
539
|
-
registeredReleaseBundleNames
|
|
539
|
+
registeredReleaseBundleNames?: pulumi.Input<pulumi.Input<string>[]>;
|
|
540
540
|
}
|
|
541
541
|
export interface DestinationCustomWebhookHandler {
|
|
542
542
|
/**
|
|
@@ -584,7 +584,7 @@ export interface DestinationWebhookCriteria {
|
|
|
584
584
|
/**
|
|
585
585
|
* Trigger on this list of release bundle names
|
|
586
586
|
*/
|
|
587
|
-
registeredReleaseBundleNames
|
|
587
|
+
registeredReleaseBundleNames?: pulumi.Input<pulumi.Input<string>[]>;
|
|
588
588
|
}
|
|
589
589
|
export interface DestinationWebhookHandler {
|
|
590
590
|
/**
|
|
@@ -626,7 +626,7 @@ export interface DistributionCustomWebhookCriteria {
|
|
|
626
626
|
/**
|
|
627
627
|
* Trigger on this list of release bundle names.
|
|
628
628
|
*/
|
|
629
|
-
registeredReleaseBundleNames
|
|
629
|
+
registeredReleaseBundleNames?: pulumi.Input<pulumi.Input<string>[]>;
|
|
630
630
|
}
|
|
631
631
|
export interface DistributionCustomWebhookHandler {
|
|
632
632
|
/**
|
|
@@ -674,7 +674,7 @@ export interface DistributionWebhookCriteria {
|
|
|
674
674
|
/**
|
|
675
675
|
* Trigger on this list of release bundle names.
|
|
676
676
|
*/
|
|
677
|
-
registeredReleaseBundleNames
|
|
677
|
+
registeredReleaseBundleNames?: pulumi.Input<pulumi.Input<string>[]>;
|
|
678
678
|
}
|
|
679
679
|
export interface DistributionWebhookHandler {
|
|
680
680
|
/**
|
|
@@ -4285,17 +4285,17 @@ export interface ReleaseBundleCustomWebhookCriteria {
|
|
|
4285
4285
|
*/
|
|
4286
4286
|
anyReleaseBundle: pulumi.Input<boolean>;
|
|
4287
4287
|
/**
|
|
4288
|
-
* Simple comma separated wildcard patterns for repository artifact paths (with no leading slash). Ant-style path expressions are supported (*, *\*, ?). For example: "org/apache/**".
|
|
4288
|
+
* Simple comma separated wildcard patterns for repository artifact paths (with no leading slash). Ant-style path expressions are supported (*, *\*, ?). For example: "org/apache/**". **Cannot be set if `anyReleaseBundle` is set to `true`.**
|
|
4289
4289
|
*/
|
|
4290
4290
|
excludePatterns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
4291
4291
|
/**
|
|
4292
|
-
* Simple comma separated wildcard patterns for repository artifact paths (with no leading slash). Ant-style path expressions are supported (*, *\*, ?). For example: "org/apache/**".
|
|
4292
|
+
* Simple comma separated wildcard patterns for repository artifact paths (with no leading slash). Ant-style path expressions are supported (*, *\*, ?). For example: "org/apache/**". **Cannot be set if `anyReleaseBundle` is set to `true`.** Either this or `registeredReleaseBundleNames` must be set when `anyReleaseBundle` is `false`.
|
|
4293
4293
|
*/
|
|
4294
4294
|
includePatterns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
4295
4295
|
/**
|
|
4296
|
-
* Trigger on this list of release bundle names.
|
|
4296
|
+
* Trigger on this list of release bundle names. Either this or `includePatterns` must be set when `anyReleaseBundle` is `false`.
|
|
4297
4297
|
*/
|
|
4298
|
-
registeredReleaseBundleNames
|
|
4298
|
+
registeredReleaseBundleNames?: pulumi.Input<pulumi.Input<string>[]>;
|
|
4299
4299
|
}
|
|
4300
4300
|
export interface ReleaseBundleCustomWebhookHandler {
|
|
4301
4301
|
/**
|
|
@@ -4329,7 +4329,7 @@ export interface ReleaseBundleCustomWebhookHandler {
|
|
|
4329
4329
|
}
|
|
4330
4330
|
export interface ReleaseBundleV2CleanupPolicySearchCriteria {
|
|
4331
4331
|
/**
|
|
4332
|
-
*
|
|
4332
|
+
* Specifies the time frame for filtering based on item creation date (for example, 24 months). Defaults to `24`.
|
|
4333
4333
|
*/
|
|
4334
4334
|
createdBeforeInMonths?: pulumi.Input<number>;
|
|
4335
4335
|
/**
|
|
@@ -4367,17 +4367,21 @@ export interface ReleaseBundleV2CustomWebhookCriteria {
|
|
|
4367
4367
|
*/
|
|
4368
4368
|
anyReleaseBundle: pulumi.Input<boolean>;
|
|
4369
4369
|
/**
|
|
4370
|
-
* Simple
|
|
4370
|
+
* Simple wildcard patterns for Release Bundle names.
|
|
4371
|
+
* Ant-style path expressions are supported (*, **, ?).
|
|
4372
|
+
* For example: `product_*`
|
|
4371
4373
|
*/
|
|
4372
4374
|
excludePatterns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
4373
4375
|
/**
|
|
4374
|
-
* Simple
|
|
4376
|
+
* Simple wildcard patterns for Release Bundle names.
|
|
4377
|
+
* Ant-style path expressions are supported (*, **, ?).
|
|
4378
|
+
* For example: `product_*`
|
|
4375
4379
|
*/
|
|
4376
4380
|
includePatterns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
4377
4381
|
/**
|
|
4378
4382
|
* Trigger on this list of release bundle names.
|
|
4379
4383
|
*/
|
|
4380
|
-
selectedReleaseBundles
|
|
4384
|
+
selectedReleaseBundles?: pulumi.Input<pulumi.Input<string>[]>;
|
|
4381
4385
|
}
|
|
4382
4386
|
export interface ReleaseBundleV2CustomWebhookHandler {
|
|
4383
4387
|
/**
|
|
@@ -4553,17 +4557,21 @@ export interface ReleaseBundleV2WebhookCriteria {
|
|
|
4553
4557
|
*/
|
|
4554
4558
|
anyReleaseBundle: pulumi.Input<boolean>;
|
|
4555
4559
|
/**
|
|
4556
|
-
* Simple
|
|
4560
|
+
* Simple wildcard patterns for Release Bundle names.
|
|
4561
|
+
* Ant-style path expressions are supported (*, **, ?).
|
|
4562
|
+
* For example: `product_*`
|
|
4557
4563
|
*/
|
|
4558
4564
|
excludePatterns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
4559
4565
|
/**
|
|
4560
|
-
* Simple
|
|
4566
|
+
* Simple wildcard patterns for Release Bundle names.
|
|
4567
|
+
* Ant-style path expressions are supported (*, **, ?).
|
|
4568
|
+
* For example: `product_*`
|
|
4561
4569
|
*/
|
|
4562
4570
|
includePatterns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
4563
4571
|
/**
|
|
4564
4572
|
* Trigger on this list of release bundle names.
|
|
4565
4573
|
*/
|
|
4566
|
-
selectedReleaseBundles
|
|
4574
|
+
selectedReleaseBundles?: pulumi.Input<pulumi.Input<string>[]>;
|
|
4567
4575
|
}
|
|
4568
4576
|
export interface ReleaseBundleV2WebhookHandler {
|
|
4569
4577
|
/**
|
|
@@ -4605,7 +4613,7 @@ export interface ReleaseBundleWebhookCriteria {
|
|
|
4605
4613
|
/**
|
|
4606
4614
|
* Trigger on this list of release bundle names.
|
|
4607
4615
|
*/
|
|
4608
|
-
registeredReleaseBundleNames
|
|
4616
|
+
registeredReleaseBundleNames?: pulumi.Input<pulumi.Input<string>[]>;
|
|
4609
4617
|
}
|
|
4610
4618
|
export interface ReleaseBundleWebhookHandler {
|
|
4611
4619
|
/**
|
|
@@ -4973,6 +4981,24 @@ export interface RemoteHelmociRepositoryContentSynchronisation {
|
|
|
4973
4981
|
*/
|
|
4974
4982
|
statisticsEnabled?: pulumi.Input<boolean>;
|
|
4975
4983
|
}
|
|
4984
|
+
export interface RemoteHexRepositoryContentSynchronisation {
|
|
4985
|
+
/**
|
|
4986
|
+
* If set, Remote repository proxies a local or remote repository from another instance of Artifactory. Default value is 'false'.
|
|
4987
|
+
*/
|
|
4988
|
+
enabled?: pulumi.Input<boolean>;
|
|
4989
|
+
/**
|
|
4990
|
+
* If set, properties for artifacts that have been cached in this repository will be updated if they are modified in the artifact hosted at the remote Artifactory instance. The trigger to synchronize the properties is download of the artifact from the remote repository cache of the local Artifactory instance. Default value is 'false'.
|
|
4991
|
+
*/
|
|
4992
|
+
propertiesEnabled?: pulumi.Input<boolean>;
|
|
4993
|
+
/**
|
|
4994
|
+
* If set, Artifactory displays an indication on cached items if they have been deleted from the corresponding repository in the remote Artifactory instance. Default value is 'false'
|
|
4995
|
+
*/
|
|
4996
|
+
sourceOriginAbsenceDetection?: pulumi.Input<boolean>;
|
|
4997
|
+
/**
|
|
4998
|
+
* If set, Artifactory will notify the remote instance whenever an artifact in the Smart Remote Repository is downloaded locally so that it can update its download counter. Note that if this option is not set, there may be a discrepancy between the number of artifacts reported to have been downloaded in the different Artifactory instances of the proxy chain. Default value is 'false'.
|
|
4999
|
+
*/
|
|
5000
|
+
statisticsEnabled?: pulumi.Input<boolean>;
|
|
5001
|
+
}
|
|
4976
5002
|
export interface RemoteHuggingfacemlRepositoryContentSynchronisation {
|
|
4977
5003
|
/**
|
|
4978
5004
|
* If set, Remote repository proxies a local or remote repository from another instance of Artifactory. Default value is 'false'.
|