@pulumi/artifactory 2.6.0 → 2.7.0-alpha.1661293364

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.
Files changed (62) hide show
  1. package/goRepository.d.ts +6 -6
  2. package/mavenRepository.d.ts +6 -6
  3. package/package.json +2 -2
  4. package/package.json.dev +2 -2
  5. package/remoteAlpineRepository.d.ts +19 -19
  6. package/remoteBowerRepository.d.ts +19 -19
  7. package/remoteCargoRepository.d.ts +19 -19
  8. package/remoteChefRepository.d.ts +19 -19
  9. package/remoteCocoapodsRepository.d.ts +19 -19
  10. package/remoteComposerRepository.d.ts +19 -19
  11. package/remoteConanRepository.d.ts +19 -19
  12. package/remoteCondaRepository.d.ts +19 -19
  13. package/remoteCranRepository.d.ts +19 -19
  14. package/remoteDebianRepository.d.ts +19 -19
  15. package/remoteDockerRepository.d.ts +19 -19
  16. package/remoteGemsRepository.d.ts +19 -19
  17. package/remoteGenericRepository.d.ts +19 -19
  18. package/remoteGitlfsRepository.d.ts +19 -19
  19. package/remoteGoRepository.d.ts +19 -19
  20. package/remoteGradleRepository.d.ts +19 -19
  21. package/remoteHelmRepository.d.ts +19 -19
  22. package/remoteIvyRepository.d.ts +19 -19
  23. package/remoteMavenRepository.d.ts +32 -19
  24. package/remoteMavenRepository.js +3 -0
  25. package/remoteMavenRepository.js.map +1 -1
  26. package/remoteNpmRepository.d.ts +19 -19
  27. package/remoteNugetRepository.d.ts +19 -19
  28. package/remoteOpkgRepository.d.ts +19 -19
  29. package/remoteP2Repository.d.ts +19 -19
  30. package/remotePubRepository.d.ts +19 -19
  31. package/remotePuppetRepository.d.ts +19 -19
  32. package/remotePypiRepository.d.ts +19 -19
  33. package/remoteRpmRepository.d.ts +19 -19
  34. package/remoteSbtRepository.d.ts +19 -19
  35. package/remoteSwiftRepository.d.ts +19 -19
  36. package/remoteTerraformRepository.d.ts +19 -19
  37. package/remoteVcsRepository.d.ts +19 -19
  38. package/virtualAlpineRepository.d.ts +6 -6
  39. package/virtualBowerRepository.d.ts +6 -6
  40. package/virtualChefRepository.d.ts +6 -6
  41. package/virtualComposerRepository.d.ts +6 -6
  42. package/virtualConanRepository.d.ts +6 -6
  43. package/virtualCondaRepository.d.ts +6 -6
  44. package/virtualCranRepository.d.ts +6 -6
  45. package/virtualDebianRepository.d.ts +6 -6
  46. package/virtualDockerRepository.d.ts +6 -6
  47. package/virtualGemsRepository.d.ts +6 -6
  48. package/virtualGenericRepository.d.ts +6 -6
  49. package/virtualGitlfsRepository.d.ts +6 -6
  50. package/virtualGradleRepository.d.ts +6 -6
  51. package/virtualHelmRepository.d.ts +6 -6
  52. package/virtualIvyRepository.d.ts +6 -6
  53. package/virtualNpmRepository.d.ts +6 -6
  54. package/virtualNugetRepository.d.ts +6 -6
  55. package/virtualP2Repository.d.ts +6 -6
  56. package/virtualPubRepository.d.ts +6 -6
  57. package/virtualPuppetRepository.d.ts +6 -6
  58. package/virtualPypiRepository.d.ts +6 -6
  59. package/virtualRpmRepository.d.ts +6 -6
  60. package/virtualSbtRepository.d.ts +6 -6
  61. package/virtualSwiftRepository.d.ts +6 -6
  62. package/virtualTerraformRepository.d.ts +6 -6
@@ -81,10 +81,10 @@ export declare class RemoteComposerRepository extends pulumi.CustomResource {
81
81
  */
82
82
  readonly enableCookieManagement: pulumi.Output<boolean>;
83
83
  /**
84
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
85
- * artifacts are excluded.
84
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
85
+ * default no artifacts are excluded.
86
86
  */
87
- readonly excludesPattern: pulumi.Output<string>;
87
+ readonly excludesPattern: pulumi.Output<string | undefined>;
88
88
  /**
89
89
  * @deprecated This field is not returned in a get payload but is offered on the UI. It's inserted here for inclusive and informational reasons. It does not function
90
90
  */
@@ -95,8 +95,8 @@ export declare class RemoteComposerRepository extends pulumi.CustomResource {
95
95
  */
96
96
  readonly hardFail: pulumi.Output<boolean>;
97
97
  /**
98
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
99
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
98
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
99
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
100
100
  */
101
101
  readonly includesPattern: pulumi.Output<string>;
102
102
  /**
@@ -139,8 +139,8 @@ export declare class RemoteComposerRepository extends pulumi.CustomResource {
139
139
  */
140
140
  readonly projectEnvironments: pulumi.Output<string[] | undefined>;
141
141
  /**
142
- * Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When assigning
143
- * repository to a project, repository key must be prefixed with project key, separated by a dash.
142
+ * Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
143
+ * assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
144
144
  */
145
145
  readonly projectKey: pulumi.Output<string | undefined>;
146
146
  /**
@@ -262,8 +262,8 @@ export interface RemoteComposerRepositoryState {
262
262
  */
263
263
  enableCookieManagement?: pulumi.Input<boolean>;
264
264
  /**
265
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
266
- * artifacts are excluded.
265
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
266
+ * default no artifacts are excluded.
267
267
  */
268
268
  excludesPattern?: pulumi.Input<string>;
269
269
  /**
@@ -276,8 +276,8 @@ export interface RemoteComposerRepositoryState {
276
276
  */
277
277
  hardFail?: pulumi.Input<boolean>;
278
278
  /**
279
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
280
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
279
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
280
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
281
281
  */
282
282
  includesPattern?: pulumi.Input<string>;
283
283
  /**
@@ -320,8 +320,8 @@ export interface RemoteComposerRepositoryState {
320
320
  */
321
321
  projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
322
322
  /**
323
- * Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When assigning
324
- * repository to a project, repository key must be prefixed with project key, separated by a dash.
323
+ * Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
324
+ * assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
325
325
  */
326
326
  projectKey?: pulumi.Input<string>;
327
327
  /**
@@ -435,8 +435,8 @@ export interface RemoteComposerRepositoryArgs {
435
435
  */
436
436
  enableCookieManagement?: pulumi.Input<boolean>;
437
437
  /**
438
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
439
- * artifacts are excluded.
438
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
439
+ * default no artifacts are excluded.
440
440
  */
441
441
  excludesPattern?: pulumi.Input<string>;
442
442
  /**
@@ -445,8 +445,8 @@ export interface RemoteComposerRepositoryArgs {
445
445
  */
446
446
  hardFail?: pulumi.Input<boolean>;
447
447
  /**
448
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
449
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
448
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
449
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
450
450
  */
451
451
  includesPattern?: pulumi.Input<string>;
452
452
  /**
@@ -488,8 +488,8 @@ export interface RemoteComposerRepositoryArgs {
488
488
  */
489
489
  projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
490
490
  /**
491
- * Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When assigning
492
- * repository to a project, repository key must be prefixed with project key, separated by a dash.
491
+ * Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
492
+ * assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
493
493
  */
494
494
  projectKey?: pulumi.Input<string>;
495
495
  /**
@@ -76,10 +76,10 @@ export declare class RemoteConanRepository extends pulumi.CustomResource {
76
76
  */
77
77
  readonly enableCookieManagement: pulumi.Output<boolean>;
78
78
  /**
79
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
80
- * artifacts are excluded.
79
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
80
+ * default no artifacts are excluded.
81
81
  */
82
- readonly excludesPattern: pulumi.Output<string>;
82
+ readonly excludesPattern: pulumi.Output<string | undefined>;
83
83
  /**
84
84
  * @deprecated This field is not returned in a get payload but is offered on the UI. It's inserted here for inclusive and informational reasons. It does not function
85
85
  */
@@ -90,8 +90,8 @@ export declare class RemoteConanRepository extends pulumi.CustomResource {
90
90
  */
91
91
  readonly hardFail: pulumi.Output<boolean>;
92
92
  /**
93
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
94
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
93
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
94
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
95
95
  */
96
96
  readonly includesPattern: pulumi.Output<string>;
97
97
  /**
@@ -134,8 +134,8 @@ export declare class RemoteConanRepository extends pulumi.CustomResource {
134
134
  */
135
135
  readonly projectEnvironments: pulumi.Output<string[] | undefined>;
136
136
  /**
137
- * Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When assigning
138
- * repository to a project, repository key must be prefixed with project key, separated by a dash.
137
+ * Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
138
+ * assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
139
139
  */
140
140
  readonly projectKey: pulumi.Output<string | undefined>;
141
141
  /**
@@ -244,8 +244,8 @@ export interface RemoteConanRepositoryState {
244
244
  */
245
245
  enableCookieManagement?: pulumi.Input<boolean>;
246
246
  /**
247
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
248
- * artifacts are excluded.
247
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
248
+ * default no artifacts are excluded.
249
249
  */
250
250
  excludesPattern?: pulumi.Input<string>;
251
251
  /**
@@ -258,8 +258,8 @@ export interface RemoteConanRepositoryState {
258
258
  */
259
259
  hardFail?: pulumi.Input<boolean>;
260
260
  /**
261
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
262
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
261
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
262
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
263
263
  */
264
264
  includesPattern?: pulumi.Input<string>;
265
265
  /**
@@ -302,8 +302,8 @@ export interface RemoteConanRepositoryState {
302
302
  */
303
303
  projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
304
304
  /**
305
- * Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When assigning
306
- * repository to a project, repository key must be prefixed with project key, separated by a dash.
305
+ * Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
306
+ * assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
307
307
  */
308
308
  projectKey?: pulumi.Input<string>;
309
309
  /**
@@ -404,8 +404,8 @@ export interface RemoteConanRepositoryArgs {
404
404
  */
405
405
  enableCookieManagement?: pulumi.Input<boolean>;
406
406
  /**
407
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
408
- * artifacts are excluded.
407
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
408
+ * default no artifacts are excluded.
409
409
  */
410
410
  excludesPattern?: pulumi.Input<string>;
411
411
  /**
@@ -414,8 +414,8 @@ export interface RemoteConanRepositoryArgs {
414
414
  */
415
415
  hardFail?: pulumi.Input<boolean>;
416
416
  /**
417
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
418
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
417
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
418
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
419
419
  */
420
420
  includesPattern?: pulumi.Input<string>;
421
421
  /**
@@ -457,8 +457,8 @@ export interface RemoteConanRepositoryArgs {
457
457
  */
458
458
  projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
459
459
  /**
460
- * Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When assigning
461
- * repository to a project, repository key must be prefixed with project key, separated by a dash.
460
+ * Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
461
+ * assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
462
462
  */
463
463
  projectKey?: pulumi.Input<string>;
464
464
  /**
@@ -76,10 +76,10 @@ export declare class RemoteCondaRepository extends pulumi.CustomResource {
76
76
  */
77
77
  readonly enableCookieManagement: pulumi.Output<boolean>;
78
78
  /**
79
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
80
- * artifacts are excluded.
79
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
80
+ * default no artifacts are excluded.
81
81
  */
82
- readonly excludesPattern: pulumi.Output<string>;
82
+ readonly excludesPattern: pulumi.Output<string | undefined>;
83
83
  /**
84
84
  * @deprecated This field is not returned in a get payload but is offered on the UI. It's inserted here for inclusive and informational reasons. It does not function
85
85
  */
@@ -90,8 +90,8 @@ export declare class RemoteCondaRepository extends pulumi.CustomResource {
90
90
  */
91
91
  readonly hardFail: pulumi.Output<boolean>;
92
92
  /**
93
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
94
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
93
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
94
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
95
95
  */
96
96
  readonly includesPattern: pulumi.Output<string>;
97
97
  /**
@@ -134,8 +134,8 @@ export declare class RemoteCondaRepository extends pulumi.CustomResource {
134
134
  */
135
135
  readonly projectEnvironments: pulumi.Output<string[] | undefined>;
136
136
  /**
137
- * Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When assigning
138
- * repository to a project, repository key must be prefixed with project key, separated by a dash.
137
+ * Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
138
+ * assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
139
139
  */
140
140
  readonly projectKey: pulumi.Output<string | undefined>;
141
141
  /**
@@ -244,8 +244,8 @@ export interface RemoteCondaRepositoryState {
244
244
  */
245
245
  enableCookieManagement?: pulumi.Input<boolean>;
246
246
  /**
247
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
248
- * artifacts are excluded.
247
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
248
+ * default no artifacts are excluded.
249
249
  */
250
250
  excludesPattern?: pulumi.Input<string>;
251
251
  /**
@@ -258,8 +258,8 @@ export interface RemoteCondaRepositoryState {
258
258
  */
259
259
  hardFail?: pulumi.Input<boolean>;
260
260
  /**
261
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
262
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
261
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
262
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
263
263
  */
264
264
  includesPattern?: pulumi.Input<string>;
265
265
  /**
@@ -302,8 +302,8 @@ export interface RemoteCondaRepositoryState {
302
302
  */
303
303
  projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
304
304
  /**
305
- * Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When assigning
306
- * repository to a project, repository key must be prefixed with project key, separated by a dash.
305
+ * Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
306
+ * assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
307
307
  */
308
308
  projectKey?: pulumi.Input<string>;
309
309
  /**
@@ -404,8 +404,8 @@ export interface RemoteCondaRepositoryArgs {
404
404
  */
405
405
  enableCookieManagement?: pulumi.Input<boolean>;
406
406
  /**
407
- * List of artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By default no
408
- * artifacts are excluded.
407
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
408
+ * default no artifacts are excluded.
409
409
  */
410
410
  excludesPattern?: pulumi.Input<string>;
411
411
  /**
@@ -414,8 +414,8 @@ export interface RemoteCondaRepositoryArgs {
414
414
  */
415
415
  hardFail?: pulumi.Input<boolean>;
416
416
  /**
417
- * List of artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When used, only
418
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
417
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
418
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
419
419
  */
420
420
  includesPattern?: pulumi.Input<string>;
421
421
  /**
@@ -457,8 +457,8 @@ export interface RemoteCondaRepositoryArgs {
457
457
  */
458
458
  projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
459
459
  /**
460
- * Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When assigning
461
- * repository to a project, repository key must be prefixed with project key, separated by a dash.
460
+ * Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
461
+ * assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
462
462
  */
463
463
  projectKey?: pulumi.Input<string>;
464
464
  /**
@@ -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/**&#47;z/*. By default no
80
- * artifacts are excluded.
79
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
80
+ * default no artifacts are excluded.
81
81
  */
82
- readonly excludesPattern: pulumi.Output<string>;
82
+ readonly excludesPattern: pulumi.Output<string | undefined>;
83
83
  /**
84
84
  * @deprecated This field is not returned in a get payload but is offered on the UI. It's inserted here for inclusive and informational reasons. It does not function
85
85
  */
@@ -90,8 +90,8 @@ export declare class 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/**&#47;z/*. When used, only
94
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
93
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
94
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
95
95
  */
96
96
  readonly includesPattern: pulumi.Output<string>;
97
97
  /**
@@ -134,8 +134,8 @@ export declare class RemoteCranRepository extends pulumi.CustomResource {
134
134
  */
135
135
  readonly projectEnvironments: pulumi.Output<string[] | undefined>;
136
136
  /**
137
- * Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When assigning
138
- * repository to a project, repository key must be prefixed with project key, separated by a dash.
137
+ * Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
138
+ * assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
139
139
  */
140
140
  readonly projectKey: pulumi.Output<string | undefined>;
141
141
  /**
@@ -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/**&#47;z/*. By default no
248
- * artifacts are excluded.
247
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
248
+ * default no artifacts are excluded.
249
249
  */
250
250
  excludesPattern?: pulumi.Input<string>;
251
251
  /**
@@ -258,8 +258,8 @@ export interface 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/**&#47;z/*. When used, only
262
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
261
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
262
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
263
263
  */
264
264
  includesPattern?: pulumi.Input<string>;
265
265
  /**
@@ -302,8 +302,8 @@ export interface RemoteCranRepositoryState {
302
302
  */
303
303
  projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
304
304
  /**
305
- * Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When assigning
306
- * repository to a project, repository key must be prefixed with project key, separated by a dash.
305
+ * Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
306
+ * assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
307
307
  */
308
308
  projectKey?: pulumi.Input<string>;
309
309
  /**
@@ -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/**&#47;z/*. By default no
408
- * artifacts are excluded.
407
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
408
+ * default no artifacts are excluded.
409
409
  */
410
410
  excludesPattern?: pulumi.Input<string>;
411
411
  /**
@@ -414,8 +414,8 @@ export interface 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/**&#47;z/*. When used, only
418
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
417
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
418
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
419
419
  */
420
420
  includesPattern?: pulumi.Input<string>;
421
421
  /**
@@ -457,8 +457,8 @@ export interface RemoteCranRepositoryArgs {
457
457
  */
458
458
  projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
459
459
  /**
460
- * Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When assigning
461
- * repository to a project, repository key must be prefixed with project key, separated by a dash.
460
+ * Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
461
+ * assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
462
462
  */
463
463
  projectKey?: pulumi.Input<string>;
464
464
  /**
@@ -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/**&#47;z/*. By default no
80
- * artifacts are excluded.
79
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
80
+ * default no artifacts are excluded.
81
81
  */
82
- readonly excludesPattern: pulumi.Output<string>;
82
+ readonly excludesPattern: pulumi.Output<string | undefined>;
83
83
  /**
84
84
  * @deprecated This field is not returned in a get payload but is offered on the UI. It's inserted here for inclusive and informational reasons. It does not function
85
85
  */
@@ -90,8 +90,8 @@ export declare class 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/**&#47;z/*. When used, only
94
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
93
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
94
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
95
95
  */
96
96
  readonly includesPattern: pulumi.Output<string>;
97
97
  /**
@@ -134,8 +134,8 @@ export declare class RemoteDebianRepository extends pulumi.CustomResource {
134
134
  */
135
135
  readonly projectEnvironments: pulumi.Output<string[] | undefined>;
136
136
  /**
137
- * Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When assigning
138
- * repository to a project, repository key must be prefixed with project key, separated by a dash.
137
+ * Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
138
+ * assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
139
139
  */
140
140
  readonly projectKey: pulumi.Output<string | undefined>;
141
141
  /**
@@ -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/**&#47;z/*. By default no
248
- * artifacts are excluded.
247
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
248
+ * default no artifacts are excluded.
249
249
  */
250
250
  excludesPattern?: pulumi.Input<string>;
251
251
  /**
@@ -258,8 +258,8 @@ export interface 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/**&#47;z/*. When used, only
262
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
261
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
262
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
263
263
  */
264
264
  includesPattern?: pulumi.Input<string>;
265
265
  /**
@@ -302,8 +302,8 @@ export interface RemoteDebianRepositoryState {
302
302
  */
303
303
  projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
304
304
  /**
305
- * Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When assigning
306
- * repository to a project, repository key must be prefixed with project key, separated by a dash.
305
+ * Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
306
+ * assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
307
307
  */
308
308
  projectKey?: pulumi.Input<string>;
309
309
  /**
@@ -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/**&#47;z/*. By default no
408
- * artifacts are excluded.
407
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
408
+ * default no artifacts are excluded.
409
409
  */
410
410
  excludesPattern?: pulumi.Input<string>;
411
411
  /**
@@ -414,8 +414,8 @@ export interface 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/**&#47;z/*. When used, only
418
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
417
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
418
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
419
419
  */
420
420
  includesPattern?: pulumi.Input<string>;
421
421
  /**
@@ -457,8 +457,8 @@ export interface RemoteDebianRepositoryArgs {
457
457
  */
458
458
  projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
459
459
  /**
460
- * Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When assigning
461
- * repository to a project, repository key must be prefixed with project key, separated by a dash.
460
+ * Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
461
+ * assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
462
462
  */
463
463
  projectKey?: pulumi.Input<string>;
464
464
  /**
@@ -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/**&#47;z/*. By default no
94
- * artifacts are excluded.
93
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;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/**&#47;z/*. When used, only
116
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
115
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
116
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
117
117
  */
118
118
  readonly includesPattern: pulumi.Output<string>;
119
119
  /**
@@ -156,8 +156,8 @@ export declare class RemoteDockerRepository extends pulumi.CustomResource {
156
156
  */
157
157
  readonly projectEnvironments: pulumi.Output<string[] | undefined>;
158
158
  /**
159
- * Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When assigning
160
- * repository to a project, repository key must be prefixed with project key, separated by a dash.
159
+ * Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
160
+ * assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
161
161
  */
162
162
  readonly projectKey: pulumi.Output<string | undefined>;
163
163
  /**
@@ -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/**&#47;z/*. By default no
280
- * artifacts are excluded.
279
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;z/*. By
280
+ * default no artifacts are excluded.
281
281
  */
282
282
  excludesPattern?: pulumi.Input<string>;
283
283
  /**
@@ -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/**&#47;z/*. When used, only
302
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
301
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
302
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
303
303
  */
304
304
  includesPattern?: pulumi.Input<string>;
305
305
  /**
@@ -342,8 +342,8 @@ export interface RemoteDockerRepositoryState {
342
342
  */
343
343
  projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
344
344
  /**
345
- * Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When assigning
346
- * repository to a project, repository key must be prefixed with project key, separated by a dash.
345
+ * Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
346
+ * assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
347
347
  */
348
348
  projectKey?: pulumi.Input<string>;
349
349
  /**
@@ -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/**&#47;z/*. By default no
458
- * artifacts are excluded.
457
+ * List of comma-separated artifact patterns to exclude when evaluating artifact requests, in the form of x/y/**&#47;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/**&#47;z/*. When used, only
476
- * artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
475
+ * List of comma-separated artifact patterns to include when evaluating artifact requests in the form of x/y/**&#47;z/*. When
476
+ * used, only artifacts matching one of the include patterns are served. By default, all artifacts are included (**&#47;*).
477
477
  */
478
478
  includesPattern?: pulumi.Input<string>;
479
479
  /**
@@ -515,8 +515,8 @@ export interface RemoteDockerRepositoryArgs {
515
515
  */
516
516
  projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
517
517
  /**
518
- * Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When assigning
519
- * repository to a project, repository key must be prefixed with project key, separated by a dash.
518
+ * Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
519
+ * assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
520
520
  */
521
521
  projectKey?: pulumi.Input<string>;
522
522
  /**