@three14/pulumi-argocd 1.1.1 → 1.1.3
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/accountToken.d.ts +12 -11
- package/accountToken.d.ts.map +1 -0
- package/accountToken.js +27 -4
- package/accountToken.js.map +1 -1
- package/application.d.ts +12 -11
- package/application.d.ts.map +1 -0
- package/application.js +27 -4
- package/application.js.map +1 -1
- package/applicationSet.d.ts +3 -2
- package/applicationSet.d.ts.map +1 -0
- package/applicationSet.js +27 -4
- package/applicationSet.js.map +1 -1
- package/cluster.d.ts +16 -15
- package/cluster.d.ts.map +1 -0
- package/cluster.js +28 -5
- package/cluster.js.map +1 -1
- package/config/index.d.ts +1 -0
- package/config/index.d.ts.map +1 -0
- package/config/vars.d.ts +1 -0
- package/config/vars.d.ts.map +1 -0
- package/config/vars.js +24 -1
- package/config/vars.js.map +1 -1
- package/getApplication.d.ts +1 -0
- package/getApplication.d.ts.map +1 -0
- package/getApplication.js +25 -2
- package/getApplication.js.map +1 -1
- package/gpgKey.d.ts +6 -5
- package/gpgKey.d.ts.map +1 -0
- package/gpgKey.js +27 -4
- package/gpgKey.js.map +1 -1
- package/index.d.ts +1 -0
- package/index.d.ts.map +1 -0
- package/index.js +16 -4
- package/index.js.map +1 -1
- package/package.json +4 -4
- package/project.d.ts +3 -2
- package/project.d.ts.map +1 -0
- package/project.js +27 -4
- package/project.js.map +1 -1
- package/projectToken.d.ts +14 -13
- package/projectToken.d.ts.map +1 -0
- package/projectToken.js +27 -4
- package/projectToken.js.map +1 -1
- package/provider.d.ts +21 -20
- package/provider.d.ts.map +1 -0
- package/provider.js +27 -4
- package/provider.js.map +1 -1
- package/repository.d.ts +54 -41
- package/repository.d.ts.map +1 -0
- package/repository.js +29 -4
- package/repository.js.map +1 -1
- package/repositoryCertificate.d.ts +5 -4
- package/repositoryCertificate.d.ts.map +1 -0
- package/repositoryCertificate.js +27 -4
- package/repositoryCertificate.js.map +1 -1
- package/repositoryCredentials.d.ts +26 -25
- package/repositoryCredentials.d.ts.map +1 -0
- package/repositoryCredentials.js +27 -4
- package/repositoryCredentials.js.map +1 -1
- package/types/index.d.ts +1 -0
- package/types/index.d.ts.map +1 -0
- package/types/index.js +25 -2
- package/types/index.js.map +1 -1
- package/types/input.d.ts +6452 -6451
- package/types/input.d.ts.map +1 -0
- package/types/output.d.ts +1 -0
- package/types/output.d.ts.map +1 -0
- package/utilities.d.ts +1 -0
- package/utilities.d.ts.map +1 -0
- package/utilities.js +24 -1
- package/utilities.js.map +1 -1
package/provider.js
CHANGED
|
@@ -1,10 +1,33 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5
|
+
if (k2 === undefined) k2 = k;
|
|
6
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
7
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
8
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
9
|
+
}
|
|
10
|
+
Object.defineProperty(o, k2, desc);
|
|
11
|
+
}) : (function(o, m, k, k2) {
|
|
12
|
+
if (k2 === undefined) k2 = k;
|
|
13
|
+
o[k2] = m[k];
|
|
14
|
+
}));
|
|
15
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
16
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
17
|
+
}) : function(o, v) {
|
|
18
|
+
o["default"] = v;
|
|
19
|
+
});
|
|
20
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
21
|
+
if (mod && mod.__esModule) return mod;
|
|
22
|
+
var result = {};
|
|
23
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
24
|
+
__setModuleDefault(result, mod);
|
|
25
|
+
return result;
|
|
26
|
+
};
|
|
4
27
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
28
|
exports.Provider = void 0;
|
|
6
|
-
const pulumi = require("@pulumi/pulumi");
|
|
7
|
-
const utilities = require("./utilities");
|
|
29
|
+
const pulumi = __importStar(require("@pulumi/pulumi"));
|
|
30
|
+
const utilities = __importStar(require("./utilities"));
|
|
8
31
|
/**
|
|
9
32
|
* The provider type for the argocd package. By default, resources use package-wide configuration
|
|
10
33
|
* settings, however an explicit `Provider` instance may be created and passed during resource
|
|
@@ -12,6 +35,8 @@ const utilities = require("./utilities");
|
|
|
12
35
|
* [documentation](https://www.pulumi.com/docs/reference/programming-model/#providers) for more information.
|
|
13
36
|
*/
|
|
14
37
|
class Provider extends pulumi.ProviderResource {
|
|
38
|
+
/** @internal */
|
|
39
|
+
static __pulumiType = 'argocd';
|
|
15
40
|
/**
|
|
16
41
|
* Returns true if the given object is an instance of Provider. This is designed to work even
|
|
17
42
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
@@ -69,6 +94,4 @@ class Provider extends pulumi.ProviderResource {
|
|
|
69
94
|
}
|
|
70
95
|
}
|
|
71
96
|
exports.Provider = Provider;
|
|
72
|
-
/** @internal */
|
|
73
|
-
Provider.__pulumiType = 'argocd';
|
|
74
97
|
//# sourceMappingURL=provider.js.map
|
package/provider.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"provider.js","sourceRoot":"","sources":["../provider.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF
|
|
1
|
+
{"version":3,"file":"provider.js","sourceRoot":"","sources":["../provider.ts"],"names":[],"mappings":"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"}
|
package/repository.d.ts
CHANGED
|
@@ -83,6 +83,10 @@ export declare class Repository extends pulumi.CustomResource {
|
|
|
83
83
|
* Contains information about the current state of connection to the repository server.
|
|
84
84
|
*/
|
|
85
85
|
readonly connectionStateStatus: pulumi.Output<string>;
|
|
86
|
+
/**
|
|
87
|
+
* Depth specifies the depth for [shallow clones](https://argo-cd.readthedocs.io/en/stable/operator-manual/high_availability/#shallow-clone). A value of `0` means a full clone (the default). Shallow clone depths (`> 0`) are only supported from ArgoCD 3.3.0 onwards.
|
|
88
|
+
*/
|
|
89
|
+
readonly depth: pulumi.Output<number>;
|
|
86
90
|
/**
|
|
87
91
|
* Whether `git-lfs` support should be enabled for this repository.
|
|
88
92
|
*/
|
|
@@ -179,91 +183,95 @@ export interface RepositoryState {
|
|
|
179
183
|
/**
|
|
180
184
|
* BearerToken contains the bearer token used for Git BitBucket Data Center auth at the repo server
|
|
181
185
|
*/
|
|
182
|
-
bearerToken?: pulumi.Input<string>;
|
|
186
|
+
bearerToken?: pulumi.Input<string | undefined>;
|
|
183
187
|
/**
|
|
184
188
|
* Contains information about the current state of connection to the repository server.
|
|
185
189
|
*/
|
|
186
|
-
connectionStateStatus?: pulumi.Input<string>;
|
|
190
|
+
connectionStateStatus?: pulumi.Input<string | undefined>;
|
|
191
|
+
/**
|
|
192
|
+
* Depth specifies the depth for [shallow clones](https://argo-cd.readthedocs.io/en/stable/operator-manual/high_availability/#shallow-clone). A value of `0` means a full clone (the default). Shallow clone depths (`> 0`) are only supported from ArgoCD 3.3.0 onwards.
|
|
193
|
+
*/
|
|
194
|
+
depth?: pulumi.Input<number | undefined>;
|
|
187
195
|
/**
|
|
188
196
|
* Whether `git-lfs` support should be enabled for this repository.
|
|
189
197
|
*/
|
|
190
|
-
enableLfs?: pulumi.Input<boolean>;
|
|
198
|
+
enableLfs?: pulumi.Input<boolean | undefined>;
|
|
191
199
|
/**
|
|
192
200
|
* Whether `helm-oci` support should be enabled for this repository.
|
|
193
201
|
*/
|
|
194
|
-
enableOci?: pulumi.Input<boolean>;
|
|
202
|
+
enableOci?: pulumi.Input<boolean | undefined>;
|
|
195
203
|
/**
|
|
196
204
|
* GitHub API URL for GitHub app authentication.
|
|
197
205
|
*/
|
|
198
|
-
githubappEnterpriseBaseUrl?: pulumi.Input<string>;
|
|
206
|
+
githubappEnterpriseBaseUrl?: pulumi.Input<string | undefined>;
|
|
199
207
|
/**
|
|
200
208
|
* ID of the GitHub app used to access the repo.
|
|
201
209
|
*/
|
|
202
|
-
githubappId?: pulumi.Input<string>;
|
|
210
|
+
githubappId?: pulumi.Input<string | undefined>;
|
|
203
211
|
/**
|
|
204
212
|
* The installation ID of the GitHub App used to access the repo.
|
|
205
213
|
*/
|
|
206
|
-
githubappInstallationId?: pulumi.Input<string>;
|
|
214
|
+
githubappInstallationId?: pulumi.Input<string | undefined>;
|
|
207
215
|
/**
|
|
208
216
|
* Private key data (PEM) for authentication via GitHub app.
|
|
209
217
|
*/
|
|
210
|
-
githubappPrivateKey?: pulumi.Input<string>;
|
|
218
|
+
githubappPrivateKey?: pulumi.Input<string | undefined>;
|
|
211
219
|
/**
|
|
212
220
|
* Whether credentials were inherited from a credential set.
|
|
213
221
|
*/
|
|
214
|
-
inheritedCreds?: pulumi.Input<boolean>;
|
|
222
|
+
inheritedCreds?: pulumi.Input<boolean | undefined>;
|
|
215
223
|
/**
|
|
216
224
|
* Whether the connection to the repository ignores any errors when verifying TLS certificates or SSH host keys.
|
|
217
225
|
*/
|
|
218
|
-
insecure?: pulumi.Input<boolean>;
|
|
226
|
+
insecure?: pulumi.Input<boolean | undefined>;
|
|
219
227
|
/**
|
|
220
228
|
* Name to be used for this repo. Only used with Helm repos.
|
|
221
229
|
*/
|
|
222
|
-
name?: pulumi.Input<string>;
|
|
230
|
+
name?: pulumi.Input<string | undefined>;
|
|
223
231
|
/**
|
|
224
232
|
* Comma-separated list of hostnames that should be excluded from proxying.
|
|
225
233
|
*/
|
|
226
|
-
noProxy?: pulumi.Input<string>;
|
|
234
|
+
noProxy?: pulumi.Input<string | undefined>;
|
|
227
235
|
/**
|
|
228
236
|
* Password or PAT used for authenticating at the remote repository.
|
|
229
237
|
*/
|
|
230
|
-
password?: pulumi.Input<string>;
|
|
238
|
+
password?: pulumi.Input<string | undefined>;
|
|
231
239
|
/**
|
|
232
240
|
* The project name, in case the repository is project scoped.
|
|
233
241
|
*/
|
|
234
|
-
project?: pulumi.Input<string>;
|
|
242
|
+
project?: pulumi.Input<string | undefined>;
|
|
235
243
|
/**
|
|
236
244
|
* HTTP/HTTPS proxy to access the repository.
|
|
237
245
|
*/
|
|
238
|
-
proxy?: pulumi.Input<string>;
|
|
246
|
+
proxy?: pulumi.Input<string | undefined>;
|
|
239
247
|
/**
|
|
240
248
|
* URL of the repository.
|
|
241
249
|
*/
|
|
242
|
-
repo?: pulumi.Input<string>;
|
|
250
|
+
repo?: pulumi.Input<string | undefined>;
|
|
243
251
|
/**
|
|
244
252
|
* PEM data for authenticating at the repo server. Only used with Git repos.
|
|
245
253
|
*/
|
|
246
|
-
sshPrivateKey?: pulumi.Input<string>;
|
|
254
|
+
sshPrivateKey?: pulumi.Input<string | undefined>;
|
|
247
255
|
/**
|
|
248
256
|
* TLS client certificate in PEM format for authenticating at the repo server.
|
|
249
257
|
*/
|
|
250
|
-
tlsClientCertData?: pulumi.Input<string>;
|
|
258
|
+
tlsClientCertData?: pulumi.Input<string | undefined>;
|
|
251
259
|
/**
|
|
252
260
|
* TLS client certificate private key in PEM format for authenticating at the repo server.
|
|
253
261
|
*/
|
|
254
|
-
tlsClientCertKey?: pulumi.Input<string>;
|
|
262
|
+
tlsClientCertKey?: pulumi.Input<string | undefined>;
|
|
255
263
|
/**
|
|
256
264
|
* Type of the repo. Can be either `git`, `helm` or `oci`. `git` is assumed if empty or absent.
|
|
257
265
|
*/
|
|
258
|
-
type?: pulumi.Input<string>;
|
|
266
|
+
type?: pulumi.Input<string | undefined>;
|
|
259
267
|
/**
|
|
260
268
|
* Whether `Azure-Workload-identity` should be enabled for this repository.
|
|
261
269
|
*/
|
|
262
|
-
useAzureWorkloadIdentity?: pulumi.Input<boolean>;
|
|
270
|
+
useAzureWorkloadIdentity?: pulumi.Input<boolean | undefined>;
|
|
263
271
|
/**
|
|
264
272
|
* Username used for authenticating at the remote repository.
|
|
265
273
|
*/
|
|
266
|
-
username?: pulumi.Input<string>;
|
|
274
|
+
username?: pulumi.Input<string | undefined>;
|
|
267
275
|
}
|
|
268
276
|
/**
|
|
269
277
|
* The set of arguments for constructing a Repository resource.
|
|
@@ -272,55 +280,59 @@ export interface RepositoryArgs {
|
|
|
272
280
|
/**
|
|
273
281
|
* BearerToken contains the bearer token used for Git BitBucket Data Center auth at the repo server
|
|
274
282
|
*/
|
|
275
|
-
bearerToken?: pulumi.Input<string>;
|
|
283
|
+
bearerToken?: pulumi.Input<string | undefined>;
|
|
284
|
+
/**
|
|
285
|
+
* Depth specifies the depth for [shallow clones](https://argo-cd.readthedocs.io/en/stable/operator-manual/high_availability/#shallow-clone). A value of `0` means a full clone (the default). Shallow clone depths (`> 0`) are only supported from ArgoCD 3.3.0 onwards.
|
|
286
|
+
*/
|
|
287
|
+
depth?: pulumi.Input<number | undefined>;
|
|
276
288
|
/**
|
|
277
289
|
* Whether `git-lfs` support should be enabled for this repository.
|
|
278
290
|
*/
|
|
279
|
-
enableLfs?: pulumi.Input<boolean>;
|
|
291
|
+
enableLfs?: pulumi.Input<boolean | undefined>;
|
|
280
292
|
/**
|
|
281
293
|
* Whether `helm-oci` support should be enabled for this repository.
|
|
282
294
|
*/
|
|
283
|
-
enableOci?: pulumi.Input<boolean>;
|
|
295
|
+
enableOci?: pulumi.Input<boolean | undefined>;
|
|
284
296
|
/**
|
|
285
297
|
* GitHub API URL for GitHub app authentication.
|
|
286
298
|
*/
|
|
287
|
-
githubappEnterpriseBaseUrl?: pulumi.Input<string>;
|
|
299
|
+
githubappEnterpriseBaseUrl?: pulumi.Input<string | undefined>;
|
|
288
300
|
/**
|
|
289
301
|
* ID of the GitHub app used to access the repo.
|
|
290
302
|
*/
|
|
291
|
-
githubappId?: pulumi.Input<string>;
|
|
303
|
+
githubappId?: pulumi.Input<string | undefined>;
|
|
292
304
|
/**
|
|
293
305
|
* The installation ID of the GitHub App used to access the repo.
|
|
294
306
|
*/
|
|
295
|
-
githubappInstallationId?: pulumi.Input<string>;
|
|
307
|
+
githubappInstallationId?: pulumi.Input<string | undefined>;
|
|
296
308
|
/**
|
|
297
309
|
* Private key data (PEM) for authentication via GitHub app.
|
|
298
310
|
*/
|
|
299
|
-
githubappPrivateKey?: pulumi.Input<string>;
|
|
311
|
+
githubappPrivateKey?: pulumi.Input<string | undefined>;
|
|
300
312
|
/**
|
|
301
313
|
* Whether the connection to the repository ignores any errors when verifying TLS certificates or SSH host keys.
|
|
302
314
|
*/
|
|
303
|
-
insecure?: pulumi.Input<boolean>;
|
|
315
|
+
insecure?: pulumi.Input<boolean | undefined>;
|
|
304
316
|
/**
|
|
305
317
|
* Name to be used for this repo. Only used with Helm repos.
|
|
306
318
|
*/
|
|
307
|
-
name?: pulumi.Input<string>;
|
|
319
|
+
name?: pulumi.Input<string | undefined>;
|
|
308
320
|
/**
|
|
309
321
|
* Comma-separated list of hostnames that should be excluded from proxying.
|
|
310
322
|
*/
|
|
311
|
-
noProxy?: pulumi.Input<string>;
|
|
323
|
+
noProxy?: pulumi.Input<string | undefined>;
|
|
312
324
|
/**
|
|
313
325
|
* Password or PAT used for authenticating at the remote repository.
|
|
314
326
|
*/
|
|
315
|
-
password?: pulumi.Input<string>;
|
|
327
|
+
password?: pulumi.Input<string | undefined>;
|
|
316
328
|
/**
|
|
317
329
|
* The project name, in case the repository is project scoped.
|
|
318
330
|
*/
|
|
319
|
-
project?: pulumi.Input<string>;
|
|
331
|
+
project?: pulumi.Input<string | undefined>;
|
|
320
332
|
/**
|
|
321
333
|
* HTTP/HTTPS proxy to access the repository.
|
|
322
334
|
*/
|
|
323
|
-
proxy?: pulumi.Input<string>;
|
|
335
|
+
proxy?: pulumi.Input<string | undefined>;
|
|
324
336
|
/**
|
|
325
337
|
* URL of the repository.
|
|
326
338
|
*/
|
|
@@ -328,25 +340,26 @@ export interface RepositoryArgs {
|
|
|
328
340
|
/**
|
|
329
341
|
* PEM data for authenticating at the repo server. Only used with Git repos.
|
|
330
342
|
*/
|
|
331
|
-
sshPrivateKey?: pulumi.Input<string>;
|
|
343
|
+
sshPrivateKey?: pulumi.Input<string | undefined>;
|
|
332
344
|
/**
|
|
333
345
|
* TLS client certificate in PEM format for authenticating at the repo server.
|
|
334
346
|
*/
|
|
335
|
-
tlsClientCertData?: pulumi.Input<string>;
|
|
347
|
+
tlsClientCertData?: pulumi.Input<string | undefined>;
|
|
336
348
|
/**
|
|
337
349
|
* TLS client certificate private key in PEM format for authenticating at the repo server.
|
|
338
350
|
*/
|
|
339
|
-
tlsClientCertKey?: pulumi.Input<string>;
|
|
351
|
+
tlsClientCertKey?: pulumi.Input<string | undefined>;
|
|
340
352
|
/**
|
|
341
353
|
* Type of the repo. Can be either `git`, `helm` or `oci`. `git` is assumed if empty or absent.
|
|
342
354
|
*/
|
|
343
|
-
type?: pulumi.Input<string>;
|
|
355
|
+
type?: pulumi.Input<string | undefined>;
|
|
344
356
|
/**
|
|
345
357
|
* Whether `Azure-Workload-identity` should be enabled for this repository.
|
|
346
358
|
*/
|
|
347
|
-
useAzureWorkloadIdentity?: pulumi.Input<boolean>;
|
|
359
|
+
useAzureWorkloadIdentity?: pulumi.Input<boolean | undefined>;
|
|
348
360
|
/**
|
|
349
361
|
* Username used for authenticating at the remote repository.
|
|
350
362
|
*/
|
|
351
|
-
username?: pulumi.Input<string>;
|
|
363
|
+
username?: pulumi.Input<string | undefined>;
|
|
352
364
|
}
|
|
365
|
+
//# sourceMappingURL=repository.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"repository.d.ts","sourceRoot":"","sources":["../repository.ts"],"names":[],"mappings":"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"}
|
package/repository.js
CHANGED
|
@@ -1,10 +1,33 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5
|
+
if (k2 === undefined) k2 = k;
|
|
6
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
7
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
8
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
9
|
+
}
|
|
10
|
+
Object.defineProperty(o, k2, desc);
|
|
11
|
+
}) : (function(o, m, k, k2) {
|
|
12
|
+
if (k2 === undefined) k2 = k;
|
|
13
|
+
o[k2] = m[k];
|
|
14
|
+
}));
|
|
15
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
16
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
17
|
+
}) : function(o, v) {
|
|
18
|
+
o["default"] = v;
|
|
19
|
+
});
|
|
20
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
21
|
+
if (mod && mod.__esModule) return mod;
|
|
22
|
+
var result = {};
|
|
23
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
24
|
+
__setModuleDefault(result, mod);
|
|
25
|
+
return result;
|
|
26
|
+
};
|
|
4
27
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
28
|
exports.Repository = void 0;
|
|
6
|
-
const pulumi = require("@pulumi/pulumi");
|
|
7
|
-
const utilities = require("./utilities");
|
|
29
|
+
const pulumi = __importStar(require("@pulumi/pulumi"));
|
|
30
|
+
const utilities = __importStar(require("./utilities"));
|
|
8
31
|
/**
|
|
9
32
|
* Manages [repositories](https://argo-cd.readthedocs.io/en/stable/operator-manual/declarative-setup/#repositories) within ArgoCD.
|
|
10
33
|
*
|
|
@@ -78,6 +101,8 @@ class Repository extends pulumi.CustomResource {
|
|
|
78
101
|
static get(name, id, state, opts) {
|
|
79
102
|
return new Repository(name, state, { ...opts, id: id });
|
|
80
103
|
}
|
|
104
|
+
/** @internal */
|
|
105
|
+
static __pulumiType = 'argocd:index/repository:Repository';
|
|
81
106
|
/**
|
|
82
107
|
* Returns true if the given object is an instance of Repository. This is designed to work even
|
|
83
108
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
@@ -95,6 +120,7 @@ class Repository extends pulumi.CustomResource {
|
|
|
95
120
|
const state = argsOrState;
|
|
96
121
|
resourceInputs["bearerToken"] = state?.bearerToken;
|
|
97
122
|
resourceInputs["connectionStateStatus"] = state?.connectionStateStatus;
|
|
123
|
+
resourceInputs["depth"] = state?.depth;
|
|
98
124
|
resourceInputs["enableLfs"] = state?.enableLfs;
|
|
99
125
|
resourceInputs["enableOci"] = state?.enableOci;
|
|
100
126
|
resourceInputs["githubappEnterpriseBaseUrl"] = state?.githubappEnterpriseBaseUrl;
|
|
@@ -122,6 +148,7 @@ class Repository extends pulumi.CustomResource {
|
|
|
122
148
|
throw new Error("Missing required property 'repo'");
|
|
123
149
|
}
|
|
124
150
|
resourceInputs["bearerToken"] = args?.bearerToken ? pulumi.secret(args.bearerToken) : undefined;
|
|
151
|
+
resourceInputs["depth"] = args?.depth;
|
|
125
152
|
resourceInputs["enableLfs"] = args?.enableLfs;
|
|
126
153
|
resourceInputs["enableOci"] = args?.enableOci;
|
|
127
154
|
resourceInputs["githubappEnterpriseBaseUrl"] = args?.githubappEnterpriseBaseUrl;
|
|
@@ -151,6 +178,4 @@ class Repository extends pulumi.CustomResource {
|
|
|
151
178
|
}
|
|
152
179
|
}
|
|
153
180
|
exports.Repository = Repository;
|
|
154
|
-
/** @internal */
|
|
155
|
-
Repository.__pulumiType = 'argocd:index/repository:Repository';
|
|
156
181
|
//# sourceMappingURL=repository.js.map
|
package/repository.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"repository.js","sourceRoot":"","sources":["../repository.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF
|
|
1
|
+
{"version":3,"file":"repository.js","sourceRoot":"","sources":["../repository.ts"],"names":[],"mappings":"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"}
|
|
@@ -63,11 +63,11 @@ export interface RepositoryCertificateState {
|
|
|
63
63
|
/**
|
|
64
64
|
* HTTPS certificate configuration
|
|
65
65
|
*/
|
|
66
|
-
https?: pulumi.Input<pulumi.Input<inputs.RepositoryCertificateHttp>[]>;
|
|
66
|
+
https?: pulumi.Input<pulumi.Input<inputs.RepositoryCertificateHttp>[] | undefined>;
|
|
67
67
|
/**
|
|
68
68
|
* SSH certificate configuration
|
|
69
69
|
*/
|
|
70
|
-
sshes?: pulumi.Input<pulumi.Input<inputs.RepositoryCertificateSsh>[]>;
|
|
70
|
+
sshes?: pulumi.Input<pulumi.Input<inputs.RepositoryCertificateSsh>[] | undefined>;
|
|
71
71
|
}
|
|
72
72
|
/**
|
|
73
73
|
* The set of arguments for constructing a RepositoryCertificate resource.
|
|
@@ -76,9 +76,10 @@ export interface RepositoryCertificateArgs {
|
|
|
76
76
|
/**
|
|
77
77
|
* HTTPS certificate configuration
|
|
78
78
|
*/
|
|
79
|
-
https?: pulumi.Input<pulumi.Input<inputs.RepositoryCertificateHttp>[]>;
|
|
79
|
+
https?: pulumi.Input<pulumi.Input<inputs.RepositoryCertificateHttp>[] | undefined>;
|
|
80
80
|
/**
|
|
81
81
|
* SSH certificate configuration
|
|
82
82
|
*/
|
|
83
|
-
sshes?: pulumi.Input<pulumi.Input<inputs.RepositoryCertificateSsh>[]>;
|
|
83
|
+
sshes?: pulumi.Input<pulumi.Input<inputs.RepositoryCertificateSsh>[] | undefined>;
|
|
84
84
|
}
|
|
85
|
+
//# sourceMappingURL=repositoryCertificate.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"repositoryCertificate.d.ts","sourceRoot":"","sources":["../repositoryCertificate.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AACzC,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AACxC,OAAO,KAAK,OAAO,MAAM,gBAAgB,CAAC;AAG1C;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,qBAAa,qBAAsB,SAAQ,MAAM,CAAC,cAAc;IAC5D;;;;;;;;OAQG;WACW,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC,EAAE,KAAK,CAAC,EAAE,0BAA0B,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB,GAAG,qBAAqB;IAO5J;;;OAGG;WACW,UAAU,CAAC,GAAG,EAAE,GAAG,GAAG,GAAG,IAAI,qBAAqB;IAOhE;;OAEG;IACH,SAAwB,KAAK,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,yBAAyB,EAAE,GAAG,SAAS,CAAC,CAAC;IAC9F;;OAEG;IACH,SAAwB,KAAK,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,wBAAwB,EAAE,GAAG,SAAS,CAAC,CAAC;IAE7F;;;;;;OAMG;gBACS,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,yBAAyB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB;CAgBlG;AAED;;GAEG;AACH,MAAM,WAAW,0BAA0B;IACvC;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,yBAAyB,CAAC,EAAE,GAAG,SAAS,CAAC,CAAC;IACnF;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,wBAAwB,CAAC,EAAE,GAAG,SAAS,CAAC,CAAC;CACrF;AAED;;GAEG;AACH,MAAM,WAAW,yBAAyB;IACtC;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,yBAAyB,CAAC,EAAE,GAAG,SAAS,CAAC,CAAC;IACnF;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,wBAAwB,CAAC,EAAE,GAAG,SAAS,CAAC,CAAC;CACrF"}
|
package/repositoryCertificate.js
CHANGED
|
@@ -1,10 +1,33 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5
|
+
if (k2 === undefined) k2 = k;
|
|
6
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
7
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
8
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
9
|
+
}
|
|
10
|
+
Object.defineProperty(o, k2, desc);
|
|
11
|
+
}) : (function(o, m, k, k2) {
|
|
12
|
+
if (k2 === undefined) k2 = k;
|
|
13
|
+
o[k2] = m[k];
|
|
14
|
+
}));
|
|
15
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
16
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
17
|
+
}) : function(o, v) {
|
|
18
|
+
o["default"] = v;
|
|
19
|
+
});
|
|
20
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
21
|
+
if (mod && mod.__esModule) return mod;
|
|
22
|
+
var result = {};
|
|
23
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
24
|
+
__setModuleDefault(result, mod);
|
|
25
|
+
return result;
|
|
26
|
+
};
|
|
4
27
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
28
|
exports.RepositoryCertificate = void 0;
|
|
6
|
-
const pulumi = require("@pulumi/pulumi");
|
|
7
|
-
const utilities = require("./utilities");
|
|
29
|
+
const pulumi = __importStar(require("@pulumi/pulumi"));
|
|
30
|
+
const utilities = __importStar(require("./utilities"));
|
|
8
31
|
/**
|
|
9
32
|
* Manages [custom TLS certificates](https://argo-cd.readthedocs.io/en/stable/user-guide/private-repositories/#self-signed-untrusted-tls-certificates) used by ArgoCD for connecting Git repositories.
|
|
10
33
|
*
|
|
@@ -40,6 +63,8 @@ class RepositoryCertificate extends pulumi.CustomResource {
|
|
|
40
63
|
static get(name, id, state, opts) {
|
|
41
64
|
return new RepositoryCertificate(name, state, { ...opts, id: id });
|
|
42
65
|
}
|
|
66
|
+
/** @internal */
|
|
67
|
+
static __pulumiType = 'argocd:index/repositoryCertificate:RepositoryCertificate';
|
|
43
68
|
/**
|
|
44
69
|
* Returns true if the given object is an instance of RepositoryCertificate. This is designed to work even
|
|
45
70
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
@@ -68,6 +93,4 @@ class RepositoryCertificate extends pulumi.CustomResource {
|
|
|
68
93
|
}
|
|
69
94
|
}
|
|
70
95
|
exports.RepositoryCertificate = RepositoryCertificate;
|
|
71
|
-
/** @internal */
|
|
72
|
-
RepositoryCertificate.__pulumiType = 'argocd:index/repositoryCertificate:RepositoryCertificate';
|
|
73
96
|
//# sourceMappingURL=repositoryCertificate.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"repositoryCertificate.js","sourceRoot":"","sources":["../repositoryCertificate.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF
|
|
1
|
+
{"version":3,"file":"repositoryCertificate.js","sourceRoot":"","sources":["../repositoryCertificate.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AAGzC,uDAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,MAAa,qBAAsB,SAAQ,MAAM,CAAC,cAAc;IAC5D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAkC,EAAE,IAAmC;QAChI,OAAO,IAAI,qBAAqB,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC5E,CAAC;IAED,gBAAgB;IACT,MAAM,CAAU,YAAY,GAAG,0DAA0D,CAAC;IAEjG;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,qBAAqB,CAAC,YAAY,CAAC;IACtE,CAAC;IAmBD,YAAY,IAAY,EAAE,WAAoE,EAAE,IAAmC;QAC/H,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAqD,CAAC;YACpE,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;YACvC,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;SAC1C;aAAM;YACH,MAAM,IAAI,GAAG,WAAoD,CAAC;YAClE,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,EAAE,KAAK,CAAC;YACtC,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,EAAE,KAAK,CAAC;SACzC;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,qBAAqB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC1E,CAAC;;AA3DL,sDA4DC"}
|
|
@@ -119,55 +119,55 @@ export interface RepositoryCredentialsState {
|
|
|
119
119
|
/**
|
|
120
120
|
* Whether `helm-oci` support should be enabled for this repo. Can only be set to `true` when `type` is `helm`.
|
|
121
121
|
*/
|
|
122
|
-
enableOci?: pulumi.Input<boolean>;
|
|
122
|
+
enableOci?: pulumi.Input<boolean | undefined>;
|
|
123
123
|
/**
|
|
124
124
|
* GitHub API URL for GitHub app authentication
|
|
125
125
|
*/
|
|
126
|
-
githubappEnterpriseBaseUrl?: pulumi.Input<string>;
|
|
126
|
+
githubappEnterpriseBaseUrl?: pulumi.Input<string | undefined>;
|
|
127
127
|
/**
|
|
128
128
|
* GitHub App ID of the app used to access the repo for GitHub app authentication
|
|
129
129
|
*/
|
|
130
|
-
githubappId?: pulumi.Input<string>;
|
|
130
|
+
githubappId?: pulumi.Input<string | undefined>;
|
|
131
131
|
/**
|
|
132
132
|
* ID of the installed GitHub App for GitHub app authentication
|
|
133
133
|
*/
|
|
134
|
-
githubappInstallationId?: pulumi.Input<string>;
|
|
134
|
+
githubappInstallationId?: pulumi.Input<string | undefined>;
|
|
135
135
|
/**
|
|
136
136
|
* Private key data (PEM) for authentication via GitHub app
|
|
137
137
|
*/
|
|
138
|
-
githubappPrivateKey?: pulumi.Input<string>;
|
|
138
|
+
githubappPrivateKey?: pulumi.Input<string | undefined>;
|
|
139
139
|
/**
|
|
140
140
|
* Password for authenticating at the repo server
|
|
141
141
|
*/
|
|
142
|
-
password?: pulumi.Input<string>;
|
|
142
|
+
password?: pulumi.Input<string | undefined>;
|
|
143
143
|
/**
|
|
144
144
|
* Private key data for authenticating at the repo server using SSH (only Git repos)
|
|
145
145
|
*/
|
|
146
|
-
sshPrivateKey?: pulumi.Input<string>;
|
|
146
|
+
sshPrivateKey?: pulumi.Input<string | undefined>;
|
|
147
147
|
/**
|
|
148
148
|
* TLS client cert data for authenticating at the repo server
|
|
149
149
|
*/
|
|
150
|
-
tlsClientCertData?: pulumi.Input<string>;
|
|
150
|
+
tlsClientCertData?: pulumi.Input<string | undefined>;
|
|
151
151
|
/**
|
|
152
152
|
* TLS client cert key for authenticating at the repo server
|
|
153
153
|
*/
|
|
154
|
-
tlsClientCertKey?: pulumi.Input<string>;
|
|
154
|
+
tlsClientCertKey?: pulumi.Input<string | undefined>;
|
|
155
155
|
/**
|
|
156
156
|
* Type of the repository credentials. Can be either `git`, `oci` or `helm`. `git` is assumed if empty or absent.
|
|
157
157
|
*/
|
|
158
|
-
type?: pulumi.Input<string>;
|
|
158
|
+
type?: pulumi.Input<string | undefined>;
|
|
159
159
|
/**
|
|
160
160
|
* URL that these credentials match to
|
|
161
161
|
*/
|
|
162
|
-
url?: pulumi.Input<string>;
|
|
162
|
+
url?: pulumi.Input<string | undefined>;
|
|
163
163
|
/**
|
|
164
164
|
* Whether `Azure-Workload-identity` should be enabled for this repository.
|
|
165
165
|
*/
|
|
166
|
-
useAzureWorkloadIdentity?: pulumi.Input<boolean>;
|
|
166
|
+
useAzureWorkloadIdentity?: pulumi.Input<boolean | undefined>;
|
|
167
167
|
/**
|
|
168
168
|
* Username for authenticating at the repo server
|
|
169
169
|
*/
|
|
170
|
-
username?: pulumi.Input<string>;
|
|
170
|
+
username?: pulumi.Input<string | undefined>;
|
|
171
171
|
}
|
|
172
172
|
/**
|
|
173
173
|
* The set of arguments for constructing a RepositoryCredentials resource.
|
|
@@ -176,43 +176,43 @@ export interface RepositoryCredentialsArgs {
|
|
|
176
176
|
/**
|
|
177
177
|
* Whether `helm-oci` support should be enabled for this repo. Can only be set to `true` when `type` is `helm`.
|
|
178
178
|
*/
|
|
179
|
-
enableOci?: pulumi.Input<boolean>;
|
|
179
|
+
enableOci?: pulumi.Input<boolean | undefined>;
|
|
180
180
|
/**
|
|
181
181
|
* GitHub API URL for GitHub app authentication
|
|
182
182
|
*/
|
|
183
|
-
githubappEnterpriseBaseUrl?: pulumi.Input<string>;
|
|
183
|
+
githubappEnterpriseBaseUrl?: pulumi.Input<string | undefined>;
|
|
184
184
|
/**
|
|
185
185
|
* GitHub App ID of the app used to access the repo for GitHub app authentication
|
|
186
186
|
*/
|
|
187
|
-
githubappId?: pulumi.Input<string>;
|
|
187
|
+
githubappId?: pulumi.Input<string | undefined>;
|
|
188
188
|
/**
|
|
189
189
|
* ID of the installed GitHub App for GitHub app authentication
|
|
190
190
|
*/
|
|
191
|
-
githubappInstallationId?: pulumi.Input<string>;
|
|
191
|
+
githubappInstallationId?: pulumi.Input<string | undefined>;
|
|
192
192
|
/**
|
|
193
193
|
* Private key data (PEM) for authentication via GitHub app
|
|
194
194
|
*/
|
|
195
|
-
githubappPrivateKey?: pulumi.Input<string>;
|
|
195
|
+
githubappPrivateKey?: pulumi.Input<string | undefined>;
|
|
196
196
|
/**
|
|
197
197
|
* Password for authenticating at the repo server
|
|
198
198
|
*/
|
|
199
|
-
password?: pulumi.Input<string>;
|
|
199
|
+
password?: pulumi.Input<string | undefined>;
|
|
200
200
|
/**
|
|
201
201
|
* Private key data for authenticating at the repo server using SSH (only Git repos)
|
|
202
202
|
*/
|
|
203
|
-
sshPrivateKey?: pulumi.Input<string>;
|
|
203
|
+
sshPrivateKey?: pulumi.Input<string | undefined>;
|
|
204
204
|
/**
|
|
205
205
|
* TLS client cert data for authenticating at the repo server
|
|
206
206
|
*/
|
|
207
|
-
tlsClientCertData?: pulumi.Input<string>;
|
|
207
|
+
tlsClientCertData?: pulumi.Input<string | undefined>;
|
|
208
208
|
/**
|
|
209
209
|
* TLS client cert key for authenticating at the repo server
|
|
210
210
|
*/
|
|
211
|
-
tlsClientCertKey?: pulumi.Input<string>;
|
|
211
|
+
tlsClientCertKey?: pulumi.Input<string | undefined>;
|
|
212
212
|
/**
|
|
213
213
|
* Type of the repository credentials. Can be either `git`, `oci` or `helm`. `git` is assumed if empty or absent.
|
|
214
214
|
*/
|
|
215
|
-
type?: pulumi.Input<string>;
|
|
215
|
+
type?: pulumi.Input<string | undefined>;
|
|
216
216
|
/**
|
|
217
217
|
* URL that these credentials match to
|
|
218
218
|
*/
|
|
@@ -220,9 +220,10 @@ export interface RepositoryCredentialsArgs {
|
|
|
220
220
|
/**
|
|
221
221
|
* Whether `Azure-Workload-identity` should be enabled for this repository.
|
|
222
222
|
*/
|
|
223
|
-
useAzureWorkloadIdentity?: pulumi.Input<boolean>;
|
|
223
|
+
useAzureWorkloadIdentity?: pulumi.Input<boolean | undefined>;
|
|
224
224
|
/**
|
|
225
225
|
* Username for authenticating at the repo server
|
|
226
226
|
*/
|
|
227
|
-
username?: pulumi.Input<string>;
|
|
227
|
+
username?: pulumi.Input<string | undefined>;
|
|
228
228
|
}
|
|
229
|
+
//# sourceMappingURL=repositoryCredentials.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"repositoryCredentials.d.ts","sourceRoot":"","sources":["../repositoryCredentials.ts"],"names":[],"mappings":"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"}
|