@pulumi/artifactory 2.5.0 → 2.6.1
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/alpineRepository.d.ts +1 -1
- package/alpineRepository.js +1 -1
- package/debianRepository.d.ts +1 -1
- package/debianRepository.js +1 -1
- package/goRepository.d.ts +6 -6
- package/keypair.d.ts +1 -1
- package/keypair.js +1 -1
- package/localRpmRepository.d.ts +1 -1
- package/localRpmRepository.js +1 -1
- package/mavenRepository.d.ts +7 -7
- package/mavenRepository.js +1 -1
- package/package.json +4 -3
- package/package.json.bak +2 -1
- package/package.json.dev +4 -3
- package/pushReplication.d.ts +11 -10
- package/pushReplication.js +11 -10
- package/pushReplication.js.map +1 -1
- package/remoteAlpineRepository.d.ts +6 -6
- package/remoteBowerRepository.d.ts +6 -6
- package/remoteCargoRepository.d.ts +6 -6
- package/remoteChefRepository.d.ts +6 -6
- package/remoteCocoapodsRepository.d.ts +6 -6
- package/remoteComposerRepository.d.ts +6 -6
- package/remoteConanRepository.d.ts +6 -6
- package/remoteCondaRepository.d.ts +6 -6
- package/remoteCranRepository.d.ts +6 -6
- package/remoteDebianRepository.d.ts +6 -6
- package/remoteDockerRepository.d.ts +6 -6
- package/remoteGemsRepository.d.ts +6 -6
- package/remoteGenericRepository.d.ts +6 -6
- package/remoteGitlfsRepository.d.ts +6 -6
- package/remoteGoRepository.d.ts +6 -6
- package/remoteGradleRepository.d.ts +6 -6
- package/remoteHelmRepository.d.ts +6 -6
- package/remoteIvyRepository.d.ts +6 -6
- package/remoteMavenRepository.d.ts +6 -6
- package/remoteNpmRepository.d.ts +6 -6
- package/remoteNugetRepository.d.ts +6 -6
- package/remoteOpkgRepository.d.ts +6 -6
- package/remoteP2Repository.d.ts +6 -6
- package/remotePubRepository.d.ts +6 -6
- package/remotePuppetRepository.d.ts +6 -6
- package/remotePypiRepository.d.ts +6 -6
- package/remoteRpmRepository.d.ts +6 -6
- package/remoteSbtRepository.d.ts +6 -6
- package/remoteSwiftRepository.d.ts +6 -6
- package/remoteTerraformRepository.d.ts +6 -6
- package/remoteVcsRepository.d.ts +6 -6
- package/virtualAlpineRepository.d.ts +6 -6
- package/virtualBowerRepository.d.ts +6 -6
- package/virtualChefRepository.d.ts +6 -6
- package/virtualComposerRepository.d.ts +6 -6
- package/virtualConanRepository.d.ts +6 -6
- package/virtualCondaRepository.d.ts +6 -6
- package/virtualCranRepository.d.ts +6 -6
- package/virtualDebianRepository.d.ts +6 -6
- package/virtualDockerRepository.d.ts +6 -6
- package/virtualGemsRepository.d.ts +6 -6
- package/virtualGenericRepository.d.ts +6 -6
- package/virtualGitlfsRepository.d.ts +6 -6
- package/virtualGradleRepository.d.ts +6 -6
- package/virtualHelmRepository.d.ts +6 -6
- package/virtualIvyRepository.d.ts +6 -6
- package/virtualNpmRepository.d.ts +6 -6
- package/virtualNugetRepository.d.ts +6 -6
- package/virtualP2Repository.d.ts +6 -6
- package/virtualPubRepository.d.ts +6 -6
- package/virtualPuppetRepository.d.ts +6 -6
- package/virtualPypiRepository.d.ts +6 -6
- package/virtualRpmRepository.d.ts +7 -7
- package/virtualRpmRepository.js +1 -1
- package/virtualSbtRepository.d.ts +6 -6
- package/virtualSwiftRepository.d.ts +6 -6
- package/virtualTerraformRepository.d.ts +6 -6
package/remoteSbtRepository.d.ts
CHANGED
|
@@ -154,8 +154,8 @@ export declare class RemoteSbtRepository extends pulumi.CustomResource {
|
|
|
154
154
|
*/
|
|
155
155
|
readonly projectEnvironments: pulumi.Output<string[] | undefined>;
|
|
156
156
|
/**
|
|
157
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
158
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
157
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
158
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
159
159
|
*/
|
|
160
160
|
readonly projectKey: pulumi.Output<string | undefined>;
|
|
161
161
|
/**
|
|
@@ -350,8 +350,8 @@ export interface RemoteSbtRepositoryState {
|
|
|
350
350
|
*/
|
|
351
351
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
352
352
|
/**
|
|
353
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
354
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
353
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
354
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
355
355
|
*/
|
|
356
356
|
projectKey?: pulumi.Input<string>;
|
|
357
357
|
/**
|
|
@@ -533,8 +533,8 @@ export interface RemoteSbtRepositoryArgs {
|
|
|
533
533
|
*/
|
|
534
534
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
535
535
|
/**
|
|
536
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
537
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
536
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
537
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
538
538
|
*/
|
|
539
539
|
projectKey?: pulumi.Input<string>;
|
|
540
540
|
/**
|
|
@@ -134,8 +134,8 @@ export declare class RemoteSwiftRepository 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
|
|
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
|
/**
|
|
@@ -302,8 +302,8 @@ export interface RemoteSwiftRepositoryState {
|
|
|
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
|
|
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
|
/**
|
|
@@ -457,8 +457,8 @@ export interface RemoteSwiftRepositoryArgs {
|
|
|
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
|
|
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
|
/**
|
|
@@ -133,8 +133,8 @@ export declare class RemoteTerraformRepository extends pulumi.CustomResource {
|
|
|
133
133
|
*/
|
|
134
134
|
readonly projectEnvironments: pulumi.Output<string[] | undefined>;
|
|
135
135
|
/**
|
|
136
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
137
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
136
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
137
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
138
138
|
*/
|
|
139
139
|
readonly projectKey: pulumi.Output<string | undefined>;
|
|
140
140
|
/**
|
|
@@ -311,8 +311,8 @@ export interface RemoteTerraformRepositoryState {
|
|
|
311
311
|
*/
|
|
312
312
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
313
313
|
/**
|
|
314
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
315
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
314
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
315
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
316
316
|
*/
|
|
317
317
|
projectKey?: pulumi.Input<string>;
|
|
318
318
|
/**
|
|
@@ -476,8 +476,8 @@ export interface RemoteTerraformRepositoryArgs {
|
|
|
476
476
|
*/
|
|
477
477
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
478
478
|
/**
|
|
479
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
480
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
479
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
480
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
481
481
|
*/
|
|
482
482
|
projectKey?: pulumi.Input<string>;
|
|
483
483
|
/**
|
package/remoteVcsRepository.d.ts
CHANGED
|
@@ -142,8 +142,8 @@ export declare class RemoteVcsRepository extends pulumi.CustomResource {
|
|
|
142
142
|
*/
|
|
143
143
|
readonly projectEnvironments: pulumi.Output<string[] | undefined>;
|
|
144
144
|
/**
|
|
145
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
146
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
145
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
146
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
147
147
|
*/
|
|
148
148
|
readonly projectKey: pulumi.Output<string | undefined>;
|
|
149
149
|
/**
|
|
@@ -326,8 +326,8 @@ export interface RemoteVcsRepositoryState {
|
|
|
326
326
|
*/
|
|
327
327
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
328
328
|
/**
|
|
329
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
330
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
329
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
330
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
331
331
|
*/
|
|
332
332
|
projectKey?: pulumi.Input<string>;
|
|
333
333
|
/**
|
|
@@ -497,8 +497,8 @@ export interface RemoteVcsRepositoryArgs {
|
|
|
497
497
|
*/
|
|
498
498
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
499
499
|
/**
|
|
500
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
501
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
500
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
501
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
502
502
|
*/
|
|
503
503
|
projectKey?: pulumi.Input<string>;
|
|
504
504
|
/**
|
|
@@ -89,8 +89,8 @@ export declare class VirtualAlpineRepository extends pulumi.CustomResource {
|
|
|
89
89
|
*/
|
|
90
90
|
readonly projectEnvironments: pulumi.Output<string[] | undefined>;
|
|
91
91
|
/**
|
|
92
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
93
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
92
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
93
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
94
94
|
*/
|
|
95
95
|
readonly projectKey: pulumi.Output<string | undefined>;
|
|
96
96
|
/**
|
|
@@ -165,8 +165,8 @@ export interface VirtualAlpineRepositoryState {
|
|
|
165
165
|
*/
|
|
166
166
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
167
167
|
/**
|
|
168
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
169
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
168
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
169
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
170
170
|
*/
|
|
171
171
|
projectKey?: pulumi.Input<string>;
|
|
172
172
|
/**
|
|
@@ -229,8 +229,8 @@ export interface VirtualAlpineRepositoryArgs {
|
|
|
229
229
|
*/
|
|
230
230
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
231
231
|
/**
|
|
232
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
233
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
232
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
233
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
234
234
|
*/
|
|
235
235
|
projectKey?: pulumi.Input<string>;
|
|
236
236
|
/**
|
|
@@ -97,8 +97,8 @@ export declare class VirtualBowerRepository extends pulumi.CustomResource {
|
|
|
97
97
|
*/
|
|
98
98
|
readonly projectEnvironments: pulumi.Output<string[] | undefined>;
|
|
99
99
|
/**
|
|
100
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
101
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
100
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
101
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
102
102
|
*/
|
|
103
103
|
readonly projectKey: pulumi.Output<string | undefined>;
|
|
104
104
|
/**
|
|
@@ -181,8 +181,8 @@ export interface VirtualBowerRepositoryState {
|
|
|
181
181
|
*/
|
|
182
182
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
183
183
|
/**
|
|
184
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
185
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
184
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
185
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
186
186
|
*/
|
|
187
187
|
projectKey?: pulumi.Input<string>;
|
|
188
188
|
/**
|
|
@@ -253,8 +253,8 @@ export interface VirtualBowerRepositoryArgs {
|
|
|
253
253
|
*/
|
|
254
254
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
255
255
|
/**
|
|
256
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
257
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
256
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
257
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
258
258
|
*/
|
|
259
259
|
projectKey?: pulumi.Input<string>;
|
|
260
260
|
/**
|
|
@@ -85,8 +85,8 @@ export declare class VirtualChefRepository extends pulumi.CustomResource {
|
|
|
85
85
|
*/
|
|
86
86
|
readonly projectEnvironments: pulumi.Output<string[] | undefined>;
|
|
87
87
|
/**
|
|
88
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
89
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
88
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
89
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
90
90
|
*/
|
|
91
91
|
readonly projectKey: pulumi.Output<string | undefined>;
|
|
92
92
|
/**
|
|
@@ -157,8 +157,8 @@ export interface VirtualChefRepositoryState {
|
|
|
157
157
|
*/
|
|
158
158
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
159
159
|
/**
|
|
160
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
161
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
160
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
161
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
162
162
|
*/
|
|
163
163
|
projectKey?: pulumi.Input<string>;
|
|
164
164
|
/**
|
|
@@ -217,8 +217,8 @@ export interface VirtualChefRepositoryArgs {
|
|
|
217
217
|
*/
|
|
218
218
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
219
219
|
/**
|
|
220
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
221
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
220
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
221
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
222
222
|
*/
|
|
223
223
|
projectKey?: pulumi.Input<string>;
|
|
224
224
|
/**
|
|
@@ -85,8 +85,8 @@ export declare class VirtualComposerRepository extends pulumi.CustomResource {
|
|
|
85
85
|
*/
|
|
86
86
|
readonly projectEnvironments: pulumi.Output<string[] | undefined>;
|
|
87
87
|
/**
|
|
88
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
89
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
88
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
89
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
90
90
|
*/
|
|
91
91
|
readonly projectKey: pulumi.Output<string | undefined>;
|
|
92
92
|
/**
|
|
@@ -157,8 +157,8 @@ export interface VirtualComposerRepositoryState {
|
|
|
157
157
|
*/
|
|
158
158
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
159
159
|
/**
|
|
160
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
161
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
160
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
161
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
162
162
|
*/
|
|
163
163
|
projectKey?: pulumi.Input<string>;
|
|
164
164
|
/**
|
|
@@ -217,8 +217,8 @@ export interface VirtualComposerRepositoryArgs {
|
|
|
217
217
|
*/
|
|
218
218
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
219
219
|
/**
|
|
220
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
221
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
220
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
221
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
222
222
|
*/
|
|
223
223
|
projectKey?: pulumi.Input<string>;
|
|
224
224
|
/**
|
|
@@ -86,8 +86,8 @@ export declare class VirtualConanRepository extends pulumi.CustomResource {
|
|
|
86
86
|
*/
|
|
87
87
|
readonly projectEnvironments: pulumi.Output<string[] | undefined>;
|
|
88
88
|
/**
|
|
89
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
90
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
89
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
90
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
91
91
|
*/
|
|
92
92
|
readonly projectKey: pulumi.Output<string | undefined>;
|
|
93
93
|
/**
|
|
@@ -158,8 +158,8 @@ export interface VirtualConanRepositoryState {
|
|
|
158
158
|
*/
|
|
159
159
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
160
160
|
/**
|
|
161
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
162
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
161
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
162
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
163
163
|
*/
|
|
164
164
|
projectKey?: pulumi.Input<string>;
|
|
165
165
|
/**
|
|
@@ -218,8 +218,8 @@ export interface VirtualConanRepositoryArgs {
|
|
|
218
218
|
*/
|
|
219
219
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
220
220
|
/**
|
|
221
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
222
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
221
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
222
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
223
223
|
*/
|
|
224
224
|
projectKey?: pulumi.Input<string>;
|
|
225
225
|
/**
|
|
@@ -85,8 +85,8 @@ export declare class VirtualCondaRepository extends pulumi.CustomResource {
|
|
|
85
85
|
*/
|
|
86
86
|
readonly projectEnvironments: pulumi.Output<string[] | undefined>;
|
|
87
87
|
/**
|
|
88
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
89
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
88
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
89
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
90
90
|
*/
|
|
91
91
|
readonly projectKey: pulumi.Output<string | undefined>;
|
|
92
92
|
/**
|
|
@@ -157,8 +157,8 @@ export interface VirtualCondaRepositoryState {
|
|
|
157
157
|
*/
|
|
158
158
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
159
159
|
/**
|
|
160
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
161
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
160
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
161
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
162
162
|
*/
|
|
163
163
|
projectKey?: pulumi.Input<string>;
|
|
164
164
|
/**
|
|
@@ -217,8 +217,8 @@ export interface VirtualCondaRepositoryArgs {
|
|
|
217
217
|
*/
|
|
218
218
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
219
219
|
/**
|
|
220
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
221
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
220
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
221
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
222
222
|
*/
|
|
223
223
|
projectKey?: pulumi.Input<string>;
|
|
224
224
|
/**
|
|
@@ -85,8 +85,8 @@ export declare class VirtualCranRepository extends pulumi.CustomResource {
|
|
|
85
85
|
*/
|
|
86
86
|
readonly projectEnvironments: pulumi.Output<string[] | undefined>;
|
|
87
87
|
/**
|
|
88
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
89
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
88
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
89
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
90
90
|
*/
|
|
91
91
|
readonly projectKey: pulumi.Output<string | undefined>;
|
|
92
92
|
/**
|
|
@@ -157,8 +157,8 @@ export interface VirtualCranRepositoryState {
|
|
|
157
157
|
*/
|
|
158
158
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
159
159
|
/**
|
|
160
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
161
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
160
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
161
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
162
162
|
*/
|
|
163
163
|
projectKey?: pulumi.Input<string>;
|
|
164
164
|
/**
|
|
@@ -217,8 +217,8 @@ export interface VirtualCranRepositoryArgs {
|
|
|
217
217
|
*/
|
|
218
218
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
219
219
|
/**
|
|
220
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
221
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
220
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
221
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
222
222
|
*/
|
|
223
223
|
projectKey?: pulumi.Input<string>;
|
|
224
224
|
/**
|
|
@@ -102,8 +102,8 @@ export declare class VirtualDebianRepository extends pulumi.CustomResource {
|
|
|
102
102
|
*/
|
|
103
103
|
readonly projectEnvironments: pulumi.Output<string[] | undefined>;
|
|
104
104
|
/**
|
|
105
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
106
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
105
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
106
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
107
107
|
*/
|
|
108
108
|
readonly projectKey: pulumi.Output<string | undefined>;
|
|
109
109
|
/**
|
|
@@ -190,8 +190,8 @@ export interface VirtualDebianRepositoryState {
|
|
|
190
190
|
*/
|
|
191
191
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
192
192
|
/**
|
|
193
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
194
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
193
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
194
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
195
195
|
*/
|
|
196
196
|
projectKey?: pulumi.Input<string>;
|
|
197
197
|
/**
|
|
@@ -266,8 +266,8 @@ export interface VirtualDebianRepositoryArgs {
|
|
|
266
266
|
*/
|
|
267
267
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
268
268
|
/**
|
|
269
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
270
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
269
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
270
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
271
271
|
*/
|
|
272
272
|
projectKey?: pulumi.Input<string>;
|
|
273
273
|
/**
|
|
@@ -85,8 +85,8 @@ export declare class VirtualDockerRepository extends pulumi.CustomResource {
|
|
|
85
85
|
*/
|
|
86
86
|
readonly projectEnvironments: pulumi.Output<string[] | undefined>;
|
|
87
87
|
/**
|
|
88
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
89
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
88
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
89
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
90
90
|
*/
|
|
91
91
|
readonly projectKey: pulumi.Output<string | undefined>;
|
|
92
92
|
/**
|
|
@@ -157,8 +157,8 @@ export interface VirtualDockerRepositoryState {
|
|
|
157
157
|
*/
|
|
158
158
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
159
159
|
/**
|
|
160
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
161
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
160
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
161
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
162
162
|
*/
|
|
163
163
|
projectKey?: pulumi.Input<string>;
|
|
164
164
|
/**
|
|
@@ -217,8 +217,8 @@ export interface VirtualDockerRepositoryArgs {
|
|
|
217
217
|
*/
|
|
218
218
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
219
219
|
/**
|
|
220
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
221
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
220
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
221
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
222
222
|
*/
|
|
223
223
|
projectKey?: pulumi.Input<string>;
|
|
224
224
|
/**
|
|
@@ -85,8 +85,8 @@ export declare class VirtualGemsRepository extends pulumi.CustomResource {
|
|
|
85
85
|
*/
|
|
86
86
|
readonly projectEnvironments: pulumi.Output<string[] | undefined>;
|
|
87
87
|
/**
|
|
88
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
89
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
88
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
89
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
90
90
|
*/
|
|
91
91
|
readonly projectKey: pulumi.Output<string | undefined>;
|
|
92
92
|
/**
|
|
@@ -157,8 +157,8 @@ export interface VirtualGemsRepositoryState {
|
|
|
157
157
|
*/
|
|
158
158
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
159
159
|
/**
|
|
160
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
161
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
160
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
161
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
162
162
|
*/
|
|
163
163
|
projectKey?: pulumi.Input<string>;
|
|
164
164
|
/**
|
|
@@ -217,8 +217,8 @@ export interface VirtualGemsRepositoryArgs {
|
|
|
217
217
|
*/
|
|
218
218
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
219
219
|
/**
|
|
220
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
221
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
220
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
221
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
222
222
|
*/
|
|
223
223
|
projectKey?: pulumi.Input<string>;
|
|
224
224
|
/**
|
|
@@ -86,8 +86,8 @@ export declare class VirtualGenericRepository extends pulumi.CustomResource {
|
|
|
86
86
|
*/
|
|
87
87
|
readonly projectEnvironments: pulumi.Output<string[] | undefined>;
|
|
88
88
|
/**
|
|
89
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
90
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
89
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
90
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
91
91
|
*/
|
|
92
92
|
readonly projectKey: pulumi.Output<string | undefined>;
|
|
93
93
|
/**
|
|
@@ -158,8 +158,8 @@ export interface VirtualGenericRepositoryState {
|
|
|
158
158
|
*/
|
|
159
159
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
160
160
|
/**
|
|
161
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
162
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
161
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
162
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
163
163
|
*/
|
|
164
164
|
projectKey?: pulumi.Input<string>;
|
|
165
165
|
/**
|
|
@@ -218,8 +218,8 @@ export interface VirtualGenericRepositoryArgs {
|
|
|
218
218
|
*/
|
|
219
219
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
220
220
|
/**
|
|
221
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
222
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
221
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
222
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
223
223
|
*/
|
|
224
224
|
projectKey?: pulumi.Input<string>;
|
|
225
225
|
/**
|
|
@@ -85,8 +85,8 @@ export declare class VirtualGitlfsRepository extends pulumi.CustomResource {
|
|
|
85
85
|
*/
|
|
86
86
|
readonly projectEnvironments: pulumi.Output<string[] | undefined>;
|
|
87
87
|
/**
|
|
88
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
89
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
88
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
89
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
90
90
|
*/
|
|
91
91
|
readonly projectKey: pulumi.Output<string | undefined>;
|
|
92
92
|
/**
|
|
@@ -157,8 +157,8 @@ export interface VirtualGitlfsRepositoryState {
|
|
|
157
157
|
*/
|
|
158
158
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
159
159
|
/**
|
|
160
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
161
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
160
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
161
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
162
162
|
*/
|
|
163
163
|
projectKey?: pulumi.Input<string>;
|
|
164
164
|
/**
|
|
@@ -217,8 +217,8 @@ export interface VirtualGitlfsRepositoryArgs {
|
|
|
217
217
|
*/
|
|
218
218
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
219
219
|
/**
|
|
220
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
221
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
220
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
221
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
222
222
|
*/
|
|
223
223
|
projectKey?: pulumi.Input<string>;
|
|
224
224
|
/**
|
|
@@ -101,8 +101,8 @@ export declare class VirtualGradleRepository extends pulumi.CustomResource {
|
|
|
101
101
|
*/
|
|
102
102
|
readonly projectEnvironments: pulumi.Output<string[] | undefined>;
|
|
103
103
|
/**
|
|
104
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
105
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
104
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
105
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
106
106
|
*/
|
|
107
107
|
readonly projectKey: pulumi.Output<string | undefined>;
|
|
108
108
|
/**
|
|
@@ -188,8 +188,8 @@ export interface VirtualGradleRepositoryState {
|
|
|
188
188
|
*/
|
|
189
189
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
190
190
|
/**
|
|
191
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
192
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
191
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
192
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
193
193
|
*/
|
|
194
194
|
projectKey?: pulumi.Input<string>;
|
|
195
195
|
/**
|
|
@@ -263,8 +263,8 @@ export interface VirtualGradleRepositoryArgs {
|
|
|
263
263
|
*/
|
|
264
264
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
265
265
|
/**
|
|
266
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
267
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
266
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
267
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
268
268
|
*/
|
|
269
269
|
projectKey?: pulumi.Input<string>;
|
|
270
270
|
/**
|
|
@@ -81,8 +81,8 @@ export declare class VirtualHelmRepository extends pulumi.CustomResource {
|
|
|
81
81
|
*/
|
|
82
82
|
readonly projectEnvironments: pulumi.Output<string[] | undefined>;
|
|
83
83
|
/**
|
|
84
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
85
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
84
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
85
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
86
86
|
*/
|
|
87
87
|
readonly projectKey: pulumi.Output<string | undefined>;
|
|
88
88
|
/**
|
|
@@ -157,8 +157,8 @@ export interface VirtualHelmRepositoryState {
|
|
|
157
157
|
*/
|
|
158
158
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
159
159
|
/**
|
|
160
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
161
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
160
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
161
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
162
162
|
*/
|
|
163
163
|
projectKey?: pulumi.Input<string>;
|
|
164
164
|
/**
|
|
@@ -221,8 +221,8 @@ export interface VirtualHelmRepositoryArgs {
|
|
|
221
221
|
*/
|
|
222
222
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
223
223
|
/**
|
|
224
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
225
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
224
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
225
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
226
226
|
*/
|
|
227
227
|
projectKey?: pulumi.Input<string>;
|
|
228
228
|
/**
|