qovery-typescript-axios 1.1.928 → 1.1.930

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/api.ts CHANGED
@@ -269,11 +269,11 @@ export interface AgenticWorkflowRequest {
269
269
  */
270
270
  'description'?: string;
271
271
  /**
272
- * Hosts the agentic workflow is allowed to reach
272
+ * CIDR ranges the incoming webhook request\'s source IP is checked against
273
273
  * @type {Array<string>}
274
274
  * @memberof AgenticWorkflowRequest
275
275
  */
276
- 'whitelist_hosts'?: Array<string>;
276
+ 'ip_allowlist'?: Array<string>;
277
277
  /**
278
278
  *
279
279
  * @type {string}
@@ -356,11 +356,11 @@ export interface AgenticWorkflowResponse {
356
356
  */
357
357
  'description': string;
358
358
  /**
359
- * Hosts the agentic workflow is allowed to reach
359
+ * CIDR ranges the incoming webhook request\'s source IP is checked against
360
360
  * @type {Array<string>}
361
361
  * @memberof AgenticWorkflowResponse
362
362
  */
363
- 'whitelist_hosts': Array<string>;
363
+ 'ip_allowlist': Array<string>;
364
364
  /**
365
365
  *
366
366
  * @type {string}
@@ -437,12 +437,6 @@ export interface AgenticWorkflowWebhook {
437
437
  * @memberof AgenticWorkflowWebhook
438
438
  */
439
439
  'url': string;
440
- /**
441
- *
442
- * @type {string}
443
- * @memberof AgenticWorkflowWebhook
444
- */
445
- 'secret': string;
446
440
  }
447
441
  /**
448
442
  *
@@ -21540,6 +21534,43 @@ export const PlatformComponentConfigurationRequirementStatus = {
21540
21534
  export type PlatformComponentConfigurationRequirementStatus = typeof PlatformComponentConfigurationRequirementStatus[keyof typeof PlatformComponentConfigurationRequirementStatus];
21541
21535
 
21542
21536
 
21537
+ /**
21538
+ * Component configuration resolved from an explicit template and cluster context before an actual cluster exists.
21539
+ * @export
21540
+ * @interface PlatformComponentConfigurationResolutionResponse
21541
+ */
21542
+ export interface PlatformComponentConfigurationResolutionResponse {
21543
+ /**
21544
+ *
21545
+ * @type {string}
21546
+ * @memberof PlatformComponentConfigurationResolutionResponse
21547
+ */
21548
+ 'componentKey': string;
21549
+ /**
21550
+ *
21551
+ * @type {Array<FieldSchemaResponse>}
21552
+ * @memberof PlatformComponentConfigurationResolutionResponse
21553
+ */
21554
+ 'fields': Array<FieldSchemaResponse>;
21555
+ /**
21556
+ *
21557
+ * @type {Array<PlatformComponentInputRequirementResponse>}
21558
+ * @memberof PlatformComponentConfigurationResolutionResponse
21559
+ */
21560
+ 'requirements': Array<PlatformComponentInputRequirementResponse>;
21561
+ /**
21562
+ *
21563
+ * @type {Array<PlatformComponentOutputBindingResponse>}
21564
+ * @memberof PlatformComponentConfigurationResolutionResponse
21565
+ */
21566
+ 'componentBindings': Array<PlatformComponentOutputBindingResponse>;
21567
+ /**
21568
+ *
21569
+ * @type {Array<PlatformComponentConfigurationViolationResponse>}
21570
+ * @memberof PlatformComponentConfigurationResolutionResponse
21571
+ */
21572
+ 'violations': Array<PlatformComponentConfigurationViolationResponse>;
21573
+ }
21543
21574
  /**
21544
21575
  *
21545
21576
  * @export
@@ -68871,6 +68902,79 @@ export const PlatformConfigurationApiAxiosParamCreator = function (configuration
68871
68902
 
68872
68903
 
68873
68904
 
68905
+ localVarHeaderParameter['Content-Type'] = 'application/json';
68906
+
68907
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
68908
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
68909
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
68910
+ localVarRequestOptions.data = serializeDataIfNeeded(platformComponentConfigurationPreviewRequest, localVarRequestOptions, configuration)
68911
+
68912
+ return {
68913
+ url: toPathString(localVarUrlObj),
68914
+ options: localVarRequestOptions,
68915
+ };
68916
+ },
68917
+ /**
68918
+ * Resolves the fields and runtime requirements to display for a component using an explicit cluster context and the values currently entered in the Console. This operation is read-only and does not require an existing cluster or platform binding.
68919
+ * @summary Resolve a platform component configuration before cluster creation
68920
+ * @param {string} organizationId Organization ID
68921
+ * @param {string} templateKey Platform template key
68922
+ * @param {string} templateVersion Platform template version
68923
+ * @param {string} componentKey Platform component key
68924
+ * @param {PlatformClusterMode} clusterMode Cluster management mode used to resolve component applicability
68925
+ * @param {PlatformCloudVendor} cloudProvider Cluster cloud provider used to resolve component applicability
68926
+ * @param {PlatformComponentConfigurationPreviewRequest} platformComponentConfigurationPreviewRequest
68927
+ * @param {*} [options] Override http request option.
68928
+ * @throws {RequiredError}
68929
+ */
68930
+ resolvePlatformTemplateComponentConfiguration: async (organizationId: string, templateKey: string, templateVersion: string, componentKey: string, clusterMode: PlatformClusterMode, cloudProvider: PlatformCloudVendor, platformComponentConfigurationPreviewRequest: PlatformComponentConfigurationPreviewRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
68931
+ // verify required parameter 'organizationId' is not null or undefined
68932
+ assertParamExists('resolvePlatformTemplateComponentConfiguration', 'organizationId', organizationId)
68933
+ // verify required parameter 'templateKey' is not null or undefined
68934
+ assertParamExists('resolvePlatformTemplateComponentConfiguration', 'templateKey', templateKey)
68935
+ // verify required parameter 'templateVersion' is not null or undefined
68936
+ assertParamExists('resolvePlatformTemplateComponentConfiguration', 'templateVersion', templateVersion)
68937
+ // verify required parameter 'componentKey' is not null or undefined
68938
+ assertParamExists('resolvePlatformTemplateComponentConfiguration', 'componentKey', componentKey)
68939
+ // verify required parameter 'clusterMode' is not null or undefined
68940
+ assertParamExists('resolvePlatformTemplateComponentConfiguration', 'clusterMode', clusterMode)
68941
+ // verify required parameter 'cloudProvider' is not null or undefined
68942
+ assertParamExists('resolvePlatformTemplateComponentConfiguration', 'cloudProvider', cloudProvider)
68943
+ // verify required parameter 'platformComponentConfigurationPreviewRequest' is not null or undefined
68944
+ assertParamExists('resolvePlatformTemplateComponentConfiguration', 'platformComponentConfigurationPreviewRequest', platformComponentConfigurationPreviewRequest)
68945
+ const localVarPath = `/organization/{organizationId}/platformTemplate/{templateKey}/{templateVersion}/component/{componentKey}/resolve`
68946
+ .replace(`{${"organizationId"}}`, encodeURIComponent(String(organizationId)))
68947
+ .replace(`{${"templateKey"}}`, encodeURIComponent(String(templateKey)))
68948
+ .replace(`{${"templateVersion"}}`, encodeURIComponent(String(templateVersion)))
68949
+ .replace(`{${"componentKey"}}`, encodeURIComponent(String(componentKey)));
68950
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
68951
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
68952
+ let baseOptions;
68953
+ if (configuration) {
68954
+ baseOptions = configuration.baseOptions;
68955
+ }
68956
+
68957
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
68958
+ const localVarHeaderParameter = {} as any;
68959
+ const localVarQueryParameter = {} as any;
68960
+
68961
+ // authentication ApiKeyAuth required
68962
+ await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
68963
+
68964
+ // authentication bearerAuth required
68965
+ // http bearer authentication required
68966
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
68967
+
68968
+ if (clusterMode !== undefined) {
68969
+ localVarQueryParameter['clusterMode'] = clusterMode;
68970
+ }
68971
+
68972
+ if (cloudProvider !== undefined) {
68973
+ localVarQueryParameter['cloudProvider'] = cloudProvider;
68974
+ }
68975
+
68976
+
68977
+
68874
68978
  localVarHeaderParameter['Content-Type'] = 'application/json';
68875
68979
 
68876
68980
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -68989,6 +69093,25 @@ export const PlatformConfigurationApiFp = function(configuration?: Configuration
68989
69093
  const localVarOperationServerBasePath = operationServerMap['PlatformConfigurationApi.resolvePlatformComponentConfiguration']?.[localVarOperationServerIndex]?.url;
68990
69094
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
68991
69095
  },
69096
+ /**
69097
+ * Resolves the fields and runtime requirements to display for a component using an explicit cluster context and the values currently entered in the Console. This operation is read-only and does not require an existing cluster or platform binding.
69098
+ * @summary Resolve a platform component configuration before cluster creation
69099
+ * @param {string} organizationId Organization ID
69100
+ * @param {string} templateKey Platform template key
69101
+ * @param {string} templateVersion Platform template version
69102
+ * @param {string} componentKey Platform component key
69103
+ * @param {PlatformClusterMode} clusterMode Cluster management mode used to resolve component applicability
69104
+ * @param {PlatformCloudVendor} cloudProvider Cluster cloud provider used to resolve component applicability
69105
+ * @param {PlatformComponentConfigurationPreviewRequest} platformComponentConfigurationPreviewRequest
69106
+ * @param {*} [options] Override http request option.
69107
+ * @throws {RequiredError}
69108
+ */
69109
+ async resolvePlatformTemplateComponentConfiguration(organizationId: string, templateKey: string, templateVersion: string, componentKey: string, clusterMode: PlatformClusterMode, cloudProvider: PlatformCloudVendor, platformComponentConfigurationPreviewRequest: PlatformComponentConfigurationPreviewRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlatformComponentConfigurationResolutionResponse>> {
69110
+ const localVarAxiosArgs = await localVarAxiosParamCreator.resolvePlatformTemplateComponentConfiguration(organizationId, templateKey, templateVersion, componentKey, clusterMode, cloudProvider, platformComponentConfigurationPreviewRequest, options);
69111
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
69112
+ const localVarOperationServerBasePath = operationServerMap['PlatformConfigurationApi.resolvePlatformTemplateComponentConfiguration']?.[localVarOperationServerIndex]?.url;
69113
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
69114
+ },
68992
69115
  /**
68993
69116
  * Selects a platform template and stores layer selections, component profile values, and customer-provided runtime inputs for the cluster.
68994
69117
  * @summary Update the cluster platform binding
@@ -69050,6 +69173,22 @@ export const PlatformConfigurationApiFactory = function (configuration?: Configu
69050
69173
  resolvePlatformComponentConfiguration(organizationId: string, clusterId: string, componentKey: string, platformComponentConfigurationPreviewRequest: PlatformComponentConfigurationPreviewRequest, options?: RawAxiosRequestConfig): AxiosPromise<PlatformComponentConfigurationPreviewResponse> {
69051
69174
  return localVarFp.resolvePlatformComponentConfiguration(organizationId, clusterId, componentKey, platformComponentConfigurationPreviewRequest, options).then((request) => request(axios, basePath));
69052
69175
  },
69176
+ /**
69177
+ * Resolves the fields and runtime requirements to display for a component using an explicit cluster context and the values currently entered in the Console. This operation is read-only and does not require an existing cluster or platform binding.
69178
+ * @summary Resolve a platform component configuration before cluster creation
69179
+ * @param {string} organizationId Organization ID
69180
+ * @param {string} templateKey Platform template key
69181
+ * @param {string} templateVersion Platform template version
69182
+ * @param {string} componentKey Platform component key
69183
+ * @param {PlatformClusterMode} clusterMode Cluster management mode used to resolve component applicability
69184
+ * @param {PlatformCloudVendor} cloudProvider Cluster cloud provider used to resolve component applicability
69185
+ * @param {PlatformComponentConfigurationPreviewRequest} platformComponentConfigurationPreviewRequest
69186
+ * @param {*} [options] Override http request option.
69187
+ * @throws {RequiredError}
69188
+ */
69189
+ resolvePlatformTemplateComponentConfiguration(organizationId: string, templateKey: string, templateVersion: string, componentKey: string, clusterMode: PlatformClusterMode, cloudProvider: PlatformCloudVendor, platformComponentConfigurationPreviewRequest: PlatformComponentConfigurationPreviewRequest, options?: RawAxiosRequestConfig): AxiosPromise<PlatformComponentConfigurationResolutionResponse> {
69190
+ return localVarFp.resolvePlatformTemplateComponentConfiguration(organizationId, templateKey, templateVersion, componentKey, clusterMode, cloudProvider, platformComponentConfigurationPreviewRequest, options).then((request) => request(axios, basePath));
69191
+ },
69053
69192
  /**
69054
69193
  * Selects a platform template and stores layer selections, component profile values, and customer-provided runtime inputs for the cluster.
69055
69194
  * @summary Update the cluster platform binding
@@ -69114,6 +69253,24 @@ export class PlatformConfigurationApi extends BaseAPI {
69114
69253
  return PlatformConfigurationApiFp(this.configuration).resolvePlatformComponentConfiguration(organizationId, clusterId, componentKey, platformComponentConfigurationPreviewRequest, options).then((request) => request(this.axios, this.basePath));
69115
69254
  }
69116
69255
 
69256
+ /**
69257
+ * Resolves the fields and runtime requirements to display for a component using an explicit cluster context and the values currently entered in the Console. This operation is read-only and does not require an existing cluster or platform binding.
69258
+ * @summary Resolve a platform component configuration before cluster creation
69259
+ * @param {string} organizationId Organization ID
69260
+ * @param {string} templateKey Platform template key
69261
+ * @param {string} templateVersion Platform template version
69262
+ * @param {string} componentKey Platform component key
69263
+ * @param {PlatformClusterMode} clusterMode Cluster management mode used to resolve component applicability
69264
+ * @param {PlatformCloudVendor} cloudProvider Cluster cloud provider used to resolve component applicability
69265
+ * @param {PlatformComponentConfigurationPreviewRequest} platformComponentConfigurationPreviewRequest
69266
+ * @param {*} [options] Override http request option.
69267
+ * @throws {RequiredError}
69268
+ * @memberof PlatformConfigurationApi
69269
+ */
69270
+ public resolvePlatformTemplateComponentConfiguration(organizationId: string, templateKey: string, templateVersion: string, componentKey: string, clusterMode: PlatformClusterMode, cloudProvider: PlatformCloudVendor, platformComponentConfigurationPreviewRequest: PlatformComponentConfigurationPreviewRequest, options?: RawAxiosRequestConfig) {
69271
+ return PlatformConfigurationApiFp(this.configuration).resolvePlatformTemplateComponentConfiguration(organizationId, templateKey, templateVersion, componentKey, clusterMode, cloudProvider, platformComponentConfigurationPreviewRequest, options).then((request) => request(this.axios, this.basePath));
69272
+ }
69273
+
69117
69274
  /**
69118
69275
  * Selects a platform template and stores layer selections, component profile values, and customer-provided runtime inputs for the cluster.
69119
69276
  * @summary Update the cluster platform binding
package/dist/api.d.ts CHANGED
@@ -247,11 +247,11 @@ export interface AgenticWorkflowRequest {
247
247
  */
248
248
  'description'?: string;
249
249
  /**
250
- * Hosts the agentic workflow is allowed to reach
250
+ * CIDR ranges the incoming webhook request\'s source IP is checked against
251
251
  * @type {Array<string>}
252
252
  * @memberof AgenticWorkflowRequest
253
253
  */
254
- 'whitelist_hosts'?: Array<string>;
254
+ 'ip_allowlist'?: Array<string>;
255
255
  /**
256
256
  *
257
257
  * @type {string}
@@ -332,11 +332,11 @@ export interface AgenticWorkflowResponse {
332
332
  */
333
333
  'description': string;
334
334
  /**
335
- * Hosts the agentic workflow is allowed to reach
335
+ * CIDR ranges the incoming webhook request\'s source IP is checked against
336
336
  * @type {Array<string>}
337
337
  * @memberof AgenticWorkflowResponse
338
338
  */
339
- 'whitelist_hosts': Array<string>;
339
+ 'ip_allowlist': Array<string>;
340
340
  /**
341
341
  *
342
342
  * @type {string}
@@ -411,12 +411,6 @@ export interface AgenticWorkflowWebhook {
411
411
  * @memberof AgenticWorkflowWebhook
412
412
  */
413
413
  'url': string;
414
- /**
415
- *
416
- * @type {string}
417
- * @memberof AgenticWorkflowWebhook
418
- */
419
- 'secret': string;
420
414
  }
421
415
  /**
422
416
  *
@@ -20895,6 +20889,43 @@ export declare const PlatformComponentConfigurationRequirementStatus: {
20895
20889
  readonly READY: "READY";
20896
20890
  };
20897
20891
  export type PlatformComponentConfigurationRequirementStatus = typeof PlatformComponentConfigurationRequirementStatus[keyof typeof PlatformComponentConfigurationRequirementStatus];
20892
+ /**
20893
+ * Component configuration resolved from an explicit template and cluster context before an actual cluster exists.
20894
+ * @export
20895
+ * @interface PlatformComponentConfigurationResolutionResponse
20896
+ */
20897
+ export interface PlatformComponentConfigurationResolutionResponse {
20898
+ /**
20899
+ *
20900
+ * @type {string}
20901
+ * @memberof PlatformComponentConfigurationResolutionResponse
20902
+ */
20903
+ 'componentKey': string;
20904
+ /**
20905
+ *
20906
+ * @type {Array<FieldSchemaResponse>}
20907
+ * @memberof PlatformComponentConfigurationResolutionResponse
20908
+ */
20909
+ 'fields': Array<FieldSchemaResponse>;
20910
+ /**
20911
+ *
20912
+ * @type {Array<PlatformComponentInputRequirementResponse>}
20913
+ * @memberof PlatformComponentConfigurationResolutionResponse
20914
+ */
20915
+ 'requirements': Array<PlatformComponentInputRequirementResponse>;
20916
+ /**
20917
+ *
20918
+ * @type {Array<PlatformComponentOutputBindingResponse>}
20919
+ * @memberof PlatformComponentConfigurationResolutionResponse
20920
+ */
20921
+ 'componentBindings': Array<PlatformComponentOutputBindingResponse>;
20922
+ /**
20923
+ *
20924
+ * @type {Array<PlatformComponentConfigurationViolationResponse>}
20925
+ * @memberof PlatformComponentConfigurationResolutionResponse
20926
+ */
20927
+ 'violations': Array<PlatformComponentConfigurationViolationResponse>;
20928
+ }
20898
20929
  /**
20899
20930
  *
20900
20931
  * @export
@@ -45163,6 +45194,20 @@ export declare const PlatformConfigurationApiAxiosParamCreator: (configuration?:
45163
45194
  * @throws {RequiredError}
45164
45195
  */
45165
45196
  resolvePlatformComponentConfiguration: (organizationId: string, clusterId: string, componentKey: string, platformComponentConfigurationPreviewRequest: PlatformComponentConfigurationPreviewRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
45197
+ /**
45198
+ * Resolves the fields and runtime requirements to display for a component using an explicit cluster context and the values currently entered in the Console. This operation is read-only and does not require an existing cluster or platform binding.
45199
+ * @summary Resolve a platform component configuration before cluster creation
45200
+ * @param {string} organizationId Organization ID
45201
+ * @param {string} templateKey Platform template key
45202
+ * @param {string} templateVersion Platform template version
45203
+ * @param {string} componentKey Platform component key
45204
+ * @param {PlatformClusterMode} clusterMode Cluster management mode used to resolve component applicability
45205
+ * @param {PlatformCloudVendor} cloudProvider Cluster cloud provider used to resolve component applicability
45206
+ * @param {PlatformComponentConfigurationPreviewRequest} platformComponentConfigurationPreviewRequest
45207
+ * @param {*} [options] Override http request option.
45208
+ * @throws {RequiredError}
45209
+ */
45210
+ resolvePlatformTemplateComponentConfiguration: (organizationId: string, templateKey: string, templateVersion: string, componentKey: string, clusterMode: PlatformClusterMode, cloudProvider: PlatformCloudVendor, platformComponentConfigurationPreviewRequest: PlatformComponentConfigurationPreviewRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
45166
45211
  /**
45167
45212
  * Selects a platform template and stores layer selections, component profile values, and customer-provided runtime inputs for the cluster.
45168
45213
  * @summary Update the cluster platform binding
@@ -45209,6 +45254,20 @@ export declare const PlatformConfigurationApiFp: (configuration?: Configuration)
45209
45254
  * @throws {RequiredError}
45210
45255
  */
45211
45256
  resolvePlatformComponentConfiguration(organizationId: string, clusterId: string, componentKey: string, platformComponentConfigurationPreviewRequest: PlatformComponentConfigurationPreviewRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlatformComponentConfigurationPreviewResponse>>;
45257
+ /**
45258
+ * Resolves the fields and runtime requirements to display for a component using an explicit cluster context and the values currently entered in the Console. This operation is read-only and does not require an existing cluster or platform binding.
45259
+ * @summary Resolve a platform component configuration before cluster creation
45260
+ * @param {string} organizationId Organization ID
45261
+ * @param {string} templateKey Platform template key
45262
+ * @param {string} templateVersion Platform template version
45263
+ * @param {string} componentKey Platform component key
45264
+ * @param {PlatformClusterMode} clusterMode Cluster management mode used to resolve component applicability
45265
+ * @param {PlatformCloudVendor} cloudProvider Cluster cloud provider used to resolve component applicability
45266
+ * @param {PlatformComponentConfigurationPreviewRequest} platformComponentConfigurationPreviewRequest
45267
+ * @param {*} [options] Override http request option.
45268
+ * @throws {RequiredError}
45269
+ */
45270
+ resolvePlatformTemplateComponentConfiguration(organizationId: string, templateKey: string, templateVersion: string, componentKey: string, clusterMode: PlatformClusterMode, cloudProvider: PlatformCloudVendor, platformComponentConfigurationPreviewRequest: PlatformComponentConfigurationPreviewRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlatformComponentConfigurationResolutionResponse>>;
45212
45271
  /**
45213
45272
  * Selects a platform template and stores layer selections, component profile values, and customer-provided runtime inputs for the cluster.
45214
45273
  * @summary Update the cluster platform binding
@@ -45255,6 +45314,20 @@ export declare const PlatformConfigurationApiFactory: (configuration?: Configura
45255
45314
  * @throws {RequiredError}
45256
45315
  */
45257
45316
  resolvePlatformComponentConfiguration(organizationId: string, clusterId: string, componentKey: string, platformComponentConfigurationPreviewRequest: PlatformComponentConfigurationPreviewRequest, options?: RawAxiosRequestConfig): AxiosPromise<PlatformComponentConfigurationPreviewResponse>;
45317
+ /**
45318
+ * Resolves the fields and runtime requirements to display for a component using an explicit cluster context and the values currently entered in the Console. This operation is read-only and does not require an existing cluster or platform binding.
45319
+ * @summary Resolve a platform component configuration before cluster creation
45320
+ * @param {string} organizationId Organization ID
45321
+ * @param {string} templateKey Platform template key
45322
+ * @param {string} templateVersion Platform template version
45323
+ * @param {string} componentKey Platform component key
45324
+ * @param {PlatformClusterMode} clusterMode Cluster management mode used to resolve component applicability
45325
+ * @param {PlatformCloudVendor} cloudProvider Cluster cloud provider used to resolve component applicability
45326
+ * @param {PlatformComponentConfigurationPreviewRequest} platformComponentConfigurationPreviewRequest
45327
+ * @param {*} [options] Override http request option.
45328
+ * @throws {RequiredError}
45329
+ */
45330
+ resolvePlatformTemplateComponentConfiguration(organizationId: string, templateKey: string, templateVersion: string, componentKey: string, clusterMode: PlatformClusterMode, cloudProvider: PlatformCloudVendor, platformComponentConfigurationPreviewRequest: PlatformComponentConfigurationPreviewRequest, options?: RawAxiosRequestConfig): AxiosPromise<PlatformComponentConfigurationResolutionResponse>;
45258
45331
  /**
45259
45332
  * Selects a platform template and stores layer selections, component profile values, and customer-provided runtime inputs for the cluster.
45260
45333
  * @summary Update the cluster platform binding
@@ -45306,6 +45379,21 @@ export declare class PlatformConfigurationApi extends BaseAPI {
45306
45379
  * @memberof PlatformConfigurationApi
45307
45380
  */
45308
45381
  resolvePlatformComponentConfiguration(organizationId: string, clusterId: string, componentKey: string, platformComponentConfigurationPreviewRequest: PlatformComponentConfigurationPreviewRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlatformComponentConfigurationPreviewResponse, any, {}>>;
45382
+ /**
45383
+ * Resolves the fields and runtime requirements to display for a component using an explicit cluster context and the values currently entered in the Console. This operation is read-only and does not require an existing cluster or platform binding.
45384
+ * @summary Resolve a platform component configuration before cluster creation
45385
+ * @param {string} organizationId Organization ID
45386
+ * @param {string} templateKey Platform template key
45387
+ * @param {string} templateVersion Platform template version
45388
+ * @param {string} componentKey Platform component key
45389
+ * @param {PlatformClusterMode} clusterMode Cluster management mode used to resolve component applicability
45390
+ * @param {PlatformCloudVendor} cloudProvider Cluster cloud provider used to resolve component applicability
45391
+ * @param {PlatformComponentConfigurationPreviewRequest} platformComponentConfigurationPreviewRequest
45392
+ * @param {*} [options] Override http request option.
45393
+ * @throws {RequiredError}
45394
+ * @memberof PlatformConfigurationApi
45395
+ */
45396
+ resolvePlatformTemplateComponentConfiguration(organizationId: string, templateKey: string, templateVersion: string, componentKey: string, clusterMode: PlatformClusterMode, cloudProvider: PlatformCloudVendor, platformComponentConfigurationPreviewRequest: PlatformComponentConfigurationPreviewRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlatformComponentConfigurationResolutionResponse, any, {}>>;
45309
45397
  /**
45310
45398
  * Selects a platform template and stores layer selections, component profile values, and customer-provided runtime inputs for the cluster.
45311
45399
  * @summary Update the cluster platform binding
package/dist/api.js CHANGED
@@ -41134,6 +41134,69 @@ const PlatformConfigurationApiAxiosParamCreator = function (configuration) {
41134
41134
  options: localVarRequestOptions,
41135
41135
  };
41136
41136
  }),
41137
+ /**
41138
+ * Resolves the fields and runtime requirements to display for a component using an explicit cluster context and the values currently entered in the Console. This operation is read-only and does not require an existing cluster or platform binding.
41139
+ * @summary Resolve a platform component configuration before cluster creation
41140
+ * @param {string} organizationId Organization ID
41141
+ * @param {string} templateKey Platform template key
41142
+ * @param {string} templateVersion Platform template version
41143
+ * @param {string} componentKey Platform component key
41144
+ * @param {PlatformClusterMode} clusterMode Cluster management mode used to resolve component applicability
41145
+ * @param {PlatformCloudVendor} cloudProvider Cluster cloud provider used to resolve component applicability
41146
+ * @param {PlatformComponentConfigurationPreviewRequest} platformComponentConfigurationPreviewRequest
41147
+ * @param {*} [options] Override http request option.
41148
+ * @throws {RequiredError}
41149
+ */
41150
+ resolvePlatformTemplateComponentConfiguration: (organizationId_1, templateKey_1, templateVersion_1, componentKey_1, clusterMode_1, cloudProvider_1, platformComponentConfigurationPreviewRequest_1, ...args_1) => __awaiter(this, [organizationId_1, templateKey_1, templateVersion_1, componentKey_1, clusterMode_1, cloudProvider_1, platformComponentConfigurationPreviewRequest_1, ...args_1], void 0, function* (organizationId, templateKey, templateVersion, componentKey, clusterMode, cloudProvider, platformComponentConfigurationPreviewRequest, options = {}) {
41151
+ // verify required parameter 'organizationId' is not null or undefined
41152
+ (0, common_1.assertParamExists)('resolvePlatformTemplateComponentConfiguration', 'organizationId', organizationId);
41153
+ // verify required parameter 'templateKey' is not null or undefined
41154
+ (0, common_1.assertParamExists)('resolvePlatformTemplateComponentConfiguration', 'templateKey', templateKey);
41155
+ // verify required parameter 'templateVersion' is not null or undefined
41156
+ (0, common_1.assertParamExists)('resolvePlatformTemplateComponentConfiguration', 'templateVersion', templateVersion);
41157
+ // verify required parameter 'componentKey' is not null or undefined
41158
+ (0, common_1.assertParamExists)('resolvePlatformTemplateComponentConfiguration', 'componentKey', componentKey);
41159
+ // verify required parameter 'clusterMode' is not null or undefined
41160
+ (0, common_1.assertParamExists)('resolvePlatformTemplateComponentConfiguration', 'clusterMode', clusterMode);
41161
+ // verify required parameter 'cloudProvider' is not null or undefined
41162
+ (0, common_1.assertParamExists)('resolvePlatformTemplateComponentConfiguration', 'cloudProvider', cloudProvider);
41163
+ // verify required parameter 'platformComponentConfigurationPreviewRequest' is not null or undefined
41164
+ (0, common_1.assertParamExists)('resolvePlatformTemplateComponentConfiguration', 'platformComponentConfigurationPreviewRequest', platformComponentConfigurationPreviewRequest);
41165
+ const localVarPath = `/organization/{organizationId}/platformTemplate/{templateKey}/{templateVersion}/component/{componentKey}/resolve`
41166
+ .replace(`{${"organizationId"}}`, encodeURIComponent(String(organizationId)))
41167
+ .replace(`{${"templateKey"}}`, encodeURIComponent(String(templateKey)))
41168
+ .replace(`{${"templateVersion"}}`, encodeURIComponent(String(templateVersion)))
41169
+ .replace(`{${"componentKey"}}`, encodeURIComponent(String(componentKey)));
41170
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
41171
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
41172
+ let baseOptions;
41173
+ if (configuration) {
41174
+ baseOptions = configuration.baseOptions;
41175
+ }
41176
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
41177
+ const localVarHeaderParameter = {};
41178
+ const localVarQueryParameter = {};
41179
+ // authentication ApiKeyAuth required
41180
+ yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
41181
+ // authentication bearerAuth required
41182
+ // http bearer authentication required
41183
+ yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
41184
+ if (clusterMode !== undefined) {
41185
+ localVarQueryParameter['clusterMode'] = clusterMode;
41186
+ }
41187
+ if (cloudProvider !== undefined) {
41188
+ localVarQueryParameter['cloudProvider'] = cloudProvider;
41189
+ }
41190
+ localVarHeaderParameter['Content-Type'] = 'application/json';
41191
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
41192
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
41193
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
41194
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(platformComponentConfigurationPreviewRequest, localVarRequestOptions, configuration);
41195
+ return {
41196
+ url: (0, common_1.toPathString)(localVarUrlObj),
41197
+ options: localVarRequestOptions,
41198
+ };
41199
+ }),
41137
41200
  /**
41138
41201
  * Selects a platform template and stores layer selections, component profile values, and customer-provided runtime inputs for the cluster.
41139
41202
  * @summary Update the cluster platform binding
@@ -41241,6 +41304,28 @@ const PlatformConfigurationApiFp = function (configuration) {
41241
41304
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
41242
41305
  });
41243
41306
  },
41307
+ /**
41308
+ * Resolves the fields and runtime requirements to display for a component using an explicit cluster context and the values currently entered in the Console. This operation is read-only and does not require an existing cluster or platform binding.
41309
+ * @summary Resolve a platform component configuration before cluster creation
41310
+ * @param {string} organizationId Organization ID
41311
+ * @param {string} templateKey Platform template key
41312
+ * @param {string} templateVersion Platform template version
41313
+ * @param {string} componentKey Platform component key
41314
+ * @param {PlatformClusterMode} clusterMode Cluster management mode used to resolve component applicability
41315
+ * @param {PlatformCloudVendor} cloudProvider Cluster cloud provider used to resolve component applicability
41316
+ * @param {PlatformComponentConfigurationPreviewRequest} platformComponentConfigurationPreviewRequest
41317
+ * @param {*} [options] Override http request option.
41318
+ * @throws {RequiredError}
41319
+ */
41320
+ resolvePlatformTemplateComponentConfiguration(organizationId, templateKey, templateVersion, componentKey, clusterMode, cloudProvider, platformComponentConfigurationPreviewRequest, options) {
41321
+ return __awaiter(this, void 0, void 0, function* () {
41322
+ var _a, _b, _c;
41323
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.resolvePlatformTemplateComponentConfiguration(organizationId, templateKey, templateVersion, componentKey, clusterMode, cloudProvider, platformComponentConfigurationPreviewRequest, options);
41324
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
41325
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['PlatformConfigurationApi.resolvePlatformTemplateComponentConfiguration']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
41326
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
41327
+ });
41328
+ },
41244
41329
  /**
41245
41330
  * Selects a platform template and stores layer selections, component profile values, and customer-provided runtime inputs for the cluster.
41246
41331
  * @summary Update the cluster platform binding
@@ -41305,6 +41390,22 @@ const PlatformConfigurationApiFactory = function (configuration, basePath, axios
41305
41390
  resolvePlatformComponentConfiguration(organizationId, clusterId, componentKey, platformComponentConfigurationPreviewRequest, options) {
41306
41391
  return localVarFp.resolvePlatformComponentConfiguration(organizationId, clusterId, componentKey, platformComponentConfigurationPreviewRequest, options).then((request) => request(axios, basePath));
41307
41392
  },
41393
+ /**
41394
+ * Resolves the fields and runtime requirements to display for a component using an explicit cluster context and the values currently entered in the Console. This operation is read-only and does not require an existing cluster or platform binding.
41395
+ * @summary Resolve a platform component configuration before cluster creation
41396
+ * @param {string} organizationId Organization ID
41397
+ * @param {string} templateKey Platform template key
41398
+ * @param {string} templateVersion Platform template version
41399
+ * @param {string} componentKey Platform component key
41400
+ * @param {PlatformClusterMode} clusterMode Cluster management mode used to resolve component applicability
41401
+ * @param {PlatformCloudVendor} cloudProvider Cluster cloud provider used to resolve component applicability
41402
+ * @param {PlatformComponentConfigurationPreviewRequest} platformComponentConfigurationPreviewRequest
41403
+ * @param {*} [options] Override http request option.
41404
+ * @throws {RequiredError}
41405
+ */
41406
+ resolvePlatformTemplateComponentConfiguration(organizationId, templateKey, templateVersion, componentKey, clusterMode, cloudProvider, platformComponentConfigurationPreviewRequest, options) {
41407
+ return localVarFp.resolvePlatformTemplateComponentConfiguration(organizationId, templateKey, templateVersion, componentKey, clusterMode, cloudProvider, platformComponentConfigurationPreviewRequest, options).then((request) => request(axios, basePath));
41408
+ },
41308
41409
  /**
41309
41410
  * Selects a platform template and stores layer selections, component profile values, and customer-provided runtime inputs for the cluster.
41310
41411
  * @summary Update the cluster platform binding
@@ -41366,6 +41467,23 @@ class PlatformConfigurationApi extends base_1.BaseAPI {
41366
41467
  resolvePlatformComponentConfiguration(organizationId, clusterId, componentKey, platformComponentConfigurationPreviewRequest, options) {
41367
41468
  return (0, exports.PlatformConfigurationApiFp)(this.configuration).resolvePlatformComponentConfiguration(organizationId, clusterId, componentKey, platformComponentConfigurationPreviewRequest, options).then((request) => request(this.axios, this.basePath));
41368
41469
  }
41470
+ /**
41471
+ * Resolves the fields and runtime requirements to display for a component using an explicit cluster context and the values currently entered in the Console. This operation is read-only and does not require an existing cluster or platform binding.
41472
+ * @summary Resolve a platform component configuration before cluster creation
41473
+ * @param {string} organizationId Organization ID
41474
+ * @param {string} templateKey Platform template key
41475
+ * @param {string} templateVersion Platform template version
41476
+ * @param {string} componentKey Platform component key
41477
+ * @param {PlatformClusterMode} clusterMode Cluster management mode used to resolve component applicability
41478
+ * @param {PlatformCloudVendor} cloudProvider Cluster cloud provider used to resolve component applicability
41479
+ * @param {PlatformComponentConfigurationPreviewRequest} platformComponentConfigurationPreviewRequest
41480
+ * @param {*} [options] Override http request option.
41481
+ * @throws {RequiredError}
41482
+ * @memberof PlatformConfigurationApi
41483
+ */
41484
+ resolvePlatformTemplateComponentConfiguration(organizationId, templateKey, templateVersion, componentKey, clusterMode, cloudProvider, platformComponentConfigurationPreviewRequest, options) {
41485
+ return (0, exports.PlatformConfigurationApiFp)(this.configuration).resolvePlatformTemplateComponentConfiguration(organizationId, templateKey, templateVersion, componentKey, clusterMode, cloudProvider, platformComponentConfigurationPreviewRequest, options).then((request) => request(this.axios, this.basePath));
41486
+ }
41369
41487
  /**
41370
41488
  * Selects a platform template and stores layer selections, component profile values, and customer-provided runtime inputs for the cluster.
41371
41489
  * @summary Update the cluster platform binding
package/dist/esm/api.d.ts CHANGED
@@ -247,11 +247,11 @@ export interface AgenticWorkflowRequest {
247
247
  */
248
248
  'description'?: string;
249
249
  /**
250
- * Hosts the agentic workflow is allowed to reach
250
+ * CIDR ranges the incoming webhook request\'s source IP is checked against
251
251
  * @type {Array<string>}
252
252
  * @memberof AgenticWorkflowRequest
253
253
  */
254
- 'whitelist_hosts'?: Array<string>;
254
+ 'ip_allowlist'?: Array<string>;
255
255
  /**
256
256
  *
257
257
  * @type {string}
@@ -332,11 +332,11 @@ export interface AgenticWorkflowResponse {
332
332
  */
333
333
  'description': string;
334
334
  /**
335
- * Hosts the agentic workflow is allowed to reach
335
+ * CIDR ranges the incoming webhook request\'s source IP is checked against
336
336
  * @type {Array<string>}
337
337
  * @memberof AgenticWorkflowResponse
338
338
  */
339
- 'whitelist_hosts': Array<string>;
339
+ 'ip_allowlist': Array<string>;
340
340
  /**
341
341
  *
342
342
  * @type {string}
@@ -411,12 +411,6 @@ export interface AgenticWorkflowWebhook {
411
411
  * @memberof AgenticWorkflowWebhook
412
412
  */
413
413
  'url': string;
414
- /**
415
- *
416
- * @type {string}
417
- * @memberof AgenticWorkflowWebhook
418
- */
419
- 'secret': string;
420
414
  }
421
415
  /**
422
416
  *
@@ -20895,6 +20889,43 @@ export declare const PlatformComponentConfigurationRequirementStatus: {
20895
20889
  readonly READY: "READY";
20896
20890
  };
20897
20891
  export type PlatformComponentConfigurationRequirementStatus = typeof PlatformComponentConfigurationRequirementStatus[keyof typeof PlatformComponentConfigurationRequirementStatus];
20892
+ /**
20893
+ * Component configuration resolved from an explicit template and cluster context before an actual cluster exists.
20894
+ * @export
20895
+ * @interface PlatformComponentConfigurationResolutionResponse
20896
+ */
20897
+ export interface PlatformComponentConfigurationResolutionResponse {
20898
+ /**
20899
+ *
20900
+ * @type {string}
20901
+ * @memberof PlatformComponentConfigurationResolutionResponse
20902
+ */
20903
+ 'componentKey': string;
20904
+ /**
20905
+ *
20906
+ * @type {Array<FieldSchemaResponse>}
20907
+ * @memberof PlatformComponentConfigurationResolutionResponse
20908
+ */
20909
+ 'fields': Array<FieldSchemaResponse>;
20910
+ /**
20911
+ *
20912
+ * @type {Array<PlatformComponentInputRequirementResponse>}
20913
+ * @memberof PlatformComponentConfigurationResolutionResponse
20914
+ */
20915
+ 'requirements': Array<PlatformComponentInputRequirementResponse>;
20916
+ /**
20917
+ *
20918
+ * @type {Array<PlatformComponentOutputBindingResponse>}
20919
+ * @memberof PlatformComponentConfigurationResolutionResponse
20920
+ */
20921
+ 'componentBindings': Array<PlatformComponentOutputBindingResponse>;
20922
+ /**
20923
+ *
20924
+ * @type {Array<PlatformComponentConfigurationViolationResponse>}
20925
+ * @memberof PlatformComponentConfigurationResolutionResponse
20926
+ */
20927
+ 'violations': Array<PlatformComponentConfigurationViolationResponse>;
20928
+ }
20898
20929
  /**
20899
20930
  *
20900
20931
  * @export
@@ -45163,6 +45194,20 @@ export declare const PlatformConfigurationApiAxiosParamCreator: (configuration?:
45163
45194
  * @throws {RequiredError}
45164
45195
  */
45165
45196
  resolvePlatformComponentConfiguration: (organizationId: string, clusterId: string, componentKey: string, platformComponentConfigurationPreviewRequest: PlatformComponentConfigurationPreviewRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
45197
+ /**
45198
+ * Resolves the fields and runtime requirements to display for a component using an explicit cluster context and the values currently entered in the Console. This operation is read-only and does not require an existing cluster or platform binding.
45199
+ * @summary Resolve a platform component configuration before cluster creation
45200
+ * @param {string} organizationId Organization ID
45201
+ * @param {string} templateKey Platform template key
45202
+ * @param {string} templateVersion Platform template version
45203
+ * @param {string} componentKey Platform component key
45204
+ * @param {PlatformClusterMode} clusterMode Cluster management mode used to resolve component applicability
45205
+ * @param {PlatformCloudVendor} cloudProvider Cluster cloud provider used to resolve component applicability
45206
+ * @param {PlatformComponentConfigurationPreviewRequest} platformComponentConfigurationPreviewRequest
45207
+ * @param {*} [options] Override http request option.
45208
+ * @throws {RequiredError}
45209
+ */
45210
+ resolvePlatformTemplateComponentConfiguration: (organizationId: string, templateKey: string, templateVersion: string, componentKey: string, clusterMode: PlatformClusterMode, cloudProvider: PlatformCloudVendor, platformComponentConfigurationPreviewRequest: PlatformComponentConfigurationPreviewRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
45166
45211
  /**
45167
45212
  * Selects a platform template and stores layer selections, component profile values, and customer-provided runtime inputs for the cluster.
45168
45213
  * @summary Update the cluster platform binding
@@ -45209,6 +45254,20 @@ export declare const PlatformConfigurationApiFp: (configuration?: Configuration)
45209
45254
  * @throws {RequiredError}
45210
45255
  */
45211
45256
  resolvePlatformComponentConfiguration(organizationId: string, clusterId: string, componentKey: string, platformComponentConfigurationPreviewRequest: PlatformComponentConfigurationPreviewRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlatformComponentConfigurationPreviewResponse>>;
45257
+ /**
45258
+ * Resolves the fields and runtime requirements to display for a component using an explicit cluster context and the values currently entered in the Console. This operation is read-only and does not require an existing cluster or platform binding.
45259
+ * @summary Resolve a platform component configuration before cluster creation
45260
+ * @param {string} organizationId Organization ID
45261
+ * @param {string} templateKey Platform template key
45262
+ * @param {string} templateVersion Platform template version
45263
+ * @param {string} componentKey Platform component key
45264
+ * @param {PlatformClusterMode} clusterMode Cluster management mode used to resolve component applicability
45265
+ * @param {PlatformCloudVendor} cloudProvider Cluster cloud provider used to resolve component applicability
45266
+ * @param {PlatformComponentConfigurationPreviewRequest} platformComponentConfigurationPreviewRequest
45267
+ * @param {*} [options] Override http request option.
45268
+ * @throws {RequiredError}
45269
+ */
45270
+ resolvePlatformTemplateComponentConfiguration(organizationId: string, templateKey: string, templateVersion: string, componentKey: string, clusterMode: PlatformClusterMode, cloudProvider: PlatformCloudVendor, platformComponentConfigurationPreviewRequest: PlatformComponentConfigurationPreviewRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlatformComponentConfigurationResolutionResponse>>;
45212
45271
  /**
45213
45272
  * Selects a platform template and stores layer selections, component profile values, and customer-provided runtime inputs for the cluster.
45214
45273
  * @summary Update the cluster platform binding
@@ -45255,6 +45314,20 @@ export declare const PlatformConfigurationApiFactory: (configuration?: Configura
45255
45314
  * @throws {RequiredError}
45256
45315
  */
45257
45316
  resolvePlatformComponentConfiguration(organizationId: string, clusterId: string, componentKey: string, platformComponentConfigurationPreviewRequest: PlatformComponentConfigurationPreviewRequest, options?: RawAxiosRequestConfig): AxiosPromise<PlatformComponentConfigurationPreviewResponse>;
45317
+ /**
45318
+ * Resolves the fields and runtime requirements to display for a component using an explicit cluster context and the values currently entered in the Console. This operation is read-only and does not require an existing cluster or platform binding.
45319
+ * @summary Resolve a platform component configuration before cluster creation
45320
+ * @param {string} organizationId Organization ID
45321
+ * @param {string} templateKey Platform template key
45322
+ * @param {string} templateVersion Platform template version
45323
+ * @param {string} componentKey Platform component key
45324
+ * @param {PlatformClusterMode} clusterMode Cluster management mode used to resolve component applicability
45325
+ * @param {PlatformCloudVendor} cloudProvider Cluster cloud provider used to resolve component applicability
45326
+ * @param {PlatformComponentConfigurationPreviewRequest} platformComponentConfigurationPreviewRequest
45327
+ * @param {*} [options] Override http request option.
45328
+ * @throws {RequiredError}
45329
+ */
45330
+ resolvePlatformTemplateComponentConfiguration(organizationId: string, templateKey: string, templateVersion: string, componentKey: string, clusterMode: PlatformClusterMode, cloudProvider: PlatformCloudVendor, platformComponentConfigurationPreviewRequest: PlatformComponentConfigurationPreviewRequest, options?: RawAxiosRequestConfig): AxiosPromise<PlatformComponentConfigurationResolutionResponse>;
45258
45331
  /**
45259
45332
  * Selects a platform template and stores layer selections, component profile values, and customer-provided runtime inputs for the cluster.
45260
45333
  * @summary Update the cluster platform binding
@@ -45306,6 +45379,21 @@ export declare class PlatformConfigurationApi extends BaseAPI {
45306
45379
  * @memberof PlatformConfigurationApi
45307
45380
  */
45308
45381
  resolvePlatformComponentConfiguration(organizationId: string, clusterId: string, componentKey: string, platformComponentConfigurationPreviewRequest: PlatformComponentConfigurationPreviewRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlatformComponentConfigurationPreviewResponse, any, {}>>;
45382
+ /**
45383
+ * Resolves the fields and runtime requirements to display for a component using an explicit cluster context and the values currently entered in the Console. This operation is read-only and does not require an existing cluster or platform binding.
45384
+ * @summary Resolve a platform component configuration before cluster creation
45385
+ * @param {string} organizationId Organization ID
45386
+ * @param {string} templateKey Platform template key
45387
+ * @param {string} templateVersion Platform template version
45388
+ * @param {string} componentKey Platform component key
45389
+ * @param {PlatformClusterMode} clusterMode Cluster management mode used to resolve component applicability
45390
+ * @param {PlatformCloudVendor} cloudProvider Cluster cloud provider used to resolve component applicability
45391
+ * @param {PlatformComponentConfigurationPreviewRequest} platformComponentConfigurationPreviewRequest
45392
+ * @param {*} [options] Override http request option.
45393
+ * @throws {RequiredError}
45394
+ * @memberof PlatformConfigurationApi
45395
+ */
45396
+ resolvePlatformTemplateComponentConfiguration(organizationId: string, templateKey: string, templateVersion: string, componentKey: string, clusterMode: PlatformClusterMode, cloudProvider: PlatformCloudVendor, platformComponentConfigurationPreviewRequest: PlatformComponentConfigurationPreviewRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlatformComponentConfigurationResolutionResponse, any, {}>>;
45309
45397
  /**
45310
45398
  * Selects a platform template and stores layer selections, component profile values, and customer-provided runtime inputs for the cluster.
45311
45399
  * @summary Update the cluster platform binding
package/dist/esm/api.js CHANGED
@@ -40796,6 +40796,69 @@ export const PlatformConfigurationApiAxiosParamCreator = function (configuration
40796
40796
  options: localVarRequestOptions,
40797
40797
  };
40798
40798
  }),
40799
+ /**
40800
+ * Resolves the fields and runtime requirements to display for a component using an explicit cluster context and the values currently entered in the Console. This operation is read-only and does not require an existing cluster or platform binding.
40801
+ * @summary Resolve a platform component configuration before cluster creation
40802
+ * @param {string} organizationId Organization ID
40803
+ * @param {string} templateKey Platform template key
40804
+ * @param {string} templateVersion Platform template version
40805
+ * @param {string} componentKey Platform component key
40806
+ * @param {PlatformClusterMode} clusterMode Cluster management mode used to resolve component applicability
40807
+ * @param {PlatformCloudVendor} cloudProvider Cluster cloud provider used to resolve component applicability
40808
+ * @param {PlatformComponentConfigurationPreviewRequest} platformComponentConfigurationPreviewRequest
40809
+ * @param {*} [options] Override http request option.
40810
+ * @throws {RequiredError}
40811
+ */
40812
+ resolvePlatformTemplateComponentConfiguration: (organizationId_1, templateKey_1, templateVersion_1, componentKey_1, clusterMode_1, cloudProvider_1, platformComponentConfigurationPreviewRequest_1, ...args_1) => __awaiter(this, [organizationId_1, templateKey_1, templateVersion_1, componentKey_1, clusterMode_1, cloudProvider_1, platformComponentConfigurationPreviewRequest_1, ...args_1], void 0, function* (organizationId, templateKey, templateVersion, componentKey, clusterMode, cloudProvider, platformComponentConfigurationPreviewRequest, options = {}) {
40813
+ // verify required parameter 'organizationId' is not null or undefined
40814
+ assertParamExists('resolvePlatformTemplateComponentConfiguration', 'organizationId', organizationId);
40815
+ // verify required parameter 'templateKey' is not null or undefined
40816
+ assertParamExists('resolvePlatformTemplateComponentConfiguration', 'templateKey', templateKey);
40817
+ // verify required parameter 'templateVersion' is not null or undefined
40818
+ assertParamExists('resolvePlatformTemplateComponentConfiguration', 'templateVersion', templateVersion);
40819
+ // verify required parameter 'componentKey' is not null or undefined
40820
+ assertParamExists('resolvePlatformTemplateComponentConfiguration', 'componentKey', componentKey);
40821
+ // verify required parameter 'clusterMode' is not null or undefined
40822
+ assertParamExists('resolvePlatformTemplateComponentConfiguration', 'clusterMode', clusterMode);
40823
+ // verify required parameter 'cloudProvider' is not null or undefined
40824
+ assertParamExists('resolvePlatformTemplateComponentConfiguration', 'cloudProvider', cloudProvider);
40825
+ // verify required parameter 'platformComponentConfigurationPreviewRequest' is not null or undefined
40826
+ assertParamExists('resolvePlatformTemplateComponentConfiguration', 'platformComponentConfigurationPreviewRequest', platformComponentConfigurationPreviewRequest);
40827
+ const localVarPath = `/organization/{organizationId}/platformTemplate/{templateKey}/{templateVersion}/component/{componentKey}/resolve`
40828
+ .replace(`{${"organizationId"}}`, encodeURIComponent(String(organizationId)))
40829
+ .replace(`{${"templateKey"}}`, encodeURIComponent(String(templateKey)))
40830
+ .replace(`{${"templateVersion"}}`, encodeURIComponent(String(templateVersion)))
40831
+ .replace(`{${"componentKey"}}`, encodeURIComponent(String(componentKey)));
40832
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
40833
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
40834
+ let baseOptions;
40835
+ if (configuration) {
40836
+ baseOptions = configuration.baseOptions;
40837
+ }
40838
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
40839
+ const localVarHeaderParameter = {};
40840
+ const localVarQueryParameter = {};
40841
+ // authentication ApiKeyAuth required
40842
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
40843
+ // authentication bearerAuth required
40844
+ // http bearer authentication required
40845
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
40846
+ if (clusterMode !== undefined) {
40847
+ localVarQueryParameter['clusterMode'] = clusterMode;
40848
+ }
40849
+ if (cloudProvider !== undefined) {
40850
+ localVarQueryParameter['cloudProvider'] = cloudProvider;
40851
+ }
40852
+ localVarHeaderParameter['Content-Type'] = 'application/json';
40853
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
40854
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
40855
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
40856
+ localVarRequestOptions.data = serializeDataIfNeeded(platformComponentConfigurationPreviewRequest, localVarRequestOptions, configuration);
40857
+ return {
40858
+ url: toPathString(localVarUrlObj),
40859
+ options: localVarRequestOptions,
40860
+ };
40861
+ }),
40799
40862
  /**
40800
40863
  * Selects a platform template and stores layer selections, component profile values, and customer-provided runtime inputs for the cluster.
40801
40864
  * @summary Update the cluster platform binding
@@ -40902,6 +40965,28 @@ export const PlatformConfigurationApiFp = function (configuration) {
40902
40965
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
40903
40966
  });
40904
40967
  },
40968
+ /**
40969
+ * Resolves the fields and runtime requirements to display for a component using an explicit cluster context and the values currently entered in the Console. This operation is read-only and does not require an existing cluster or platform binding.
40970
+ * @summary Resolve a platform component configuration before cluster creation
40971
+ * @param {string} organizationId Organization ID
40972
+ * @param {string} templateKey Platform template key
40973
+ * @param {string} templateVersion Platform template version
40974
+ * @param {string} componentKey Platform component key
40975
+ * @param {PlatformClusterMode} clusterMode Cluster management mode used to resolve component applicability
40976
+ * @param {PlatformCloudVendor} cloudProvider Cluster cloud provider used to resolve component applicability
40977
+ * @param {PlatformComponentConfigurationPreviewRequest} platformComponentConfigurationPreviewRequest
40978
+ * @param {*} [options] Override http request option.
40979
+ * @throws {RequiredError}
40980
+ */
40981
+ resolvePlatformTemplateComponentConfiguration(organizationId, templateKey, templateVersion, componentKey, clusterMode, cloudProvider, platformComponentConfigurationPreviewRequest, options) {
40982
+ return __awaiter(this, void 0, void 0, function* () {
40983
+ var _a, _b, _c;
40984
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.resolvePlatformTemplateComponentConfiguration(organizationId, templateKey, templateVersion, componentKey, clusterMode, cloudProvider, platformComponentConfigurationPreviewRequest, options);
40985
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
40986
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PlatformConfigurationApi.resolvePlatformTemplateComponentConfiguration']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
40987
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
40988
+ });
40989
+ },
40905
40990
  /**
40906
40991
  * Selects a platform template and stores layer selections, component profile values, and customer-provided runtime inputs for the cluster.
40907
40992
  * @summary Update the cluster platform binding
@@ -40965,6 +41050,22 @@ export const PlatformConfigurationApiFactory = function (configuration, basePath
40965
41050
  resolvePlatformComponentConfiguration(organizationId, clusterId, componentKey, platformComponentConfigurationPreviewRequest, options) {
40966
41051
  return localVarFp.resolvePlatformComponentConfiguration(organizationId, clusterId, componentKey, platformComponentConfigurationPreviewRequest, options).then((request) => request(axios, basePath));
40967
41052
  },
41053
+ /**
41054
+ * Resolves the fields and runtime requirements to display for a component using an explicit cluster context and the values currently entered in the Console. This operation is read-only and does not require an existing cluster or platform binding.
41055
+ * @summary Resolve a platform component configuration before cluster creation
41056
+ * @param {string} organizationId Organization ID
41057
+ * @param {string} templateKey Platform template key
41058
+ * @param {string} templateVersion Platform template version
41059
+ * @param {string} componentKey Platform component key
41060
+ * @param {PlatformClusterMode} clusterMode Cluster management mode used to resolve component applicability
41061
+ * @param {PlatformCloudVendor} cloudProvider Cluster cloud provider used to resolve component applicability
41062
+ * @param {PlatformComponentConfigurationPreviewRequest} platformComponentConfigurationPreviewRequest
41063
+ * @param {*} [options] Override http request option.
41064
+ * @throws {RequiredError}
41065
+ */
41066
+ resolvePlatformTemplateComponentConfiguration(organizationId, templateKey, templateVersion, componentKey, clusterMode, cloudProvider, platformComponentConfigurationPreviewRequest, options) {
41067
+ return localVarFp.resolvePlatformTemplateComponentConfiguration(organizationId, templateKey, templateVersion, componentKey, clusterMode, cloudProvider, platformComponentConfigurationPreviewRequest, options).then((request) => request(axios, basePath));
41068
+ },
40968
41069
  /**
40969
41070
  * Selects a platform template and stores layer selections, component profile values, and customer-provided runtime inputs for the cluster.
40970
41071
  * @summary Update the cluster platform binding
@@ -41025,6 +41126,23 @@ export class PlatformConfigurationApi extends BaseAPI {
41025
41126
  resolvePlatformComponentConfiguration(organizationId, clusterId, componentKey, platformComponentConfigurationPreviewRequest, options) {
41026
41127
  return PlatformConfigurationApiFp(this.configuration).resolvePlatformComponentConfiguration(organizationId, clusterId, componentKey, platformComponentConfigurationPreviewRequest, options).then((request) => request(this.axios, this.basePath));
41027
41128
  }
41129
+ /**
41130
+ * Resolves the fields and runtime requirements to display for a component using an explicit cluster context and the values currently entered in the Console. This operation is read-only and does not require an existing cluster or platform binding.
41131
+ * @summary Resolve a platform component configuration before cluster creation
41132
+ * @param {string} organizationId Organization ID
41133
+ * @param {string} templateKey Platform template key
41134
+ * @param {string} templateVersion Platform template version
41135
+ * @param {string} componentKey Platform component key
41136
+ * @param {PlatformClusterMode} clusterMode Cluster management mode used to resolve component applicability
41137
+ * @param {PlatformCloudVendor} cloudProvider Cluster cloud provider used to resolve component applicability
41138
+ * @param {PlatformComponentConfigurationPreviewRequest} platformComponentConfigurationPreviewRequest
41139
+ * @param {*} [options] Override http request option.
41140
+ * @throws {RequiredError}
41141
+ * @memberof PlatformConfigurationApi
41142
+ */
41143
+ resolvePlatformTemplateComponentConfiguration(organizationId, templateKey, templateVersion, componentKey, clusterMode, cloudProvider, platformComponentConfigurationPreviewRequest, options) {
41144
+ return PlatformConfigurationApiFp(this.configuration).resolvePlatformTemplateComponentConfiguration(organizationId, templateKey, templateVersion, componentKey, clusterMode, cloudProvider, platformComponentConfigurationPreviewRequest, options).then((request) => request(this.axios, this.basePath));
41145
+ }
41028
41146
  /**
41029
41147
  * Selects a platform template and stores layer selections, component profile values, and customer-provided runtime inputs for the cluster.
41030
41148
  * @summary Update the cluster platform binding
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qovery-typescript-axios",
3
- "version": "v1.1.928",
3
+ "version": "v1.1.930",
4
4
  "description": "OpenAPI client for qovery-typescript-axios",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {