qovery-typescript-axios 1.1.924 → 1.1.925
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 +114 -0
- package/dist/api.d.ts +68 -0
- package/dist/api.js +101 -4
- package/dist/esm/api.d.ts +68 -0
- package/dist/esm/api.js +93 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -22105,6 +22105,19 @@ export const QoveryDnsProviderResponseProviderEnum = {
|
|
|
22105
22105
|
|
|
22106
22106
|
export type QoveryDnsProviderResponseProviderEnum = typeof QoveryDnsProviderResponseProviderEnum[keyof typeof QoveryDnsProviderResponseProviderEnum];
|
|
22107
22107
|
|
|
22108
|
+
/**
|
|
22109
|
+
*
|
|
22110
|
+
* @export
|
|
22111
|
+
* @interface QoveryIpsResponse
|
|
22112
|
+
*/
|
|
22113
|
+
export interface QoveryIpsResponse {
|
|
22114
|
+
/**
|
|
22115
|
+
* IP addresses used by Qovery\'s NAT gateways for outbound traffic.
|
|
22116
|
+
* @type {Array<string>}
|
|
22117
|
+
* @memberof QoveryIpsResponse
|
|
22118
|
+
*/
|
|
22119
|
+
'ips': Array<string>;
|
|
22120
|
+
}
|
|
22108
22121
|
/**
|
|
22109
22122
|
*
|
|
22110
22123
|
* @export
|
|
@@ -58001,6 +58014,107 @@ export class HelmsApi extends BaseAPI {
|
|
|
58001
58014
|
|
|
58002
58015
|
|
|
58003
58016
|
|
|
58017
|
+
/**
|
|
58018
|
+
* IPsApi - axios parameter creator
|
|
58019
|
+
* @export
|
|
58020
|
+
*/
|
|
58021
|
+
export const IPsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
58022
|
+
return {
|
|
58023
|
+
/**
|
|
58024
|
+
* 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.
|
|
58025
|
+
* @summary List Qovery NAT gateway IP addresses
|
|
58026
|
+
* @param {*} [options] Override http request option.
|
|
58027
|
+
* @throws {RequiredError}
|
|
58028
|
+
*/
|
|
58029
|
+
listQoveryIps: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
58030
|
+
const localVarPath = `/ips`;
|
|
58031
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
58032
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
58033
|
+
let baseOptions;
|
|
58034
|
+
if (configuration) {
|
|
58035
|
+
baseOptions = configuration.baseOptions;
|
|
58036
|
+
}
|
|
58037
|
+
|
|
58038
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
58039
|
+
const localVarHeaderParameter = {} as any;
|
|
58040
|
+
const localVarQueryParameter = {} as any;
|
|
58041
|
+
|
|
58042
|
+
|
|
58043
|
+
|
|
58044
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
58045
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
58046
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
58047
|
+
|
|
58048
|
+
return {
|
|
58049
|
+
url: toPathString(localVarUrlObj),
|
|
58050
|
+
options: localVarRequestOptions,
|
|
58051
|
+
};
|
|
58052
|
+
},
|
|
58053
|
+
}
|
|
58054
|
+
};
|
|
58055
|
+
|
|
58056
|
+
/**
|
|
58057
|
+
* IPsApi - functional programming interface
|
|
58058
|
+
* @export
|
|
58059
|
+
*/
|
|
58060
|
+
export const IPsApiFp = function(configuration?: Configuration) {
|
|
58061
|
+
const localVarAxiosParamCreator = IPsApiAxiosParamCreator(configuration)
|
|
58062
|
+
return {
|
|
58063
|
+
/**
|
|
58064
|
+
* 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.
|
|
58065
|
+
* @summary List Qovery NAT gateway IP addresses
|
|
58066
|
+
* @param {*} [options] Override http request option.
|
|
58067
|
+
* @throws {RequiredError}
|
|
58068
|
+
*/
|
|
58069
|
+
async listQoveryIps(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<QoveryIpsResponse>> {
|
|
58070
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listQoveryIps(options);
|
|
58071
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
58072
|
+
const localVarOperationServerBasePath = operationServerMap['IPsApi.listQoveryIps']?.[localVarOperationServerIndex]?.url;
|
|
58073
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
58074
|
+
},
|
|
58075
|
+
}
|
|
58076
|
+
};
|
|
58077
|
+
|
|
58078
|
+
/**
|
|
58079
|
+
* IPsApi - factory interface
|
|
58080
|
+
* @export
|
|
58081
|
+
*/
|
|
58082
|
+
export const IPsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
58083
|
+
const localVarFp = IPsApiFp(configuration)
|
|
58084
|
+
return {
|
|
58085
|
+
/**
|
|
58086
|
+
* 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.
|
|
58087
|
+
* @summary List Qovery NAT gateway IP addresses
|
|
58088
|
+
* @param {*} [options] Override http request option.
|
|
58089
|
+
* @throws {RequiredError}
|
|
58090
|
+
*/
|
|
58091
|
+
listQoveryIps(options?: RawAxiosRequestConfig): AxiosPromise<QoveryIpsResponse> {
|
|
58092
|
+
return localVarFp.listQoveryIps(options).then((request) => request(axios, basePath));
|
|
58093
|
+
},
|
|
58094
|
+
};
|
|
58095
|
+
};
|
|
58096
|
+
|
|
58097
|
+
/**
|
|
58098
|
+
* IPsApi - object-oriented interface
|
|
58099
|
+
* @export
|
|
58100
|
+
* @class IPsApi
|
|
58101
|
+
* @extends {BaseAPI}
|
|
58102
|
+
*/
|
|
58103
|
+
export class IPsApi extends BaseAPI {
|
|
58104
|
+
/**
|
|
58105
|
+
* 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.
|
|
58106
|
+
* @summary List Qovery NAT gateway IP addresses
|
|
58107
|
+
* @param {*} [options] Override http request option.
|
|
58108
|
+
* @throws {RequiredError}
|
|
58109
|
+
* @memberof IPsApi
|
|
58110
|
+
*/
|
|
58111
|
+
public listQoveryIps(options?: RawAxiosRequestConfig) {
|
|
58112
|
+
return IPsApiFp(this.configuration).listQoveryIps(options).then((request) => request(this.axios, this.basePath));
|
|
58113
|
+
}
|
|
58114
|
+
}
|
|
58115
|
+
|
|
58116
|
+
|
|
58117
|
+
|
|
58004
58118
|
/**
|
|
58005
58119
|
* JobActionsApi - axios parameter creator
|
|
58006
58120
|
* @export
|
package/dist/api.d.ts
CHANGED
|
@@ -21436,6 +21436,19 @@ export declare const QoveryDnsProviderResponseProviderEnum: {
|
|
|
21436
21436
|
readonly QOVERY: "QOVERY";
|
|
21437
21437
|
};
|
|
21438
21438
|
export type QoveryDnsProviderResponseProviderEnum = typeof QoveryDnsProviderResponseProviderEnum[keyof typeof QoveryDnsProviderResponseProviderEnum];
|
|
21439
|
+
/**
|
|
21440
|
+
*
|
|
21441
|
+
* @export
|
|
21442
|
+
* @interface QoveryIpsResponse
|
|
21443
|
+
*/
|
|
21444
|
+
export interface QoveryIpsResponse {
|
|
21445
|
+
/**
|
|
21446
|
+
* IP addresses used by Qovery\'s NAT gateways for outbound traffic.
|
|
21447
|
+
* @type {Array<string>}
|
|
21448
|
+
* @memberof QoveryIpsResponse
|
|
21449
|
+
*/
|
|
21450
|
+
'ips': Array<string>;
|
|
21451
|
+
}
|
|
21439
21452
|
/**
|
|
21440
21453
|
*
|
|
21441
21454
|
* @export
|
|
@@ -39995,6 +40008,61 @@ export declare class HelmsApi extends BaseAPI {
|
|
|
39995
40008
|
*/
|
|
39996
40009
|
listHelms(environmentId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HelmResponseList, any, {}>>;
|
|
39997
40010
|
}
|
|
40011
|
+
/**
|
|
40012
|
+
* IPsApi - axios parameter creator
|
|
40013
|
+
* @export
|
|
40014
|
+
*/
|
|
40015
|
+
export declare const IPsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
40016
|
+
/**
|
|
40017
|
+
* 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.
|
|
40018
|
+
* @summary List Qovery NAT gateway IP addresses
|
|
40019
|
+
* @param {*} [options] Override http request option.
|
|
40020
|
+
* @throws {RequiredError}
|
|
40021
|
+
*/
|
|
40022
|
+
listQoveryIps: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
40023
|
+
};
|
|
40024
|
+
/**
|
|
40025
|
+
* IPsApi - functional programming interface
|
|
40026
|
+
* @export
|
|
40027
|
+
*/
|
|
40028
|
+
export declare const IPsApiFp: (configuration?: Configuration) => {
|
|
40029
|
+
/**
|
|
40030
|
+
* 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.
|
|
40031
|
+
* @summary List Qovery NAT gateway IP addresses
|
|
40032
|
+
* @param {*} [options] Override http request option.
|
|
40033
|
+
* @throws {RequiredError}
|
|
40034
|
+
*/
|
|
40035
|
+
listQoveryIps(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<QoveryIpsResponse>>;
|
|
40036
|
+
};
|
|
40037
|
+
/**
|
|
40038
|
+
* IPsApi - factory interface
|
|
40039
|
+
* @export
|
|
40040
|
+
*/
|
|
40041
|
+
export declare const IPsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
40042
|
+
/**
|
|
40043
|
+
* 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.
|
|
40044
|
+
* @summary List Qovery NAT gateway IP addresses
|
|
40045
|
+
* @param {*} [options] Override http request option.
|
|
40046
|
+
* @throws {RequiredError}
|
|
40047
|
+
*/
|
|
40048
|
+
listQoveryIps(options?: RawAxiosRequestConfig): AxiosPromise<QoveryIpsResponse>;
|
|
40049
|
+
};
|
|
40050
|
+
/**
|
|
40051
|
+
* IPsApi - object-oriented interface
|
|
40052
|
+
* @export
|
|
40053
|
+
* @class IPsApi
|
|
40054
|
+
* @extends {BaseAPI}
|
|
40055
|
+
*/
|
|
40056
|
+
export declare class IPsApi extends BaseAPI {
|
|
40057
|
+
/**
|
|
40058
|
+
* 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.
|
|
40059
|
+
* @summary List Qovery NAT gateway IP addresses
|
|
40060
|
+
* @param {*} [options] Override http request option.
|
|
40061
|
+
* @throws {RequiredError}
|
|
40062
|
+
* @memberof IPsApi
|
|
40063
|
+
*/
|
|
40064
|
+
listQoveryIps(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<QoveryIpsResponse, any, {}>>;
|
|
40065
|
+
}
|
|
39998
40066
|
/**
|
|
39999
40067
|
* JobActionsApi - axios parameter creator
|
|
40000
40068
|
* @export
|
package/dist/api.js
CHANGED
|
@@ -30,10 +30,10 @@ exports.BlueprintMainCallsApiAxiosParamCreator = exports.BlueprintCatalogApi = e
|
|
|
30
30
|
exports.ContainerSecretApiAxiosParamCreator = exports.ContainerRegistriesApi = exports.ContainerRegistriesApiFactory = exports.ContainerRegistriesApiFp = exports.ContainerRegistriesApiAxiosParamCreator = exports.ContainerMainCallsApi = exports.ContainerMainCallsApiFactory = exports.ContainerMainCallsApiFp = exports.ContainerMainCallsApiAxiosParamCreator = exports.ContainerLogsApi = exports.ContainerLogsApiFactory = exports.ContainerLogsApiFp = exports.ContainerLogsApiAxiosParamCreator = exports.ContainerEnvironmentVariableApi = exports.ContainerEnvironmentVariableApiFactory = exports.ContainerEnvironmentVariableApiFp = exports.ContainerEnvironmentVariableApiAxiosParamCreator = exports.ContainerDeploymentHistoryApi = exports.ContainerDeploymentHistoryApiFactory = exports.ContainerDeploymentHistoryApiFp = exports.ContainerDeploymentHistoryApiAxiosParamCreator = exports.ContainerCustomDomainApi = exports.ContainerCustomDomainApiFactory = exports.ContainerCustomDomainApiFp = exports.ContainerCustomDomainApiAxiosParamCreator = exports.ContainerConfigurationApi = exports.ContainerConfigurationApiFactory = exports.ContainerConfigurationApiFp = exports.ContainerConfigurationApiAxiosParamCreator = exports.ContainerActionsApi = exports.ContainerActionsApiFactory = exports.ContainerActionsApiFp = exports.ContainerActionsApiAxiosParamCreator = exports.ClustersApi = exports.ClustersApiFactory = exports.ClustersApiFp = exports.ClustersApiAxiosParamCreator = exports.CloudProviderCredentialsApi = exports.CloudProviderCredentialsApiFactory = exports.CloudProviderCredentialsApiFp = exports.CloudProviderCredentialsApiAxiosParamCreator = exports.ListAzureAKSInstanceTypeGpuEnum = exports.ListAWSEKSInstanceTypeGpuEnum = exports.CloudProviderApi = exports.CloudProviderApiFactory = exports.CloudProviderApiFp = exports.CloudProviderApiAxiosParamCreator = exports.BlueprintMainCallsApi = exports.BlueprintMainCallsApiFactory = exports.BlueprintMainCallsApiFp = void 0;
|
|
31
31
|
exports.EnvironmentDeploymentHistoryApiFactory = exports.EnvironmentDeploymentHistoryApiFp = exports.EnvironmentDeploymentHistoryApiAxiosParamCreator = exports.EnvironmentActionsApi = exports.EnvironmentActionsApiFactory = exports.EnvironmentActionsApiFp = exports.EnvironmentActionsApiAxiosParamCreator = exports.EnvironmentApi = exports.EnvironmentApiFactory = exports.EnvironmentApiFp = exports.EnvironmentApiAxiosParamCreator = exports.DeploymentStageMainCallsApi = exports.DeploymentStageMainCallsApiFactory = exports.DeploymentStageMainCallsApiFp = exports.DeploymentStageMainCallsApiAxiosParamCreator = exports.DeploymentQueueActionsApi = exports.DeploymentQueueActionsApiFactory = exports.DeploymentQueueActionsApiFp = exports.DeploymentQueueActionsApiAxiosParamCreator = exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.DatabasesApi = exports.DatabasesApiFactory = exports.DatabasesApiFp = exports.DatabasesApiAxiosParamCreator = exports.DatabaseMainCallsApi = exports.DatabaseMainCallsApiFactory = exports.DatabaseMainCallsApiFp = exports.DatabaseMainCallsApiAxiosParamCreator = exports.DatabaseDeploymentHistoryApi = exports.DatabaseDeploymentHistoryApiFactory = exports.DatabaseDeploymentHistoryApiFp = exports.DatabaseDeploymentHistoryApiAxiosParamCreator = exports.DatabaseApplicationApi = exports.DatabaseApplicationApiFactory = exports.DatabaseApplicationApiFp = exports.DatabaseApplicationApiAxiosParamCreator = exports.DatabaseActionsApi = exports.DatabaseActionsApiFactory = exports.DatabaseActionsApiFp = exports.DatabaseActionsApiAxiosParamCreator = exports.ContainersApi = exports.ContainersApiFactory = exports.ContainersApiFp = exports.ContainersApiAxiosParamCreator = exports.ContainerSecretApi = exports.ContainerSecretApiFactory = exports.ContainerSecretApiFp = void 0;
|
|
32
32
|
exports.HelmDeploymentHistoryApiAxiosParamCreator = exports.HelmCustomDomainApi = exports.HelmCustomDomainApiFactory = exports.HelmCustomDomainApiFp = exports.HelmCustomDomainApiAxiosParamCreator = exports.HelmConfigurationApi = exports.HelmConfigurationApiFactory = exports.HelmConfigurationApiFp = exports.HelmConfigurationApiAxiosParamCreator = exports.HelmActionsApi = exports.HelmActionsApiFactory = exports.HelmActionsApiFp = exports.HelmActionsApiAxiosParamCreator = exports.GithubAppApi = exports.GithubAppApiFactory = exports.GithubAppApiFp = exports.GithubAppApiAxiosParamCreator = exports.GitRepositoriesApi = exports.GitRepositoriesApiFactory = exports.GitRepositoriesApiFp = exports.GitRepositoriesApiAxiosParamCreator = exports.EnvironmentsApi = exports.EnvironmentsApiFactory = exports.EnvironmentsApiFp = exports.EnvironmentsApiAxiosParamCreator = exports.EnvironmentVariableApi = exports.EnvironmentVariableApiFactory = exports.EnvironmentVariableApiFp = exports.EnvironmentVariableApiAxiosParamCreator = exports.EnvironmentSecretApi = exports.EnvironmentSecretApiFactory = exports.EnvironmentSecretApiFp = exports.EnvironmentSecretApiAxiosParamCreator = exports.EnvironmentMainCallsApi = exports.EnvironmentMainCallsApiFactory = exports.EnvironmentMainCallsApiFp = exports.EnvironmentMainCallsApiAxiosParamCreator = exports.EnvironmentLogsApi = exports.EnvironmentLogsApiFactory = exports.EnvironmentLogsApiFp = exports.EnvironmentLogsApiAxiosParamCreator = exports.EnvironmentExportApi = exports.EnvironmentExportApiFactory = exports.EnvironmentExportApiFp = exports.EnvironmentExportApiAxiosParamCreator = exports.EnvironmentDeploymentRuleApi = exports.EnvironmentDeploymentRuleApiFactory = exports.EnvironmentDeploymentRuleApiFp = exports.EnvironmentDeploymentRuleApiAxiosParamCreator = exports.EnvironmentDeploymentHistoryApi = void 0;
|
|
33
|
-
exports.
|
|
34
|
-
exports.
|
|
35
|
-
exports.
|
|
36
|
-
exports.VariableMainCallsApi = exports.VariableMainCallsApiFactory = exports.VariableMainCallsApiFp = exports.VariableMainCallsApiAxiosParamCreator = exports.UserSignUpApi = exports.UserSignUpApiFactory = exports.UserSignUpApiFp = exports.UserSignUpApiAxiosParamCreator = exports.TerraformsApi = exports.TerraformsApiFactory = exports.TerraformsApiFp = exports.TerraformsApiAxiosParamCreator = exports.TerraformResourcesApi = exports.TerraformResourcesApiFactory = exports.TerraformResourcesApiFp = exports.TerraformResourcesApiAxiosParamCreator = exports.TerraformMainCallsApi = exports.TerraformMainCallsApiFactory = exports.TerraformMainCallsApiFp = exports.TerraformMainCallsApiAxiosParamCreator = exports.TerraformDeploymentRestrictionApi = exports.TerraformDeploymentRestrictionApiFactory = exports.TerraformDeploymentRestrictionApiFp = exports.TerraformDeploymentRestrictionApiAxiosParamCreator = exports.TerraformDeploymentHistoryApi = exports.TerraformDeploymentHistoryApiFactory = void 0;
|
|
33
|
+
exports.JobSecretApiFactory = exports.JobSecretApiFp = exports.JobSecretApiAxiosParamCreator = exports.JobMainCallsApi = exports.JobMainCallsApiFactory = exports.JobMainCallsApiFp = exports.JobMainCallsApiAxiosParamCreator = exports.JobEnvironmentVariableApi = exports.JobEnvironmentVariableApiFactory = exports.JobEnvironmentVariableApiFp = exports.JobEnvironmentVariableApiAxiosParamCreator = exports.JobDeploymentRestrictionApi = exports.JobDeploymentRestrictionApiFactory = exports.JobDeploymentRestrictionApiFp = exports.JobDeploymentRestrictionApiAxiosParamCreator = exports.JobDeploymentHistoryApi = exports.JobDeploymentHistoryApiFactory = exports.JobDeploymentHistoryApiFp = exports.JobDeploymentHistoryApiAxiosParamCreator = exports.JobConfigurationApi = exports.JobConfigurationApiFactory = exports.JobConfigurationApiFp = exports.JobConfigurationApiAxiosParamCreator = exports.JobActionsApi = exports.JobActionsApiFactory = exports.JobActionsApiFp = exports.JobActionsApiAxiosParamCreator = exports.IPsApi = exports.IPsApiFactory = exports.IPsApiFp = exports.IPsApiAxiosParamCreator = exports.HelmsApi = exports.HelmsApiFactory = exports.HelmsApiFp = exports.HelmsApiAxiosParamCreator = exports.HelmRepositoriesApi = exports.HelmRepositoriesApiFactory = exports.HelmRepositoriesApiFp = exports.HelmRepositoriesApiAxiosParamCreator = exports.HelmMainCallsApi = exports.HelmMainCallsApiFactory = exports.HelmMainCallsApiFp = exports.HelmMainCallsApiAxiosParamCreator = exports.HelmDeploymentRestrictionApi = exports.HelmDeploymentRestrictionApiFactory = exports.HelmDeploymentRestrictionApiFp = exports.HelmDeploymentRestrictionApiAxiosParamCreator = exports.HelmDeploymentHistoryApi = exports.HelmDeploymentHistoryApiFactory = exports.HelmDeploymentHistoryApiFp = void 0;
|
|
34
|
+
exports.OrganizationWebhookApiAxiosParamCreator = exports.OrganizationMainCallsApi = exports.OrganizationMainCallsApiFactory = exports.OrganizationMainCallsApiFp = exports.OrganizationMainCallsApiAxiosParamCreator = exports.OrganizationLabelsGroupApi = exports.OrganizationLabelsGroupApiFactory = exports.OrganizationLabelsGroupApiFp = exports.OrganizationLabelsGroupApiAxiosParamCreator = exports.OrganizationEventApi = exports.OrganizationEventApiFactory = exports.OrganizationEventApiFp = exports.OrganizationEventApiAxiosParamCreator = exports.OrganizationEnterpriseConnectionApi = exports.OrganizationEnterpriseConnectionApiFactory = exports.OrganizationEnterpriseConnectionApiFp = exports.OrganizationEnterpriseConnectionApiAxiosParamCreator = exports.OrganizationCustomRoleApi = exports.OrganizationCustomRoleApiFactory = exports.OrganizationCustomRoleApiFp = exports.OrganizationCustomRoleApiAxiosParamCreator = exports.OrganizationClusterLockApi = exports.OrganizationClusterLockApiFactory = exports.OrganizationClusterLockApiFp = exports.OrganizationClusterLockApiAxiosParamCreator = exports.OrganizationApiTokenApi = exports.OrganizationApiTokenApiFactory = exports.OrganizationApiTokenApiFp = exports.OrganizationApiTokenApiAxiosParamCreator = exports.OrganizationAnnotationsGroupApi = exports.OrganizationAnnotationsGroupApiFactory = exports.OrganizationAnnotationsGroupApiFp = exports.OrganizationAnnotationsGroupApiAxiosParamCreator = exports.OrganizationAccountGitRepositoriesApi = exports.OrganizationAccountGitRepositoriesApiFactory = exports.OrganizationAccountGitRepositoriesApiFp = exports.OrganizationAccountGitRepositoriesApiAxiosParamCreator = exports.MembersApi = exports.MembersApiFactory = exports.MembersApiFp = exports.MembersApiAxiosParamCreator = exports.LifecycleTemplateMainCallsApi = exports.LifecycleTemplateMainCallsApiFactory = exports.LifecycleTemplateMainCallsApiFp = exports.LifecycleTemplateMainCallsApiAxiosParamCreator = exports.JobsApi = exports.JobsApiFactory = exports.JobsApiFp = exports.JobsApiAxiosParamCreator = exports.JobSecretApi = void 0;
|
|
35
|
+
exports.TerraformConfigurationApiFp = exports.TerraformConfigurationApiAxiosParamCreator = exports.TerraformActionsApi = exports.TerraformActionsApiFactory = exports.TerraformActionsApiFp = exports.TerraformActionsApiAxiosParamCreator = exports.GetIngressDeploymentStatusServiceTypeEnum = exports.ServiceStatusApi = exports.ServiceStatusApiFactory = exports.ServiceStatusApiFp = exports.ServiceStatusApiAxiosParamCreator = exports.ServiceMainCallsApi = exports.ServiceMainCallsApiFactory = exports.ServiceMainCallsApiFp = exports.ServiceMainCallsApiAxiosParamCreator = exports.SecretManagerAccessApi = exports.SecretManagerAccessApiFactory = exports.SecretManagerAccessApiFp = exports.SecretManagerAccessApiAxiosParamCreator = exports.ReferralRewardsApi = exports.ReferralRewardsApiFactory = exports.ReferralRewardsApiFp = exports.ReferralRewardsApiAxiosParamCreator = exports.ProjectsApi = exports.ProjectsApiFactory = exports.ProjectsApiFp = exports.ProjectsApiAxiosParamCreator = exports.ProjectSecretApi = exports.ProjectSecretApiFactory = exports.ProjectSecretApiFp = exports.ProjectSecretApiAxiosParamCreator = exports.ProjectMainCallsApi = exports.ProjectMainCallsApiFactory = exports.ProjectMainCallsApiFp = exports.ProjectMainCallsApiAxiosParamCreator = exports.ProjectEnvironmentVariableApi = exports.ProjectEnvironmentVariableApiFactory = exports.ProjectEnvironmentVariableApiFp = exports.ProjectEnvironmentVariableApiAxiosParamCreator = exports.ProjectDeploymentRuleApi = exports.ProjectDeploymentRuleApiFactory = exports.ProjectDeploymentRuleApiFp = exports.ProjectDeploymentRuleApiAxiosParamCreator = exports.PlatformConfigurationApi = exports.PlatformConfigurationApiFactory = exports.PlatformConfigurationApiFp = exports.PlatformConfigurationApiAxiosParamCreator = exports.OrganizationWebhookApi = exports.OrganizationWebhookApiFactory = exports.OrganizationWebhookApiFp = void 0;
|
|
36
|
+
exports.VariableMainCallsApi = exports.VariableMainCallsApiFactory = exports.VariableMainCallsApiFp = exports.VariableMainCallsApiAxiosParamCreator = exports.UserSignUpApi = exports.UserSignUpApiFactory = exports.UserSignUpApiFp = exports.UserSignUpApiAxiosParamCreator = exports.TerraformsApi = exports.TerraformsApiFactory = exports.TerraformsApiFp = exports.TerraformsApiAxiosParamCreator = exports.TerraformResourcesApi = exports.TerraformResourcesApiFactory = exports.TerraformResourcesApiFp = exports.TerraformResourcesApiAxiosParamCreator = exports.TerraformMainCallsApi = exports.TerraformMainCallsApiFactory = exports.TerraformMainCallsApiFp = exports.TerraformMainCallsApiAxiosParamCreator = exports.TerraformDeploymentRestrictionApi = exports.TerraformDeploymentRestrictionApiFactory = exports.TerraformDeploymentRestrictionApiFp = exports.TerraformDeploymentRestrictionApiAxiosParamCreator = exports.TerraformDeploymentHistoryApi = exports.TerraformDeploymentHistoryApiFactory = exports.TerraformDeploymentHistoryApiFp = exports.TerraformDeploymentHistoryApiAxiosParamCreator = exports.TerraformConfigurationApi = exports.TerraformConfigurationApiFactory = void 0;
|
|
37
37
|
const axios_1 = require("axios");
|
|
38
38
|
// Some imports not used depending on template conditions
|
|
39
39
|
// @ts-ignore
|
|
@@ -31279,6 +31279,103 @@ class HelmsApi extends base_1.BaseAPI {
|
|
|
31279
31279
|
}
|
|
31280
31280
|
}
|
|
31281
31281
|
exports.HelmsApi = HelmsApi;
|
|
31282
|
+
/**
|
|
31283
|
+
* IPsApi - axios parameter creator
|
|
31284
|
+
* @export
|
|
31285
|
+
*/
|
|
31286
|
+
const IPsApiAxiosParamCreator = function (configuration) {
|
|
31287
|
+
return {
|
|
31288
|
+
/**
|
|
31289
|
+
* 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.
|
|
31290
|
+
* @summary List Qovery NAT gateway IP addresses
|
|
31291
|
+
* @param {*} [options] Override http request option.
|
|
31292
|
+
* @throws {RequiredError}
|
|
31293
|
+
*/
|
|
31294
|
+
listQoveryIps: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
31295
|
+
const localVarPath = `/ips`;
|
|
31296
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
31297
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
31298
|
+
let baseOptions;
|
|
31299
|
+
if (configuration) {
|
|
31300
|
+
baseOptions = configuration.baseOptions;
|
|
31301
|
+
}
|
|
31302
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
31303
|
+
const localVarHeaderParameter = {};
|
|
31304
|
+
const localVarQueryParameter = {};
|
|
31305
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
31306
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
31307
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
31308
|
+
return {
|
|
31309
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
31310
|
+
options: localVarRequestOptions,
|
|
31311
|
+
};
|
|
31312
|
+
}),
|
|
31313
|
+
};
|
|
31314
|
+
};
|
|
31315
|
+
exports.IPsApiAxiosParamCreator = IPsApiAxiosParamCreator;
|
|
31316
|
+
/**
|
|
31317
|
+
* IPsApi - functional programming interface
|
|
31318
|
+
* @export
|
|
31319
|
+
*/
|
|
31320
|
+
const IPsApiFp = function (configuration) {
|
|
31321
|
+
const localVarAxiosParamCreator = (0, exports.IPsApiAxiosParamCreator)(configuration);
|
|
31322
|
+
return {
|
|
31323
|
+
/**
|
|
31324
|
+
* 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.
|
|
31325
|
+
* @summary List Qovery NAT gateway IP addresses
|
|
31326
|
+
* @param {*} [options] Override http request option.
|
|
31327
|
+
* @throws {RequiredError}
|
|
31328
|
+
*/
|
|
31329
|
+
listQoveryIps(options) {
|
|
31330
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
31331
|
+
var _a, _b, _c;
|
|
31332
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.listQoveryIps(options);
|
|
31333
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
31334
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['IPsApi.listQoveryIps']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
31335
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
31336
|
+
});
|
|
31337
|
+
},
|
|
31338
|
+
};
|
|
31339
|
+
};
|
|
31340
|
+
exports.IPsApiFp = IPsApiFp;
|
|
31341
|
+
/**
|
|
31342
|
+
* IPsApi - factory interface
|
|
31343
|
+
* @export
|
|
31344
|
+
*/
|
|
31345
|
+
const IPsApiFactory = function (configuration, basePath, axios) {
|
|
31346
|
+
const localVarFp = (0, exports.IPsApiFp)(configuration);
|
|
31347
|
+
return {
|
|
31348
|
+
/**
|
|
31349
|
+
* 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.
|
|
31350
|
+
* @summary List Qovery NAT gateway IP addresses
|
|
31351
|
+
* @param {*} [options] Override http request option.
|
|
31352
|
+
* @throws {RequiredError}
|
|
31353
|
+
*/
|
|
31354
|
+
listQoveryIps(options) {
|
|
31355
|
+
return localVarFp.listQoveryIps(options).then((request) => request(axios, basePath));
|
|
31356
|
+
},
|
|
31357
|
+
};
|
|
31358
|
+
};
|
|
31359
|
+
exports.IPsApiFactory = IPsApiFactory;
|
|
31360
|
+
/**
|
|
31361
|
+
* IPsApi - object-oriented interface
|
|
31362
|
+
* @export
|
|
31363
|
+
* @class IPsApi
|
|
31364
|
+
* @extends {BaseAPI}
|
|
31365
|
+
*/
|
|
31366
|
+
class IPsApi extends base_1.BaseAPI {
|
|
31367
|
+
/**
|
|
31368
|
+
* 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.
|
|
31369
|
+
* @summary List Qovery NAT gateway IP addresses
|
|
31370
|
+
* @param {*} [options] Override http request option.
|
|
31371
|
+
* @throws {RequiredError}
|
|
31372
|
+
* @memberof IPsApi
|
|
31373
|
+
*/
|
|
31374
|
+
listQoveryIps(options) {
|
|
31375
|
+
return (0, exports.IPsApiFp)(this.configuration).listQoveryIps(options).then((request) => request(this.axios, this.basePath));
|
|
31376
|
+
}
|
|
31377
|
+
}
|
|
31378
|
+
exports.IPsApi = IPsApi;
|
|
31282
31379
|
/**
|
|
31283
31380
|
* JobActionsApi - axios parameter creator
|
|
31284
31381
|
* @export
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -21436,6 +21436,19 @@ export declare const QoveryDnsProviderResponseProviderEnum: {
|
|
|
21436
21436
|
readonly QOVERY: "QOVERY";
|
|
21437
21437
|
};
|
|
21438
21438
|
export type QoveryDnsProviderResponseProviderEnum = typeof QoveryDnsProviderResponseProviderEnum[keyof typeof QoveryDnsProviderResponseProviderEnum];
|
|
21439
|
+
/**
|
|
21440
|
+
*
|
|
21441
|
+
* @export
|
|
21442
|
+
* @interface QoveryIpsResponse
|
|
21443
|
+
*/
|
|
21444
|
+
export interface QoveryIpsResponse {
|
|
21445
|
+
/**
|
|
21446
|
+
* IP addresses used by Qovery\'s NAT gateways for outbound traffic.
|
|
21447
|
+
* @type {Array<string>}
|
|
21448
|
+
* @memberof QoveryIpsResponse
|
|
21449
|
+
*/
|
|
21450
|
+
'ips': Array<string>;
|
|
21451
|
+
}
|
|
21439
21452
|
/**
|
|
21440
21453
|
*
|
|
21441
21454
|
* @export
|
|
@@ -39995,6 +40008,61 @@ export declare class HelmsApi extends BaseAPI {
|
|
|
39995
40008
|
*/
|
|
39996
40009
|
listHelms(environmentId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HelmResponseList, any, {}>>;
|
|
39997
40010
|
}
|
|
40011
|
+
/**
|
|
40012
|
+
* IPsApi - axios parameter creator
|
|
40013
|
+
* @export
|
|
40014
|
+
*/
|
|
40015
|
+
export declare const IPsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
40016
|
+
/**
|
|
40017
|
+
* 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.
|
|
40018
|
+
* @summary List Qovery NAT gateway IP addresses
|
|
40019
|
+
* @param {*} [options] Override http request option.
|
|
40020
|
+
* @throws {RequiredError}
|
|
40021
|
+
*/
|
|
40022
|
+
listQoveryIps: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
40023
|
+
};
|
|
40024
|
+
/**
|
|
40025
|
+
* IPsApi - functional programming interface
|
|
40026
|
+
* @export
|
|
40027
|
+
*/
|
|
40028
|
+
export declare const IPsApiFp: (configuration?: Configuration) => {
|
|
40029
|
+
/**
|
|
40030
|
+
* 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.
|
|
40031
|
+
* @summary List Qovery NAT gateway IP addresses
|
|
40032
|
+
* @param {*} [options] Override http request option.
|
|
40033
|
+
* @throws {RequiredError}
|
|
40034
|
+
*/
|
|
40035
|
+
listQoveryIps(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<QoveryIpsResponse>>;
|
|
40036
|
+
};
|
|
40037
|
+
/**
|
|
40038
|
+
* IPsApi - factory interface
|
|
40039
|
+
* @export
|
|
40040
|
+
*/
|
|
40041
|
+
export declare const IPsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
40042
|
+
/**
|
|
40043
|
+
* 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.
|
|
40044
|
+
* @summary List Qovery NAT gateway IP addresses
|
|
40045
|
+
* @param {*} [options] Override http request option.
|
|
40046
|
+
* @throws {RequiredError}
|
|
40047
|
+
*/
|
|
40048
|
+
listQoveryIps(options?: RawAxiosRequestConfig): AxiosPromise<QoveryIpsResponse>;
|
|
40049
|
+
};
|
|
40050
|
+
/**
|
|
40051
|
+
* IPsApi - object-oriented interface
|
|
40052
|
+
* @export
|
|
40053
|
+
* @class IPsApi
|
|
40054
|
+
* @extends {BaseAPI}
|
|
40055
|
+
*/
|
|
40056
|
+
export declare class IPsApi extends BaseAPI {
|
|
40057
|
+
/**
|
|
40058
|
+
* 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.
|
|
40059
|
+
* @summary List Qovery NAT gateway IP addresses
|
|
40060
|
+
* @param {*} [options] Override http request option.
|
|
40061
|
+
* @throws {RequiredError}
|
|
40062
|
+
* @memberof IPsApi
|
|
40063
|
+
*/
|
|
40064
|
+
listQoveryIps(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<QoveryIpsResponse, any, {}>>;
|
|
40065
|
+
}
|
|
39998
40066
|
/**
|
|
39999
40067
|
* JobActionsApi - axios parameter creator
|
|
40000
40068
|
* @export
|
package/dist/esm/api.js
CHANGED
|
@@ -31029,6 +31029,99 @@ export class HelmsApi extends BaseAPI {
|
|
|
31029
31029
|
return HelmsApiFp(this.configuration).listHelms(environmentId, options).then((request) => request(this.axios, this.basePath));
|
|
31030
31030
|
}
|
|
31031
31031
|
}
|
|
31032
|
+
/**
|
|
31033
|
+
* IPsApi - axios parameter creator
|
|
31034
|
+
* @export
|
|
31035
|
+
*/
|
|
31036
|
+
export const IPsApiAxiosParamCreator = function (configuration) {
|
|
31037
|
+
return {
|
|
31038
|
+
/**
|
|
31039
|
+
* 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.
|
|
31040
|
+
* @summary List Qovery NAT gateway IP addresses
|
|
31041
|
+
* @param {*} [options] Override http request option.
|
|
31042
|
+
* @throws {RequiredError}
|
|
31043
|
+
*/
|
|
31044
|
+
listQoveryIps: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
31045
|
+
const localVarPath = `/ips`;
|
|
31046
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
31047
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
31048
|
+
let baseOptions;
|
|
31049
|
+
if (configuration) {
|
|
31050
|
+
baseOptions = configuration.baseOptions;
|
|
31051
|
+
}
|
|
31052
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
31053
|
+
const localVarHeaderParameter = {};
|
|
31054
|
+
const localVarQueryParameter = {};
|
|
31055
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
31056
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
31057
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
31058
|
+
return {
|
|
31059
|
+
url: toPathString(localVarUrlObj),
|
|
31060
|
+
options: localVarRequestOptions,
|
|
31061
|
+
};
|
|
31062
|
+
}),
|
|
31063
|
+
};
|
|
31064
|
+
};
|
|
31065
|
+
/**
|
|
31066
|
+
* IPsApi - functional programming interface
|
|
31067
|
+
* @export
|
|
31068
|
+
*/
|
|
31069
|
+
export const IPsApiFp = function (configuration) {
|
|
31070
|
+
const localVarAxiosParamCreator = IPsApiAxiosParamCreator(configuration);
|
|
31071
|
+
return {
|
|
31072
|
+
/**
|
|
31073
|
+
* 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.
|
|
31074
|
+
* @summary List Qovery NAT gateway IP addresses
|
|
31075
|
+
* @param {*} [options] Override http request option.
|
|
31076
|
+
* @throws {RequiredError}
|
|
31077
|
+
*/
|
|
31078
|
+
listQoveryIps(options) {
|
|
31079
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
31080
|
+
var _a, _b, _c;
|
|
31081
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.listQoveryIps(options);
|
|
31082
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
31083
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['IPsApi.listQoveryIps']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
31084
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
31085
|
+
});
|
|
31086
|
+
},
|
|
31087
|
+
};
|
|
31088
|
+
};
|
|
31089
|
+
/**
|
|
31090
|
+
* IPsApi - factory interface
|
|
31091
|
+
* @export
|
|
31092
|
+
*/
|
|
31093
|
+
export const IPsApiFactory = function (configuration, basePath, axios) {
|
|
31094
|
+
const localVarFp = IPsApiFp(configuration);
|
|
31095
|
+
return {
|
|
31096
|
+
/**
|
|
31097
|
+
* 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.
|
|
31098
|
+
* @summary List Qovery NAT gateway IP addresses
|
|
31099
|
+
* @param {*} [options] Override http request option.
|
|
31100
|
+
* @throws {RequiredError}
|
|
31101
|
+
*/
|
|
31102
|
+
listQoveryIps(options) {
|
|
31103
|
+
return localVarFp.listQoveryIps(options).then((request) => request(axios, basePath));
|
|
31104
|
+
},
|
|
31105
|
+
};
|
|
31106
|
+
};
|
|
31107
|
+
/**
|
|
31108
|
+
* IPsApi - object-oriented interface
|
|
31109
|
+
* @export
|
|
31110
|
+
* @class IPsApi
|
|
31111
|
+
* @extends {BaseAPI}
|
|
31112
|
+
*/
|
|
31113
|
+
export class IPsApi extends BaseAPI {
|
|
31114
|
+
/**
|
|
31115
|
+
* 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.
|
|
31116
|
+
* @summary List Qovery NAT gateway IP addresses
|
|
31117
|
+
* @param {*} [options] Override http request option.
|
|
31118
|
+
* @throws {RequiredError}
|
|
31119
|
+
* @memberof IPsApi
|
|
31120
|
+
*/
|
|
31121
|
+
listQoveryIps(options) {
|
|
31122
|
+
return IPsApiFp(this.configuration).listQoveryIps(options).then((request) => request(this.axios, this.basePath));
|
|
31123
|
+
}
|
|
31124
|
+
}
|
|
31032
31125
|
/**
|
|
31033
31126
|
* JobActionsApi - axios parameter creator
|
|
31034
31127
|
* @export
|