qovery-typescript-axios 1.1.875 → 1.1.877
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 +28 -28
- package/dist/api.d.ts +28 -28
- package/dist/esm/api.d.ts +28 -28
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -3774,10 +3774,10 @@ export interface Cluster {
|
|
|
3774
3774
|
'labels_groups'?: Array<ClusterLabelsGroup>;
|
|
3775
3775
|
/**
|
|
3776
3776
|
*
|
|
3777
|
-
* @type {Array<
|
|
3777
|
+
* @type {Array<SecretManagerAccess>}
|
|
3778
3778
|
* @memberof Cluster
|
|
3779
3779
|
*/
|
|
3780
|
-
'secret_manager_accesses'?: Array<
|
|
3780
|
+
'secret_manager_accesses'?: Array<SecretManagerAccess>;
|
|
3781
3781
|
}
|
|
3782
3782
|
|
|
3783
3783
|
|
|
@@ -19806,74 +19806,74 @@ export interface SecretEditRequest {
|
|
|
19806
19806
|
/**
|
|
19807
19807
|
*
|
|
19808
19808
|
* @export
|
|
19809
|
-
* @interface
|
|
19809
|
+
* @interface SecretManagerAccess
|
|
19810
19810
|
*/
|
|
19811
|
-
export interface
|
|
19811
|
+
export interface SecretManagerAccess {
|
|
19812
19812
|
/**
|
|
19813
19813
|
*
|
|
19814
19814
|
* @type {string}
|
|
19815
|
-
* @memberof
|
|
19815
|
+
* @memberof SecretManagerAccess
|
|
19816
19816
|
*/
|
|
19817
|
-
'id'
|
|
19817
|
+
'id': string;
|
|
19818
19818
|
/**
|
|
19819
19819
|
*
|
|
19820
19820
|
* @type {string}
|
|
19821
|
-
* @memberof
|
|
19821
|
+
* @memberof SecretManagerAccess
|
|
19822
19822
|
*/
|
|
19823
19823
|
'name': string;
|
|
19824
|
+
/**
|
|
19825
|
+
*
|
|
19826
|
+
* @type {string}
|
|
19827
|
+
* @memberof SecretManagerAccess
|
|
19828
|
+
*/
|
|
19829
|
+
'created_at': string;
|
|
19830
|
+
/**
|
|
19831
|
+
*
|
|
19832
|
+
* @type {string}
|
|
19833
|
+
* @memberof SecretManagerAccess
|
|
19834
|
+
*/
|
|
19835
|
+
'updated_at': string;
|
|
19824
19836
|
/**
|
|
19825
19837
|
*
|
|
19826
19838
|
* @type {SecretManagerEndpointConfigurationDto}
|
|
19827
|
-
* @memberof
|
|
19839
|
+
* @memberof SecretManagerAccess
|
|
19828
19840
|
*/
|
|
19829
19841
|
'endpoint': SecretManagerEndpointConfigurationDto;
|
|
19830
19842
|
/**
|
|
19831
19843
|
*
|
|
19832
19844
|
* @type {SecretManagerAuthenticationDto}
|
|
19833
|
-
* @memberof
|
|
19845
|
+
* @memberof SecretManagerAccess
|
|
19834
19846
|
*/
|
|
19835
19847
|
'authentication': SecretManagerAuthenticationDto;
|
|
19836
19848
|
}
|
|
19837
19849
|
/**
|
|
19838
19850
|
*
|
|
19839
19851
|
* @export
|
|
19840
|
-
* @interface
|
|
19852
|
+
* @interface SecretManagerAccessRequest
|
|
19841
19853
|
*/
|
|
19842
|
-
export interface
|
|
19854
|
+
export interface SecretManagerAccessRequest {
|
|
19843
19855
|
/**
|
|
19844
19856
|
*
|
|
19845
19857
|
* @type {string}
|
|
19846
|
-
* @memberof
|
|
19858
|
+
* @memberof SecretManagerAccessRequest
|
|
19847
19859
|
*/
|
|
19848
|
-
'id'
|
|
19860
|
+
'id'?: string | null;
|
|
19849
19861
|
/**
|
|
19850
19862
|
*
|
|
19851
19863
|
* @type {string}
|
|
19852
|
-
* @memberof
|
|
19864
|
+
* @memberof SecretManagerAccessRequest
|
|
19853
19865
|
*/
|
|
19854
19866
|
'name': string;
|
|
19855
|
-
/**
|
|
19856
|
-
*
|
|
19857
|
-
* @type {string}
|
|
19858
|
-
* @memberof SecretManagerAccessResponse
|
|
19859
|
-
*/
|
|
19860
|
-
'created_at': string;
|
|
19861
|
-
/**
|
|
19862
|
-
*
|
|
19863
|
-
* @type {string}
|
|
19864
|
-
* @memberof SecretManagerAccessResponse
|
|
19865
|
-
*/
|
|
19866
|
-
'updated_at': string;
|
|
19867
19867
|
/**
|
|
19868
19868
|
*
|
|
19869
19869
|
* @type {SecretManagerEndpointConfigurationDto}
|
|
19870
|
-
* @memberof
|
|
19870
|
+
* @memberof SecretManagerAccessRequest
|
|
19871
19871
|
*/
|
|
19872
19872
|
'endpoint': SecretManagerEndpointConfigurationDto;
|
|
19873
19873
|
/**
|
|
19874
19874
|
*
|
|
19875
19875
|
* @type {SecretManagerAuthenticationDto}
|
|
19876
|
-
* @memberof
|
|
19876
|
+
* @memberof SecretManagerAccessRequest
|
|
19877
19877
|
*/
|
|
19878
19878
|
'authentication': SecretManagerAuthenticationDto;
|
|
19879
19879
|
}
|
package/dist/api.d.ts
CHANGED
|
@@ -3637,10 +3637,10 @@ export interface Cluster {
|
|
|
3637
3637
|
'labels_groups'?: Array<ClusterLabelsGroup>;
|
|
3638
3638
|
/**
|
|
3639
3639
|
*
|
|
3640
|
-
* @type {Array<
|
|
3640
|
+
* @type {Array<SecretManagerAccess>}
|
|
3641
3641
|
* @memberof Cluster
|
|
3642
3642
|
*/
|
|
3643
|
-
'secret_manager_accesses'?: Array<
|
|
3643
|
+
'secret_manager_accesses'?: Array<SecretManagerAccess>;
|
|
3644
3644
|
}
|
|
3645
3645
|
/**
|
|
3646
3646
|
*
|
|
@@ -19184,74 +19184,74 @@ export interface SecretEditRequest {
|
|
|
19184
19184
|
/**
|
|
19185
19185
|
*
|
|
19186
19186
|
* @export
|
|
19187
|
-
* @interface
|
|
19187
|
+
* @interface SecretManagerAccess
|
|
19188
19188
|
*/
|
|
19189
|
-
export interface
|
|
19189
|
+
export interface SecretManagerAccess {
|
|
19190
19190
|
/**
|
|
19191
19191
|
*
|
|
19192
19192
|
* @type {string}
|
|
19193
|
-
* @memberof
|
|
19193
|
+
* @memberof SecretManagerAccess
|
|
19194
19194
|
*/
|
|
19195
|
-
'id'
|
|
19195
|
+
'id': string;
|
|
19196
19196
|
/**
|
|
19197
19197
|
*
|
|
19198
19198
|
* @type {string}
|
|
19199
|
-
* @memberof
|
|
19199
|
+
* @memberof SecretManagerAccess
|
|
19200
19200
|
*/
|
|
19201
19201
|
'name': string;
|
|
19202
|
+
/**
|
|
19203
|
+
*
|
|
19204
|
+
* @type {string}
|
|
19205
|
+
* @memberof SecretManagerAccess
|
|
19206
|
+
*/
|
|
19207
|
+
'created_at': string;
|
|
19208
|
+
/**
|
|
19209
|
+
*
|
|
19210
|
+
* @type {string}
|
|
19211
|
+
* @memberof SecretManagerAccess
|
|
19212
|
+
*/
|
|
19213
|
+
'updated_at': string;
|
|
19202
19214
|
/**
|
|
19203
19215
|
*
|
|
19204
19216
|
* @type {SecretManagerEndpointConfigurationDto}
|
|
19205
|
-
* @memberof
|
|
19217
|
+
* @memberof SecretManagerAccess
|
|
19206
19218
|
*/
|
|
19207
19219
|
'endpoint': SecretManagerEndpointConfigurationDto;
|
|
19208
19220
|
/**
|
|
19209
19221
|
*
|
|
19210
19222
|
* @type {SecretManagerAuthenticationDto}
|
|
19211
|
-
* @memberof
|
|
19223
|
+
* @memberof SecretManagerAccess
|
|
19212
19224
|
*/
|
|
19213
19225
|
'authentication': SecretManagerAuthenticationDto;
|
|
19214
19226
|
}
|
|
19215
19227
|
/**
|
|
19216
19228
|
*
|
|
19217
19229
|
* @export
|
|
19218
|
-
* @interface
|
|
19230
|
+
* @interface SecretManagerAccessRequest
|
|
19219
19231
|
*/
|
|
19220
|
-
export interface
|
|
19232
|
+
export interface SecretManagerAccessRequest {
|
|
19221
19233
|
/**
|
|
19222
19234
|
*
|
|
19223
19235
|
* @type {string}
|
|
19224
|
-
* @memberof
|
|
19236
|
+
* @memberof SecretManagerAccessRequest
|
|
19225
19237
|
*/
|
|
19226
|
-
'id'
|
|
19238
|
+
'id'?: string | null;
|
|
19227
19239
|
/**
|
|
19228
19240
|
*
|
|
19229
19241
|
* @type {string}
|
|
19230
|
-
* @memberof
|
|
19242
|
+
* @memberof SecretManagerAccessRequest
|
|
19231
19243
|
*/
|
|
19232
19244
|
'name': string;
|
|
19233
|
-
/**
|
|
19234
|
-
*
|
|
19235
|
-
* @type {string}
|
|
19236
|
-
* @memberof SecretManagerAccessResponse
|
|
19237
|
-
*/
|
|
19238
|
-
'created_at': string;
|
|
19239
|
-
/**
|
|
19240
|
-
*
|
|
19241
|
-
* @type {string}
|
|
19242
|
-
* @memberof SecretManagerAccessResponse
|
|
19243
|
-
*/
|
|
19244
|
-
'updated_at': string;
|
|
19245
19245
|
/**
|
|
19246
19246
|
*
|
|
19247
19247
|
* @type {SecretManagerEndpointConfigurationDto}
|
|
19248
|
-
* @memberof
|
|
19248
|
+
* @memberof SecretManagerAccessRequest
|
|
19249
19249
|
*/
|
|
19250
19250
|
'endpoint': SecretManagerEndpointConfigurationDto;
|
|
19251
19251
|
/**
|
|
19252
19252
|
*
|
|
19253
19253
|
* @type {SecretManagerAuthenticationDto}
|
|
19254
|
-
* @memberof
|
|
19254
|
+
* @memberof SecretManagerAccessRequest
|
|
19255
19255
|
*/
|
|
19256
19256
|
'authentication': SecretManagerAuthenticationDto;
|
|
19257
19257
|
}
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -3637,10 +3637,10 @@ export interface Cluster {
|
|
|
3637
3637
|
'labels_groups'?: Array<ClusterLabelsGroup>;
|
|
3638
3638
|
/**
|
|
3639
3639
|
*
|
|
3640
|
-
* @type {Array<
|
|
3640
|
+
* @type {Array<SecretManagerAccess>}
|
|
3641
3641
|
* @memberof Cluster
|
|
3642
3642
|
*/
|
|
3643
|
-
'secret_manager_accesses'?: Array<
|
|
3643
|
+
'secret_manager_accesses'?: Array<SecretManagerAccess>;
|
|
3644
3644
|
}
|
|
3645
3645
|
/**
|
|
3646
3646
|
*
|
|
@@ -19184,74 +19184,74 @@ export interface SecretEditRequest {
|
|
|
19184
19184
|
/**
|
|
19185
19185
|
*
|
|
19186
19186
|
* @export
|
|
19187
|
-
* @interface
|
|
19187
|
+
* @interface SecretManagerAccess
|
|
19188
19188
|
*/
|
|
19189
|
-
export interface
|
|
19189
|
+
export interface SecretManagerAccess {
|
|
19190
19190
|
/**
|
|
19191
19191
|
*
|
|
19192
19192
|
* @type {string}
|
|
19193
|
-
* @memberof
|
|
19193
|
+
* @memberof SecretManagerAccess
|
|
19194
19194
|
*/
|
|
19195
|
-
'id'
|
|
19195
|
+
'id': string;
|
|
19196
19196
|
/**
|
|
19197
19197
|
*
|
|
19198
19198
|
* @type {string}
|
|
19199
|
-
* @memberof
|
|
19199
|
+
* @memberof SecretManagerAccess
|
|
19200
19200
|
*/
|
|
19201
19201
|
'name': string;
|
|
19202
|
+
/**
|
|
19203
|
+
*
|
|
19204
|
+
* @type {string}
|
|
19205
|
+
* @memberof SecretManagerAccess
|
|
19206
|
+
*/
|
|
19207
|
+
'created_at': string;
|
|
19208
|
+
/**
|
|
19209
|
+
*
|
|
19210
|
+
* @type {string}
|
|
19211
|
+
* @memberof SecretManagerAccess
|
|
19212
|
+
*/
|
|
19213
|
+
'updated_at': string;
|
|
19202
19214
|
/**
|
|
19203
19215
|
*
|
|
19204
19216
|
* @type {SecretManagerEndpointConfigurationDto}
|
|
19205
|
-
* @memberof
|
|
19217
|
+
* @memberof SecretManagerAccess
|
|
19206
19218
|
*/
|
|
19207
19219
|
'endpoint': SecretManagerEndpointConfigurationDto;
|
|
19208
19220
|
/**
|
|
19209
19221
|
*
|
|
19210
19222
|
* @type {SecretManagerAuthenticationDto}
|
|
19211
|
-
* @memberof
|
|
19223
|
+
* @memberof SecretManagerAccess
|
|
19212
19224
|
*/
|
|
19213
19225
|
'authentication': SecretManagerAuthenticationDto;
|
|
19214
19226
|
}
|
|
19215
19227
|
/**
|
|
19216
19228
|
*
|
|
19217
19229
|
* @export
|
|
19218
|
-
* @interface
|
|
19230
|
+
* @interface SecretManagerAccessRequest
|
|
19219
19231
|
*/
|
|
19220
|
-
export interface
|
|
19232
|
+
export interface SecretManagerAccessRequest {
|
|
19221
19233
|
/**
|
|
19222
19234
|
*
|
|
19223
19235
|
* @type {string}
|
|
19224
|
-
* @memberof
|
|
19236
|
+
* @memberof SecretManagerAccessRequest
|
|
19225
19237
|
*/
|
|
19226
|
-
'id'
|
|
19238
|
+
'id'?: string | null;
|
|
19227
19239
|
/**
|
|
19228
19240
|
*
|
|
19229
19241
|
* @type {string}
|
|
19230
|
-
* @memberof
|
|
19242
|
+
* @memberof SecretManagerAccessRequest
|
|
19231
19243
|
*/
|
|
19232
19244
|
'name': string;
|
|
19233
|
-
/**
|
|
19234
|
-
*
|
|
19235
|
-
* @type {string}
|
|
19236
|
-
* @memberof SecretManagerAccessResponse
|
|
19237
|
-
*/
|
|
19238
|
-
'created_at': string;
|
|
19239
|
-
/**
|
|
19240
|
-
*
|
|
19241
|
-
* @type {string}
|
|
19242
|
-
* @memberof SecretManagerAccessResponse
|
|
19243
|
-
*/
|
|
19244
|
-
'updated_at': string;
|
|
19245
19245
|
/**
|
|
19246
19246
|
*
|
|
19247
19247
|
* @type {SecretManagerEndpointConfigurationDto}
|
|
19248
|
-
* @memberof
|
|
19248
|
+
* @memberof SecretManagerAccessRequest
|
|
19249
19249
|
*/
|
|
19250
19250
|
'endpoint': SecretManagerEndpointConfigurationDto;
|
|
19251
19251
|
/**
|
|
19252
19252
|
*
|
|
19253
19253
|
* @type {SecretManagerAuthenticationDto}
|
|
19254
|
-
* @memberof
|
|
19254
|
+
* @memberof SecretManagerAccessRequest
|
|
19255
19255
|
*/
|
|
19256
19256
|
'authentication': SecretManagerAuthenticationDto;
|
|
19257
19257
|
}
|