qovery-typescript-axios 1.1.893 → 1.1.894
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/api.ts +38 -0
- package/dist/api.d.ts +38 -0
- package/dist/esm/api.d.ts +38 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -10360,6 +10360,12 @@ export interface EksInfrastructureOutputs {
|
|
|
10360
10360
|
* @memberof EksInfrastructureOutputs
|
|
10361
10361
|
*/
|
|
10362
10362
|
'vpc_id': string;
|
|
10363
|
+
/**
|
|
10364
|
+
*
|
|
10365
|
+
* @type {EksInfrastructureOutputsExternalSecretsAutomaticAuthentication}
|
|
10366
|
+
* @memberof EksInfrastructureOutputs
|
|
10367
|
+
*/
|
|
10368
|
+
'external_secrets_automatic_authentication'?: EksInfrastructureOutputsExternalSecretsAutomaticAuthentication | null;
|
|
10363
10369
|
}
|
|
10364
10370
|
|
|
10365
10371
|
export const EksInfrastructureOutputsKindEnum = {
|
|
@@ -10368,6 +10374,19 @@ export const EksInfrastructureOutputsKindEnum = {
|
|
|
10368
10374
|
|
|
10369
10375
|
export type EksInfrastructureOutputsKindEnum = typeof EksInfrastructureOutputsKindEnum[keyof typeof EksInfrastructureOutputsKindEnum];
|
|
10370
10376
|
|
|
10377
|
+
/**
|
|
10378
|
+
*
|
|
10379
|
+
* @export
|
|
10380
|
+
* @interface EksInfrastructureOutputsExternalSecretsAutomaticAuthentication
|
|
10381
|
+
*/
|
|
10382
|
+
export interface EksInfrastructureOutputsExternalSecretsAutomaticAuthentication {
|
|
10383
|
+
/**
|
|
10384
|
+
* ARN of the IAM role used by External Secrets Operator on EKS
|
|
10385
|
+
* @type {string}
|
|
10386
|
+
* @memberof EksInfrastructureOutputsExternalSecretsAutomaticAuthentication
|
|
10387
|
+
*/
|
|
10388
|
+
'eks_role_arn': string;
|
|
10389
|
+
}
|
|
10371
10390
|
/**
|
|
10372
10391
|
*
|
|
10373
10392
|
* @export
|
|
@@ -12781,6 +12800,12 @@ export interface GkeInfrastructureOutputs {
|
|
|
12781
12800
|
* @memberof GkeInfrastructureOutputs
|
|
12782
12801
|
*/
|
|
12783
12802
|
'cluster_self_link': string;
|
|
12803
|
+
/**
|
|
12804
|
+
*
|
|
12805
|
+
* @type {GkeInfrastructureOutputsExternalSecretsAutomaticAuthentication}
|
|
12806
|
+
* @memberof GkeInfrastructureOutputs
|
|
12807
|
+
*/
|
|
12808
|
+
'external_secrets_automatic_authentication'?: GkeInfrastructureOutputsExternalSecretsAutomaticAuthentication | null;
|
|
12784
12809
|
}
|
|
12785
12810
|
|
|
12786
12811
|
export const GkeInfrastructureOutputsKindEnum = {
|
|
@@ -12789,6 +12814,19 @@ export const GkeInfrastructureOutputsKindEnum = {
|
|
|
12789
12814
|
|
|
12790
12815
|
export type GkeInfrastructureOutputsKindEnum = typeof GkeInfrastructureOutputsKindEnum[keyof typeof GkeInfrastructureOutputsKindEnum];
|
|
12791
12816
|
|
|
12817
|
+
/**
|
|
12818
|
+
*
|
|
12819
|
+
* @export
|
|
12820
|
+
* @interface GkeInfrastructureOutputsExternalSecretsAutomaticAuthentication
|
|
12821
|
+
*/
|
|
12822
|
+
export interface GkeInfrastructureOutputsExternalSecretsAutomaticAuthentication {
|
|
12823
|
+
/**
|
|
12824
|
+
* GCP service account email used by External Secrets Operator on GKE
|
|
12825
|
+
* @type {string}
|
|
12826
|
+
* @memberof GkeInfrastructureOutputsExternalSecretsAutomaticAuthentication
|
|
12827
|
+
*/
|
|
12828
|
+
'gke_service_account': string;
|
|
12829
|
+
}
|
|
12792
12830
|
/**
|
|
12793
12831
|
*
|
|
12794
12832
|
* @export
|
package/dist/api.d.ts
CHANGED
|
@@ -10042,11 +10042,30 @@ export interface EksInfrastructureOutputs {
|
|
|
10042
10042
|
* @memberof EksInfrastructureOutputs
|
|
10043
10043
|
*/
|
|
10044
10044
|
'vpc_id': string;
|
|
10045
|
+
/**
|
|
10046
|
+
*
|
|
10047
|
+
* @type {EksInfrastructureOutputsExternalSecretsAutomaticAuthentication}
|
|
10048
|
+
* @memberof EksInfrastructureOutputs
|
|
10049
|
+
*/
|
|
10050
|
+
'external_secrets_automatic_authentication'?: EksInfrastructureOutputsExternalSecretsAutomaticAuthentication | null;
|
|
10045
10051
|
}
|
|
10046
10052
|
export declare const EksInfrastructureOutputsKindEnum: {
|
|
10047
10053
|
readonly EKS: "EKS";
|
|
10048
10054
|
};
|
|
10049
10055
|
export type EksInfrastructureOutputsKindEnum = typeof EksInfrastructureOutputsKindEnum[keyof typeof EksInfrastructureOutputsKindEnum];
|
|
10056
|
+
/**
|
|
10057
|
+
*
|
|
10058
|
+
* @export
|
|
10059
|
+
* @interface EksInfrastructureOutputsExternalSecretsAutomaticAuthentication
|
|
10060
|
+
*/
|
|
10061
|
+
export interface EksInfrastructureOutputsExternalSecretsAutomaticAuthentication {
|
|
10062
|
+
/**
|
|
10063
|
+
* ARN of the IAM role used by External Secrets Operator on EKS
|
|
10064
|
+
* @type {string}
|
|
10065
|
+
* @memberof EksInfrastructureOutputsExternalSecretsAutomaticAuthentication
|
|
10066
|
+
*/
|
|
10067
|
+
'eks_role_arn': string;
|
|
10068
|
+
}
|
|
10050
10069
|
/**
|
|
10051
10070
|
*
|
|
10052
10071
|
* @export
|
|
@@ -12382,11 +12401,30 @@ export interface GkeInfrastructureOutputs {
|
|
|
12382
12401
|
* @memberof GkeInfrastructureOutputs
|
|
12383
12402
|
*/
|
|
12384
12403
|
'cluster_self_link': string;
|
|
12404
|
+
/**
|
|
12405
|
+
*
|
|
12406
|
+
* @type {GkeInfrastructureOutputsExternalSecretsAutomaticAuthentication}
|
|
12407
|
+
* @memberof GkeInfrastructureOutputs
|
|
12408
|
+
*/
|
|
12409
|
+
'external_secrets_automatic_authentication'?: GkeInfrastructureOutputsExternalSecretsAutomaticAuthentication | null;
|
|
12385
12410
|
}
|
|
12386
12411
|
export declare const GkeInfrastructureOutputsKindEnum: {
|
|
12387
12412
|
readonly GKE: "GKE";
|
|
12388
12413
|
};
|
|
12389
12414
|
export type GkeInfrastructureOutputsKindEnum = typeof GkeInfrastructureOutputsKindEnum[keyof typeof GkeInfrastructureOutputsKindEnum];
|
|
12415
|
+
/**
|
|
12416
|
+
*
|
|
12417
|
+
* @export
|
|
12418
|
+
* @interface GkeInfrastructureOutputsExternalSecretsAutomaticAuthentication
|
|
12419
|
+
*/
|
|
12420
|
+
export interface GkeInfrastructureOutputsExternalSecretsAutomaticAuthentication {
|
|
12421
|
+
/**
|
|
12422
|
+
* GCP service account email used by External Secrets Operator on GKE
|
|
12423
|
+
* @type {string}
|
|
12424
|
+
* @memberof GkeInfrastructureOutputsExternalSecretsAutomaticAuthentication
|
|
12425
|
+
*/
|
|
12426
|
+
'gke_service_account': string;
|
|
12427
|
+
}
|
|
12390
12428
|
/**
|
|
12391
12429
|
*
|
|
12392
12430
|
* @export
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -10042,11 +10042,30 @@ export interface EksInfrastructureOutputs {
|
|
|
10042
10042
|
* @memberof EksInfrastructureOutputs
|
|
10043
10043
|
*/
|
|
10044
10044
|
'vpc_id': string;
|
|
10045
|
+
/**
|
|
10046
|
+
*
|
|
10047
|
+
* @type {EksInfrastructureOutputsExternalSecretsAutomaticAuthentication}
|
|
10048
|
+
* @memberof EksInfrastructureOutputs
|
|
10049
|
+
*/
|
|
10050
|
+
'external_secrets_automatic_authentication'?: EksInfrastructureOutputsExternalSecretsAutomaticAuthentication | null;
|
|
10045
10051
|
}
|
|
10046
10052
|
export declare const EksInfrastructureOutputsKindEnum: {
|
|
10047
10053
|
readonly EKS: "EKS";
|
|
10048
10054
|
};
|
|
10049
10055
|
export type EksInfrastructureOutputsKindEnum = typeof EksInfrastructureOutputsKindEnum[keyof typeof EksInfrastructureOutputsKindEnum];
|
|
10056
|
+
/**
|
|
10057
|
+
*
|
|
10058
|
+
* @export
|
|
10059
|
+
* @interface EksInfrastructureOutputsExternalSecretsAutomaticAuthentication
|
|
10060
|
+
*/
|
|
10061
|
+
export interface EksInfrastructureOutputsExternalSecretsAutomaticAuthentication {
|
|
10062
|
+
/**
|
|
10063
|
+
* ARN of the IAM role used by External Secrets Operator on EKS
|
|
10064
|
+
* @type {string}
|
|
10065
|
+
* @memberof EksInfrastructureOutputsExternalSecretsAutomaticAuthentication
|
|
10066
|
+
*/
|
|
10067
|
+
'eks_role_arn': string;
|
|
10068
|
+
}
|
|
10050
10069
|
/**
|
|
10051
10070
|
*
|
|
10052
10071
|
* @export
|
|
@@ -12382,11 +12401,30 @@ export interface GkeInfrastructureOutputs {
|
|
|
12382
12401
|
* @memberof GkeInfrastructureOutputs
|
|
12383
12402
|
*/
|
|
12384
12403
|
'cluster_self_link': string;
|
|
12404
|
+
/**
|
|
12405
|
+
*
|
|
12406
|
+
* @type {GkeInfrastructureOutputsExternalSecretsAutomaticAuthentication}
|
|
12407
|
+
* @memberof GkeInfrastructureOutputs
|
|
12408
|
+
*/
|
|
12409
|
+
'external_secrets_automatic_authentication'?: GkeInfrastructureOutputsExternalSecretsAutomaticAuthentication | null;
|
|
12385
12410
|
}
|
|
12386
12411
|
export declare const GkeInfrastructureOutputsKindEnum: {
|
|
12387
12412
|
readonly GKE: "GKE";
|
|
12388
12413
|
};
|
|
12389
12414
|
export type GkeInfrastructureOutputsKindEnum = typeof GkeInfrastructureOutputsKindEnum[keyof typeof GkeInfrastructureOutputsKindEnum];
|
|
12415
|
+
/**
|
|
12416
|
+
*
|
|
12417
|
+
* @export
|
|
12418
|
+
* @interface GkeInfrastructureOutputsExternalSecretsAutomaticAuthentication
|
|
12419
|
+
*/
|
|
12420
|
+
export interface GkeInfrastructureOutputsExternalSecretsAutomaticAuthentication {
|
|
12421
|
+
/**
|
|
12422
|
+
* GCP service account email used by External Secrets Operator on GKE
|
|
12423
|
+
* @type {string}
|
|
12424
|
+
* @memberof GkeInfrastructureOutputsExternalSecretsAutomaticAuthentication
|
|
12425
|
+
*/
|
|
12426
|
+
'gke_service_account': string;
|
|
12427
|
+
}
|
|
12390
12428
|
/**
|
|
12391
12429
|
*
|
|
12392
12430
|
* @export
|