qovery-typescript-axios 1.1.980 → 1.1.982
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 +22 -4
- package/dist/api.d.ts +22 -4
- package/dist/api.js +4 -4
- package/dist/esm/api.d.ts +22 -4
- package/dist/esm/api.js +4 -4
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -6818,6 +6818,12 @@ export interface ClusterDeploymentHistory {
|
|
|
6818
6818
|
* @memberof ClusterDeploymentHistory
|
|
6819
6819
|
*/
|
|
6820
6820
|
'trigger_action': DeploymentHistoryTriggerAction;
|
|
6821
|
+
/**
|
|
6822
|
+
*
|
|
6823
|
+
* @type {boolean}
|
|
6824
|
+
* @memberof ClusterDeploymentHistory
|
|
6825
|
+
*/
|
|
6826
|
+
'is_dry_run': boolean;
|
|
6821
6827
|
/**
|
|
6822
6828
|
*
|
|
6823
6829
|
* @type {string}
|
|
@@ -23068,6 +23074,12 @@ export interface PlatformComponentConfigurationPreviewRequest {
|
|
|
23068
23074
|
* @memberof PlatformComponentConfigurationPreviewRequest
|
|
23069
23075
|
*/
|
|
23070
23076
|
'profileConfig'?: { [key: string]: any; };
|
|
23077
|
+
/**
|
|
23078
|
+
* For an existing cluster, validate profileConfig as a complete draft instead of merging it with saved values. Omitted keys are reset to their catalog defaults. Template previews already use a complete draft and ignore this flag.
|
|
23079
|
+
* @type {boolean}
|
|
23080
|
+
* @memberof PlatformComponentConfigurationPreviewRequest
|
|
23081
|
+
*/
|
|
23082
|
+
'replaceProfileConfig'?: boolean;
|
|
23071
23083
|
/**
|
|
23072
23084
|
*
|
|
23073
23085
|
* @type {{ [key: string]: string; }}
|
|
@@ -23513,6 +23525,12 @@ export interface PlatformTemplateSummaryResponse {
|
|
|
23513
23525
|
* @memberof PlatformTemplateSummaryResponse
|
|
23514
23526
|
*/
|
|
23515
23527
|
'description'?: string | null;
|
|
23528
|
+
/**
|
|
23529
|
+
* Mandatory bootstrap component and its configurable fields, when declared by the template.
|
|
23530
|
+
* @type {PlatformTemplateComponentResponse}
|
|
23531
|
+
* @memberof PlatformTemplateSummaryResponse
|
|
23532
|
+
*/
|
|
23533
|
+
'bootstrapComponent'?: PlatformTemplateComponentResponse | null;
|
|
23516
23534
|
/**
|
|
23517
23535
|
*
|
|
23518
23536
|
* @type {Array<PlatformTemplateLayerResponse>}
|
|
@@ -41568,7 +41586,7 @@ export class CloudProviderCredentialsApi extends BaseAPI {
|
|
|
41568
41586
|
export const ClusterDeploymentHistoryApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
41569
41587
|
return {
|
|
41570
41588
|
/**
|
|
41571
|
-
* List previous and current cluster
|
|
41589
|
+
* List previous and current cluster deployment operations. It returns applied deployments and dry-runs; stop/delete operations are excluded. By default it returns the 20 last results. Use the pageSize query parameter to adjust the number of returned results
|
|
41572
41590
|
* @summary List cluster deployments
|
|
41573
41591
|
* @param {string} organizationId Organization ID
|
|
41574
41592
|
* @param {string} clusterId Cluster ID
|
|
@@ -41677,7 +41695,7 @@ export const ClusterDeploymentHistoryApiFp = function(configuration?: Configurat
|
|
|
41677
41695
|
const localVarAxiosParamCreator = ClusterDeploymentHistoryApiAxiosParamCreator(configuration)
|
|
41678
41696
|
return {
|
|
41679
41697
|
/**
|
|
41680
|
-
* List previous and current cluster
|
|
41698
|
+
* List previous and current cluster deployment operations. It returns applied deployments and dry-runs; stop/delete operations are excluded. By default it returns the 20 last results. Use the pageSize query parameter to adjust the number of returned results
|
|
41681
41699
|
* @summary List cluster deployments
|
|
41682
41700
|
* @param {string} organizationId Organization ID
|
|
41683
41701
|
* @param {string} clusterId Cluster ID
|
|
@@ -41717,7 +41735,7 @@ export const ClusterDeploymentHistoryApiFactory = function (configuration?: Conf
|
|
|
41717
41735
|
const localVarFp = ClusterDeploymentHistoryApiFp(configuration)
|
|
41718
41736
|
return {
|
|
41719
41737
|
/**
|
|
41720
|
-
* List previous and current cluster
|
|
41738
|
+
* List previous and current cluster deployment operations. It returns applied deployments and dry-runs; stop/delete operations are excluded. By default it returns the 20 last results. Use the pageSize query parameter to adjust the number of returned results
|
|
41721
41739
|
* @summary List cluster deployments
|
|
41722
41740
|
* @param {string} organizationId Organization ID
|
|
41723
41741
|
* @param {string} clusterId Cluster ID
|
|
@@ -41751,7 +41769,7 @@ export const ClusterDeploymentHistoryApiFactory = function (configuration?: Conf
|
|
|
41751
41769
|
*/
|
|
41752
41770
|
export class ClusterDeploymentHistoryApi extends BaseAPI {
|
|
41753
41771
|
/**
|
|
41754
|
-
* List previous and current cluster
|
|
41772
|
+
* List previous and current cluster deployment operations. It returns applied deployments and dry-runs; stop/delete operations are excluded. By default it returns the 20 last results. Use the pageSize query parameter to adjust the number of returned results
|
|
41755
41773
|
* @summary List cluster deployments
|
|
41756
41774
|
* @param {string} organizationId Organization ID
|
|
41757
41775
|
* @param {string} clusterId Cluster ID
|
package/dist/api.d.ts
CHANGED
|
@@ -6622,6 +6622,12 @@ export interface ClusterDeploymentHistory {
|
|
|
6622
6622
|
* @memberof ClusterDeploymentHistory
|
|
6623
6623
|
*/
|
|
6624
6624
|
'trigger_action': DeploymentHistoryTriggerAction;
|
|
6625
|
+
/**
|
|
6626
|
+
*
|
|
6627
|
+
* @type {boolean}
|
|
6628
|
+
* @memberof ClusterDeploymentHistory
|
|
6629
|
+
*/
|
|
6630
|
+
'is_dry_run': boolean;
|
|
6625
6631
|
/**
|
|
6626
6632
|
*
|
|
6627
6633
|
* @type {string}
|
|
@@ -22387,6 +22393,12 @@ export interface PlatformComponentConfigurationPreviewRequest {
|
|
|
22387
22393
|
'profileConfig'?: {
|
|
22388
22394
|
[key: string]: any;
|
|
22389
22395
|
};
|
|
22396
|
+
/**
|
|
22397
|
+
* For an existing cluster, validate profileConfig as a complete draft instead of merging it with saved values. Omitted keys are reset to their catalog defaults. Template previews already use a complete draft and ignore this flag.
|
|
22398
|
+
* @type {boolean}
|
|
22399
|
+
* @memberof PlatformComponentConfigurationPreviewRequest
|
|
22400
|
+
*/
|
|
22401
|
+
'replaceProfileConfig'?: boolean;
|
|
22390
22402
|
/**
|
|
22391
22403
|
*
|
|
22392
22404
|
* @type {{ [key: string]: string; }}
|
|
@@ -22817,6 +22829,12 @@ export interface PlatformTemplateSummaryResponse {
|
|
|
22817
22829
|
* @memberof PlatformTemplateSummaryResponse
|
|
22818
22830
|
*/
|
|
22819
22831
|
'description'?: string | null;
|
|
22832
|
+
/**
|
|
22833
|
+
* Mandatory bootstrap component and its configurable fields, when declared by the template.
|
|
22834
|
+
* @type {PlatformTemplateComponentResponse}
|
|
22835
|
+
* @memberof PlatformTemplateSummaryResponse
|
|
22836
|
+
*/
|
|
22837
|
+
'bootstrapComponent'?: PlatformTemplateComponentResponse | null;
|
|
22820
22838
|
/**
|
|
22821
22839
|
*
|
|
22822
22840
|
* @type {Array<PlatformTemplateLayerResponse>}
|
|
@@ -33560,7 +33578,7 @@ export declare class CloudProviderCredentialsApi extends BaseAPI {
|
|
|
33560
33578
|
*/
|
|
33561
33579
|
export declare const ClusterDeploymentHistoryApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
33562
33580
|
/**
|
|
33563
|
-
* List previous and current cluster
|
|
33581
|
+
* List previous and current cluster deployment operations. It returns applied deployments and dry-runs; stop/delete operations are excluded. By default it returns the 20 last results. Use the pageSize query parameter to adjust the number of returned results
|
|
33564
33582
|
* @summary List cluster deployments
|
|
33565
33583
|
* @param {string} organizationId Organization ID
|
|
33566
33584
|
* @param {string} clusterId Cluster ID
|
|
@@ -33586,7 +33604,7 @@ export declare const ClusterDeploymentHistoryApiAxiosParamCreator: (configuratio
|
|
|
33586
33604
|
*/
|
|
33587
33605
|
export declare const ClusterDeploymentHistoryApiFp: (configuration?: Configuration) => {
|
|
33588
33606
|
/**
|
|
33589
|
-
* List previous and current cluster
|
|
33607
|
+
* List previous and current cluster deployment operations. It returns applied deployments and dry-runs; stop/delete operations are excluded. By default it returns the 20 last results. Use the pageSize query parameter to adjust the number of returned results
|
|
33590
33608
|
* @summary List cluster deployments
|
|
33591
33609
|
* @param {string} organizationId Organization ID
|
|
33592
33610
|
* @param {string} clusterId Cluster ID
|
|
@@ -33612,7 +33630,7 @@ export declare const ClusterDeploymentHistoryApiFp: (configuration?: Configurati
|
|
|
33612
33630
|
*/
|
|
33613
33631
|
export declare const ClusterDeploymentHistoryApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
33614
33632
|
/**
|
|
33615
|
-
* List previous and current cluster
|
|
33633
|
+
* List previous and current cluster deployment operations. It returns applied deployments and dry-runs; stop/delete operations are excluded. By default it returns the 20 last results. Use the pageSize query parameter to adjust the number of returned results
|
|
33616
33634
|
* @summary List cluster deployments
|
|
33617
33635
|
* @param {string} organizationId Organization ID
|
|
33618
33636
|
* @param {string} clusterId Cluster ID
|
|
@@ -33640,7 +33658,7 @@ export declare const ClusterDeploymentHistoryApiFactory: (configuration?: Config
|
|
|
33640
33658
|
*/
|
|
33641
33659
|
export declare class ClusterDeploymentHistoryApi extends BaseAPI {
|
|
33642
33660
|
/**
|
|
33643
|
-
* List previous and current cluster
|
|
33661
|
+
* List previous and current cluster deployment operations. It returns applied deployments and dry-runs; stop/delete operations are excluded. By default it returns the 20 last results. Use the pageSize query parameter to adjust the number of returned results
|
|
33644
33662
|
* @summary List cluster deployments
|
|
33645
33663
|
* @param {string} organizationId Organization ID
|
|
33646
33664
|
* @param {string} clusterId Cluster ID
|
package/dist/api.js
CHANGED
|
@@ -13984,7 +13984,7 @@ exports.CloudProviderCredentialsApi = CloudProviderCredentialsApi;
|
|
|
13984
13984
|
const ClusterDeploymentHistoryApiAxiosParamCreator = function (configuration) {
|
|
13985
13985
|
return {
|
|
13986
13986
|
/**
|
|
13987
|
-
* List previous and current cluster
|
|
13987
|
+
* List previous and current cluster deployment operations. It returns applied deployments and dry-runs; stop/delete operations are excluded. By default it returns the 20 last results. Use the pageSize query parameter to adjust the number of returned results
|
|
13988
13988
|
* @summary List cluster deployments
|
|
13989
13989
|
* @param {string} organizationId Organization ID
|
|
13990
13990
|
* @param {string} clusterId Cluster ID
|
|
@@ -14078,7 +14078,7 @@ const ClusterDeploymentHistoryApiFp = function (configuration) {
|
|
|
14078
14078
|
const localVarAxiosParamCreator = (0, exports.ClusterDeploymentHistoryApiAxiosParamCreator)(configuration);
|
|
14079
14079
|
return {
|
|
14080
14080
|
/**
|
|
14081
|
-
* List previous and current cluster
|
|
14081
|
+
* List previous and current cluster deployment operations. It returns applied deployments and dry-runs; stop/delete operations are excluded. By default it returns the 20 last results. Use the pageSize query parameter to adjust the number of returned results
|
|
14082
14082
|
* @summary List cluster deployments
|
|
14083
14083
|
* @param {string} organizationId Organization ID
|
|
14084
14084
|
* @param {string} clusterId Cluster ID
|
|
@@ -14124,7 +14124,7 @@ const ClusterDeploymentHistoryApiFactory = function (configuration, basePath, ax
|
|
|
14124
14124
|
const localVarFp = (0, exports.ClusterDeploymentHistoryApiFp)(configuration);
|
|
14125
14125
|
return {
|
|
14126
14126
|
/**
|
|
14127
|
-
* List previous and current cluster
|
|
14127
|
+
* List previous and current cluster deployment operations. It returns applied deployments and dry-runs; stop/delete operations are excluded. By default it returns the 20 last results. Use the pageSize query parameter to adjust the number of returned results
|
|
14128
14128
|
* @summary List cluster deployments
|
|
14129
14129
|
* @param {string} organizationId Organization ID
|
|
14130
14130
|
* @param {string} clusterId Cluster ID
|
|
@@ -14158,7 +14158,7 @@ exports.ClusterDeploymentHistoryApiFactory = ClusterDeploymentHistoryApiFactory;
|
|
|
14158
14158
|
*/
|
|
14159
14159
|
class ClusterDeploymentHistoryApi extends base_1.BaseAPI {
|
|
14160
14160
|
/**
|
|
14161
|
-
* List previous and current cluster
|
|
14161
|
+
* List previous and current cluster deployment operations. It returns applied deployments and dry-runs; stop/delete operations are excluded. By default it returns the 20 last results. Use the pageSize query parameter to adjust the number of returned results
|
|
14162
14162
|
* @summary List cluster deployments
|
|
14163
14163
|
* @param {string} organizationId Organization ID
|
|
14164
14164
|
* @param {string} clusterId Cluster ID
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -6622,6 +6622,12 @@ export interface ClusterDeploymentHistory {
|
|
|
6622
6622
|
* @memberof ClusterDeploymentHistory
|
|
6623
6623
|
*/
|
|
6624
6624
|
'trigger_action': DeploymentHistoryTriggerAction;
|
|
6625
|
+
/**
|
|
6626
|
+
*
|
|
6627
|
+
* @type {boolean}
|
|
6628
|
+
* @memberof ClusterDeploymentHistory
|
|
6629
|
+
*/
|
|
6630
|
+
'is_dry_run': boolean;
|
|
6625
6631
|
/**
|
|
6626
6632
|
*
|
|
6627
6633
|
* @type {string}
|
|
@@ -22387,6 +22393,12 @@ export interface PlatformComponentConfigurationPreviewRequest {
|
|
|
22387
22393
|
'profileConfig'?: {
|
|
22388
22394
|
[key: string]: any;
|
|
22389
22395
|
};
|
|
22396
|
+
/**
|
|
22397
|
+
* For an existing cluster, validate profileConfig as a complete draft instead of merging it with saved values. Omitted keys are reset to their catalog defaults. Template previews already use a complete draft and ignore this flag.
|
|
22398
|
+
* @type {boolean}
|
|
22399
|
+
* @memberof PlatformComponentConfigurationPreviewRequest
|
|
22400
|
+
*/
|
|
22401
|
+
'replaceProfileConfig'?: boolean;
|
|
22390
22402
|
/**
|
|
22391
22403
|
*
|
|
22392
22404
|
* @type {{ [key: string]: string; }}
|
|
@@ -22817,6 +22829,12 @@ export interface PlatformTemplateSummaryResponse {
|
|
|
22817
22829
|
* @memberof PlatformTemplateSummaryResponse
|
|
22818
22830
|
*/
|
|
22819
22831
|
'description'?: string | null;
|
|
22832
|
+
/**
|
|
22833
|
+
* Mandatory bootstrap component and its configurable fields, when declared by the template.
|
|
22834
|
+
* @type {PlatformTemplateComponentResponse}
|
|
22835
|
+
* @memberof PlatformTemplateSummaryResponse
|
|
22836
|
+
*/
|
|
22837
|
+
'bootstrapComponent'?: PlatformTemplateComponentResponse | null;
|
|
22820
22838
|
/**
|
|
22821
22839
|
*
|
|
22822
22840
|
* @type {Array<PlatformTemplateLayerResponse>}
|
|
@@ -33560,7 +33578,7 @@ export declare class CloudProviderCredentialsApi extends BaseAPI {
|
|
|
33560
33578
|
*/
|
|
33561
33579
|
export declare const ClusterDeploymentHistoryApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
33562
33580
|
/**
|
|
33563
|
-
* List previous and current cluster
|
|
33581
|
+
* List previous and current cluster deployment operations. It returns applied deployments and dry-runs; stop/delete operations are excluded. By default it returns the 20 last results. Use the pageSize query parameter to adjust the number of returned results
|
|
33564
33582
|
* @summary List cluster deployments
|
|
33565
33583
|
* @param {string} organizationId Organization ID
|
|
33566
33584
|
* @param {string} clusterId Cluster ID
|
|
@@ -33586,7 +33604,7 @@ export declare const ClusterDeploymentHistoryApiAxiosParamCreator: (configuratio
|
|
|
33586
33604
|
*/
|
|
33587
33605
|
export declare const ClusterDeploymentHistoryApiFp: (configuration?: Configuration) => {
|
|
33588
33606
|
/**
|
|
33589
|
-
* List previous and current cluster
|
|
33607
|
+
* List previous and current cluster deployment operations. It returns applied deployments and dry-runs; stop/delete operations are excluded. By default it returns the 20 last results. Use the pageSize query parameter to adjust the number of returned results
|
|
33590
33608
|
* @summary List cluster deployments
|
|
33591
33609
|
* @param {string} organizationId Organization ID
|
|
33592
33610
|
* @param {string} clusterId Cluster ID
|
|
@@ -33612,7 +33630,7 @@ export declare const ClusterDeploymentHistoryApiFp: (configuration?: Configurati
|
|
|
33612
33630
|
*/
|
|
33613
33631
|
export declare const ClusterDeploymentHistoryApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
33614
33632
|
/**
|
|
33615
|
-
* List previous and current cluster
|
|
33633
|
+
* List previous and current cluster deployment operations. It returns applied deployments and dry-runs; stop/delete operations are excluded. By default it returns the 20 last results. Use the pageSize query parameter to adjust the number of returned results
|
|
33616
33634
|
* @summary List cluster deployments
|
|
33617
33635
|
* @param {string} organizationId Organization ID
|
|
33618
33636
|
* @param {string} clusterId Cluster ID
|
|
@@ -33640,7 +33658,7 @@ export declare const ClusterDeploymentHistoryApiFactory: (configuration?: Config
|
|
|
33640
33658
|
*/
|
|
33641
33659
|
export declare class ClusterDeploymentHistoryApi extends BaseAPI {
|
|
33642
33660
|
/**
|
|
33643
|
-
* List previous and current cluster
|
|
33661
|
+
* List previous and current cluster deployment operations. It returns applied deployments and dry-runs; stop/delete operations are excluded. By default it returns the 20 last results. Use the pageSize query parameter to adjust the number of returned results
|
|
33644
33662
|
* @summary List cluster deployments
|
|
33645
33663
|
* @param {string} organizationId Organization ID
|
|
33646
33664
|
* @param {string} clusterId Cluster ID
|
package/dist/esm/api.js
CHANGED
|
@@ -13885,7 +13885,7 @@ export class CloudProviderCredentialsApi extends BaseAPI {
|
|
|
13885
13885
|
export const ClusterDeploymentHistoryApiAxiosParamCreator = function (configuration) {
|
|
13886
13886
|
return {
|
|
13887
13887
|
/**
|
|
13888
|
-
* List previous and current cluster
|
|
13888
|
+
* List previous and current cluster deployment operations. It returns applied deployments and dry-runs; stop/delete operations are excluded. By default it returns the 20 last results. Use the pageSize query parameter to adjust the number of returned results
|
|
13889
13889
|
* @summary List cluster deployments
|
|
13890
13890
|
* @param {string} organizationId Organization ID
|
|
13891
13891
|
* @param {string} clusterId Cluster ID
|
|
@@ -13978,7 +13978,7 @@ export const ClusterDeploymentHistoryApiFp = function (configuration) {
|
|
|
13978
13978
|
const localVarAxiosParamCreator = ClusterDeploymentHistoryApiAxiosParamCreator(configuration);
|
|
13979
13979
|
return {
|
|
13980
13980
|
/**
|
|
13981
|
-
* List previous and current cluster
|
|
13981
|
+
* List previous and current cluster deployment operations. It returns applied deployments and dry-runs; stop/delete operations are excluded. By default it returns the 20 last results. Use the pageSize query parameter to adjust the number of returned results
|
|
13982
13982
|
* @summary List cluster deployments
|
|
13983
13983
|
* @param {string} organizationId Organization ID
|
|
13984
13984
|
* @param {string} clusterId Cluster ID
|
|
@@ -14023,7 +14023,7 @@ export const ClusterDeploymentHistoryApiFactory = function (configuration, baseP
|
|
|
14023
14023
|
const localVarFp = ClusterDeploymentHistoryApiFp(configuration);
|
|
14024
14024
|
return {
|
|
14025
14025
|
/**
|
|
14026
|
-
* List previous and current cluster
|
|
14026
|
+
* List previous and current cluster deployment operations. It returns applied deployments and dry-runs; stop/delete operations are excluded. By default it returns the 20 last results. Use the pageSize query parameter to adjust the number of returned results
|
|
14027
14027
|
* @summary List cluster deployments
|
|
14028
14028
|
* @param {string} organizationId Organization ID
|
|
14029
14029
|
* @param {string} clusterId Cluster ID
|
|
@@ -14056,7 +14056,7 @@ export const ClusterDeploymentHistoryApiFactory = function (configuration, baseP
|
|
|
14056
14056
|
*/
|
|
14057
14057
|
export class ClusterDeploymentHistoryApi extends BaseAPI {
|
|
14058
14058
|
/**
|
|
14059
|
-
* List previous and current cluster
|
|
14059
|
+
* List previous and current cluster deployment operations. It returns applied deployments and dry-runs; stop/delete operations are excluded. By default it returns the 20 last results. Use the pageSize query parameter to adjust the number of returned results
|
|
14060
14060
|
* @summary List cluster deployments
|
|
14061
14061
|
* @param {string} organizationId Organization ID
|
|
14062
14062
|
* @param {string} clusterId Cluster ID
|