qovery-typescript-axios 1.1.873 → 1.1.875
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 +15 -2
- package/dist/api.d.ts +14 -1
- package/dist/api.js +3 -2
- package/dist/esm/api.d.ts +14 -1
- package/dist/esm/api.js +3 -2
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -44,7 +44,7 @@ export type APIVariableScopeEnum = typeof APIVariableScopeEnum[keyof typeof APIV
|
|
|
44
44
|
|
|
45
45
|
|
|
46
46
|
/**
|
|
47
|
-
* type of the environment variable (VALUE, FILE, ALIAS, OVERRIDE
|
|
47
|
+
* type of the environment variable (VALUE, FILE, ALIAS, OVERRIDE, BUIT_IN, EXTERNAL_SECRET)
|
|
48
48
|
* @export
|
|
49
49
|
* @enum {string}
|
|
50
50
|
*/
|
|
@@ -54,7 +54,8 @@ export const APIVariableTypeEnum = {
|
|
|
54
54
|
ALIAS: 'ALIAS',
|
|
55
55
|
OVERRIDE: 'OVERRIDE',
|
|
56
56
|
BUILT_IN: 'BUILT_IN',
|
|
57
|
-
FILE: 'FILE'
|
|
57
|
+
FILE: 'FILE',
|
|
58
|
+
EXTERNAL_SECRET: 'EXTERNAL_SECRET'
|
|
58
59
|
} as const;
|
|
59
60
|
|
|
60
61
|
export type APIVariableTypeEnum = typeof APIVariableTypeEnum[keyof typeof APIVariableTypeEnum];
|
|
@@ -2099,6 +2100,18 @@ export interface ArgoCdInstanceMappingResponse {
|
|
|
2099
2100
|
* @memberof ArgoCdInstanceMappingResponse
|
|
2100
2101
|
*/
|
|
2101
2102
|
'agent_cluster_id': string;
|
|
2103
|
+
/**
|
|
2104
|
+
* Display name of the Qovery cluster where the ArgoCD instance is running
|
|
2105
|
+
* @type {string}
|
|
2106
|
+
* @memberof ArgoCdInstanceMappingResponse
|
|
2107
|
+
*/
|
|
2108
|
+
'agent_cluster_name': string;
|
|
2109
|
+
/**
|
|
2110
|
+
*
|
|
2111
|
+
* @type {CloudVendorEnum}
|
|
2112
|
+
* @memberof ArgoCdInstanceMappingResponse
|
|
2113
|
+
*/
|
|
2114
|
+
'agent_cluster_cloud_provider': CloudVendorEnum;
|
|
2102
2115
|
/**
|
|
2103
2116
|
* ID of the stored ArgoCD credentials for this instance
|
|
2104
2117
|
* @type {string}
|
package/dist/api.d.ts
CHANGED
|
@@ -30,7 +30,7 @@ export declare const APIVariableScopeEnum: {
|
|
|
30
30
|
};
|
|
31
31
|
export type APIVariableScopeEnum = typeof APIVariableScopeEnum[keyof typeof APIVariableScopeEnum];
|
|
32
32
|
/**
|
|
33
|
-
* type of the environment variable (VALUE, FILE, ALIAS, OVERRIDE
|
|
33
|
+
* type of the environment variable (VALUE, FILE, ALIAS, OVERRIDE, BUIT_IN, EXTERNAL_SECRET)
|
|
34
34
|
* @export
|
|
35
35
|
* @enum {string}
|
|
36
36
|
*/
|
|
@@ -40,6 +40,7 @@ export declare const APIVariableTypeEnum: {
|
|
|
40
40
|
readonly OVERRIDE: "OVERRIDE";
|
|
41
41
|
readonly BUILT_IN: "BUILT_IN";
|
|
42
42
|
readonly FILE: "FILE";
|
|
43
|
+
readonly EXTERNAL_SECRET: "EXTERNAL_SECRET";
|
|
43
44
|
};
|
|
44
45
|
export type APIVariableTypeEnum = typeof APIVariableTypeEnum[keyof typeof APIVariableTypeEnum];
|
|
45
46
|
/**
|
|
@@ -2016,6 +2017,18 @@ export interface ArgoCdInstanceMappingResponse {
|
|
|
2016
2017
|
* @memberof ArgoCdInstanceMappingResponse
|
|
2017
2018
|
*/
|
|
2018
2019
|
'agent_cluster_id': string;
|
|
2020
|
+
/**
|
|
2021
|
+
* Display name of the Qovery cluster where the ArgoCD instance is running
|
|
2022
|
+
* @type {string}
|
|
2023
|
+
* @memberof ArgoCdInstanceMappingResponse
|
|
2024
|
+
*/
|
|
2025
|
+
'agent_cluster_name': string;
|
|
2026
|
+
/**
|
|
2027
|
+
*
|
|
2028
|
+
* @type {CloudVendorEnum}
|
|
2029
|
+
* @memberof ArgoCdInstanceMappingResponse
|
|
2030
|
+
*/
|
|
2031
|
+
'agent_cluster_cloud_provider': CloudVendorEnum;
|
|
2019
2032
|
/**
|
|
2020
2033
|
* ID of the stored ArgoCD credentials for this instance
|
|
2021
2034
|
* @type {string}
|
package/dist/api.js
CHANGED
|
@@ -55,7 +55,7 @@ exports.APIVariableScopeEnum = {
|
|
|
55
55
|
TERRAFORM: 'TERRAFORM'
|
|
56
56
|
};
|
|
57
57
|
/**
|
|
58
|
-
* type of the environment variable (VALUE, FILE, ALIAS, OVERRIDE
|
|
58
|
+
* type of the environment variable (VALUE, FILE, ALIAS, OVERRIDE, BUIT_IN, EXTERNAL_SECRET)
|
|
59
59
|
* @export
|
|
60
60
|
* @enum {string}
|
|
61
61
|
*/
|
|
@@ -64,7 +64,8 @@ exports.APIVariableTypeEnum = {
|
|
|
64
64
|
ALIAS: 'ALIAS',
|
|
65
65
|
OVERRIDE: 'OVERRIDE',
|
|
66
66
|
BUILT_IN: 'BUILT_IN',
|
|
67
|
-
FILE: 'FILE'
|
|
67
|
+
FILE: 'FILE',
|
|
68
|
+
EXTERNAL_SECRET: 'EXTERNAL_SECRET'
|
|
68
69
|
};
|
|
69
70
|
exports.AksInfrastructureOutputsKindEnum = {
|
|
70
71
|
AKS: 'AKS'
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -30,7 +30,7 @@ export declare const APIVariableScopeEnum: {
|
|
|
30
30
|
};
|
|
31
31
|
export type APIVariableScopeEnum = typeof APIVariableScopeEnum[keyof typeof APIVariableScopeEnum];
|
|
32
32
|
/**
|
|
33
|
-
* type of the environment variable (VALUE, FILE, ALIAS, OVERRIDE
|
|
33
|
+
* type of the environment variable (VALUE, FILE, ALIAS, OVERRIDE, BUIT_IN, EXTERNAL_SECRET)
|
|
34
34
|
* @export
|
|
35
35
|
* @enum {string}
|
|
36
36
|
*/
|
|
@@ -40,6 +40,7 @@ export declare const APIVariableTypeEnum: {
|
|
|
40
40
|
readonly OVERRIDE: "OVERRIDE";
|
|
41
41
|
readonly BUILT_IN: "BUILT_IN";
|
|
42
42
|
readonly FILE: "FILE";
|
|
43
|
+
readonly EXTERNAL_SECRET: "EXTERNAL_SECRET";
|
|
43
44
|
};
|
|
44
45
|
export type APIVariableTypeEnum = typeof APIVariableTypeEnum[keyof typeof APIVariableTypeEnum];
|
|
45
46
|
/**
|
|
@@ -2016,6 +2017,18 @@ export interface ArgoCdInstanceMappingResponse {
|
|
|
2016
2017
|
* @memberof ArgoCdInstanceMappingResponse
|
|
2017
2018
|
*/
|
|
2018
2019
|
'agent_cluster_id': string;
|
|
2020
|
+
/**
|
|
2021
|
+
* Display name of the Qovery cluster where the ArgoCD instance is running
|
|
2022
|
+
* @type {string}
|
|
2023
|
+
* @memberof ArgoCdInstanceMappingResponse
|
|
2024
|
+
*/
|
|
2025
|
+
'agent_cluster_name': string;
|
|
2026
|
+
/**
|
|
2027
|
+
*
|
|
2028
|
+
* @type {CloudVendorEnum}
|
|
2029
|
+
* @memberof ArgoCdInstanceMappingResponse
|
|
2030
|
+
*/
|
|
2031
|
+
'agent_cluster_cloud_provider': CloudVendorEnum;
|
|
2019
2032
|
/**
|
|
2020
2033
|
* ID of the stored ArgoCD credentials for this instance
|
|
2021
2034
|
* @type {string}
|
package/dist/esm/api.js
CHANGED
|
@@ -42,7 +42,7 @@ export const APIVariableScopeEnum = {
|
|
|
42
42
|
TERRAFORM: 'TERRAFORM'
|
|
43
43
|
};
|
|
44
44
|
/**
|
|
45
|
-
* type of the environment variable (VALUE, FILE, ALIAS, OVERRIDE
|
|
45
|
+
* type of the environment variable (VALUE, FILE, ALIAS, OVERRIDE, BUIT_IN, EXTERNAL_SECRET)
|
|
46
46
|
* @export
|
|
47
47
|
* @enum {string}
|
|
48
48
|
*/
|
|
@@ -51,7 +51,8 @@ export const APIVariableTypeEnum = {
|
|
|
51
51
|
ALIAS: 'ALIAS',
|
|
52
52
|
OVERRIDE: 'OVERRIDE',
|
|
53
53
|
BUILT_IN: 'BUILT_IN',
|
|
54
|
-
FILE: 'FILE'
|
|
54
|
+
FILE: 'FILE',
|
|
55
|
+
EXTERNAL_SECRET: 'EXTERNAL_SECRET'
|
|
55
56
|
};
|
|
56
57
|
export const AksInfrastructureOutputsKindEnum = {
|
|
57
58
|
AKS: 'AKS'
|