qovery-typescript-axios 1.1.821 → 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 -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
|
@@ -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
|
|
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
|
*
|
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
|
*
|