qovery-typescript-axios 1.1.924 → 1.1.926

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
@@ -13697,6 +13697,104 @@ export interface ExternalSecretAssociatedServiceResponseList {
13697
13697
  */
13698
13698
  'results': Array<ExternalSecretAssociatedServiceResponse>;
13699
13699
  }
13700
+ /**
13701
+ * Validation constraints attached to a catalog field descriptor.
13702
+ * @export
13703
+ * @interface FieldSchemaConstraintsResponse
13704
+ */
13705
+ export interface FieldSchemaConstraintsResponse {
13706
+ /**
13707
+ *
13708
+ * @type {Array<string>}
13709
+ * @memberof FieldSchemaConstraintsResponse
13710
+ */
13711
+ 'allowedValues'?: Array<string> | null;
13712
+ /**
13713
+ *
13714
+ * @type {number}
13715
+ * @memberof FieldSchemaConstraintsResponse
13716
+ */
13717
+ 'min'?: number | null;
13718
+ /**
13719
+ *
13720
+ * @type {number}
13721
+ * @memberof FieldSchemaConstraintsResponse
13722
+ */
13723
+ 'max'?: number | null;
13724
+ /**
13725
+ *
13726
+ * @type {number}
13727
+ * @memberof FieldSchemaConstraintsResponse
13728
+ */
13729
+ 'minLength'?: number | null;
13730
+ /**
13731
+ *
13732
+ * @type {number}
13733
+ * @memberof FieldSchemaConstraintsResponse
13734
+ */
13735
+ 'maxLength'?: number | null;
13736
+ /**
13737
+ *
13738
+ * @type {string}
13739
+ * @memberof FieldSchemaConstraintsResponse
13740
+ */
13741
+ 'pattern'?: string | null;
13742
+ }
13743
+ /**
13744
+ * Canonical platform catalog field descriptor. Mirrors the q-core `FieldSchemaResponse` DTO.
13745
+ * @export
13746
+ * @interface FieldSchemaResponse
13747
+ */
13748
+ export interface FieldSchemaResponse {
13749
+ /**
13750
+ *
13751
+ * @type {string}
13752
+ * @memberof FieldSchemaResponse
13753
+ */
13754
+ 'key': string;
13755
+ /**
13756
+ * Field type understood by the Console, such as string, number, or bool
13757
+ * @type {string}
13758
+ * @memberof FieldSchemaResponse
13759
+ */
13760
+ 'type': string;
13761
+ /**
13762
+ *
13763
+ * @type {boolean}
13764
+ * @memberof FieldSchemaResponse
13765
+ */
13766
+ 'required': boolean;
13767
+ /**
13768
+ *
13769
+ * @type {string}
13770
+ * @memberof FieldSchemaResponse
13771
+ */
13772
+ 'defaultValue'?: string | null;
13773
+ /**
13774
+ *
13775
+ * @type {string}
13776
+ * @memberof FieldSchemaResponse
13777
+ */
13778
+ 'label': string;
13779
+ /**
13780
+ *
13781
+ * @type {string}
13782
+ * @memberof FieldSchemaResponse
13783
+ */
13784
+ 'description'?: string | null;
13785
+ /**
13786
+ *
13787
+ * @type {boolean}
13788
+ * @memberof FieldSchemaResponse
13789
+ */
13790
+ 'sensitive': boolean;
13791
+ /**
13792
+ *
13793
+ * @type {FieldSchemaConstraintsResponse}
13794
+ * @memberof FieldSchemaResponse
13795
+ */
13796
+ 'constraints': FieldSchemaConstraintsResponse;
13797
+ }
13700
13798
  /**
13701
13799
  * @type GcpCredentialsRequest
13702
13800
  * @export
@@ -21026,104 +21124,6 @@ export const PlatformClusterMode = {
21026
21124
  export type PlatformClusterMode = typeof PlatformClusterMode[keyof typeof PlatformClusterMode];
21027
21125
 
21028
21126
 
21029
- /**
21030
- *
21031
- * @export
21032
- * @interface PlatformComponentConfigurationConstraintsResponse
21033
- */
21034
- export interface PlatformComponentConfigurationConstraintsResponse {
21035
- /**
21036
- *
21037
- * @type {Array<string>}
21038
- * @memberof PlatformComponentConfigurationConstraintsResponse
21039
- */
21040
- 'allowedValues'?: Array<string> | null;
21041
- /**
21042
- *
21043
- * @type {number}
21044
- * @memberof PlatformComponentConfigurationConstraintsResponse
21045
- */
21046
- 'min'?: number | null;
21047
- /**
21048
- *
21049
- * @type {number}
21050
- * @memberof PlatformComponentConfigurationConstraintsResponse
21051
- */
21052
- 'max'?: number | null;
21053
- /**
21054
- *
21055
- * @type {number}
21056
- * @memberof PlatformComponentConfigurationConstraintsResponse
21057
- */
21058
- 'minLength'?: number | null;
21059
- /**
21060
- *
21061
- * @type {number}
21062
- * @memberof PlatformComponentConfigurationConstraintsResponse
21063
- */
21064
- 'maxLength'?: number | null;
21065
- /**
21066
- *
21067
- * @type {string}
21068
- * @memberof PlatformComponentConfigurationConstraintsResponse
21069
- */
21070
- 'pattern'?: string | null;
21071
- }
21072
- /**
21073
- *
21074
- * @export
21075
- * @interface PlatformComponentConfigurationFieldResponse
21076
- */
21077
- export interface PlatformComponentConfigurationFieldResponse {
21078
- /**
21079
- *
21080
- * @type {string}
21081
- * @memberof PlatformComponentConfigurationFieldResponse
21082
- */
21083
- 'key': string;
21084
- /**
21085
- * Field type understood by the Console, such as string, number, or bool
21086
- * @type {string}
21087
- * @memberof PlatformComponentConfigurationFieldResponse
21088
- */
21089
- 'type': string;
21090
- /**
21091
- *
21092
- * @type {boolean}
21093
- * @memberof PlatformComponentConfigurationFieldResponse
21094
- */
21095
- 'required': boolean;
21096
- /**
21097
- *
21098
- * @type {string}
21099
- * @memberof PlatformComponentConfigurationFieldResponse
21100
- */
21101
- 'defaultValue'?: string | null;
21102
- /**
21103
- *
21104
- * @type {string}
21105
- * @memberof PlatformComponentConfigurationFieldResponse
21106
- */
21107
- 'label': string;
21108
- /**
21109
- *
21110
- * @type {string}
21111
- * @memberof PlatformComponentConfigurationFieldResponse
21112
- */
21113
- 'description'?: string | null;
21114
- /**
21115
- *
21116
- * @type {boolean}
21117
- * @memberof PlatformComponentConfigurationFieldResponse
21118
- */
21119
- 'sensitive': boolean;
21120
- /**
21121
- *
21122
- * @type {PlatformComponentConfigurationConstraintsResponse}
21123
- * @memberof PlatformComponentConfigurationFieldResponse
21124
- */
21125
- 'constraints': PlatformComponentConfigurationConstraintsResponse;
21126
- }
21127
21127
  /**
21128
21128
  *
21129
21129
  * @export
@@ -21183,10 +21183,10 @@ export interface PlatformComponentConfigurationPreviewResponse {
21183
21183
  'componentKey': string;
21184
21184
  /**
21185
21185
  *
21186
- * @type {Array<PlatformComponentConfigurationFieldResponse>}
21186
+ * @type {Array<FieldSchemaResponse>}
21187
21187
  * @memberof PlatformComponentConfigurationPreviewResponse
21188
21188
  */
21189
- 'fields': Array<PlatformComponentConfigurationFieldResponse>;
21189
+ 'fields': Array<FieldSchemaResponse>;
21190
21190
  /**
21191
21191
  *
21192
21192
  * @type {Array<PlatformComponentInputRequirementResponse>}
@@ -21227,26 +21227,26 @@ export type PlatformComponentConfigurationRequirementStatus = typeof PlatformCom
21227
21227
  */
21228
21228
  export interface PlatformComponentConfigurationViolationResponse {
21229
21229
  /**
21230
- *
21230
+ * Stable machine-readable violation code.
21231
21231
  * @type {string}
21232
21232
  * @memberof PlatformComponentConfigurationViolationResponse
21233
21233
  */
21234
21234
  'code': string;
21235
21235
  /**
21236
- *
21236
+ * Path of the offending field. Convention: profile configuration fields use the bare field key (e.g. `storage`); cluster-provided inputs are prefixed with `clusterInputs.` (e.g. `clusterInputs.s3BucketName`). Consumers match violations to form fields using these exact paths.
21237
21237
  * @type {string}
21238
21238
  * @memberof PlatformComponentConfigurationViolationResponse
21239
21239
  */
21240
21240
  'fieldPath': string;
21241
21241
  /**
21242
- *
21242
+ * Customer-facing message describing how to fix the violation.
21243
21243
  * @type {string}
21244
21244
  * @memberof PlatformComponentConfigurationViolationResponse
21245
21245
  */
21246
21246
  'message': string;
21247
21247
  }
21248
21248
  /**
21249
- *
21249
+ * A catalog field the cluster must provide for the selected configuration: the shared field descriptor extended with its resolution scope and readiness.
21250
21250
  * @export
21251
21251
  * @interface PlatformComponentInputRequirementResponse
21252
21252
  */
@@ -21258,17 +21258,23 @@ export interface PlatformComponentInputRequirementResponse {
21258
21258
  */
21259
21259
  'key': string;
21260
21260
  /**
21261
- *
21261
+ * Field type understood by the Console, such as string, number, or bool
21262
21262
  * @type {string}
21263
21263
  * @memberof PlatformComponentInputRequirementResponse
21264
21264
  */
21265
21265
  'type': string;
21266
21266
  /**
21267
21267
  *
21268
- * @type {PlatformComponentConfigurationInputScope}
21268
+ * @type {boolean}
21269
21269
  * @memberof PlatformComponentInputRequirementResponse
21270
21270
  */
21271
- 'scope': PlatformComponentConfigurationInputScope;
21271
+ 'required': boolean;
21272
+ /**
21273
+ *
21274
+ * @type {string}
21275
+ * @memberof PlatformComponentInputRequirementResponse
21276
+ */
21277
+ 'defaultValue'?: string | null;
21272
21278
  /**
21273
21279
  *
21274
21280
  * @type {string}
@@ -21286,19 +21292,19 @@ export interface PlatformComponentInputRequirementResponse {
21286
21292
  * @type {boolean}
21287
21293
  * @memberof PlatformComponentInputRequirementResponse
21288
21294
  */
21289
- 'required': boolean;
21295
+ 'sensitive': boolean;
21290
21296
  /**
21291
21297
  *
21292
- * @type {boolean}
21298
+ * @type {FieldSchemaConstraintsResponse}
21293
21299
  * @memberof PlatformComponentInputRequirementResponse
21294
21300
  */
21295
- 'sensitive': boolean;
21301
+ 'constraints': FieldSchemaConstraintsResponse;
21296
21302
  /**
21297
21303
  *
21298
- * @type {PlatformComponentConfigurationConstraintsResponse}
21304
+ * @type {PlatformComponentConfigurationInputScope}
21299
21305
  * @memberof PlatformComponentInputRequirementResponse
21300
21306
  */
21301
- 'constraints': PlatformComponentConfigurationConstraintsResponse;
21307
+ 'scope': PlatformComponentConfigurationInputScope;
21302
21308
  /**
21303
21309
  *
21304
21310
  * @type {PlatformComponentConfigurationRequirementStatus}
@@ -21401,10 +21407,10 @@ export interface PlatformTemplateComponentResponse {
21401
21407
  'description'?: string | null;
21402
21408
  /**
21403
21409
  *
21404
- * @type {Array<PlatformComponentConfigurationFieldResponse>}
21410
+ * @type {Array<FieldSchemaResponse>}
21405
21411
  * @memberof PlatformTemplateComponentResponse
21406
21412
  */
21407
- 'fields': Array<PlatformComponentConfigurationFieldResponse>;
21413
+ 'fields': Array<FieldSchemaResponse>;
21408
21414
  }
21409
21415
 
21410
21416
 
@@ -22105,6 +22111,19 @@ export const QoveryDnsProviderResponseProviderEnum = {
22105
22111
 
22106
22112
  export type QoveryDnsProviderResponseProviderEnum = typeof QoveryDnsProviderResponseProviderEnum[keyof typeof QoveryDnsProviderResponseProviderEnum];
22107
22113
 
22114
+ /**
22115
+ *
22116
+ * @export
22117
+ * @interface QoveryIpsResponse
22118
+ */
22119
+ export interface QoveryIpsResponse {
22120
+ /**
22121
+ * IP addresses used by Qovery\'s NAT gateways for outbound traffic.
22122
+ * @type {Array<string>}
22123
+ * @memberof QoveryIpsResponse
22124
+ */
22125
+ 'ips': Array<string>;
22126
+ }
22108
22127
  /**
22109
22128
  *
22110
22129
  * @export
@@ -58001,6 +58020,107 @@ export class HelmsApi extends BaseAPI {
58001
58020
 
58002
58021
 
58003
58022
 
58023
+ /**
58024
+ * IPsApi - axios parameter creator
58025
+ * @export
58026
+ */
58027
+ export const IPsApiAxiosParamCreator = function (configuration?: Configuration) {
58028
+ return {
58029
+ /**
58030
+ * Returns the list of static IP addresses used by Qovery\'s NAT gateways for outbound traffic. Customers can allow-list these IPs on their side. This endpoint is public and does not require authentication.
58031
+ * @summary List Qovery NAT gateway IP addresses
58032
+ * @param {*} [options] Override http request option.
58033
+ * @throws {RequiredError}
58034
+ */
58035
+ listQoveryIps: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
58036
+ const localVarPath = `/ips`;
58037
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
58038
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
58039
+ let baseOptions;
58040
+ if (configuration) {
58041
+ baseOptions = configuration.baseOptions;
58042
+ }
58043
+
58044
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
58045
+ const localVarHeaderParameter = {} as any;
58046
+ const localVarQueryParameter = {} as any;
58047
+
58048
+
58049
+
58050
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
58051
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
58052
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
58053
+
58054
+ return {
58055
+ url: toPathString(localVarUrlObj),
58056
+ options: localVarRequestOptions,
58057
+ };
58058
+ },
58059
+ }
58060
+ };
58061
+
58062
+ /**
58063
+ * IPsApi - functional programming interface
58064
+ * @export
58065
+ */
58066
+ export const IPsApiFp = function(configuration?: Configuration) {
58067
+ const localVarAxiosParamCreator = IPsApiAxiosParamCreator(configuration)
58068
+ return {
58069
+ /**
58070
+ * Returns the list of static IP addresses used by Qovery\'s NAT gateways for outbound traffic. Customers can allow-list these IPs on their side. This endpoint is public and does not require authentication.
58071
+ * @summary List Qovery NAT gateway IP addresses
58072
+ * @param {*} [options] Override http request option.
58073
+ * @throws {RequiredError}
58074
+ */
58075
+ async listQoveryIps(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<QoveryIpsResponse>> {
58076
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listQoveryIps(options);
58077
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
58078
+ const localVarOperationServerBasePath = operationServerMap['IPsApi.listQoveryIps']?.[localVarOperationServerIndex]?.url;
58079
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
58080
+ },
58081
+ }
58082
+ };
58083
+
58084
+ /**
58085
+ * IPsApi - factory interface
58086
+ * @export
58087
+ */
58088
+ export const IPsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
58089
+ const localVarFp = IPsApiFp(configuration)
58090
+ return {
58091
+ /**
58092
+ * Returns the list of static IP addresses used by Qovery\'s NAT gateways for outbound traffic. Customers can allow-list these IPs on their side. This endpoint is public and does not require authentication.
58093
+ * @summary List Qovery NAT gateway IP addresses
58094
+ * @param {*} [options] Override http request option.
58095
+ * @throws {RequiredError}
58096
+ */
58097
+ listQoveryIps(options?: RawAxiosRequestConfig): AxiosPromise<QoveryIpsResponse> {
58098
+ return localVarFp.listQoveryIps(options).then((request) => request(axios, basePath));
58099
+ },
58100
+ };
58101
+ };
58102
+
58103
+ /**
58104
+ * IPsApi - object-oriented interface
58105
+ * @export
58106
+ * @class IPsApi
58107
+ * @extends {BaseAPI}
58108
+ */
58109
+ export class IPsApi extends BaseAPI {
58110
+ /**
58111
+ * Returns the list of static IP addresses used by Qovery\'s NAT gateways for outbound traffic. Customers can allow-list these IPs on their side. This endpoint is public and does not require authentication.
58112
+ * @summary List Qovery NAT gateway IP addresses
58113
+ * @param {*} [options] Override http request option.
58114
+ * @throws {RequiredError}
58115
+ * @memberof IPsApi
58116
+ */
58117
+ public listQoveryIps(options?: RawAxiosRequestConfig) {
58118
+ return IPsApiFp(this.configuration).listQoveryIps(options).then((request) => request(this.axios, this.basePath));
58119
+ }
58120
+ }
58121
+
58122
+
58123
+
58004
58124
  /**
58005
58125
  * JobActionsApi - axios parameter creator
58006
58126
  * @export