@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 +2 -2
- package/package.json.dev +2 -2
- package/remoteAlpineRepository.d.ts +13 -13
- package/remoteBowerRepository.d.ts +13 -13
- package/remoteCargoRepository.d.ts +13 -13
- package/remoteChefRepository.d.ts +13 -13
- package/remoteCocoapodsRepository.d.ts +13 -13
- package/remoteComposerRepository.d.ts +13 -13
- package/remoteConanRepository.d.ts +13 -13
- package/remoteCondaRepository.d.ts +13 -13
- package/remoteCranRepository.d.ts +13 -13
- package/remoteDebianRepository.d.ts +13 -13
- package/remoteDockerRepository.d.ts +13 -13
- package/remoteGemsRepository.d.ts +13 -13
- package/remoteGenericRepository.d.ts +13 -13
- package/remoteGitlfsRepository.d.ts +13 -13
- package/remoteGoRepository.d.ts +13 -13
- package/remoteGradleRepository.d.ts +13 -13
- package/remoteHelmRepository.d.ts +13 -13
- package/remoteIvyRepository.d.ts +13 -13
- package/remoteMavenRepository.d.ts +26 -13
- package/remoteMavenRepository.js +3 -0
- package/remoteMavenRepository.js.map +1 -1
- package/remoteNpmRepository.d.ts +13 -13
- package/remoteNugetRepository.d.ts +13 -13
- package/remoteOpkgRepository.d.ts +13 -13
- package/remoteP2Repository.d.ts +13 -13
- package/remotePubRepository.d.ts +13 -13
- package/remotePuppetRepository.d.ts +13 -13
- package/remotePypiRepository.d.ts +13 -13
- package/remoteRpmRepository.d.ts +13 -13
- package/remoteSbtRepository.d.ts +13 -13
- package/remoteSwiftRepository.d.ts +13 -13
- package/remoteTerraformRepository.d.ts +13 -13
- package/remoteVcsRepository.d.ts +13 -13
|
@@ -76,10 +76,10 @@ export declare class RemotePuppetRepository 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/**/z/*. By
|
|
80
|
-
* artifacts are excluded.
|
|
79
|
+
* List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/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 RemotePuppetRepository 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/**/z/*. When
|
|
94
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
93
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
94
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
95
95
|
*/
|
|
96
96
|
readonly includesPattern: pulumi.Output<string>;
|
|
97
97
|
/**
|
|
@@ -244,8 +244,8 @@ export interface RemotePuppetRepositoryState {
|
|
|
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/**/z/*. By
|
|
248
|
-
* artifacts are excluded.
|
|
247
|
+
* List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
248
|
+
* default no artifacts are excluded.
|
|
249
249
|
*/
|
|
250
250
|
excludesPattern?: pulumi.Input<string>;
|
|
251
251
|
/**
|
|
@@ -258,8 +258,8 @@ export interface RemotePuppetRepositoryState {
|
|
|
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/**/z/*. When
|
|
262
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
261
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
262
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
263
263
|
*/
|
|
264
264
|
includesPattern?: pulumi.Input<string>;
|
|
265
265
|
/**
|
|
@@ -404,8 +404,8 @@ export interface RemotePuppetRepositoryArgs {
|
|
|
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/**/z/*. By
|
|
408
|
-
* artifacts are excluded.
|
|
407
|
+
* List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
408
|
+
* default no artifacts are excluded.
|
|
409
409
|
*/
|
|
410
410
|
excludesPattern?: pulumi.Input<string>;
|
|
411
411
|
/**
|
|
@@ -414,8 +414,8 @@ export interface RemotePuppetRepositoryArgs {
|
|
|
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/**/z/*. When
|
|
418
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
417
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
418
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
419
419
|
*/
|
|
420
420
|
includesPattern?: pulumi.Input<string>;
|
|
421
421
|
/**
|
|
@@ -78,10 +78,10 @@ export declare class RemotePypiRepository 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/**/z/*. By
|
|
82
|
-
* artifacts are excluded.
|
|
81
|
+
* List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/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 RemotePypiRepository 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/**/z/*. When
|
|
96
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
95
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
96
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
97
97
|
*/
|
|
98
98
|
readonly includesPattern: pulumi.Output<string>;
|
|
99
99
|
/**
|
|
@@ -254,8 +254,8 @@ export interface RemotePypiRepositoryState {
|
|
|
254
254
|
*/
|
|
255
255
|
enableCookieManagement?: pulumi.Input<boolean>;
|
|
256
256
|
/**
|
|
257
|
-
* List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
258
|
-
* artifacts are excluded.
|
|
257
|
+
* List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
258
|
+
* default no artifacts are excluded.
|
|
259
259
|
*/
|
|
260
260
|
excludesPattern?: pulumi.Input<string>;
|
|
261
261
|
/**
|
|
@@ -268,8 +268,8 @@ export interface RemotePypiRepositoryState {
|
|
|
268
268
|
*/
|
|
269
269
|
hardFail?: pulumi.Input<boolean>;
|
|
270
270
|
/**
|
|
271
|
-
* List of artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
272
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
271
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
272
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
273
273
|
*/
|
|
274
274
|
includesPattern?: pulumi.Input<string>;
|
|
275
275
|
/**
|
|
@@ -422,8 +422,8 @@ export interface RemotePypiRepositoryArgs {
|
|
|
422
422
|
*/
|
|
423
423
|
enableCookieManagement?: pulumi.Input<boolean>;
|
|
424
424
|
/**
|
|
425
|
-
* List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
426
|
-
* artifacts are excluded.
|
|
425
|
+
* List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
426
|
+
* default no artifacts are excluded.
|
|
427
427
|
*/
|
|
428
428
|
excludesPattern?: pulumi.Input<string>;
|
|
429
429
|
/**
|
|
@@ -432,8 +432,8 @@ export interface RemotePypiRepositoryArgs {
|
|
|
432
432
|
*/
|
|
433
433
|
hardFail?: pulumi.Input<boolean>;
|
|
434
434
|
/**
|
|
435
|
-
* List of artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
436
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
435
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
436
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
437
437
|
*/
|
|
438
438
|
includesPattern?: pulumi.Input<string>;
|
|
439
439
|
/**
|
package/remoteRpmRepository.d.ts
CHANGED
|
@@ -76,10 +76,10 @@ export declare class RemoteRpmRepository 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/**/z/*. By
|
|
80
|
-
* artifacts are excluded.
|
|
79
|
+
* List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/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 RemoteRpmRepository 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/**/z/*. When
|
|
94
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
93
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
94
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
95
95
|
*/
|
|
96
96
|
readonly includesPattern: pulumi.Output<string>;
|
|
97
97
|
/**
|
|
@@ -244,8 +244,8 @@ export interface RemoteRpmRepositoryState {
|
|
|
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/**/z/*. By
|
|
248
|
-
* artifacts are excluded.
|
|
247
|
+
* List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
248
|
+
* default no artifacts are excluded.
|
|
249
249
|
*/
|
|
250
250
|
excludesPattern?: pulumi.Input<string>;
|
|
251
251
|
/**
|
|
@@ -258,8 +258,8 @@ export interface RemoteRpmRepositoryState {
|
|
|
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/**/z/*. When
|
|
262
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
261
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
262
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
263
263
|
*/
|
|
264
264
|
includesPattern?: pulumi.Input<string>;
|
|
265
265
|
/**
|
|
@@ -404,8 +404,8 @@ export interface RemoteRpmRepositoryArgs {
|
|
|
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/**/z/*. By
|
|
408
|
-
* artifacts are excluded.
|
|
407
|
+
* List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
408
|
+
* default no artifacts are excluded.
|
|
409
409
|
*/
|
|
410
410
|
excludesPattern?: pulumi.Input<string>;
|
|
411
411
|
/**
|
|
@@ -414,8 +414,8 @@ export interface RemoteRpmRepositoryArgs {
|
|
|
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/**/z/*. When
|
|
418
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
417
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
418
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
419
419
|
*/
|
|
420
420
|
includesPattern?: pulumi.Input<string>;
|
|
421
421
|
/**
|
package/remoteSbtRepository.d.ts
CHANGED
|
@@ -80,10 +80,10 @@ export declare class RemoteSbtRepository 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/**/z/*. By
|
|
84
|
-
* artifacts are excluded.
|
|
83
|
+
* List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/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 RemoteSbtRepository 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/**/z/*. When
|
|
114
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
113
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
114
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
115
115
|
*/
|
|
116
116
|
readonly includesPattern: pulumi.Output<string>;
|
|
117
117
|
/**
|
|
@@ -276,8 +276,8 @@ export interface RemoteSbtRepositoryState {
|
|
|
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/**/z/*. By
|
|
280
|
-
* artifacts are excluded.
|
|
279
|
+
* List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
280
|
+
* default no artifacts are excluded.
|
|
281
281
|
*/
|
|
282
282
|
excludesPattern?: pulumi.Input<string>;
|
|
283
283
|
/**
|
|
@@ -306,8 +306,8 @@ export interface RemoteSbtRepositoryState {
|
|
|
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/**/z/*. When
|
|
310
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
309
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
310
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
311
311
|
*/
|
|
312
312
|
includesPattern?: pulumi.Input<string>;
|
|
313
313
|
/**
|
|
@@ -464,8 +464,8 @@ export interface RemoteSbtRepositoryArgs {
|
|
|
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/**/z/*. By
|
|
468
|
-
* artifacts are excluded.
|
|
467
|
+
* List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
468
|
+
* default no artifacts are excluded.
|
|
469
469
|
*/
|
|
470
470
|
excludesPattern?: pulumi.Input<string>;
|
|
471
471
|
/**
|
|
@@ -490,8 +490,8 @@ export interface RemoteSbtRepositoryArgs {
|
|
|
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/**/z/*. When
|
|
494
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
493
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
494
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
495
495
|
*/
|
|
496
496
|
includesPattern?: pulumi.Input<string>;
|
|
497
497
|
/**
|
|
@@ -76,10 +76,10 @@ export declare class RemoteSwiftRepository 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/**/z/*. By
|
|
80
|
-
* artifacts are excluded.
|
|
79
|
+
* List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/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 RemoteSwiftRepository 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/**/z/*. When
|
|
94
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
93
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
94
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
95
95
|
*/
|
|
96
96
|
readonly includesPattern: pulumi.Output<string>;
|
|
97
97
|
/**
|
|
@@ -244,8 +244,8 @@ export interface RemoteSwiftRepositoryState {
|
|
|
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/**/z/*. By
|
|
248
|
-
* artifacts are excluded.
|
|
247
|
+
* List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
248
|
+
* default no artifacts are excluded.
|
|
249
249
|
*/
|
|
250
250
|
excludesPattern?: pulumi.Input<string>;
|
|
251
251
|
/**
|
|
@@ -258,8 +258,8 @@ export interface RemoteSwiftRepositoryState {
|
|
|
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/**/z/*. When
|
|
262
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
261
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
262
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
263
263
|
*/
|
|
264
264
|
includesPattern?: pulumi.Input<string>;
|
|
265
265
|
/**
|
|
@@ -404,8 +404,8 @@ export interface RemoteSwiftRepositoryArgs {
|
|
|
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/**/z/*. By
|
|
408
|
-
* artifacts are excluded.
|
|
407
|
+
* List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
408
|
+
* default no artifacts are excluded.
|
|
409
409
|
*/
|
|
410
410
|
excludesPattern?: pulumi.Input<string>;
|
|
411
411
|
/**
|
|
@@ -414,8 +414,8 @@ export interface RemoteSwiftRepositoryArgs {
|
|
|
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/**/z/*. When
|
|
418
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
417
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
418
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
419
419
|
*/
|
|
420
420
|
includesPattern?: pulumi.Input<string>;
|
|
421
421
|
/**
|
|
@@ -75,10 +75,10 @@ export declare class RemoteTerraformRepository extends pulumi.CustomResource {
|
|
|
75
75
|
*/
|
|
76
76
|
readonly enableCookieManagement: pulumi.Output<boolean>;
|
|
77
77
|
/**
|
|
78
|
-
* List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
79
|
-
* artifacts are excluded.
|
|
78
|
+
* List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
79
|
+
* default no artifacts are excluded.
|
|
80
80
|
*/
|
|
81
|
-
readonly excludesPattern: pulumi.Output<string>;
|
|
81
|
+
readonly excludesPattern: pulumi.Output<string | undefined>;
|
|
82
82
|
/**
|
|
83
83
|
* @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
|
|
84
84
|
*/
|
|
@@ -89,8 +89,8 @@ export declare class RemoteTerraformRepository extends pulumi.CustomResource {
|
|
|
89
89
|
*/
|
|
90
90
|
readonly hardFail: pulumi.Output<boolean>;
|
|
91
91
|
/**
|
|
92
|
-
* List of artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
93
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
92
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
93
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
94
94
|
*/
|
|
95
95
|
readonly includesPattern: pulumi.Output<string>;
|
|
96
96
|
/**
|
|
@@ -253,8 +253,8 @@ export interface RemoteTerraformRepositoryState {
|
|
|
253
253
|
*/
|
|
254
254
|
enableCookieManagement?: pulumi.Input<boolean>;
|
|
255
255
|
/**
|
|
256
|
-
* List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
257
|
-
* artifacts are excluded.
|
|
256
|
+
* List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
257
|
+
* default no artifacts are excluded.
|
|
258
258
|
*/
|
|
259
259
|
excludesPattern?: pulumi.Input<string>;
|
|
260
260
|
/**
|
|
@@ -267,8 +267,8 @@ export interface RemoteTerraformRepositoryState {
|
|
|
267
267
|
*/
|
|
268
268
|
hardFail?: pulumi.Input<boolean>;
|
|
269
269
|
/**
|
|
270
|
-
* List of artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
271
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
270
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
271
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
272
272
|
*/
|
|
273
273
|
includesPattern?: pulumi.Input<string>;
|
|
274
274
|
/**
|
|
@@ -423,8 +423,8 @@ export interface RemoteTerraformRepositoryArgs {
|
|
|
423
423
|
*/
|
|
424
424
|
enableCookieManagement?: pulumi.Input<boolean>;
|
|
425
425
|
/**
|
|
426
|
-
* List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
427
|
-
* artifacts are excluded.
|
|
426
|
+
* List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
427
|
+
* default no artifacts are excluded.
|
|
428
428
|
*/
|
|
429
429
|
excludesPattern?: pulumi.Input<string>;
|
|
430
430
|
/**
|
|
@@ -433,8 +433,8 @@ export interface RemoteTerraformRepositoryArgs {
|
|
|
433
433
|
*/
|
|
434
434
|
hardFail?: pulumi.Input<boolean>;
|
|
435
435
|
/**
|
|
436
|
-
* List of artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
437
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
436
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
437
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
438
438
|
*/
|
|
439
439
|
includesPattern?: pulumi.Input<string>;
|
|
440
440
|
/**
|
package/remoteVcsRepository.d.ts
CHANGED
|
@@ -78,10 +78,10 @@ export declare class RemoteVcsRepository 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/**/z/*. By
|
|
82
|
-
* artifacts are excluded.
|
|
81
|
+
* List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/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 RemoteVcsRepository 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/**/z/*. When
|
|
96
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
95
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
96
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
97
97
|
*/
|
|
98
98
|
readonly includesPattern: pulumi.Output<string>;
|
|
99
99
|
/**
|
|
@@ -262,8 +262,8 @@ export interface RemoteVcsRepositoryState {
|
|
|
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/**/z/*. By
|
|
266
|
-
* artifacts are excluded.
|
|
265
|
+
* List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
266
|
+
* default no artifacts are excluded.
|
|
267
267
|
*/
|
|
268
268
|
excludesPattern?: pulumi.Input<string>;
|
|
269
269
|
/**
|
|
@@ -276,8 +276,8 @@ export interface RemoteVcsRepositoryState {
|
|
|
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/**/z/*. When
|
|
280
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
279
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
280
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
281
281
|
*/
|
|
282
282
|
includesPattern?: pulumi.Input<string>;
|
|
283
283
|
/**
|
|
@@ -438,8 +438,8 @@ export interface RemoteVcsRepositoryArgs {
|
|
|
438
438
|
*/
|
|
439
439
|
enableCookieManagement?: pulumi.Input<boolean>;
|
|
440
440
|
/**
|
|
441
|
-
* List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
442
|
-
* artifacts are excluded.
|
|
441
|
+
* List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
442
|
+
* default no artifacts are excluded.
|
|
443
443
|
*/
|
|
444
444
|
excludesPattern?: pulumi.Input<string>;
|
|
445
445
|
/**
|
|
@@ -448,8 +448,8 @@ export interface RemoteVcsRepositoryArgs {
|
|
|
448
448
|
*/
|
|
449
449
|
hardFail?: pulumi.Input<boolean>;
|
|
450
450
|
/**
|
|
451
|
-
* List of artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
452
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
451
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
452
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
453
453
|
*/
|
|
454
454
|
includesPattern?: pulumi.Input<string>;
|
|
455
455
|
/**
|