@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 RemoteCranRepository 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 RemoteCranRepository 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 RemoteCranRepositoryState {
|
|
|
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 RemoteCranRepositoryState {
|
|
|
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 RemoteCranRepositoryArgs {
|
|
|
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 RemoteCranRepositoryArgs {
|
|
|
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
|
/**
|
|
@@ -76,10 +76,10 @@ export declare class RemoteDebianRepository 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 RemoteDebianRepository 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 RemoteDebianRepositoryState {
|
|
|
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 RemoteDebianRepositoryState {
|
|
|
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 RemoteDebianRepositoryArgs {
|
|
|
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 RemoteDebianRepositoryArgs {
|
|
|
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
|
/**
|
|
@@ -90,10 +90,10 @@ export declare class RemoteDockerRepository extends pulumi.CustomResource {
|
|
|
90
90
|
*/
|
|
91
91
|
readonly enableTokenAuthentication: pulumi.Output<boolean>;
|
|
92
92
|
/**
|
|
93
|
-
* List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
94
|
-
* artifacts are excluded.
|
|
93
|
+
* List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
94
|
+
* default no artifacts are excluded.
|
|
95
95
|
*/
|
|
96
|
-
readonly excludesPattern: pulumi.Output<string>;
|
|
96
|
+
readonly excludesPattern: pulumi.Output<string | undefined>;
|
|
97
97
|
/**
|
|
98
98
|
* Also known as 'Foreign Layers Caching' on the UI.
|
|
99
99
|
*/
|
|
@@ -112,8 +112,8 @@ export declare class RemoteDockerRepository extends pulumi.CustomResource {
|
|
|
112
112
|
*/
|
|
113
113
|
readonly hardFail: pulumi.Output<boolean>;
|
|
114
114
|
/**
|
|
115
|
-
* List of artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
116
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
115
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
116
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
117
117
|
*/
|
|
118
118
|
readonly includesPattern: pulumi.Output<string>;
|
|
119
119
|
/**
|
|
@@ -276,8 +276,8 @@ export interface RemoteDockerRepositoryState {
|
|
|
276
276
|
*/
|
|
277
277
|
enableTokenAuthentication?: 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
|
/**
|
|
@@ -298,8 +298,8 @@ export interface RemoteDockerRepositoryState {
|
|
|
298
298
|
*/
|
|
299
299
|
hardFail?: pulumi.Input<boolean>;
|
|
300
300
|
/**
|
|
301
|
-
* List of artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
302
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
301
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
302
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
303
303
|
*/
|
|
304
304
|
includesPattern?: pulumi.Input<string>;
|
|
305
305
|
/**
|
|
@@ -454,8 +454,8 @@ export interface RemoteDockerRepositoryArgs {
|
|
|
454
454
|
*/
|
|
455
455
|
enableTokenAuthentication?: pulumi.Input<boolean>;
|
|
456
456
|
/**
|
|
457
|
-
* List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
458
|
-
* artifacts are excluded.
|
|
457
|
+
* List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
458
|
+
* default no artifacts are excluded.
|
|
459
459
|
*/
|
|
460
460
|
excludesPattern?: pulumi.Input<string>;
|
|
461
461
|
/**
|
|
@@ -472,8 +472,8 @@ export interface RemoteDockerRepositoryArgs {
|
|
|
472
472
|
*/
|
|
473
473
|
hardFail?: pulumi.Input<boolean>;
|
|
474
474
|
/**
|
|
475
|
-
* List of artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
476
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
475
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
476
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
477
477
|
*/
|
|
478
478
|
includesPattern?: pulumi.Input<string>;
|
|
479
479
|
/**
|
|
@@ -76,10 +76,10 @@ export declare class RemoteGemsRepository 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 RemoteGemsRepository 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 RemoteGemsRepositoryState {
|
|
|
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 RemoteGemsRepositoryState {
|
|
|
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 RemoteGemsRepositoryArgs {
|
|
|
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 RemoteGemsRepositoryArgs {
|
|
|
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 RemoteGenericRepository 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 RemoteGenericRepository 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
|
/**
|
|
@@ -243,8 +243,8 @@ export interface RemoteGenericRepositoryState {
|
|
|
243
243
|
*/
|
|
244
244
|
enableCookieManagement?: pulumi.Input<boolean>;
|
|
245
245
|
/**
|
|
246
|
-
* List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
247
|
-
* artifacts are excluded.
|
|
246
|
+
* List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
247
|
+
* default no artifacts are excluded.
|
|
248
248
|
*/
|
|
249
249
|
excludesPattern?: pulumi.Input<string>;
|
|
250
250
|
/**
|
|
@@ -257,8 +257,8 @@ export interface RemoteGenericRepositoryState {
|
|
|
257
257
|
*/
|
|
258
258
|
hardFail?: pulumi.Input<boolean>;
|
|
259
259
|
/**
|
|
260
|
-
* List of artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
261
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
260
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
261
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
262
262
|
*/
|
|
263
263
|
includesPattern?: pulumi.Input<string>;
|
|
264
264
|
/**
|
|
@@ -403,8 +403,8 @@ export interface RemoteGenericRepositoryArgs {
|
|
|
403
403
|
*/
|
|
404
404
|
enableCookieManagement?: pulumi.Input<boolean>;
|
|
405
405
|
/**
|
|
406
|
-
* List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
407
|
-
* artifacts are excluded.
|
|
406
|
+
* List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
407
|
+
* default no artifacts are excluded.
|
|
408
408
|
*/
|
|
409
409
|
excludesPattern?: pulumi.Input<string>;
|
|
410
410
|
/**
|
|
@@ -413,8 +413,8 @@ export interface RemoteGenericRepositoryArgs {
|
|
|
413
413
|
*/
|
|
414
414
|
hardFail?: pulumi.Input<boolean>;
|
|
415
415
|
/**
|
|
416
|
-
* List of artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
417
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
416
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
417
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
418
418
|
*/
|
|
419
419
|
includesPattern?: pulumi.Input<string>;
|
|
420
420
|
/**
|
|
@@ -76,10 +76,10 @@ export declare class RemoteGitlfsRepository 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 RemoteGitlfsRepository 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 RemoteGitlfsRepositoryState {
|
|
|
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 RemoteGitlfsRepositoryState {
|
|
|
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 RemoteGitlfsRepositoryArgs {
|
|
|
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 RemoteGitlfsRepositoryArgs {
|
|
|
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/remoteGoRepository.d.ts
CHANGED
|
@@ -77,10 +77,10 @@ export declare class RemoteGoRepository extends pulumi.CustomResource {
|
|
|
77
77
|
*/
|
|
78
78
|
readonly enableCookieManagement: pulumi.Output<boolean>;
|
|
79
79
|
/**
|
|
80
|
-
* List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
81
|
-
* artifacts are excluded.
|
|
80
|
+
* List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
81
|
+
* default no artifacts are excluded.
|
|
82
82
|
*/
|
|
83
|
-
readonly excludesPattern: pulumi.Output<string>;
|
|
83
|
+
readonly excludesPattern: pulumi.Output<string | undefined>;
|
|
84
84
|
/**
|
|
85
85
|
* @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
|
|
86
86
|
*/
|
|
@@ -91,8 +91,8 @@ export declare class RemoteGoRepository extends pulumi.CustomResource {
|
|
|
91
91
|
*/
|
|
92
92
|
readonly hardFail: pulumi.Output<boolean>;
|
|
93
93
|
/**
|
|
94
|
-
* List of artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
95
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
94
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
95
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
96
96
|
*/
|
|
97
97
|
readonly includesPattern: pulumi.Output<string>;
|
|
98
98
|
/**
|
|
@@ -249,8 +249,8 @@ export interface RemoteGoRepositoryState {
|
|
|
249
249
|
*/
|
|
250
250
|
enableCookieManagement?: pulumi.Input<boolean>;
|
|
251
251
|
/**
|
|
252
|
-
* List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
253
|
-
* artifacts are excluded.
|
|
252
|
+
* List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
253
|
+
* default no artifacts are excluded.
|
|
254
254
|
*/
|
|
255
255
|
excludesPattern?: pulumi.Input<string>;
|
|
256
256
|
/**
|
|
@@ -263,8 +263,8 @@ export interface RemoteGoRepositoryState {
|
|
|
263
263
|
*/
|
|
264
264
|
hardFail?: pulumi.Input<boolean>;
|
|
265
265
|
/**
|
|
266
|
-
* List of artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
267
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
266
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
267
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
268
268
|
*/
|
|
269
269
|
includesPattern?: pulumi.Input<string>;
|
|
270
270
|
/**
|
|
@@ -413,8 +413,8 @@ export interface RemoteGoRepositoryArgs {
|
|
|
413
413
|
*/
|
|
414
414
|
enableCookieManagement?: pulumi.Input<boolean>;
|
|
415
415
|
/**
|
|
416
|
-
* List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
417
|
-
* artifacts are excluded.
|
|
416
|
+
* List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
417
|
+
* default no artifacts are excluded.
|
|
418
418
|
*/
|
|
419
419
|
excludesPattern?: pulumi.Input<string>;
|
|
420
420
|
/**
|
|
@@ -423,8 +423,8 @@ export interface RemoteGoRepositoryArgs {
|
|
|
423
423
|
*/
|
|
424
424
|
hardFail?: pulumi.Input<boolean>;
|
|
425
425
|
/**
|
|
426
|
-
* List of artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
427
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
426
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
427
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
428
428
|
*/
|
|
429
429
|
includesPattern?: pulumi.Input<string>;
|
|
430
430
|
/**
|
|
@@ -80,10 +80,10 @@ export declare class RemoteGradleRepository 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 RemoteGradleRepository 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 RemoteGradleRepositoryState {
|
|
|
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 RemoteGradleRepositoryState {
|
|
|
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 RemoteGradleRepositoryArgs {
|
|
|
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 RemoteGradleRepositoryArgs {
|
|
|
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
|
/**
|
|
@@ -79,10 +79,10 @@ export declare class RemoteHelmRepository extends pulumi.CustomResource {
|
|
|
79
79
|
*/
|
|
80
80
|
readonly enableCookieManagement: pulumi.Output<boolean>;
|
|
81
81
|
/**
|
|
82
|
-
* List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
83
|
-
* artifacts are excluded.
|
|
82
|
+
* List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
83
|
+
* default no artifacts are excluded.
|
|
84
84
|
*/
|
|
85
|
-
readonly excludesPattern: pulumi.Output<string>;
|
|
85
|
+
readonly excludesPattern: pulumi.Output<string | undefined>;
|
|
86
86
|
/**
|
|
87
87
|
* When set, external dependencies are rewritten.
|
|
88
88
|
*/
|
|
@@ -107,8 +107,8 @@ export declare class RemoteHelmRepository extends pulumi.CustomResource {
|
|
|
107
107
|
*/
|
|
108
108
|
readonly helmChartsBaseUrl: pulumi.Output<string | undefined>;
|
|
109
109
|
/**
|
|
110
|
-
* List of artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
111
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
110
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
111
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
112
112
|
*/
|
|
113
113
|
readonly includesPattern: pulumi.Output<string>;
|
|
114
114
|
/**
|
|
@@ -261,8 +261,8 @@ export interface RemoteHelmRepositoryState {
|
|
|
261
261
|
*/
|
|
262
262
|
enableCookieManagement?: pulumi.Input<boolean>;
|
|
263
263
|
/**
|
|
264
|
-
* List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
265
|
-
* artifacts are excluded.
|
|
264
|
+
* List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
265
|
+
* default no artifacts are excluded.
|
|
266
266
|
*/
|
|
267
267
|
excludesPattern?: pulumi.Input<string>;
|
|
268
268
|
/**
|
|
@@ -289,8 +289,8 @@ export interface RemoteHelmRepositoryState {
|
|
|
289
289
|
*/
|
|
290
290
|
helmChartsBaseUrl?: pulumi.Input<string>;
|
|
291
291
|
/**
|
|
292
|
-
* List of artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
293
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
292
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
293
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
294
294
|
*/
|
|
295
295
|
includesPattern?: pulumi.Input<string>;
|
|
296
296
|
/**
|
|
@@ -435,8 +435,8 @@ export interface RemoteHelmRepositoryArgs {
|
|
|
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/**/z/*. By
|
|
439
|
-
* artifacts are excluded.
|
|
438
|
+
* List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/z/*. By
|
|
439
|
+
* default no artifacts are excluded.
|
|
440
440
|
*/
|
|
441
441
|
excludesPattern?: pulumi.Input<string>;
|
|
442
442
|
/**
|
|
@@ -459,8 +459,8 @@ export interface RemoteHelmRepositoryArgs {
|
|
|
459
459
|
*/
|
|
460
460
|
helmChartsBaseUrl?: pulumi.Input<string>;
|
|
461
461
|
/**
|
|
462
|
-
* List of artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
463
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
462
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
463
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
464
464
|
*/
|
|
465
465
|
includesPattern?: pulumi.Input<string>;
|
|
466
466
|
/**
|