qovery-typescript-axios 1.1.874 → 1.1.876

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