@pulumi/artifactory 2.6.0 → 2.7.0-alpha.1660649518
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/goRepository.d.ts +6 -6
- package/mavenRepository.d.ts +6 -6
- package/package.json +2 -2
- package/package.json.dev +2 -2
- 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 +6 -6
- package/virtualSbtRepository.d.ts +6 -6
- package/virtualSwiftRepository.d.ts +6 -6
- package/virtualTerraformRepository.d.ts +6 -6
package/goRepository.d.ts
CHANGED
|
@@ -100,8 +100,8 @@ export declare class GoRepository extends pulumi.CustomResource {
|
|
|
100
100
|
*/
|
|
101
101
|
readonly projectEnvironments: pulumi.Output<string[] | undefined>;
|
|
102
102
|
/**
|
|
103
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
104
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
103
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
104
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
105
105
|
*/
|
|
106
106
|
readonly projectKey: pulumi.Output<string | undefined>;
|
|
107
107
|
/**
|
|
@@ -181,8 +181,8 @@ export interface GoRepositoryState {
|
|
|
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
|
/**
|
|
@@ -250,8 +250,8 @@ export interface GoRepositoryArgs {
|
|
|
250
250
|
*/
|
|
251
251
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
252
252
|
/**
|
|
253
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
254
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
253
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
254
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
255
255
|
*/
|
|
256
256
|
projectKey?: pulumi.Input<string>;
|
|
257
257
|
/**
|
package/mavenRepository.d.ts
CHANGED
|
@@ -112,8 +112,8 @@ export declare class MavenRepository extends pulumi.CustomResource {
|
|
|
112
112
|
*/
|
|
113
113
|
readonly projectEnvironments: pulumi.Output<string[] | undefined>;
|
|
114
114
|
/**
|
|
115
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
116
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
115
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
116
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
117
117
|
*/
|
|
118
118
|
readonly projectKey: pulumi.Output<string | undefined>;
|
|
119
119
|
/**
|
|
@@ -196,8 +196,8 @@ export interface MavenRepositoryState {
|
|
|
196
196
|
*/
|
|
197
197
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
198
198
|
/**
|
|
199
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
200
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
199
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
200
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
201
201
|
*/
|
|
202
202
|
projectKey?: pulumi.Input<string>;
|
|
203
203
|
/**
|
|
@@ -268,8 +268,8 @@ export interface MavenRepositoryArgs {
|
|
|
268
268
|
*/
|
|
269
269
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
270
270
|
/**
|
|
271
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
272
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
271
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
272
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
273
273
|
*/
|
|
274
274
|
projectKey?: pulumi.Input<string>;
|
|
275
275
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/artifactory",
|
|
3
|
-
"version": "v2.
|
|
3
|
+
"version": "v2.7.0-alpha.1660649518+233d0cb9",
|
|
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-alpha.1660649518+233d0cb9"
|
|
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-alpha.1660649518+233d0cb9",
|
|
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-alpha.1660649518+233d0cb9"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0"
|
|
@@ -134,8 +134,8 @@ export declare class RemoteAlpineRepository 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 RemoteAlpineRepositoryState {
|
|
|
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 RemoteAlpineRepositoryArgs {
|
|
|
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
|
/**
|
|
@@ -139,8 +139,8 @@ export declare class RemoteBowerRepository 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
|
|
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
|
/**
|
|
@@ -320,8 +320,8 @@ export interface RemoteBowerRepositoryState {
|
|
|
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
|
|
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
|
/**
|
|
@@ -488,8 +488,8 @@ export interface RemoteBowerRepositoryArgs {
|
|
|
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
|
|
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
|
/**
|
|
@@ -148,8 +148,8 @@ export declare class RemoteCargoRepository extends pulumi.CustomResource {
|
|
|
148
148
|
*/
|
|
149
149
|
readonly projectEnvironments: pulumi.Output<string[] | undefined>;
|
|
150
150
|
/**
|
|
151
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
152
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
151
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
152
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
153
153
|
*/
|
|
154
154
|
readonly projectKey: pulumi.Output<string | undefined>;
|
|
155
155
|
/**
|
|
@@ -324,8 +324,8 @@ export interface RemoteCargoRepositoryState {
|
|
|
324
324
|
*/
|
|
325
325
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
326
326
|
/**
|
|
327
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
328
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
327
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
328
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
329
329
|
*/
|
|
330
330
|
projectKey?: pulumi.Input<string>;
|
|
331
331
|
/**
|
|
@@ -487,8 +487,8 @@ export interface RemoteCargoRepositoryArgs {
|
|
|
487
487
|
*/
|
|
488
488
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
489
489
|
/**
|
|
490
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
491
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
490
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
491
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
492
492
|
*/
|
|
493
493
|
projectKey?: pulumi.Input<string>;
|
|
494
494
|
/**
|
|
@@ -134,8 +134,8 @@ export declare class RemoteChefRepository 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 RemoteChefRepositoryState {
|
|
|
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 RemoteChefRepositoryArgs {
|
|
|
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
|
/**
|
|
@@ -140,8 +140,8 @@ export declare class RemoteCocoapodsRepository extends pulumi.CustomResource {
|
|
|
140
140
|
*/
|
|
141
141
|
readonly projectEnvironments: pulumi.Output<string[] | undefined>;
|
|
142
142
|
/**
|
|
143
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
144
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
143
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
144
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
145
145
|
*/
|
|
146
146
|
readonly projectKey: pulumi.Output<string | undefined>;
|
|
147
147
|
/**
|
|
@@ -321,8 +321,8 @@ export interface RemoteCocoapodsRepositoryState {
|
|
|
321
321
|
*/
|
|
322
322
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
323
323
|
/**
|
|
324
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
325
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
324
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
325
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
326
326
|
*/
|
|
327
327
|
projectKey?: pulumi.Input<string>;
|
|
328
328
|
/**
|
|
@@ -489,8 +489,8 @@ export interface RemoteCocoapodsRepositoryArgs {
|
|
|
489
489
|
*/
|
|
490
490
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
491
491
|
/**
|
|
492
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
493
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
492
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
493
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
494
494
|
*/
|
|
495
495
|
projectKey?: pulumi.Input<string>;
|
|
496
496
|
/**
|
|
@@ -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
|
|
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
|
/**
|
|
@@ -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
|
|
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
|
/**
|
|
@@ -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
|
|
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
|
/**
|
|
@@ -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
|
|
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 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
|
|
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 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
|
|
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
|
/**
|
|
@@ -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
|
|
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 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
|
|
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 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
|
|
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
|
/**
|
|
@@ -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
|
|
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 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
|
|
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 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
|
|
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
|
/**
|
|
@@ -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
|
|
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 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
|
|
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 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
|
|
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
|
/**
|
|
@@ -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
|
|
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
|
/**
|
|
@@ -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
|
|
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
|
/**
|
|
@@ -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
|
|
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
|
/**
|
|
@@ -134,8 +134,8 @@ export declare class RemoteGemsRepository 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 RemoteGemsRepositoryState {
|
|
|
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 RemoteGemsRepositoryArgs {
|
|
|
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 RemoteGenericRepository 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
|
/**
|
|
@@ -301,8 +301,8 @@ export interface RemoteGenericRepositoryState {
|
|
|
301
301
|
*/
|
|
302
302
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
303
303
|
/**
|
|
304
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
305
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
304
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
305
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
306
306
|
*/
|
|
307
307
|
projectKey?: pulumi.Input<string>;
|
|
308
308
|
/**
|
|
@@ -456,8 +456,8 @@ export interface RemoteGenericRepositoryArgs {
|
|
|
456
456
|
*/
|
|
457
457
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
458
458
|
/**
|
|
459
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
460
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
459
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
460
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
461
461
|
*/
|
|
462
462
|
projectKey?: pulumi.Input<string>;
|
|
463
463
|
/**
|
|
@@ -134,8 +134,8 @@ export declare class RemoteGitlfsRepository 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 RemoteGitlfsRepositoryState {
|
|
|
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 RemoteGitlfsRepositoryArgs {
|
|
|
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
|
/**
|
package/remoteGoRepository.d.ts
CHANGED
|
@@ -135,8 +135,8 @@ export declare class RemoteGoRepository extends pulumi.CustomResource {
|
|
|
135
135
|
*/
|
|
136
136
|
readonly projectEnvironments: pulumi.Output<string[] | undefined>;
|
|
137
137
|
/**
|
|
138
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
139
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
138
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
139
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
140
140
|
*/
|
|
141
141
|
readonly projectKey: pulumi.Output<string | undefined>;
|
|
142
142
|
/**
|
|
@@ -307,8 +307,8 @@ export interface RemoteGoRepositoryState {
|
|
|
307
307
|
*/
|
|
308
308
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
309
309
|
/**
|
|
310
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
311
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
310
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
311
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
312
312
|
*/
|
|
313
313
|
projectKey?: pulumi.Input<string>;
|
|
314
314
|
/**
|
|
@@ -466,8 +466,8 @@ export interface RemoteGoRepositoryArgs {
|
|
|
466
466
|
*/
|
|
467
467
|
projectEnvironments?: pulumi.Input<pulumi.Input<string>[]>;
|
|
468
468
|
/**
|
|
469
|
-
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric characters. When
|
|
470
|
-
* repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
469
|
+
* Project key for assigning this repository to. Must be 3 - 10 lowercase alphanumeric and hyphen characters. When
|
|
470
|
+
* assigning repository to a project, repository key must be prefixed with project key, separated by a dash.
|
|
471
471
|
*/
|
|
472
472
|
projectKey?: pulumi.Input<string>;
|
|
473
473
|
/**
|