@pulumi/artifactory 2.6.1 → 2.7.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.
@@ -80,10 +80,10 @@ export declare class RemoteIvyRepository extends pulumi.CustomResource {
80
80
  */
81
81
  readonly enableCookieManagement: pulumi.Output<boolean>;
82
82
  /**
83
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
84
- * artifacts are excluded.
83
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
84
+ * default no artifacts are excluded.
85
85
  */
86
- readonly excludesPattern: pulumi.Output<string>;
86
+ readonly excludesPattern: pulumi.Output<string | undefined>;
87
87
  /**
88
88
  * @deprecated This field is not returned in a get payload but is offered on the UI. It's inserted here for inclusive and informational reasons. It does not function
89
89
  */
@@ -110,8 +110,8 @@ export declare class RemoteIvyRepository extends pulumi.CustomResource {
110
110
  */
111
111
  readonly hardFail: pulumi.Output<boolean>;
112
112
  /**
113
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
114
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
113
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
114
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
115
115
  */
116
116
  readonly includesPattern: pulumi.Output<string>;
117
117
  /**
@@ -276,8 +276,8 @@ export interface RemoteIvyRepositoryState {
276
276
  */
277
277
  enableCookieManagement?: pulumi.Input<boolean>;
278
278
  /**
279
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
280
- * artifacts are excluded.
279
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
280
+ * default no artifacts are excluded.
281
281
  */
282
282
  excludesPattern?: pulumi.Input<string>;
283
283
  /**
@@ -306,8 +306,8 @@ export interface RemoteIvyRepositoryState {
306
306
  */
307
307
  hardFail?: pulumi.Input<boolean>;
308
308
  /**
309
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
310
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
309
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
310
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
311
311
  */
312
312
  includesPattern?: pulumi.Input<string>;
313
313
  /**
@@ -464,8 +464,8 @@ export interface RemoteIvyRepositoryArgs {
464
464
  */
465
465
  enableCookieManagement?: pulumi.Input<boolean>;
466
466
  /**
467
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
468
- * artifacts are excluded.
467
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
468
+ * default no artifacts are excluded.
469
469
  */
470
470
  excludesPattern?: pulumi.Input<string>;
471
471
  /**
@@ -490,8 +490,8 @@ export interface RemoteIvyRepositoryArgs {
490
490
  */
491
491
  hardFail?: pulumi.Input<boolean>;
492
492
  /**
493
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
494
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
493
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
494
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
495
495
  */
496
496
  includesPattern?: pulumi.Input<string>;
497
497
  /**
@@ -14,6 +14,7 @@ import { input as inputs, output as outputs } from "./types";
14
14
  * fetchJarsEagerly: true,
15
15
  * fetchSourcesEagerly: false,
16
16
  * key: "maven-remote-foo",
17
+ * metadataRetrievalTimeoutSeconds: 120,
17
18
  * rejectInvalidJars: true,
18
19
  * suppressPomConsistencyChecks: false,
19
20
  * url: "https://repo1.maven.org/maven2/",
@@ -80,10 +81,10 @@ export declare class RemoteMavenRepository extends pulumi.CustomResource {
80
81
  */
81
82
  readonly enableCookieManagement: pulumi.Output<boolean>;
82
83
  /**
83
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
84
- * artifacts are excluded.
84
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
85
+ * default no artifacts are excluded.
85
86
  */
86
- readonly excludesPattern: pulumi.Output<string>;
87
+ readonly excludesPattern: pulumi.Output<string | undefined>;
87
88
  /**
88
89
  * @deprecated This field is not returned in a get payload but is offered on the UI. It's inserted here for inclusive and informational reasons. It does not function
89
90
  */
@@ -110,8 +111,8 @@ export declare class RemoteMavenRepository extends pulumi.CustomResource {
110
111
  */
111
112
  readonly hardFail: pulumi.Output<boolean>;
112
113
  /**
113
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
114
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
114
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
115
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
115
116
  */
116
117
  readonly includesPattern: pulumi.Output<string>;
117
118
  /**
@@ -129,6 +130,10 @@ export declare class RemoteMavenRepository extends pulumi.CustomResource {
129
130
  * multiple network interfaces.
130
131
  */
131
132
  readonly localAddress: pulumi.Output<string | undefined>;
133
+ /**
134
+ * This value refers to the number of seconds to cache metadata files before checking for newer versions on remote server. A value of 0 indicates no caching. Cannot be larger than `retrievalCachePeriodSeconds` attribute.
135
+ */
136
+ readonly metadataRetrievalTimeoutSeconds: pulumi.Output<number>;
132
137
  /**
133
138
  * The set of mime types that should override the block_mismatching_mime_types setting. Eg:
134
139
  * "application/json,application/xml". Default value is empty.
@@ -276,8 +281,8 @@ export interface RemoteMavenRepositoryState {
276
281
  */
277
282
  enableCookieManagement?: pulumi.Input<boolean>;
278
283
  /**
279
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
280
- * artifacts are excluded.
284
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
285
+ * default no artifacts are excluded.
281
286
  */
282
287
  excludesPattern?: pulumi.Input<string>;
283
288
  /**
@@ -306,8 +311,8 @@ export interface RemoteMavenRepositoryState {
306
311
  */
307
312
  hardFail?: pulumi.Input<boolean>;
308
313
  /**
309
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
310
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
314
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
315
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
311
316
  */
312
317
  includesPattern?: pulumi.Input<string>;
313
318
  /**
@@ -325,6 +330,10 @@ export interface RemoteMavenRepositoryState {
325
330
  * multiple network interfaces.
326
331
  */
327
332
  localAddress?: pulumi.Input<string>;
333
+ /**
334
+ * This value refers to the number of seconds to cache metadata files before checking for newer versions on remote server. A value of 0 indicates no caching. Cannot be larger than `retrievalCachePeriodSeconds` attribute.
335
+ */
336
+ metadataRetrievalTimeoutSeconds?: pulumi.Input<number>;
328
337
  /**
329
338
  * The set of mime types that should override the block_mismatching_mime_types setting. Eg:
330
339
  * "application/json,application/xml". Default value is empty.
@@ -464,8 +473,8 @@ export interface RemoteMavenRepositoryArgs {
464
473
  */
465
474
  enableCookieManagement?: pulumi.Input<boolean>;
466
475
  /**
467
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
468
- * artifacts are excluded.
476
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
477
+ * default no artifacts are excluded.
469
478
  */
470
479
  excludesPattern?: pulumi.Input<string>;
471
480
  /**
@@ -490,8 +499,8 @@ export interface RemoteMavenRepositoryArgs {
490
499
  */
491
500
  hardFail?: pulumi.Input<boolean>;
492
501
  /**
493
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
494
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
502
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
503
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
495
504
  */
496
505
  includesPattern?: pulumi.Input<string>;
497
506
  /**
@@ -509,6 +518,10 @@ export interface RemoteMavenRepositoryArgs {
509
518
  * multiple network interfaces.
510
519
  */
511
520
  localAddress?: pulumi.Input<string>;
521
+ /**
522
+ * This value refers to the number of seconds to cache metadata files before checking for newer versions on remote server. A value of 0 indicates no caching. Cannot be larger than `retrievalCachePeriodSeconds` attribute.
523
+ */
524
+ metadataRetrievalTimeoutSeconds?: pulumi.Input<number>;
512
525
  /**
513
526
  * The set of mime types that should override the block_mismatching_mime_types setting. Eg:
514
527
  * "application/json,application/xml". Default value is empty.
@@ -19,6 +19,7 @@ const utilities = require("./utilities");
19
19
  * fetchJarsEagerly: true,
20
20
  * fetchSourcesEagerly: false,
21
21
  * key: "maven-remote-foo",
22
+ * metadataRetrievalTimeoutSeconds: 120,
22
23
  * rejectInvalidJars: true,
23
24
  * suppressPomConsistencyChecks: false,
24
25
  * url: "https://repo1.maven.org/maven2/",
@@ -59,6 +60,7 @@ class RemoteMavenRepository extends pulumi.CustomResource {
59
60
  resourceInputs["key"] = state ? state.key : undefined;
60
61
  resourceInputs["listRemoteFolderItems"] = state ? state.listRemoteFolderItems : undefined;
61
62
  resourceInputs["localAddress"] = state ? state.localAddress : undefined;
63
+ resourceInputs["metadataRetrievalTimeoutSeconds"] = state ? state.metadataRetrievalTimeoutSeconds : undefined;
62
64
  resourceInputs["mismatchingMimeTypesOverrideList"] = state ? state.mismatchingMimeTypesOverrideList : undefined;
63
65
  resourceInputs["missedCachePeriodSeconds"] = state ? state.missedCachePeriodSeconds : undefined;
64
66
  resourceInputs["notes"] = state ? state.notes : undefined;
@@ -114,6 +116,7 @@ class RemoteMavenRepository extends pulumi.CustomResource {
114
116
  resourceInputs["key"] = args ? args.key : undefined;
115
117
  resourceInputs["listRemoteFolderItems"] = args ? args.listRemoteFolderItems : undefined;
116
118
  resourceInputs["localAddress"] = args ? args.localAddress : undefined;
119
+ resourceInputs["metadataRetrievalTimeoutSeconds"] = args ? args.metadataRetrievalTimeoutSeconds : undefined;
117
120
  resourceInputs["mismatchingMimeTypesOverrideList"] = args ? args.mismatchingMimeTypesOverrideList : undefined;
118
121
  resourceInputs["missedCachePeriodSeconds"] = args ? args.missedCachePeriodSeconds : undefined;
119
122
  resourceInputs["notes"] = args ? args.notes : undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"remoteMavenRepository.js","sourceRoot":"","sources":["../remoteMavenRepository.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"remoteMavenRepository.js","sourceRoot":"","sources":["../remoteMavenRepository.ts"],"names":[],"mappings":"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"}
@@ -78,10 +78,10 @@ export declare class RemoteNpmRepository extends pulumi.CustomResource {
78
78
  */
79
79
  readonly enableCookieManagement: pulumi.Output<boolean>;
80
80
  /**
81
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
82
- * artifacts are excluded.
81
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
82
+ * default no artifacts are excluded.
83
83
  */
84
- readonly excludesPattern: pulumi.Output<string>;
84
+ readonly excludesPattern: pulumi.Output<string | undefined>;
85
85
  /**
86
86
  * @deprecated This field is not returned in a get payload but is offered on the UI. It's inserted here for inclusive and informational reasons. It does not function
87
87
  */
@@ -92,8 +92,8 @@ export declare class RemoteNpmRepository extends pulumi.CustomResource {
92
92
  */
93
93
  readonly hardFail: pulumi.Output<boolean>;
94
94
  /**
95
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
96
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
95
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
96
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
97
97
  */
98
98
  readonly includesPattern: pulumi.Output<string>;
99
99
  /**
@@ -246,8 +246,8 @@ export interface RemoteNpmRepositoryState {
246
246
  */
247
247
  enableCookieManagement?: pulumi.Input<boolean>;
248
248
  /**
249
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
250
- * artifacts are excluded.
249
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
250
+ * default no artifacts are excluded.
251
251
  */
252
252
  excludesPattern?: pulumi.Input<string>;
253
253
  /**
@@ -260,8 +260,8 @@ export interface RemoteNpmRepositoryState {
260
260
  */
261
261
  hardFail?: pulumi.Input<boolean>;
262
262
  /**
263
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
264
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
263
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
264
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
265
265
  */
266
266
  includesPattern?: pulumi.Input<string>;
267
267
  /**
@@ -406,8 +406,8 @@ export interface RemoteNpmRepositoryArgs {
406
406
  */
407
407
  enableCookieManagement?: pulumi.Input<boolean>;
408
408
  /**
409
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
410
- * artifacts are excluded.
409
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
410
+ * default no artifacts are excluded.
411
411
  */
412
412
  excludesPattern?: pulumi.Input<string>;
413
413
  /**
@@ -416,8 +416,8 @@ export interface RemoteNpmRepositoryArgs {
416
416
  */
417
417
  hardFail?: pulumi.Input<boolean>;
418
418
  /**
419
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
420
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
419
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
420
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
421
421
  */
422
422
  includesPattern?: pulumi.Input<string>;
423
423
  /**
@@ -85,10 +85,10 @@ export declare class RemoteNugetRepository extends pulumi.CustomResource {
85
85
  */
86
86
  readonly enableCookieManagement: pulumi.Output<boolean>;
87
87
  /**
88
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
89
- * artifacts are excluded.
88
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
89
+ * default no artifacts are excluded.
90
90
  */
91
- readonly excludesPattern: pulumi.Output<string>;
91
+ readonly excludesPattern: pulumi.Output<string | undefined>;
92
92
  /**
93
93
  * @deprecated This field is not returned in a get payload but is offered on the UI. It's inserted here for inclusive and informational reasons. It does not function
94
94
  */
@@ -107,8 +107,8 @@ export declare class RemoteNugetRepository extends pulumi.CustomResource {
107
107
  */
108
108
  readonly hardFail: pulumi.Output<boolean>;
109
109
  /**
110
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
111
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
110
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
111
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
112
112
  */
113
113
  readonly includesPattern: pulumi.Output<string>;
114
114
  /**
@@ -271,8 +271,8 @@ export interface RemoteNugetRepositoryState {
271
271
  */
272
272
  enableCookieManagement?: pulumi.Input<boolean>;
273
273
  /**
274
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
275
- * artifacts are excluded.
274
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
275
+ * default no artifacts are excluded.
276
276
  */
277
277
  excludesPattern?: pulumi.Input<string>;
278
278
  /**
@@ -293,8 +293,8 @@ export interface RemoteNugetRepositoryState {
293
293
  */
294
294
  hardFail?: pulumi.Input<boolean>;
295
295
  /**
296
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
297
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
296
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
297
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
298
298
  */
299
299
  includesPattern?: pulumi.Input<string>;
300
300
  /**
@@ -449,8 +449,8 @@ export interface RemoteNugetRepositoryArgs {
449
449
  */
450
450
  enableCookieManagement?: pulumi.Input<boolean>;
451
451
  /**
452
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
453
- * artifacts are excluded.
452
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
453
+ * default no artifacts are excluded.
454
454
  */
455
455
  excludesPattern?: pulumi.Input<string>;
456
456
  /**
@@ -467,8 +467,8 @@ export interface RemoteNugetRepositoryArgs {
467
467
  */
468
468
  hardFail?: pulumi.Input<boolean>;
469
469
  /**
470
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
471
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
470
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
471
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
472
472
  */
473
473
  includesPattern?: pulumi.Input<string>;
474
474
  /**
@@ -76,10 +76,10 @@ export declare class RemoteOpkgRepository extends pulumi.CustomResource {
76
76
  */
77
77
  readonly enableCookieManagement: pulumi.Output<boolean>;
78
78
  /**
79
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
80
- * artifacts are excluded.
79
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
80
+ * default no artifacts are excluded.
81
81
  */
82
- readonly excludesPattern: pulumi.Output<string>;
82
+ readonly excludesPattern: pulumi.Output<string | undefined>;
83
83
  /**
84
84
  * @deprecated This field is not returned in a get payload but is offered on the UI. It's inserted here for inclusive and informational reasons. It does not function
85
85
  */
@@ -90,8 +90,8 @@ export declare class RemoteOpkgRepository extends pulumi.CustomResource {
90
90
  */
91
91
  readonly hardFail: pulumi.Output<boolean>;
92
92
  /**
93
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
94
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
93
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
94
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
95
95
  */
96
96
  readonly includesPattern: pulumi.Output<string>;
97
97
  /**
@@ -244,8 +244,8 @@ export interface RemoteOpkgRepositoryState {
244
244
  */
245
245
  enableCookieManagement?: pulumi.Input<boolean>;
246
246
  /**
247
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
248
- * artifacts are excluded.
247
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
248
+ * default no artifacts are excluded.
249
249
  */
250
250
  excludesPattern?: pulumi.Input<string>;
251
251
  /**
@@ -258,8 +258,8 @@ export interface RemoteOpkgRepositoryState {
258
258
  */
259
259
  hardFail?: pulumi.Input<boolean>;
260
260
  /**
261
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
262
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
261
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
262
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
263
263
  */
264
264
  includesPattern?: pulumi.Input<string>;
265
265
  /**
@@ -404,8 +404,8 @@ export interface RemoteOpkgRepositoryArgs {
404
404
  */
405
405
  enableCookieManagement?: pulumi.Input<boolean>;
406
406
  /**
407
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
408
- * artifacts are excluded.
407
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
408
+ * default no artifacts are excluded.
409
409
  */
410
410
  excludesPattern?: pulumi.Input<string>;
411
411
  /**
@@ -414,8 +414,8 @@ export interface RemoteOpkgRepositoryArgs {
414
414
  */
415
415
  hardFail?: pulumi.Input<boolean>;
416
416
  /**
417
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
418
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
417
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
418
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
419
419
  */
420
420
  includesPattern?: pulumi.Input<string>;
421
421
  /**
@@ -76,10 +76,10 @@ export declare class RemoteP2Repository extends pulumi.CustomResource {
76
76
  */
77
77
  readonly enableCookieManagement: pulumi.Output<boolean>;
78
78
  /**
79
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
80
- * artifacts are excluded.
79
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
80
+ * default no artifacts are excluded.
81
81
  */
82
- readonly excludesPattern: pulumi.Output<string>;
82
+ readonly excludesPattern: pulumi.Output<string | undefined>;
83
83
  /**
84
84
  * @deprecated This field is not returned in a get payload but is offered on the UI. It's inserted here for inclusive and informational reasons. It does not function
85
85
  */
@@ -90,8 +90,8 @@ export declare class RemoteP2Repository extends pulumi.CustomResource {
90
90
  */
91
91
  readonly hardFail: pulumi.Output<boolean>;
92
92
  /**
93
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
94
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
93
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
94
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
95
95
  */
96
96
  readonly includesPattern: pulumi.Output<string>;
97
97
  /**
@@ -244,8 +244,8 @@ export interface RemoteP2RepositoryState {
244
244
  */
245
245
  enableCookieManagement?: pulumi.Input<boolean>;
246
246
  /**
247
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
248
- * artifacts are excluded.
247
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
248
+ * default no artifacts are excluded.
249
249
  */
250
250
  excludesPattern?: pulumi.Input<string>;
251
251
  /**
@@ -258,8 +258,8 @@ export interface RemoteP2RepositoryState {
258
258
  */
259
259
  hardFail?: pulumi.Input<boolean>;
260
260
  /**
261
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
262
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
261
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
262
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
263
263
  */
264
264
  includesPattern?: pulumi.Input<string>;
265
265
  /**
@@ -404,8 +404,8 @@ export interface RemoteP2RepositoryArgs {
404
404
  */
405
405
  enableCookieManagement?: pulumi.Input<boolean>;
406
406
  /**
407
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
408
- * artifacts are excluded.
407
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
408
+ * default no artifacts are excluded.
409
409
  */
410
410
  excludesPattern?: pulumi.Input<string>;
411
411
  /**
@@ -414,8 +414,8 @@ export interface RemoteP2RepositoryArgs {
414
414
  */
415
415
  hardFail?: pulumi.Input<boolean>;
416
416
  /**
417
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
418
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
417
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
418
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
419
419
  */
420
420
  includesPattern?: pulumi.Input<string>;
421
421
  /**
@@ -76,10 +76,10 @@ export declare class RemotePubRepository extends pulumi.CustomResource {
76
76
  */
77
77
  readonly enableCookieManagement: pulumi.Output<boolean>;
78
78
  /**
79
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
80
- * artifacts are excluded.
79
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
80
+ * default no artifacts are excluded.
81
81
  */
82
- readonly excludesPattern: pulumi.Output<string>;
82
+ readonly excludesPattern: pulumi.Output<string | undefined>;
83
83
  /**
84
84
  * @deprecated This field is not returned in a get payload but is offered on the UI. It's inserted here for inclusive and informational reasons. It does not function
85
85
  */
@@ -90,8 +90,8 @@ export declare class RemotePubRepository extends pulumi.CustomResource {
90
90
  */
91
91
  readonly hardFail: pulumi.Output<boolean>;
92
92
  /**
93
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
94
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
93
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
94
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
95
95
  */
96
96
  readonly includesPattern: pulumi.Output<string>;
97
97
  /**
@@ -244,8 +244,8 @@ export interface RemotePubRepositoryState {
244
244
  */
245
245
  enableCookieManagement?: pulumi.Input<boolean>;
246
246
  /**
247
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
248
- * artifacts are excluded.
247
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
248
+ * default no artifacts are excluded.
249
249
  */
250
250
  excludesPattern?: pulumi.Input<string>;
251
251
  /**
@@ -258,8 +258,8 @@ export interface RemotePubRepositoryState {
258
258
  */
259
259
  hardFail?: pulumi.Input<boolean>;
260
260
  /**
261
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
262
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
261
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
262
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
263
263
  */
264
264
  includesPattern?: pulumi.Input<string>;
265
265
  /**
@@ -404,8 +404,8 @@ export interface RemotePubRepositoryArgs {
404
404
  */
405
405
  enableCookieManagement?: pulumi.Input<boolean>;
406
406
  /**
407
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
408
- * artifacts are excluded.
407
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
408
+ * default no artifacts are excluded.
409
409
  */
410
410
  excludesPattern?: pulumi.Input<string>;
411
411
  /**
@@ -414,8 +414,8 @@ export interface RemotePubRepositoryArgs {
414
414
  */
415
415
  hardFail?: pulumi.Input<boolean>;
416
416
  /**
417
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
418
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
417
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
418
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
419
419
  */
420
420
  includesPattern?: pulumi.Input<string>;
421
421
  /**