qovery-typescript-axios 1.1.898 → 1.1.901
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 +235 -1
- package/dist/api.d.ts +164 -1
- package/dist/api.js +147 -10
- package/dist/esm/api.d.ts +164 -1
- package/dist/esm/api.js +132 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -7116,11 +7116,53 @@ export interface ContainerRegistryRequestConfig {
|
|
|
7116
7116
|
*/
|
|
7117
7117
|
'scaleway_project_id'?: string;
|
|
7118
7118
|
/**
|
|
7119
|
-
* Required if kind is `GCP_ARTIFACT_REGISTRY
|
|
7119
|
+
* Required if kind is `GCP_ARTIFACT_REGISTRY`. For GCP Artifact Registry, you can either set a service account JSON key with json_credentials or use Workload Identity Federation with gcp_credentials_type.
|
|
7120
7120
|
* @type {string}
|
|
7121
7121
|
* @memberof ContainerRegistryRequestConfig
|
|
7122
7122
|
*/
|
|
7123
7123
|
'json_credentials'?: string;
|
|
7124
|
+
/**
|
|
7125
|
+
* For GCP Artifact Registry, you can either set a service account JSON key with json_credentials or use Workload Identity Federation with gcp_credentials_type.
|
|
7126
|
+
* @type {string}
|
|
7127
|
+
* @memberof ContainerRegistryRequestConfig
|
|
7128
|
+
*/
|
|
7129
|
+
'gcp_credentials_type'?: ContainerRegistryRequestConfigGcpCredentialsTypeEnum;
|
|
7130
|
+
/**
|
|
7131
|
+
* Required if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
7132
|
+
* @type {string}
|
|
7133
|
+
* @memberof ContainerRegistryRequestConfig
|
|
7134
|
+
*/
|
|
7135
|
+
'project_id'?: string;
|
|
7136
|
+
/**
|
|
7137
|
+
* Required if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
7138
|
+
* @type {string}
|
|
7139
|
+
* @memberof ContainerRegistryRequestConfig
|
|
7140
|
+
*/
|
|
7141
|
+
'service_account_email'?: string;
|
|
7142
|
+
/**
|
|
7143
|
+
* Required if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
7144
|
+
* @type {string}
|
|
7145
|
+
* @memberof ContainerRegistryRequestConfig
|
|
7146
|
+
*/
|
|
7147
|
+
'workload_identity_project_number'?: string;
|
|
7148
|
+
/**
|
|
7149
|
+
* Required if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
7150
|
+
* @type {string}
|
|
7151
|
+
* @memberof ContainerRegistryRequestConfig
|
|
7152
|
+
*/
|
|
7153
|
+
'workload_identity_pool_id'?: string;
|
|
7154
|
+
/**
|
|
7155
|
+
* Required if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
7156
|
+
* @type {string}
|
|
7157
|
+
* @memberof ContainerRegistryRequestConfig
|
|
7158
|
+
*/
|
|
7159
|
+
'workload_identity_provider_id'?: string;
|
|
7160
|
+
/**
|
|
7161
|
+
* Optional if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
7162
|
+
* @type {number}
|
|
7163
|
+
* @memberof ContainerRegistryRequestConfig
|
|
7164
|
+
*/
|
|
7165
|
+
'token_lifetime_seconds'?: number;
|
|
7124
7166
|
/**
|
|
7125
7167
|
* optional, for kind `DOCKER_HUB` We encourage you to set credentials for Docker Hub due to the limits on the pull rate
|
|
7126
7168
|
* @type {string}
|
|
@@ -7152,6 +7194,13 @@ export interface ContainerRegistryRequestConfig {
|
|
|
7152
7194
|
*/
|
|
7153
7195
|
'azure_subscription_id'?: string;
|
|
7154
7196
|
}
|
|
7197
|
+
|
|
7198
|
+
export const ContainerRegistryRequestConfigGcpCredentialsTypeEnum = {
|
|
7199
|
+
WORKLOAD_IDENTITY_FEDERATION: 'workload_identity_federation'
|
|
7200
|
+
} as const;
|
|
7201
|
+
|
|
7202
|
+
export type ContainerRegistryRequestConfigGcpCredentialsTypeEnum = typeof ContainerRegistryRequestConfigGcpCredentialsTypeEnum[keyof typeof ContainerRegistryRequestConfigGcpCredentialsTypeEnum];
|
|
7203
|
+
|
|
7155
7204
|
/**
|
|
7156
7205
|
*
|
|
7157
7206
|
* @export
|
|
@@ -7282,6 +7331,48 @@ export interface ContainerRegistryResponseAllOfConfig {
|
|
|
7282
7331
|
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7283
7332
|
*/
|
|
7284
7333
|
'role_arn'?: string;
|
|
7334
|
+
/**
|
|
7335
|
+
*
|
|
7336
|
+
* @type {string}
|
|
7337
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7338
|
+
*/
|
|
7339
|
+
'gcp_credentials_type'?: ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum;
|
|
7340
|
+
/**
|
|
7341
|
+
*
|
|
7342
|
+
* @type {string}
|
|
7343
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7344
|
+
*/
|
|
7345
|
+
'project_id'?: string;
|
|
7346
|
+
/**
|
|
7347
|
+
*
|
|
7348
|
+
* @type {string}
|
|
7349
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7350
|
+
*/
|
|
7351
|
+
'service_account_email'?: string;
|
|
7352
|
+
/**
|
|
7353
|
+
*
|
|
7354
|
+
* @type {string}
|
|
7355
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7356
|
+
*/
|
|
7357
|
+
'workload_identity_project_number'?: string;
|
|
7358
|
+
/**
|
|
7359
|
+
*
|
|
7360
|
+
* @type {string}
|
|
7361
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7362
|
+
*/
|
|
7363
|
+
'workload_identity_pool_id'?: string;
|
|
7364
|
+
/**
|
|
7365
|
+
*
|
|
7366
|
+
* @type {string}
|
|
7367
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7368
|
+
*/
|
|
7369
|
+
'workload_identity_provider_id'?: string;
|
|
7370
|
+
/**
|
|
7371
|
+
*
|
|
7372
|
+
* @type {number}
|
|
7373
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7374
|
+
*/
|
|
7375
|
+
'token_lifetime_seconds'?: number;
|
|
7285
7376
|
/**
|
|
7286
7377
|
*
|
|
7287
7378
|
* @type {string}
|
|
@@ -7307,6 +7398,13 @@ export interface ContainerRegistryResponseAllOfConfig {
|
|
|
7307
7398
|
*/
|
|
7308
7399
|
'azure_application_object_id'?: string;
|
|
7309
7400
|
}
|
|
7401
|
+
|
|
7402
|
+
export const ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum = {
|
|
7403
|
+
WORKLOAD_IDENTITY_FEDERATION: 'workload_identity_federation'
|
|
7404
|
+
} as const;
|
|
7405
|
+
|
|
7406
|
+
export type ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum = typeof ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum[keyof typeof ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum];
|
|
7407
|
+
|
|
7310
7408
|
/**
|
|
7311
7409
|
*
|
|
7312
7410
|
* @export
|
|
@@ -32024,6 +32122,142 @@ export class BillingApi extends BaseAPI {
|
|
|
32024
32122
|
|
|
32025
32123
|
|
|
32026
32124
|
|
|
32125
|
+
/**
|
|
32126
|
+
* BlueprintCatalogApi - axios parameter creator
|
|
32127
|
+
* @export
|
|
32128
|
+
*/
|
|
32129
|
+
export const BlueprintCatalogApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
32130
|
+
return {
|
|
32131
|
+
/**
|
|
32132
|
+
*
|
|
32133
|
+
* @summary Get the README of a blueprint catalog service
|
|
32134
|
+
* @param {string} organizationId Organization ID
|
|
32135
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
32136
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
32137
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
32138
|
+
* @param {*} [options] Override http request option.
|
|
32139
|
+
* @throws {RequiredError}
|
|
32140
|
+
*/
|
|
32141
|
+
getBlueprintCatalogServiceReadme: async (organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
32142
|
+
// verify required parameter 'organizationId' is not null or undefined
|
|
32143
|
+
assertParamExists('getBlueprintCatalogServiceReadme', 'organizationId', organizationId)
|
|
32144
|
+
// verify required parameter 'provider' is not null or undefined
|
|
32145
|
+
assertParamExists('getBlueprintCatalogServiceReadme', 'provider', provider)
|
|
32146
|
+
// verify required parameter 'serviceFamily' is not null or undefined
|
|
32147
|
+
assertParamExists('getBlueprintCatalogServiceReadme', 'serviceFamily', serviceFamily)
|
|
32148
|
+
// verify required parameter 'serviceVersion' is not null or undefined
|
|
32149
|
+
assertParamExists('getBlueprintCatalogServiceReadme', 'serviceVersion', serviceVersion)
|
|
32150
|
+
const localVarPath = `/organization/{organizationId}/blueprint/catalog/{provider}/{serviceFamily}/{serviceVersion}/readme`
|
|
32151
|
+
.replace(`{${"organizationId"}}`, encodeURIComponent(String(organizationId)))
|
|
32152
|
+
.replace(`{${"provider"}}`, encodeURIComponent(String(provider)))
|
|
32153
|
+
.replace(`{${"serviceFamily"}}`, encodeURIComponent(String(serviceFamily)))
|
|
32154
|
+
.replace(`{${"serviceVersion"}}`, encodeURIComponent(String(serviceVersion)));
|
|
32155
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
32156
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
32157
|
+
let baseOptions;
|
|
32158
|
+
if (configuration) {
|
|
32159
|
+
baseOptions = configuration.baseOptions;
|
|
32160
|
+
}
|
|
32161
|
+
|
|
32162
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
32163
|
+
const localVarHeaderParameter = {} as any;
|
|
32164
|
+
const localVarQueryParameter = {} as any;
|
|
32165
|
+
|
|
32166
|
+
// authentication ApiKeyAuth required
|
|
32167
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
32168
|
+
|
|
32169
|
+
// authentication bearerAuth required
|
|
32170
|
+
// http bearer authentication required
|
|
32171
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
32172
|
+
|
|
32173
|
+
|
|
32174
|
+
|
|
32175
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
32176
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
32177
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
32178
|
+
|
|
32179
|
+
return {
|
|
32180
|
+
url: toPathString(localVarUrlObj),
|
|
32181
|
+
options: localVarRequestOptions,
|
|
32182
|
+
};
|
|
32183
|
+
},
|
|
32184
|
+
}
|
|
32185
|
+
};
|
|
32186
|
+
|
|
32187
|
+
/**
|
|
32188
|
+
* BlueprintCatalogApi - functional programming interface
|
|
32189
|
+
* @export
|
|
32190
|
+
*/
|
|
32191
|
+
export const BlueprintCatalogApiFp = function(configuration?: Configuration) {
|
|
32192
|
+
const localVarAxiosParamCreator = BlueprintCatalogApiAxiosParamCreator(configuration)
|
|
32193
|
+
return {
|
|
32194
|
+
/**
|
|
32195
|
+
*
|
|
32196
|
+
* @summary Get the README of a blueprint catalog service
|
|
32197
|
+
* @param {string} organizationId Organization ID
|
|
32198
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
32199
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
32200
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
32201
|
+
* @param {*} [options] Override http request option.
|
|
32202
|
+
* @throws {RequiredError}
|
|
32203
|
+
*/
|
|
32204
|
+
async getBlueprintCatalogServiceReadme(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>> {
|
|
32205
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getBlueprintCatalogServiceReadme(organizationId, provider, serviceFamily, serviceVersion, options);
|
|
32206
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
32207
|
+
const localVarOperationServerBasePath = operationServerMap['BlueprintCatalogApi.getBlueprintCatalogServiceReadme']?.[localVarOperationServerIndex]?.url;
|
|
32208
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
32209
|
+
},
|
|
32210
|
+
}
|
|
32211
|
+
};
|
|
32212
|
+
|
|
32213
|
+
/**
|
|
32214
|
+
* BlueprintCatalogApi - factory interface
|
|
32215
|
+
* @export
|
|
32216
|
+
*/
|
|
32217
|
+
export const BlueprintCatalogApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
32218
|
+
const localVarFp = BlueprintCatalogApiFp(configuration)
|
|
32219
|
+
return {
|
|
32220
|
+
/**
|
|
32221
|
+
*
|
|
32222
|
+
* @summary Get the README of a blueprint catalog service
|
|
32223
|
+
* @param {string} organizationId Organization ID
|
|
32224
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
32225
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
32226
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
32227
|
+
* @param {*} [options] Override http request option.
|
|
32228
|
+
* @throws {RequiredError}
|
|
32229
|
+
*/
|
|
32230
|
+
getBlueprintCatalogServiceReadme(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig): AxiosPromise<string> {
|
|
32231
|
+
return localVarFp.getBlueprintCatalogServiceReadme(organizationId, provider, serviceFamily, serviceVersion, options).then((request) => request(axios, basePath));
|
|
32232
|
+
},
|
|
32233
|
+
};
|
|
32234
|
+
};
|
|
32235
|
+
|
|
32236
|
+
/**
|
|
32237
|
+
* BlueprintCatalogApi - object-oriented interface
|
|
32238
|
+
* @export
|
|
32239
|
+
* @class BlueprintCatalogApi
|
|
32240
|
+
* @extends {BaseAPI}
|
|
32241
|
+
*/
|
|
32242
|
+
export class BlueprintCatalogApi extends BaseAPI {
|
|
32243
|
+
/**
|
|
32244
|
+
*
|
|
32245
|
+
* @summary Get the README of a blueprint catalog service
|
|
32246
|
+
* @param {string} organizationId Organization ID
|
|
32247
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
32248
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
32249
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
32250
|
+
* @param {*} [options] Override http request option.
|
|
32251
|
+
* @throws {RequiredError}
|
|
32252
|
+
* @memberof BlueprintCatalogApi
|
|
32253
|
+
*/
|
|
32254
|
+
public getBlueprintCatalogServiceReadme(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig) {
|
|
32255
|
+
return BlueprintCatalogApiFp(this.configuration).getBlueprintCatalogServiceReadme(organizationId, provider, serviceFamily, serviceVersion, options).then((request) => request(this.axios, this.basePath));
|
|
32256
|
+
}
|
|
32257
|
+
}
|
|
32258
|
+
|
|
32259
|
+
|
|
32260
|
+
|
|
32027
32261
|
/**
|
|
32028
32262
|
* BlueprintMainCallsApi - axios parameter creator
|
|
32029
32263
|
* @export
|
package/dist/api.d.ts
CHANGED
|
@@ -6919,11 +6919,53 @@ export interface ContainerRegistryRequestConfig {
|
|
|
6919
6919
|
*/
|
|
6920
6920
|
'scaleway_project_id'?: string;
|
|
6921
6921
|
/**
|
|
6922
|
-
* Required if kind is `GCP_ARTIFACT_REGISTRY
|
|
6922
|
+
* Required if kind is `GCP_ARTIFACT_REGISTRY`. For GCP Artifact Registry, you can either set a service account JSON key with json_credentials or use Workload Identity Federation with gcp_credentials_type.
|
|
6923
6923
|
* @type {string}
|
|
6924
6924
|
* @memberof ContainerRegistryRequestConfig
|
|
6925
6925
|
*/
|
|
6926
6926
|
'json_credentials'?: string;
|
|
6927
|
+
/**
|
|
6928
|
+
* For GCP Artifact Registry, you can either set a service account JSON key with json_credentials or use Workload Identity Federation with gcp_credentials_type.
|
|
6929
|
+
* @type {string}
|
|
6930
|
+
* @memberof ContainerRegistryRequestConfig
|
|
6931
|
+
*/
|
|
6932
|
+
'gcp_credentials_type'?: ContainerRegistryRequestConfigGcpCredentialsTypeEnum;
|
|
6933
|
+
/**
|
|
6934
|
+
* Required if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
6935
|
+
* @type {string}
|
|
6936
|
+
* @memberof ContainerRegistryRequestConfig
|
|
6937
|
+
*/
|
|
6938
|
+
'project_id'?: string;
|
|
6939
|
+
/**
|
|
6940
|
+
* Required if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
6941
|
+
* @type {string}
|
|
6942
|
+
* @memberof ContainerRegistryRequestConfig
|
|
6943
|
+
*/
|
|
6944
|
+
'service_account_email'?: string;
|
|
6945
|
+
/**
|
|
6946
|
+
* Required if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
6947
|
+
* @type {string}
|
|
6948
|
+
* @memberof ContainerRegistryRequestConfig
|
|
6949
|
+
*/
|
|
6950
|
+
'workload_identity_project_number'?: string;
|
|
6951
|
+
/**
|
|
6952
|
+
* Required if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
6953
|
+
* @type {string}
|
|
6954
|
+
* @memberof ContainerRegistryRequestConfig
|
|
6955
|
+
*/
|
|
6956
|
+
'workload_identity_pool_id'?: string;
|
|
6957
|
+
/**
|
|
6958
|
+
* Required if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
6959
|
+
* @type {string}
|
|
6960
|
+
* @memberof ContainerRegistryRequestConfig
|
|
6961
|
+
*/
|
|
6962
|
+
'workload_identity_provider_id'?: string;
|
|
6963
|
+
/**
|
|
6964
|
+
* Optional if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
6965
|
+
* @type {number}
|
|
6966
|
+
* @memberof ContainerRegistryRequestConfig
|
|
6967
|
+
*/
|
|
6968
|
+
'token_lifetime_seconds'?: number;
|
|
6927
6969
|
/**
|
|
6928
6970
|
* optional, for kind `DOCKER_HUB` We encourage you to set credentials for Docker Hub due to the limits on the pull rate
|
|
6929
6971
|
* @type {string}
|
|
@@ -6955,6 +6997,10 @@ export interface ContainerRegistryRequestConfig {
|
|
|
6955
6997
|
*/
|
|
6956
6998
|
'azure_subscription_id'?: string;
|
|
6957
6999
|
}
|
|
7000
|
+
export declare const ContainerRegistryRequestConfigGcpCredentialsTypeEnum: {
|
|
7001
|
+
readonly WORKLOAD_IDENTITY_FEDERATION: "workload_identity_federation";
|
|
7002
|
+
};
|
|
7003
|
+
export type ContainerRegistryRequestConfigGcpCredentialsTypeEnum = typeof ContainerRegistryRequestConfigGcpCredentialsTypeEnum[keyof typeof ContainerRegistryRequestConfigGcpCredentialsTypeEnum];
|
|
6958
7004
|
/**
|
|
6959
7005
|
*
|
|
6960
7006
|
* @export
|
|
@@ -7083,6 +7129,48 @@ export interface ContainerRegistryResponseAllOfConfig {
|
|
|
7083
7129
|
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7084
7130
|
*/
|
|
7085
7131
|
'role_arn'?: string;
|
|
7132
|
+
/**
|
|
7133
|
+
*
|
|
7134
|
+
* @type {string}
|
|
7135
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7136
|
+
*/
|
|
7137
|
+
'gcp_credentials_type'?: ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum;
|
|
7138
|
+
/**
|
|
7139
|
+
*
|
|
7140
|
+
* @type {string}
|
|
7141
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7142
|
+
*/
|
|
7143
|
+
'project_id'?: string;
|
|
7144
|
+
/**
|
|
7145
|
+
*
|
|
7146
|
+
* @type {string}
|
|
7147
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7148
|
+
*/
|
|
7149
|
+
'service_account_email'?: string;
|
|
7150
|
+
/**
|
|
7151
|
+
*
|
|
7152
|
+
* @type {string}
|
|
7153
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7154
|
+
*/
|
|
7155
|
+
'workload_identity_project_number'?: string;
|
|
7156
|
+
/**
|
|
7157
|
+
*
|
|
7158
|
+
* @type {string}
|
|
7159
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7160
|
+
*/
|
|
7161
|
+
'workload_identity_pool_id'?: string;
|
|
7162
|
+
/**
|
|
7163
|
+
*
|
|
7164
|
+
* @type {string}
|
|
7165
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7166
|
+
*/
|
|
7167
|
+
'workload_identity_provider_id'?: string;
|
|
7168
|
+
/**
|
|
7169
|
+
*
|
|
7170
|
+
* @type {number}
|
|
7171
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7172
|
+
*/
|
|
7173
|
+
'token_lifetime_seconds'?: number;
|
|
7086
7174
|
/**
|
|
7087
7175
|
*
|
|
7088
7176
|
* @type {string}
|
|
@@ -7108,6 +7196,10 @@ export interface ContainerRegistryResponseAllOfConfig {
|
|
|
7108
7196
|
*/
|
|
7109
7197
|
'azure_application_object_id'?: string;
|
|
7110
7198
|
}
|
|
7199
|
+
export declare const ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum: {
|
|
7200
|
+
readonly WORKLOAD_IDENTITY_FEDERATION: "workload_identity_federation";
|
|
7201
|
+
};
|
|
7202
|
+
export type ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum = typeof ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum[keyof typeof ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum];
|
|
7111
7203
|
/**
|
|
7112
7204
|
*
|
|
7113
7205
|
* @export
|
|
@@ -26988,6 +27080,77 @@ export declare class BillingApi extends BaseAPI {
|
|
|
26988
27080
|
*/
|
|
26989
27081
|
organizationDownloadAllInvoices(organizationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
26990
27082
|
}
|
|
27083
|
+
/**
|
|
27084
|
+
* BlueprintCatalogApi - axios parameter creator
|
|
27085
|
+
* @export
|
|
27086
|
+
*/
|
|
27087
|
+
export declare const BlueprintCatalogApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
27088
|
+
/**
|
|
27089
|
+
*
|
|
27090
|
+
* @summary Get the README of a blueprint catalog service
|
|
27091
|
+
* @param {string} organizationId Organization ID
|
|
27092
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
27093
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
27094
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
27095
|
+
* @param {*} [options] Override http request option.
|
|
27096
|
+
* @throws {RequiredError}
|
|
27097
|
+
*/
|
|
27098
|
+
getBlueprintCatalogServiceReadme: (organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27099
|
+
};
|
|
27100
|
+
/**
|
|
27101
|
+
* BlueprintCatalogApi - functional programming interface
|
|
27102
|
+
* @export
|
|
27103
|
+
*/
|
|
27104
|
+
export declare const BlueprintCatalogApiFp: (configuration?: Configuration) => {
|
|
27105
|
+
/**
|
|
27106
|
+
*
|
|
27107
|
+
* @summary Get the README of a blueprint catalog service
|
|
27108
|
+
* @param {string} organizationId Organization ID
|
|
27109
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
27110
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
27111
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
27112
|
+
* @param {*} [options] Override http request option.
|
|
27113
|
+
* @throws {RequiredError}
|
|
27114
|
+
*/
|
|
27115
|
+
getBlueprintCatalogServiceReadme(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
27116
|
+
};
|
|
27117
|
+
/**
|
|
27118
|
+
* BlueprintCatalogApi - factory interface
|
|
27119
|
+
* @export
|
|
27120
|
+
*/
|
|
27121
|
+
export declare const BlueprintCatalogApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
27122
|
+
/**
|
|
27123
|
+
*
|
|
27124
|
+
* @summary Get the README of a blueprint catalog service
|
|
27125
|
+
* @param {string} organizationId Organization ID
|
|
27126
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
27127
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
27128
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
27129
|
+
* @param {*} [options] Override http request option.
|
|
27130
|
+
* @throws {RequiredError}
|
|
27131
|
+
*/
|
|
27132
|
+
getBlueprintCatalogServiceReadme(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
27133
|
+
};
|
|
27134
|
+
/**
|
|
27135
|
+
* BlueprintCatalogApi - object-oriented interface
|
|
27136
|
+
* @export
|
|
27137
|
+
* @class BlueprintCatalogApi
|
|
27138
|
+
* @extends {BaseAPI}
|
|
27139
|
+
*/
|
|
27140
|
+
export declare class BlueprintCatalogApi extends BaseAPI {
|
|
27141
|
+
/**
|
|
27142
|
+
*
|
|
27143
|
+
* @summary Get the README of a blueprint catalog service
|
|
27144
|
+
* @param {string} organizationId Organization ID
|
|
27145
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
27146
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
27147
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
27148
|
+
* @param {*} [options] Override http request option.
|
|
27149
|
+
* @throws {RequiredError}
|
|
27150
|
+
* @memberof BlueprintCatalogApi
|
|
27151
|
+
*/
|
|
27152
|
+
getBlueprintCatalogServiceReadme(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
27153
|
+
}
|
|
26991
27154
|
/**
|
|
26992
27155
|
* BlueprintMainCallsApi - axios parameter creator
|
|
26993
27156
|
* @export
|
package/dist/api.js
CHANGED
|
@@ -23,16 +23,17 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
23
23
|
};
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
25
|
exports.CompanySizeEnum = exports.ClusterStateEnum = exports.ClusterLogsStepEnum = exports.ClusterFeatureResponseTypeEnum = exports.ClusterFeatureResponseValueTypeEnum = exports.ClusterFeatureNatGatewayTypeScalewayTypeEnum = exports.ClusterFeatureNatGatewayTypeScalewayProviderEnum = exports.ClusterFeatureNatGatewayTypeGcpProviderEnum = exports.ClusterDeploymentStatusEnum = exports.ClusterDeleteMode = exports.ClusterAdvancedSettingsAwsEksEc2MetadataImdsEnum = exports.ClusterAdvancedSettingsAwsEksEfsTransitionToIaEnum = exports.ClusterAdvancedSettingsAwsEksEfsPerformanceModeEnum = exports.ClusterAdvancedSettingsAwsEksEfsThroughputModeEnum = exports.ClusterAdvancedSettingsLokiDeploymentModeEnum = exports.CloudflareDnsProviderResponseProviderEnum = exports.CloudflareDnsProviderRequestProviderEnum = exports.CloudVendorEnum = exports.CloudProviderEnum = exports.CheckedCustomDomainStatus = exports.BuildModeEnum = exports.AzureStaticClusterCredentialsObjectTypeEnum = exports.AwsStaticCredentialsRequestTypeEnum = exports.AwsStaticCredentialsAuthDtoModeEnum = exports.AwsStaticClusterCredentialsObjectTypeEnum = exports.AwsSecretManagerEndpointDtoModeEnum = exports.AwsRoleCredentialsRequestTypeEnum = exports.AwsRoleClusterCredentialsObjectTypeEnum = exports.AwsRoleArnAuthDtoModeEnum = exports.AwsParameterStoreEndpointDtoModeEnum = exports.AutoscalingMode = exports.AutomaticallyConfiguredAuthDtoModeEnum = exports.ArgocdAssociatedServiceType = exports.ArgoCdConnectionStatusEnum = exports.ArgoCdConnectionCheckResponseReasonEnum = exports.ApplicationAdvancedSettingsDeploymentUpdateStrategyTypeEnum = exports.ApplicationAdvancedSettingsDeploymentTopologySpreadZoneEnum = exports.ApplicationAdvancedSettingsDeploymentAntiaffinityPodEnum = exports.AnnotationsGroupAssociatedItemType = exports.AlertTargetType = exports.AlertSeverity = exports.AlertRuleState = exports.AlertRuleSource = exports.AlertRuleConditionOperator = exports.AlertRuleConditionKind = exports.AlertRuleConditionFunction = exports.AlertReceiverType = exports.AksInfrastructureOutputsKindEnum = exports.APIVariableTypeEnum = exports.APIVariableScopeEnum = void 0;
|
|
26
|
-
exports.
|
|
27
|
-
exports.
|
|
28
|
-
exports.
|
|
29
|
-
exports.
|
|
30
|
-
exports.
|
|
31
|
-
exports.
|
|
32
|
-
exports.
|
|
33
|
-
exports.
|
|
34
|
-
exports.
|
|
35
|
-
exports.
|
|
26
|
+
exports.InviteMemberRoleEnum = exports.HelmRepositoryKindEnum = exports.HelmRepositoryAssociatedServiceType = exports.HelmPortProtocolEnum = exports.HelmForceEvent = exports.GkeInfrastructureOutputsKindEnum = exports.GitWebhookStatusResponseProviderEnum = exports.GitWebhookStatusResponseStatusEnum = exports.GitTokenAssociatedServiceType = exports.GitProviderEnum = exports.GenericClusterCredentialsObjectTypeEnum = exports.GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum = exports.GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum = exports.GcpStaticClusterCredentialsObjectTypeEnum = exports.GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum = exports.GcpSecretManagerEndpointDtoModeEnum = exports.GcpJsonCredentialsAuthDtoModeEnum = exports.EnvironmentStatusEventOriginEnum = exports.EnvironmentModeEnum = exports.EnvironmentLogTypeEnum = exports.EnvironmentDeploymentStatusEnum = exports.EksInfrastructureOutputsKindEnum = exports.EksAnywhereVsphereStaticCredentialsRequestTypeEnum = exports.EksAnywhereVsphereRoleCredentialsRequestTypeEnum = exports.EksAnywhereVsphereClusterCredentialsObjectTypeEnum = exports.DockerfileFragmentInlineTypeEnum = exports.DockerfileFragmentFileTypeEnum = exports.DeploymentRestrictionTypeEnum = exports.DeploymentRestrictionModeEnum = exports.DeploymentInfraReason = exports.DeploymentHistoryTriggerAction = exports.DeploymentHistoryStatusEnum = exports.DeploymentHistoryServiceDetailsOneOf2JobTypeEnum = exports.DeploymentHistoryActionStatus = exports.DeleteTerraformAction = exports.DatabaseTypeEnum = exports.DatabaseModeEnum = exports.DatabaseEditRequestDiskTypeEnum = exports.DatabaseAccessibilityEnum = exports.DatabaseDiskTypeEnum = exports.CustomDomainStatusEnum = exports.CreateEnvironmentModeEnum = exports.CpuArchitectureEnum = exports.ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum = exports.ContainerRegistryRequestConfigGcpCredentialsTypeEnum = exports.ContainerRegistryKindEnum = exports.ContainerRegistryAssociatedServiceType = exports.ContainerAdvancedSettingsDeploymentUpdateStrategyTypeEnum = exports.ContainerAdvancedSettingsDeploymentTopologySpreadZoneEnum = exports.ContainerAdvancedSettingsDeploymentAntiaffinityPodEnum = void 0;
|
|
27
|
+
exports.StateEnum = exports.StageStepMetricNameEnum = exports.StageStatusEnum = exports.ServicesOverviewResponseManagedByEnum = exports.ServiceTypeForVariableEnum = exports.ServiceTypeEnum = exports.ServiceSubActionEnum = exports.ServiceStepMetricNameEnum = exports.ServiceLightResponseJobTypeEnum = exports.ServiceDeploymentStatusEnum = exports.ServiceActionStatusEnum = exports.ServiceActionEnum = exports.ScalewayClusterCredentialsObjectTypeEnum = exports.Route53StaticCredentialsResponseTypeEnum = exports.Route53StaticCredentialsRequestTypeEnum = exports.Route53DnsProviderResponseProviderEnum = exports.Route53DnsProviderRequestProviderEnum = exports.RewardClaimTypeEnum = exports.RegistryMirroringModeEnum = exports.QueuedDeploymentRequestWithStagesStagesInnerServicesInnerDetailsOneOfJobTypeEnum = exports.QoveryDnsProviderResponseProviderEnum = exports.QoveryDnsProviderRequestProviderEnum = exports.PortProtocolEnum = exports.PlanEnum = exports.OrganizationWebhookKindEnum = exports.OrganizationWebhookEventEnum = exports.OrganizationEventType = exports.OrganizationEventTargetType = exports.OrganizationEventTargetLevel = exports.OrganizationEventSubTargetType = exports.OrganizationEventOrigin = exports.OrganizationCustomRoleProjectPermission = exports.OrganizationCustomRoleClusterPermission = exports.OrganizationApiTokenScope = exports.OrganizationAnnotationsGroupScopeEnum = exports.ObservabilityResourceProfile = exports.MetricsConfigurationManagedByQoveryKindEnum = exports.LinkedServiceTypeEnum = exports.LabelsGroupAssociatedItemType = exports.KubernetesEnum = exports.KedaScalerRole = exports.KarpenterNodePoolRequirementOperator = exports.KarpenterNodePoolRequirementKey = exports.KapsuleInfrastructureOutputsKindEnum = exports.JobTypeEnum = exports.JobScheduleEvent = exports.JobLifecycleTypeEnum = exports.JobForceEvent = exports.InvoiceStatusEnum = exports.InviteStatusEnum = void 0;
|
|
28
|
+
exports.ApplicationLogsApiFactory = exports.ApplicationLogsApiFp = exports.ApplicationLogsApiAxiosParamCreator = exports.ApplicationEnvironmentVariableApi = exports.ApplicationEnvironmentVariableApiFactory = exports.ApplicationEnvironmentVariableApiFp = exports.ApplicationEnvironmentVariableApiAxiosParamCreator = exports.ApplicationDeploymentRestrictionApi = exports.ApplicationDeploymentRestrictionApiFactory = exports.ApplicationDeploymentRestrictionApiFp = exports.ApplicationDeploymentRestrictionApiAxiosParamCreator = exports.ApplicationDeploymentHistoryApi = exports.ApplicationDeploymentHistoryApiFactory = exports.ApplicationDeploymentHistoryApiFp = exports.ApplicationDeploymentHistoryApiAxiosParamCreator = exports.ApplicationCustomDomainApi = exports.ApplicationCustomDomainApiFactory = exports.ApplicationCustomDomainApiFp = exports.ApplicationCustomDomainApiAxiosParamCreator = exports.ApplicationConfigurationApi = exports.ApplicationConfigurationApiFactory = exports.ApplicationConfigurationApiFp = exports.ApplicationConfigurationApiAxiosParamCreator = exports.ApplicationActionsApi = exports.ApplicationActionsApiFactory = exports.ApplicationActionsApiFp = exports.ApplicationActionsApiAxiosParamCreator = exports.AlertRulesApi = exports.AlertRulesApiFactory = exports.AlertRulesApiFp = exports.AlertRulesApiAxiosParamCreator = exports.AlertReceiversApi = exports.AlertReceiversApiFactory = exports.AlertReceiversApiFp = exports.AlertReceiversApiAxiosParamCreator = exports.AccountInfoApi = exports.AccountInfoApiFactory = exports.AccountInfoApiFp = exports.AccountInfoApiAxiosParamCreator = exports.WeekdayEnum = exports.TypeOfUseEnum = exports.TfVarsDiscoveryModeSpecificPathsTypeEnum = exports.TfVarsDiscoveryModeAutoDiscoverTypeEnum = exports.TerraformResourceResponseModeEnum = exports.TerraformEngineEnum = exports.TerraformDeployRequestActionEnum = exports.TerraformAutoDeployConfigTerraformActionEnum = exports.StorageTypeEnum = exports.StepMetricStatusEnum = exports.StatusKindEnum = void 0;
|
|
29
|
+
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 = exports.BlueprintMainCallsApiAxiosParamCreator = exports.BlueprintCatalogApi = exports.BlueprintCatalogApiFactory = exports.BlueprintCatalogApiFp = exports.BlueprintCatalogApiAxiosParamCreator = exports.BillingApi = exports.BillingApiFactory = exports.BillingApiFp = exports.BillingApiAxiosParamCreator = exports.BackupsApi = exports.BackupsApiFactory = exports.BackupsApiFp = exports.BackupsApiAxiosParamCreator = exports.ArgoCDApi = exports.ArgoCDApiFactory = exports.ArgoCDApiFp = exports.ArgoCDApiAxiosParamCreator = exports.ApplicationsApi = exports.ApplicationsApiFactory = exports.ApplicationsApiFp = exports.ApplicationsApiAxiosParamCreator = exports.ApplicationSecretApi = exports.ApplicationSecretApiFactory = exports.ApplicationSecretApiFp = exports.ApplicationSecretApiAxiosParamCreator = exports.ApplicationMainCallsApi = exports.ApplicationMainCallsApiFactory = exports.ApplicationMainCallsApiFp = exports.ApplicationMainCallsApiAxiosParamCreator = exports.ApplicationLogsApi = void 0;
|
|
30
|
+
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 = 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 = void 0;
|
|
31
|
+
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 = 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 = void 0;
|
|
32
|
+
exports.JobActionsApiAxiosParamCreator = 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 = 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 = void 0;
|
|
33
|
+
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 = 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 = void 0;
|
|
34
|
+
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.OrganizationWebhookApi = exports.OrganizationWebhookApiFactory = exports.OrganizationWebhookApiFp = 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 = void 0;
|
|
35
|
+
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 = 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 = void 0;
|
|
36
|
+
exports.VariableMainCallsApi = exports.VariableMainCallsApiFactory = void 0;
|
|
36
37
|
const axios_1 = require("axios");
|
|
37
38
|
// Some imports not used depending on template conditions
|
|
38
39
|
// @ts-ignore
|
|
@@ -481,6 +482,12 @@ exports.ContainerRegistryKindEnum = {
|
|
|
481
482
|
GCP_ARTIFACT_REGISTRY: 'GCP_ARTIFACT_REGISTRY',
|
|
482
483
|
AZURE_CR: 'AZURE_CR'
|
|
483
484
|
};
|
|
485
|
+
exports.ContainerRegistryRequestConfigGcpCredentialsTypeEnum = {
|
|
486
|
+
WORKLOAD_IDENTITY_FEDERATION: 'workload_identity_federation'
|
|
487
|
+
};
|
|
488
|
+
exports.ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum = {
|
|
489
|
+
WORKLOAD_IDENTITY_FEDERATION: 'workload_identity_federation'
|
|
490
|
+
};
|
|
484
491
|
/**
|
|
485
492
|
*
|
|
486
493
|
* @export
|
|
@@ -8829,6 +8836,136 @@ class BillingApi extends base_1.BaseAPI {
|
|
|
8829
8836
|
}
|
|
8830
8837
|
}
|
|
8831
8838
|
exports.BillingApi = BillingApi;
|
|
8839
|
+
/**
|
|
8840
|
+
* BlueprintCatalogApi - axios parameter creator
|
|
8841
|
+
* @export
|
|
8842
|
+
*/
|
|
8843
|
+
const BlueprintCatalogApiAxiosParamCreator = function (configuration) {
|
|
8844
|
+
return {
|
|
8845
|
+
/**
|
|
8846
|
+
*
|
|
8847
|
+
* @summary Get the README of a blueprint catalog service
|
|
8848
|
+
* @param {string} organizationId Organization ID
|
|
8849
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
8850
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
8851
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
8852
|
+
* @param {*} [options] Override http request option.
|
|
8853
|
+
* @throws {RequiredError}
|
|
8854
|
+
*/
|
|
8855
|
+
getBlueprintCatalogServiceReadme: (organizationId_1, provider_1, serviceFamily_1, serviceVersion_1, ...args_1) => __awaiter(this, [organizationId_1, provider_1, serviceFamily_1, serviceVersion_1, ...args_1], void 0, function* (organizationId, provider, serviceFamily, serviceVersion, options = {}) {
|
|
8856
|
+
// verify required parameter 'organizationId' is not null or undefined
|
|
8857
|
+
(0, common_1.assertParamExists)('getBlueprintCatalogServiceReadme', 'organizationId', organizationId);
|
|
8858
|
+
// verify required parameter 'provider' is not null or undefined
|
|
8859
|
+
(0, common_1.assertParamExists)('getBlueprintCatalogServiceReadme', 'provider', provider);
|
|
8860
|
+
// verify required parameter 'serviceFamily' is not null or undefined
|
|
8861
|
+
(0, common_1.assertParamExists)('getBlueprintCatalogServiceReadme', 'serviceFamily', serviceFamily);
|
|
8862
|
+
// verify required parameter 'serviceVersion' is not null or undefined
|
|
8863
|
+
(0, common_1.assertParamExists)('getBlueprintCatalogServiceReadme', 'serviceVersion', serviceVersion);
|
|
8864
|
+
const localVarPath = `/organization/{organizationId}/blueprint/catalog/{provider}/{serviceFamily}/{serviceVersion}/readme`
|
|
8865
|
+
.replace(`{${"organizationId"}}`, encodeURIComponent(String(organizationId)))
|
|
8866
|
+
.replace(`{${"provider"}}`, encodeURIComponent(String(provider)))
|
|
8867
|
+
.replace(`{${"serviceFamily"}}`, encodeURIComponent(String(serviceFamily)))
|
|
8868
|
+
.replace(`{${"serviceVersion"}}`, encodeURIComponent(String(serviceVersion)));
|
|
8869
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
8870
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
8871
|
+
let baseOptions;
|
|
8872
|
+
if (configuration) {
|
|
8873
|
+
baseOptions = configuration.baseOptions;
|
|
8874
|
+
}
|
|
8875
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
8876
|
+
const localVarHeaderParameter = {};
|
|
8877
|
+
const localVarQueryParameter = {};
|
|
8878
|
+
// authentication ApiKeyAuth required
|
|
8879
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
|
|
8880
|
+
// authentication bearerAuth required
|
|
8881
|
+
// http bearer authentication required
|
|
8882
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
8883
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
8884
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
8885
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
8886
|
+
return {
|
|
8887
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
8888
|
+
options: localVarRequestOptions,
|
|
8889
|
+
};
|
|
8890
|
+
}),
|
|
8891
|
+
};
|
|
8892
|
+
};
|
|
8893
|
+
exports.BlueprintCatalogApiAxiosParamCreator = BlueprintCatalogApiAxiosParamCreator;
|
|
8894
|
+
/**
|
|
8895
|
+
* BlueprintCatalogApi - functional programming interface
|
|
8896
|
+
* @export
|
|
8897
|
+
*/
|
|
8898
|
+
const BlueprintCatalogApiFp = function (configuration) {
|
|
8899
|
+
const localVarAxiosParamCreator = (0, exports.BlueprintCatalogApiAxiosParamCreator)(configuration);
|
|
8900
|
+
return {
|
|
8901
|
+
/**
|
|
8902
|
+
*
|
|
8903
|
+
* @summary Get the README of a blueprint catalog service
|
|
8904
|
+
* @param {string} organizationId Organization ID
|
|
8905
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
8906
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
8907
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
8908
|
+
* @param {*} [options] Override http request option.
|
|
8909
|
+
* @throws {RequiredError}
|
|
8910
|
+
*/
|
|
8911
|
+
getBlueprintCatalogServiceReadme(organizationId, provider, serviceFamily, serviceVersion, options) {
|
|
8912
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
8913
|
+
var _a, _b, _c;
|
|
8914
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getBlueprintCatalogServiceReadme(organizationId, provider, serviceFamily, serviceVersion, options);
|
|
8915
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
8916
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['BlueprintCatalogApi.getBlueprintCatalogServiceReadme']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
8917
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
8918
|
+
});
|
|
8919
|
+
},
|
|
8920
|
+
};
|
|
8921
|
+
};
|
|
8922
|
+
exports.BlueprintCatalogApiFp = BlueprintCatalogApiFp;
|
|
8923
|
+
/**
|
|
8924
|
+
* BlueprintCatalogApi - factory interface
|
|
8925
|
+
* @export
|
|
8926
|
+
*/
|
|
8927
|
+
const BlueprintCatalogApiFactory = function (configuration, basePath, axios) {
|
|
8928
|
+
const localVarFp = (0, exports.BlueprintCatalogApiFp)(configuration);
|
|
8929
|
+
return {
|
|
8930
|
+
/**
|
|
8931
|
+
*
|
|
8932
|
+
* @summary Get the README of a blueprint catalog service
|
|
8933
|
+
* @param {string} organizationId Organization ID
|
|
8934
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
8935
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
8936
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
8937
|
+
* @param {*} [options] Override http request option.
|
|
8938
|
+
* @throws {RequiredError}
|
|
8939
|
+
*/
|
|
8940
|
+
getBlueprintCatalogServiceReadme(organizationId, provider, serviceFamily, serviceVersion, options) {
|
|
8941
|
+
return localVarFp.getBlueprintCatalogServiceReadme(organizationId, provider, serviceFamily, serviceVersion, options).then((request) => request(axios, basePath));
|
|
8942
|
+
},
|
|
8943
|
+
};
|
|
8944
|
+
};
|
|
8945
|
+
exports.BlueprintCatalogApiFactory = BlueprintCatalogApiFactory;
|
|
8946
|
+
/**
|
|
8947
|
+
* BlueprintCatalogApi - object-oriented interface
|
|
8948
|
+
* @export
|
|
8949
|
+
* @class BlueprintCatalogApi
|
|
8950
|
+
* @extends {BaseAPI}
|
|
8951
|
+
*/
|
|
8952
|
+
class BlueprintCatalogApi extends base_1.BaseAPI {
|
|
8953
|
+
/**
|
|
8954
|
+
*
|
|
8955
|
+
* @summary Get the README of a blueprint catalog service
|
|
8956
|
+
* @param {string} organizationId Organization ID
|
|
8957
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
8958
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
8959
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
8960
|
+
* @param {*} [options] Override http request option.
|
|
8961
|
+
* @throws {RequiredError}
|
|
8962
|
+
* @memberof BlueprintCatalogApi
|
|
8963
|
+
*/
|
|
8964
|
+
getBlueprintCatalogServiceReadme(organizationId, provider, serviceFamily, serviceVersion, options) {
|
|
8965
|
+
return (0, exports.BlueprintCatalogApiFp)(this.configuration).getBlueprintCatalogServiceReadme(organizationId, provider, serviceFamily, serviceVersion, options).then((request) => request(this.axios, this.basePath));
|
|
8966
|
+
}
|
|
8967
|
+
}
|
|
8968
|
+
exports.BlueprintCatalogApi = BlueprintCatalogApi;
|
|
8832
8969
|
/**
|
|
8833
8970
|
* BlueprintMainCallsApi - axios parameter creator
|
|
8834
8971
|
* @export
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -6919,11 +6919,53 @@ export interface ContainerRegistryRequestConfig {
|
|
|
6919
6919
|
*/
|
|
6920
6920
|
'scaleway_project_id'?: string;
|
|
6921
6921
|
/**
|
|
6922
|
-
* Required if kind is `GCP_ARTIFACT_REGISTRY
|
|
6922
|
+
* Required if kind is `GCP_ARTIFACT_REGISTRY`. For GCP Artifact Registry, you can either set a service account JSON key with json_credentials or use Workload Identity Federation with gcp_credentials_type.
|
|
6923
6923
|
* @type {string}
|
|
6924
6924
|
* @memberof ContainerRegistryRequestConfig
|
|
6925
6925
|
*/
|
|
6926
6926
|
'json_credentials'?: string;
|
|
6927
|
+
/**
|
|
6928
|
+
* For GCP Artifact Registry, you can either set a service account JSON key with json_credentials or use Workload Identity Federation with gcp_credentials_type.
|
|
6929
|
+
* @type {string}
|
|
6930
|
+
* @memberof ContainerRegistryRequestConfig
|
|
6931
|
+
*/
|
|
6932
|
+
'gcp_credentials_type'?: ContainerRegistryRequestConfigGcpCredentialsTypeEnum;
|
|
6933
|
+
/**
|
|
6934
|
+
* Required if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
6935
|
+
* @type {string}
|
|
6936
|
+
* @memberof ContainerRegistryRequestConfig
|
|
6937
|
+
*/
|
|
6938
|
+
'project_id'?: string;
|
|
6939
|
+
/**
|
|
6940
|
+
* Required if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
6941
|
+
* @type {string}
|
|
6942
|
+
* @memberof ContainerRegistryRequestConfig
|
|
6943
|
+
*/
|
|
6944
|
+
'service_account_email'?: string;
|
|
6945
|
+
/**
|
|
6946
|
+
* Required if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
6947
|
+
* @type {string}
|
|
6948
|
+
* @memberof ContainerRegistryRequestConfig
|
|
6949
|
+
*/
|
|
6950
|
+
'workload_identity_project_number'?: string;
|
|
6951
|
+
/**
|
|
6952
|
+
* Required if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
6953
|
+
* @type {string}
|
|
6954
|
+
* @memberof ContainerRegistryRequestConfig
|
|
6955
|
+
*/
|
|
6956
|
+
'workload_identity_pool_id'?: string;
|
|
6957
|
+
/**
|
|
6958
|
+
* Required if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
6959
|
+
* @type {string}
|
|
6960
|
+
* @memberof ContainerRegistryRequestConfig
|
|
6961
|
+
*/
|
|
6962
|
+
'workload_identity_provider_id'?: string;
|
|
6963
|
+
/**
|
|
6964
|
+
* Optional if kind is `GCP_ARTIFACT_REGISTRY` and gcp_credentials_type is `workload_identity_federation`
|
|
6965
|
+
* @type {number}
|
|
6966
|
+
* @memberof ContainerRegistryRequestConfig
|
|
6967
|
+
*/
|
|
6968
|
+
'token_lifetime_seconds'?: number;
|
|
6927
6969
|
/**
|
|
6928
6970
|
* optional, for kind `DOCKER_HUB` We encourage you to set credentials for Docker Hub due to the limits on the pull rate
|
|
6929
6971
|
* @type {string}
|
|
@@ -6955,6 +6997,10 @@ export interface ContainerRegistryRequestConfig {
|
|
|
6955
6997
|
*/
|
|
6956
6998
|
'azure_subscription_id'?: string;
|
|
6957
6999
|
}
|
|
7000
|
+
export declare const ContainerRegistryRequestConfigGcpCredentialsTypeEnum: {
|
|
7001
|
+
readonly WORKLOAD_IDENTITY_FEDERATION: "workload_identity_federation";
|
|
7002
|
+
};
|
|
7003
|
+
export type ContainerRegistryRequestConfigGcpCredentialsTypeEnum = typeof ContainerRegistryRequestConfigGcpCredentialsTypeEnum[keyof typeof ContainerRegistryRequestConfigGcpCredentialsTypeEnum];
|
|
6958
7004
|
/**
|
|
6959
7005
|
*
|
|
6960
7006
|
* @export
|
|
@@ -7083,6 +7129,48 @@ export interface ContainerRegistryResponseAllOfConfig {
|
|
|
7083
7129
|
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7084
7130
|
*/
|
|
7085
7131
|
'role_arn'?: string;
|
|
7132
|
+
/**
|
|
7133
|
+
*
|
|
7134
|
+
* @type {string}
|
|
7135
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7136
|
+
*/
|
|
7137
|
+
'gcp_credentials_type'?: ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum;
|
|
7138
|
+
/**
|
|
7139
|
+
*
|
|
7140
|
+
* @type {string}
|
|
7141
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7142
|
+
*/
|
|
7143
|
+
'project_id'?: string;
|
|
7144
|
+
/**
|
|
7145
|
+
*
|
|
7146
|
+
* @type {string}
|
|
7147
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7148
|
+
*/
|
|
7149
|
+
'service_account_email'?: string;
|
|
7150
|
+
/**
|
|
7151
|
+
*
|
|
7152
|
+
* @type {string}
|
|
7153
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7154
|
+
*/
|
|
7155
|
+
'workload_identity_project_number'?: string;
|
|
7156
|
+
/**
|
|
7157
|
+
*
|
|
7158
|
+
* @type {string}
|
|
7159
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7160
|
+
*/
|
|
7161
|
+
'workload_identity_pool_id'?: string;
|
|
7162
|
+
/**
|
|
7163
|
+
*
|
|
7164
|
+
* @type {string}
|
|
7165
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7166
|
+
*/
|
|
7167
|
+
'workload_identity_provider_id'?: string;
|
|
7168
|
+
/**
|
|
7169
|
+
*
|
|
7170
|
+
* @type {number}
|
|
7171
|
+
* @memberof ContainerRegistryResponseAllOfConfig
|
|
7172
|
+
*/
|
|
7173
|
+
'token_lifetime_seconds'?: number;
|
|
7086
7174
|
/**
|
|
7087
7175
|
*
|
|
7088
7176
|
* @type {string}
|
|
@@ -7108,6 +7196,10 @@ export interface ContainerRegistryResponseAllOfConfig {
|
|
|
7108
7196
|
*/
|
|
7109
7197
|
'azure_application_object_id'?: string;
|
|
7110
7198
|
}
|
|
7199
|
+
export declare const ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum: {
|
|
7200
|
+
readonly WORKLOAD_IDENTITY_FEDERATION: "workload_identity_federation";
|
|
7201
|
+
};
|
|
7202
|
+
export type ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum = typeof ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum[keyof typeof ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum];
|
|
7111
7203
|
/**
|
|
7112
7204
|
*
|
|
7113
7205
|
* @export
|
|
@@ -26988,6 +27080,77 @@ export declare class BillingApi extends BaseAPI {
|
|
|
26988
27080
|
*/
|
|
26989
27081
|
organizationDownloadAllInvoices(organizationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
26990
27082
|
}
|
|
27083
|
+
/**
|
|
27084
|
+
* BlueprintCatalogApi - axios parameter creator
|
|
27085
|
+
* @export
|
|
27086
|
+
*/
|
|
27087
|
+
export declare const BlueprintCatalogApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
27088
|
+
/**
|
|
27089
|
+
*
|
|
27090
|
+
* @summary Get the README of a blueprint catalog service
|
|
27091
|
+
* @param {string} organizationId Organization ID
|
|
27092
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
27093
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
27094
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
27095
|
+
* @param {*} [options] Override http request option.
|
|
27096
|
+
* @throws {RequiredError}
|
|
27097
|
+
*/
|
|
27098
|
+
getBlueprintCatalogServiceReadme: (organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27099
|
+
};
|
|
27100
|
+
/**
|
|
27101
|
+
* BlueprintCatalogApi - functional programming interface
|
|
27102
|
+
* @export
|
|
27103
|
+
*/
|
|
27104
|
+
export declare const BlueprintCatalogApiFp: (configuration?: Configuration) => {
|
|
27105
|
+
/**
|
|
27106
|
+
*
|
|
27107
|
+
* @summary Get the README of a blueprint catalog service
|
|
27108
|
+
* @param {string} organizationId Organization ID
|
|
27109
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
27110
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
27111
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
27112
|
+
* @param {*} [options] Override http request option.
|
|
27113
|
+
* @throws {RequiredError}
|
|
27114
|
+
*/
|
|
27115
|
+
getBlueprintCatalogServiceReadme(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
27116
|
+
};
|
|
27117
|
+
/**
|
|
27118
|
+
* BlueprintCatalogApi - factory interface
|
|
27119
|
+
* @export
|
|
27120
|
+
*/
|
|
27121
|
+
export declare const BlueprintCatalogApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
27122
|
+
/**
|
|
27123
|
+
*
|
|
27124
|
+
* @summary Get the README of a blueprint catalog service
|
|
27125
|
+
* @param {string} organizationId Organization ID
|
|
27126
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
27127
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
27128
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
27129
|
+
* @param {*} [options] Override http request option.
|
|
27130
|
+
* @throws {RequiredError}
|
|
27131
|
+
*/
|
|
27132
|
+
getBlueprintCatalogServiceReadme(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
27133
|
+
};
|
|
27134
|
+
/**
|
|
27135
|
+
* BlueprintCatalogApi - object-oriented interface
|
|
27136
|
+
* @export
|
|
27137
|
+
* @class BlueprintCatalogApi
|
|
27138
|
+
* @extends {BaseAPI}
|
|
27139
|
+
*/
|
|
27140
|
+
export declare class BlueprintCatalogApi extends BaseAPI {
|
|
27141
|
+
/**
|
|
27142
|
+
*
|
|
27143
|
+
* @summary Get the README of a blueprint catalog service
|
|
27144
|
+
* @param {string} organizationId Organization ID
|
|
27145
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
27146
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
27147
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
27148
|
+
* @param {*} [options] Override http request option.
|
|
27149
|
+
* @throws {RequiredError}
|
|
27150
|
+
* @memberof BlueprintCatalogApi
|
|
27151
|
+
*/
|
|
27152
|
+
getBlueprintCatalogServiceReadme(organizationId: string, provider: string, serviceFamily: string, serviceVersion: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
27153
|
+
}
|
|
26991
27154
|
/**
|
|
26992
27155
|
* BlueprintMainCallsApi - axios parameter creator
|
|
26993
27156
|
* @export
|
package/dist/esm/api.js
CHANGED
|
@@ -468,6 +468,12 @@ export const ContainerRegistryKindEnum = {
|
|
|
468
468
|
GCP_ARTIFACT_REGISTRY: 'GCP_ARTIFACT_REGISTRY',
|
|
469
469
|
AZURE_CR: 'AZURE_CR'
|
|
470
470
|
};
|
|
471
|
+
export const ContainerRegistryRequestConfigGcpCredentialsTypeEnum = {
|
|
472
|
+
WORKLOAD_IDENTITY_FEDERATION: 'workload_identity_federation'
|
|
473
|
+
};
|
|
474
|
+
export const ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum = {
|
|
475
|
+
WORKLOAD_IDENTITY_FEDERATION: 'workload_identity_federation'
|
|
476
|
+
};
|
|
471
477
|
/**
|
|
472
478
|
*
|
|
473
479
|
* @export
|
|
@@ -8752,6 +8758,132 @@ export class BillingApi extends BaseAPI {
|
|
|
8752
8758
|
return BillingApiFp(this.configuration).organizationDownloadAllInvoices(organizationId, options).then((request) => request(this.axios, this.basePath));
|
|
8753
8759
|
}
|
|
8754
8760
|
}
|
|
8761
|
+
/**
|
|
8762
|
+
* BlueprintCatalogApi - axios parameter creator
|
|
8763
|
+
* @export
|
|
8764
|
+
*/
|
|
8765
|
+
export const BlueprintCatalogApiAxiosParamCreator = function (configuration) {
|
|
8766
|
+
return {
|
|
8767
|
+
/**
|
|
8768
|
+
*
|
|
8769
|
+
* @summary Get the README of a blueprint catalog service
|
|
8770
|
+
* @param {string} organizationId Organization ID
|
|
8771
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
8772
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
8773
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
8774
|
+
* @param {*} [options] Override http request option.
|
|
8775
|
+
* @throws {RequiredError}
|
|
8776
|
+
*/
|
|
8777
|
+
getBlueprintCatalogServiceReadme: (organizationId_1, provider_1, serviceFamily_1, serviceVersion_1, ...args_1) => __awaiter(this, [organizationId_1, provider_1, serviceFamily_1, serviceVersion_1, ...args_1], void 0, function* (organizationId, provider, serviceFamily, serviceVersion, options = {}) {
|
|
8778
|
+
// verify required parameter 'organizationId' is not null or undefined
|
|
8779
|
+
assertParamExists('getBlueprintCatalogServiceReadme', 'organizationId', organizationId);
|
|
8780
|
+
// verify required parameter 'provider' is not null or undefined
|
|
8781
|
+
assertParamExists('getBlueprintCatalogServiceReadme', 'provider', provider);
|
|
8782
|
+
// verify required parameter 'serviceFamily' is not null or undefined
|
|
8783
|
+
assertParamExists('getBlueprintCatalogServiceReadme', 'serviceFamily', serviceFamily);
|
|
8784
|
+
// verify required parameter 'serviceVersion' is not null or undefined
|
|
8785
|
+
assertParamExists('getBlueprintCatalogServiceReadme', 'serviceVersion', serviceVersion);
|
|
8786
|
+
const localVarPath = `/organization/{organizationId}/blueprint/catalog/{provider}/{serviceFamily}/{serviceVersion}/readme`
|
|
8787
|
+
.replace(`{${"organizationId"}}`, encodeURIComponent(String(organizationId)))
|
|
8788
|
+
.replace(`{${"provider"}}`, encodeURIComponent(String(provider)))
|
|
8789
|
+
.replace(`{${"serviceFamily"}}`, encodeURIComponent(String(serviceFamily)))
|
|
8790
|
+
.replace(`{${"serviceVersion"}}`, encodeURIComponent(String(serviceVersion)));
|
|
8791
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
8792
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
8793
|
+
let baseOptions;
|
|
8794
|
+
if (configuration) {
|
|
8795
|
+
baseOptions = configuration.baseOptions;
|
|
8796
|
+
}
|
|
8797
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
8798
|
+
const localVarHeaderParameter = {};
|
|
8799
|
+
const localVarQueryParameter = {};
|
|
8800
|
+
// authentication ApiKeyAuth required
|
|
8801
|
+
yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
|
|
8802
|
+
// authentication bearerAuth required
|
|
8803
|
+
// http bearer authentication required
|
|
8804
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
8805
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
8806
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
8807
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
8808
|
+
return {
|
|
8809
|
+
url: toPathString(localVarUrlObj),
|
|
8810
|
+
options: localVarRequestOptions,
|
|
8811
|
+
};
|
|
8812
|
+
}),
|
|
8813
|
+
};
|
|
8814
|
+
};
|
|
8815
|
+
/**
|
|
8816
|
+
* BlueprintCatalogApi - functional programming interface
|
|
8817
|
+
* @export
|
|
8818
|
+
*/
|
|
8819
|
+
export const BlueprintCatalogApiFp = function (configuration) {
|
|
8820
|
+
const localVarAxiosParamCreator = BlueprintCatalogApiAxiosParamCreator(configuration);
|
|
8821
|
+
return {
|
|
8822
|
+
/**
|
|
8823
|
+
*
|
|
8824
|
+
* @summary Get the README of a blueprint catalog service
|
|
8825
|
+
* @param {string} organizationId Organization ID
|
|
8826
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
8827
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
8828
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
8829
|
+
* @param {*} [options] Override http request option.
|
|
8830
|
+
* @throws {RequiredError}
|
|
8831
|
+
*/
|
|
8832
|
+
getBlueprintCatalogServiceReadme(organizationId, provider, serviceFamily, serviceVersion, options) {
|
|
8833
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
8834
|
+
var _a, _b, _c;
|
|
8835
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getBlueprintCatalogServiceReadme(organizationId, provider, serviceFamily, serviceVersion, options);
|
|
8836
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
8837
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['BlueprintCatalogApi.getBlueprintCatalogServiceReadme']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
8838
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
8839
|
+
});
|
|
8840
|
+
},
|
|
8841
|
+
};
|
|
8842
|
+
};
|
|
8843
|
+
/**
|
|
8844
|
+
* BlueprintCatalogApi - factory interface
|
|
8845
|
+
* @export
|
|
8846
|
+
*/
|
|
8847
|
+
export const BlueprintCatalogApiFactory = function (configuration, basePath, axios) {
|
|
8848
|
+
const localVarFp = BlueprintCatalogApiFp(configuration);
|
|
8849
|
+
return {
|
|
8850
|
+
/**
|
|
8851
|
+
*
|
|
8852
|
+
* @summary Get the README of a blueprint catalog service
|
|
8853
|
+
* @param {string} organizationId Organization ID
|
|
8854
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
8855
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
8856
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
8857
|
+
* @param {*} [options] Override http request option.
|
|
8858
|
+
* @throws {RequiredError}
|
|
8859
|
+
*/
|
|
8860
|
+
getBlueprintCatalogServiceReadme(organizationId, provider, serviceFamily, serviceVersion, options) {
|
|
8861
|
+
return localVarFp.getBlueprintCatalogServiceReadme(organizationId, provider, serviceFamily, serviceVersion, options).then((request) => request(axios, basePath));
|
|
8862
|
+
},
|
|
8863
|
+
};
|
|
8864
|
+
};
|
|
8865
|
+
/**
|
|
8866
|
+
* BlueprintCatalogApi - object-oriented interface
|
|
8867
|
+
* @export
|
|
8868
|
+
* @class BlueprintCatalogApi
|
|
8869
|
+
* @extends {BaseAPI}
|
|
8870
|
+
*/
|
|
8871
|
+
export class BlueprintCatalogApi extends BaseAPI {
|
|
8872
|
+
/**
|
|
8873
|
+
*
|
|
8874
|
+
* @summary Get the README of a blueprint catalog service
|
|
8875
|
+
* @param {string} organizationId Organization ID
|
|
8876
|
+
* @param {string} provider Cloud provider (e.g. aws, gcp, azure)
|
|
8877
|
+
* @param {string} serviceFamily Service family (e.g. mysql, postgresql)
|
|
8878
|
+
* @param {string} serviceVersion Service version (e.g. 8, 14)
|
|
8879
|
+
* @param {*} [options] Override http request option.
|
|
8880
|
+
* @throws {RequiredError}
|
|
8881
|
+
* @memberof BlueprintCatalogApi
|
|
8882
|
+
*/
|
|
8883
|
+
getBlueprintCatalogServiceReadme(organizationId, provider, serviceFamily, serviceVersion, options) {
|
|
8884
|
+
return BlueprintCatalogApiFp(this.configuration).getBlueprintCatalogServiceReadme(organizationId, provider, serviceFamily, serviceVersion, options).then((request) => request(this.axios, this.basePath));
|
|
8885
|
+
}
|
|
8886
|
+
}
|
|
8755
8887
|
/**
|
|
8756
8888
|
* BlueprintMainCallsApi - axios parameter creator
|
|
8757
8889
|
* @export
|