qovery-typescript-axios 1.1.822 → 1.1.824
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 -12
- package/dist/api.d.ts +38 -12
- package/dist/esm/api.d.ts +38 -12
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -3166,6 +3166,12 @@ export interface Cluster {
|
|
|
3166
3166
|
* @memberof Cluster
|
|
3167
3167
|
*/
|
|
3168
3168
|
'keda'?: ClusterKeda;
|
|
3169
|
+
/**
|
|
3170
|
+
*
|
|
3171
|
+
* @type {ClusterLabelsGroupList}
|
|
3172
|
+
* @memberof Cluster
|
|
3173
|
+
*/
|
|
3174
|
+
'labels_groups'?: ClusterLabelsGroupList;
|
|
3169
3175
|
}
|
|
3170
3176
|
|
|
3171
3177
|
|
|
@@ -4200,6 +4206,32 @@ export interface ClusterKeda {
|
|
|
4200
4206
|
*/
|
|
4201
4207
|
'enabled': boolean;
|
|
4202
4208
|
}
|
|
4209
|
+
/**
|
|
4210
|
+
*
|
|
4211
|
+
* @export
|
|
4212
|
+
* @interface ClusterLabelsGroup
|
|
4213
|
+
*/
|
|
4214
|
+
export interface ClusterLabelsGroup {
|
|
4215
|
+
/**
|
|
4216
|
+
*
|
|
4217
|
+
* @type {string}
|
|
4218
|
+
* @memberof ClusterLabelsGroup
|
|
4219
|
+
*/
|
|
4220
|
+
'id'?: string;
|
|
4221
|
+
}
|
|
4222
|
+
/**
|
|
4223
|
+
*
|
|
4224
|
+
* @export
|
|
4225
|
+
* @interface ClusterLabelsGroupList
|
|
4226
|
+
*/
|
|
4227
|
+
export interface ClusterLabelsGroupList {
|
|
4228
|
+
/**
|
|
4229
|
+
*
|
|
4230
|
+
* @type {Array<ClusterLabelsGroup>}
|
|
4231
|
+
* @memberof ClusterLabelsGroupList
|
|
4232
|
+
*/
|
|
4233
|
+
'id'?: Array<ClusterLabelsGroup>;
|
|
4234
|
+
}
|
|
4203
4235
|
/**
|
|
4204
4236
|
*
|
|
4205
4237
|
* @export
|
|
@@ -4720,6 +4752,12 @@ export interface ClusterRequest {
|
|
|
4720
4752
|
* @memberof ClusterRequest
|
|
4721
4753
|
*/
|
|
4722
4754
|
'keda'?: ClusterKeda;
|
|
4755
|
+
/**
|
|
4756
|
+
*
|
|
4757
|
+
* @type {ClusterLabelsGroupList}
|
|
4758
|
+
* @memberof ClusterRequest
|
|
4759
|
+
*/
|
|
4760
|
+
'labels_groups'?: ClusterLabelsGroupList;
|
|
4723
4761
|
}
|
|
4724
4762
|
|
|
4725
4763
|
|
|
@@ -6875,12 +6913,6 @@ export interface Database {
|
|
|
6875
6913
|
* @memberof Database
|
|
6876
6914
|
*/
|
|
6877
6915
|
'disk_encrypted'?: boolean;
|
|
6878
|
-
/**
|
|
6879
|
-
* Apply changes immediately instead of waiting for the maintenance window. This field is only applicable for managed databases.
|
|
6880
|
-
* @type {boolean}
|
|
6881
|
-
* @memberof Database
|
|
6882
|
-
*/
|
|
6883
|
-
'apply_immediately'?: boolean;
|
|
6884
6916
|
/**
|
|
6885
6917
|
*
|
|
6886
6918
|
* @type {ServiceTypeEnum}
|
|
@@ -7010,12 +7042,6 @@ export interface DatabaseEditRequest {
|
|
|
7010
7042
|
* @memberof DatabaseEditRequest
|
|
7011
7043
|
*/
|
|
7012
7044
|
'icon_uri'?: string;
|
|
7013
|
-
/**
|
|
7014
|
-
* Apply changes immediately instead of waiting for the maintenance window. This field is only applicable for managed databases. Warning: Applying changes immediately may cause a brief service interruption.
|
|
7015
|
-
* @type {boolean}
|
|
7016
|
-
* @memberof DatabaseEditRequest
|
|
7017
|
-
*/
|
|
7018
|
-
'apply_immediately'?: boolean;
|
|
7019
7045
|
}
|
|
7020
7046
|
|
|
7021
7047
|
|
package/dist/api.d.ts
CHANGED
|
@@ -3054,6 +3054,12 @@ export interface Cluster {
|
|
|
3054
3054
|
* @memberof Cluster
|
|
3055
3055
|
*/
|
|
3056
3056
|
'keda'?: ClusterKeda;
|
|
3057
|
+
/**
|
|
3058
|
+
*
|
|
3059
|
+
* @type {ClusterLabelsGroupList}
|
|
3060
|
+
* @memberof Cluster
|
|
3061
|
+
*/
|
|
3062
|
+
'labels_groups'?: ClusterLabelsGroupList;
|
|
3057
3063
|
}
|
|
3058
3064
|
/**
|
|
3059
3065
|
*
|
|
@@ -4073,6 +4079,32 @@ export interface ClusterKeda {
|
|
|
4073
4079
|
*/
|
|
4074
4080
|
'enabled': boolean;
|
|
4075
4081
|
}
|
|
4082
|
+
/**
|
|
4083
|
+
*
|
|
4084
|
+
* @export
|
|
4085
|
+
* @interface ClusterLabelsGroup
|
|
4086
|
+
*/
|
|
4087
|
+
export interface ClusterLabelsGroup {
|
|
4088
|
+
/**
|
|
4089
|
+
*
|
|
4090
|
+
* @type {string}
|
|
4091
|
+
* @memberof ClusterLabelsGroup
|
|
4092
|
+
*/
|
|
4093
|
+
'id'?: string;
|
|
4094
|
+
}
|
|
4095
|
+
/**
|
|
4096
|
+
*
|
|
4097
|
+
* @export
|
|
4098
|
+
* @interface ClusterLabelsGroupList
|
|
4099
|
+
*/
|
|
4100
|
+
export interface ClusterLabelsGroupList {
|
|
4101
|
+
/**
|
|
4102
|
+
*
|
|
4103
|
+
* @type {Array<ClusterLabelsGroup>}
|
|
4104
|
+
* @memberof ClusterLabelsGroupList
|
|
4105
|
+
*/
|
|
4106
|
+
'id'?: Array<ClusterLabelsGroup>;
|
|
4107
|
+
}
|
|
4076
4108
|
/**
|
|
4077
4109
|
*
|
|
4078
4110
|
* @export
|
|
@@ -4588,6 +4620,12 @@ export interface ClusterRequest {
|
|
|
4588
4620
|
* @memberof ClusterRequest
|
|
4589
4621
|
*/
|
|
4590
4622
|
'keda'?: ClusterKeda;
|
|
4623
|
+
/**
|
|
4624
|
+
*
|
|
4625
|
+
* @type {ClusterLabelsGroupList}
|
|
4626
|
+
* @memberof ClusterRequest
|
|
4627
|
+
*/
|
|
4628
|
+
'labels_groups'?: ClusterLabelsGroupList;
|
|
4591
4629
|
}
|
|
4592
4630
|
/**
|
|
4593
4631
|
*
|
|
@@ -6688,12 +6726,6 @@ export interface Database {
|
|
|
6688
6726
|
* @memberof Database
|
|
6689
6727
|
*/
|
|
6690
6728
|
'disk_encrypted'?: boolean;
|
|
6691
|
-
/**
|
|
6692
|
-
* Apply changes immediately instead of waiting for the maintenance window. This field is only applicable for managed databases.
|
|
6693
|
-
* @type {boolean}
|
|
6694
|
-
* @memberof Database
|
|
6695
|
-
*/
|
|
6696
|
-
'apply_immediately'?: boolean;
|
|
6697
6729
|
/**
|
|
6698
6730
|
*
|
|
6699
6731
|
* @type {ServiceTypeEnum}
|
|
@@ -6815,12 +6847,6 @@ export interface DatabaseEditRequest {
|
|
|
6815
6847
|
* @memberof DatabaseEditRequest
|
|
6816
6848
|
*/
|
|
6817
6849
|
'icon_uri'?: string;
|
|
6818
|
-
/**
|
|
6819
|
-
* Apply changes immediately instead of waiting for the maintenance window. This field is only applicable for managed databases. Warning: Applying changes immediately may cause a brief service interruption.
|
|
6820
|
-
* @type {boolean}
|
|
6821
|
-
* @memberof DatabaseEditRequest
|
|
6822
|
-
*/
|
|
6823
|
-
'apply_immediately'?: boolean;
|
|
6824
6850
|
}
|
|
6825
6851
|
/**
|
|
6826
6852
|
*
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -3054,6 +3054,12 @@ export interface Cluster {
|
|
|
3054
3054
|
* @memberof Cluster
|
|
3055
3055
|
*/
|
|
3056
3056
|
'keda'?: ClusterKeda;
|
|
3057
|
+
/**
|
|
3058
|
+
*
|
|
3059
|
+
* @type {ClusterLabelsGroupList}
|
|
3060
|
+
* @memberof Cluster
|
|
3061
|
+
*/
|
|
3062
|
+
'labels_groups'?: ClusterLabelsGroupList;
|
|
3057
3063
|
}
|
|
3058
3064
|
/**
|
|
3059
3065
|
*
|
|
@@ -4073,6 +4079,32 @@ export interface ClusterKeda {
|
|
|
4073
4079
|
*/
|
|
4074
4080
|
'enabled': boolean;
|
|
4075
4081
|
}
|
|
4082
|
+
/**
|
|
4083
|
+
*
|
|
4084
|
+
* @export
|
|
4085
|
+
* @interface ClusterLabelsGroup
|
|
4086
|
+
*/
|
|
4087
|
+
export interface ClusterLabelsGroup {
|
|
4088
|
+
/**
|
|
4089
|
+
*
|
|
4090
|
+
* @type {string}
|
|
4091
|
+
* @memberof ClusterLabelsGroup
|
|
4092
|
+
*/
|
|
4093
|
+
'id'?: string;
|
|
4094
|
+
}
|
|
4095
|
+
/**
|
|
4096
|
+
*
|
|
4097
|
+
* @export
|
|
4098
|
+
* @interface ClusterLabelsGroupList
|
|
4099
|
+
*/
|
|
4100
|
+
export interface ClusterLabelsGroupList {
|
|
4101
|
+
/**
|
|
4102
|
+
*
|
|
4103
|
+
* @type {Array<ClusterLabelsGroup>}
|
|
4104
|
+
* @memberof ClusterLabelsGroupList
|
|
4105
|
+
*/
|
|
4106
|
+
'id'?: Array<ClusterLabelsGroup>;
|
|
4107
|
+
}
|
|
4076
4108
|
/**
|
|
4077
4109
|
*
|
|
4078
4110
|
* @export
|
|
@@ -4588,6 +4620,12 @@ export interface ClusterRequest {
|
|
|
4588
4620
|
* @memberof ClusterRequest
|
|
4589
4621
|
*/
|
|
4590
4622
|
'keda'?: ClusterKeda;
|
|
4623
|
+
/**
|
|
4624
|
+
*
|
|
4625
|
+
* @type {ClusterLabelsGroupList}
|
|
4626
|
+
* @memberof ClusterRequest
|
|
4627
|
+
*/
|
|
4628
|
+
'labels_groups'?: ClusterLabelsGroupList;
|
|
4591
4629
|
}
|
|
4592
4630
|
/**
|
|
4593
4631
|
*
|
|
@@ -6688,12 +6726,6 @@ export interface Database {
|
|
|
6688
6726
|
* @memberof Database
|
|
6689
6727
|
*/
|
|
6690
6728
|
'disk_encrypted'?: boolean;
|
|
6691
|
-
/**
|
|
6692
|
-
* Apply changes immediately instead of waiting for the maintenance window. This field is only applicable for managed databases.
|
|
6693
|
-
* @type {boolean}
|
|
6694
|
-
* @memberof Database
|
|
6695
|
-
*/
|
|
6696
|
-
'apply_immediately'?: boolean;
|
|
6697
6729
|
/**
|
|
6698
6730
|
*
|
|
6699
6731
|
* @type {ServiceTypeEnum}
|
|
@@ -6815,12 +6847,6 @@ export interface DatabaseEditRequest {
|
|
|
6815
6847
|
* @memberof DatabaseEditRequest
|
|
6816
6848
|
*/
|
|
6817
6849
|
'icon_uri'?: string;
|
|
6818
|
-
/**
|
|
6819
|
-
* Apply changes immediately instead of waiting for the maintenance window. This field is only applicable for managed databases. Warning: Applying changes immediately may cause a brief service interruption.
|
|
6820
|
-
* @type {boolean}
|
|
6821
|
-
* @memberof DatabaseEditRequest
|
|
6822
|
-
*/
|
|
6823
|
-
'apply_immediately'?: boolean;
|
|
6824
6850
|
}
|
|
6825
6851
|
/**
|
|
6826
6852
|
*
|