@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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/artifactory",
3
- "version": "v2.6.1",
3
+ "version": "v2.7.0",
4
4
  "description": "A Pulumi package for creating and managing artifactory cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -11,7 +11,7 @@
11
11
  "license": "Apache-2.0",
12
12
  "scripts": {
13
13
  "build": "tsc",
14
- "install": "node scripts/install-pulumi-plugin.js resource artifactory v2.6.1"
14
+ "install": "node scripts/install-pulumi-plugin.js resource artifactory v2.7.0"
15
15
  },
16
16
  "dependencies": {
17
17
  "@pulumi/pulumi": "^3.0.0"
package/package.json.dev CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/artifactory",
3
- "version": "v2.6.1",
3
+ "version": "v2.7.0",
4
4
  "description": "A Pulumi package for creating and managing artifactory cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -11,7 +11,7 @@
11
11
  "license": "Apache-2.0",
12
12
  "scripts": {
13
13
  "build": "tsc",
14
- "install": "node scripts/install-pulumi-plugin.js resource artifactory v2.6.1"
14
+ "install": "node scripts/install-pulumi-plugin.js resource artifactory v2.7.0"
15
15
  },
16
16
  "dependencies": {
17
17
  "@pulumi/pulumi": "^3.0.0"
@@ -76,10 +76,10 @@ export declare class RemoteAlpineRepository 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 RemoteAlpineRepository 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 RemoteAlpineRepositoryState {
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 RemoteAlpineRepositoryState {
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 RemoteAlpineRepositoryArgs {
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 RemoteAlpineRepositoryArgs {
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
  /**
@@ -81,10 +81,10 @@ export declare class RemoteBowerRepository extends pulumi.CustomResource {
81
81
  */
82
82
  readonly enableCookieManagement: pulumi.Output<boolean>;
83
83
  /**
84
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
85
- * 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.
86
86
  */
87
- readonly excludesPattern: pulumi.Output<string>;
87
+ readonly excludesPattern: pulumi.Output<string | undefined>;
88
88
  /**
89
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
90
90
  */
@@ -95,8 +95,8 @@ export declare class RemoteBowerRepository extends pulumi.CustomResource {
95
95
  */
96
96
  readonly hardFail: pulumi.Output<boolean>;
97
97
  /**
98
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
99
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
98
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
99
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
100
100
  */
101
101
  readonly includesPattern: pulumi.Output<string>;
102
102
  /**
@@ -262,8 +262,8 @@ export interface RemoteBowerRepositoryState {
262
262
  */
263
263
  enableCookieManagement?: pulumi.Input<boolean>;
264
264
  /**
265
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
266
- * artifacts are excluded.
265
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
266
+ * default no artifacts are excluded.
267
267
  */
268
268
  excludesPattern?: pulumi.Input<string>;
269
269
  /**
@@ -276,8 +276,8 @@ export interface RemoteBowerRepositoryState {
276
276
  */
277
277
  hardFail?: pulumi.Input<boolean>;
278
278
  /**
279
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
280
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
279
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
280
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
281
281
  */
282
282
  includesPattern?: pulumi.Input<string>;
283
283
  /**
@@ -435,8 +435,8 @@ export interface RemoteBowerRepositoryArgs {
435
435
  */
436
436
  enableCookieManagement?: pulumi.Input<boolean>;
437
437
  /**
438
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
439
- * artifacts are excluded.
438
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
439
+ * default no artifacts are excluded.
440
440
  */
441
441
  excludesPattern?: pulumi.Input<string>;
442
442
  /**
@@ -445,8 +445,8 @@ export interface RemoteBowerRepositoryArgs {
445
445
  */
446
446
  hardFail?: pulumi.Input<boolean>;
447
447
  /**
448
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
449
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
448
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
449
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
450
450
  */
451
451
  includesPattern?: pulumi.Input<string>;
452
452
  /**
@@ -86,10 +86,10 @@ export declare class RemoteCargoRepository extends pulumi.CustomResource {
86
86
  */
87
87
  readonly enableCookieManagement: pulumi.Output<boolean>;
88
88
  /**
89
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
90
- * artifacts are excluded.
89
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
90
+ * default no artifacts are excluded.
91
91
  */
92
- readonly excludesPattern: pulumi.Output<string>;
92
+ readonly excludesPattern: pulumi.Output<string | undefined>;
93
93
  /**
94
94
  * @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
95
95
  */
@@ -104,8 +104,8 @@ export declare class RemoteCargoRepository extends pulumi.CustomResource {
104
104
  */
105
105
  readonly hardFail: pulumi.Output<boolean>;
106
106
  /**
107
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
108
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
107
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
108
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
109
109
  */
110
110
  readonly includesPattern: pulumi.Output<string>;
111
111
  /**
@@ -262,8 +262,8 @@ export interface RemoteCargoRepositoryState {
262
262
  */
263
263
  enableCookieManagement?: pulumi.Input<boolean>;
264
264
  /**
265
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
266
- * artifacts are excluded.
265
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
266
+ * default no artifacts are excluded.
267
267
  */
268
268
  excludesPattern?: pulumi.Input<string>;
269
269
  /**
@@ -280,8 +280,8 @@ export interface RemoteCargoRepositoryState {
280
280
  */
281
281
  hardFail?: pulumi.Input<boolean>;
282
282
  /**
283
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
284
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
283
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
284
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
285
285
  */
286
286
  includesPattern?: pulumi.Input<string>;
287
287
  /**
@@ -430,8 +430,8 @@ export interface RemoteCargoRepositoryArgs {
430
430
  */
431
431
  enableCookieManagement?: pulumi.Input<boolean>;
432
432
  /**
433
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
434
- * artifacts are excluded.
433
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
434
+ * default no artifacts are excluded.
435
435
  */
436
436
  excludesPattern?: pulumi.Input<string>;
437
437
  /**
@@ -444,8 +444,8 @@ export interface RemoteCargoRepositoryArgs {
444
444
  */
445
445
  hardFail?: pulumi.Input<boolean>;
446
446
  /**
447
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
448
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
447
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
448
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
449
449
  */
450
450
  includesPattern?: pulumi.Input<string>;
451
451
  /**
@@ -76,10 +76,10 @@ export declare class RemoteChefRepository 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 RemoteChefRepository 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 RemoteChefRepositoryState {
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 RemoteChefRepositoryState {
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 RemoteChefRepositoryArgs {
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 RemoteChefRepositoryArgs {
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
  /**
@@ -78,10 +78,10 @@ export declare class RemoteCocoapodsRepository 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 RemoteCocoapodsRepository 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
  /**
@@ -259,8 +259,8 @@ export interface RemoteCocoapodsRepositoryState {
259
259
  */
260
260
  enableCookieManagement?: pulumi.Input<boolean>;
261
261
  /**
262
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
263
- * artifacts are excluded.
262
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
263
+ * default no artifacts are excluded.
264
264
  */
265
265
  excludesPattern?: pulumi.Input<string>;
266
266
  /**
@@ -273,8 +273,8 @@ export interface RemoteCocoapodsRepositoryState {
273
273
  */
274
274
  hardFail?: pulumi.Input<boolean>;
275
275
  /**
276
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
277
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
276
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
277
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
278
278
  */
279
279
  includesPattern?: pulumi.Input<string>;
280
280
  /**
@@ -432,8 +432,8 @@ export interface RemoteCocoapodsRepositoryArgs {
432
432
  */
433
433
  enableCookieManagement?: pulumi.Input<boolean>;
434
434
  /**
435
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
436
- * artifacts are excluded.
435
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
436
+ * default no artifacts are excluded.
437
437
  */
438
438
  excludesPattern?: pulumi.Input<string>;
439
439
  /**
@@ -442,8 +442,8 @@ export interface RemoteCocoapodsRepositoryArgs {
442
442
  */
443
443
  hardFail?: pulumi.Input<boolean>;
444
444
  /**
445
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
446
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
445
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
446
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
447
447
  */
448
448
  includesPattern?: pulumi.Input<string>;
449
449
  /**
@@ -81,10 +81,10 @@ export declare class RemoteComposerRepository extends pulumi.CustomResource {
81
81
  */
82
82
  readonly enableCookieManagement: pulumi.Output<boolean>;
83
83
  /**
84
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
85
- * 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.
86
86
  */
87
- readonly excludesPattern: pulumi.Output<string>;
87
+ readonly excludesPattern: pulumi.Output<string | undefined>;
88
88
  /**
89
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
90
90
  */
@@ -95,8 +95,8 @@ export declare class RemoteComposerRepository extends pulumi.CustomResource {
95
95
  */
96
96
  readonly hardFail: pulumi.Output<boolean>;
97
97
  /**
98
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
99
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
98
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
99
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
100
100
  */
101
101
  readonly includesPattern: pulumi.Output<string>;
102
102
  /**
@@ -262,8 +262,8 @@ export interface RemoteComposerRepositoryState {
262
262
  */
263
263
  enableCookieManagement?: pulumi.Input<boolean>;
264
264
  /**
265
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
266
- * artifacts are excluded.
265
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
266
+ * default no artifacts are excluded.
267
267
  */
268
268
  excludesPattern?: pulumi.Input<string>;
269
269
  /**
@@ -276,8 +276,8 @@ export interface RemoteComposerRepositoryState {
276
276
  */
277
277
  hardFail?: pulumi.Input<boolean>;
278
278
  /**
279
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
280
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
279
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
280
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
281
281
  */
282
282
  includesPattern?: pulumi.Input<string>;
283
283
  /**
@@ -435,8 +435,8 @@ export interface RemoteComposerRepositoryArgs {
435
435
  */
436
436
  enableCookieManagement?: pulumi.Input<boolean>;
437
437
  /**
438
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
439
- * artifacts are excluded.
438
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
439
+ * default no artifacts are excluded.
440
440
  */
441
441
  excludesPattern?: pulumi.Input<string>;
442
442
  /**
@@ -445,8 +445,8 @@ export interface RemoteComposerRepositoryArgs {
445
445
  */
446
446
  hardFail?: pulumi.Input<boolean>;
447
447
  /**
448
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
449
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
448
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
449
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
450
450
  */
451
451
  includesPattern?: pulumi.Input<string>;
452
452
  /**
@@ -76,10 +76,10 @@ export declare class RemoteConanRepository 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 RemoteConanRepository 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 RemoteConanRepositoryState {
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 RemoteConanRepositoryState {
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 RemoteConanRepositoryArgs {
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 RemoteConanRepositoryArgs {
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 RemoteCondaRepository 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 RemoteCondaRepository 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 RemoteCondaRepositoryState {
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 RemoteCondaRepositoryState {
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 RemoteCondaRepositoryArgs {
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 RemoteCondaRepositoryArgs {
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
  /**