@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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/artifactory",
|
|
3
|
-
"version": "v2.
|
|
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.
|
|
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.
|
|
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.
|
|
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/**/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 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/**/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 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/**/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 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/**/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 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/**/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 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/**/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
|
/**
|
|
@@ -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/**/z/*. By
|
|
85
|
-
* artifacts are excluded.
|
|
84
|
+
* List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/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/**/z/*. When
|
|
99
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
98
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
99
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
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/**/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 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/**/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
|
/**
|
|
@@ -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/**/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
|
/**
|
|
@@ -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/**/z/*. When
|
|
449
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
448
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
449
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
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/**/z/*. By
|
|
90
|
-
* artifacts are excluded.
|
|
89
|
+
* List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/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/**/z/*. When
|
|
108
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
107
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
108
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
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/**/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
|
/**
|
|
@@ -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/**/z/*. When
|
|
284
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
283
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
284
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
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/**/z/*. By
|
|
434
|
-
* artifacts are excluded.
|
|
433
|
+
* List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/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/**/z/*. When
|
|
448
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
447
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
448
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
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/**/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 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/**/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 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/**/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 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/**/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 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/**/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 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/**/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 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/**/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 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/**/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
|
/**
|
|
@@ -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/**/z/*. By
|
|
263
|
-
* artifacts are excluded.
|
|
262
|
+
* List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/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/**/z/*. When
|
|
277
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
276
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
277
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
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/**/z/*. By
|
|
436
|
-
* artifacts are excluded.
|
|
435
|
+
* List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/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/**/z/*. When
|
|
446
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
445
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
446
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
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/**/z/*. By
|
|
85
|
-
* artifacts are excluded.
|
|
84
|
+
* List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**/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/**/z/*. When
|
|
99
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
98
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
99
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
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/**/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 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/**/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
|
/**
|
|
@@ -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/**/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
|
/**
|
|
@@ -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/**/z/*. When
|
|
449
|
-
* artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
448
|
+
* List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**/z/*. When
|
|
449
|
+
* used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**/*).
|
|
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/**/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 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/**/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 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/**/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 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/**/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 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/**/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 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/**/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 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/**/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 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/**/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 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/**/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 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/**/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 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/**/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 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/**/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
|
/**
|