qovery-typescript-axios 1.1.980 → 1.1.981
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 +10 -4
- package/dist/api.d.ts +10 -4
- package/dist/api.js +4 -4
- package/dist/esm/api.d.ts +10 -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}
|
|
@@ -41568,7 +41574,7 @@ export class CloudProviderCredentialsApi extends BaseAPI {
|
|
|
41568
41574
|
export const ClusterDeploymentHistoryApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
41569
41575
|
return {
|
|
41570
41576
|
/**
|
|
41571
|
-
* List previous and current cluster
|
|
41577
|
+
* 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
41578
|
* @summary List cluster deployments
|
|
41573
41579
|
* @param {string} organizationId Organization ID
|
|
41574
41580
|
* @param {string} clusterId Cluster ID
|
|
@@ -41677,7 +41683,7 @@ export const ClusterDeploymentHistoryApiFp = function(configuration?: Configurat
|
|
|
41677
41683
|
const localVarAxiosParamCreator = ClusterDeploymentHistoryApiAxiosParamCreator(configuration)
|
|
41678
41684
|
return {
|
|
41679
41685
|
/**
|
|
41680
|
-
* List previous and current cluster
|
|
41686
|
+
* 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
41687
|
* @summary List cluster deployments
|
|
41682
41688
|
* @param {string} organizationId Organization ID
|
|
41683
41689
|
* @param {string} clusterId Cluster ID
|
|
@@ -41717,7 +41723,7 @@ export const ClusterDeploymentHistoryApiFactory = function (configuration?: Conf
|
|
|
41717
41723
|
const localVarFp = ClusterDeploymentHistoryApiFp(configuration)
|
|
41718
41724
|
return {
|
|
41719
41725
|
/**
|
|
41720
|
-
* List previous and current cluster
|
|
41726
|
+
* 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
41727
|
* @summary List cluster deployments
|
|
41722
41728
|
* @param {string} organizationId Organization ID
|
|
41723
41729
|
* @param {string} clusterId Cluster ID
|
|
@@ -41751,7 +41757,7 @@ export const ClusterDeploymentHistoryApiFactory = function (configuration?: Conf
|
|
|
41751
41757
|
*/
|
|
41752
41758
|
export class ClusterDeploymentHistoryApi extends BaseAPI {
|
|
41753
41759
|
/**
|
|
41754
|
-
* List previous and current cluster
|
|
41760
|
+
* 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
41761
|
* @summary List cluster deployments
|
|
41756
41762
|
* @param {string} organizationId Organization ID
|
|
41757
41763
|
* @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}
|
|
@@ -33560,7 +33566,7 @@ export declare class CloudProviderCredentialsApi extends BaseAPI {
|
|
|
33560
33566
|
*/
|
|
33561
33567
|
export declare const ClusterDeploymentHistoryApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
33562
33568
|
/**
|
|
33563
|
-
* List previous and current cluster
|
|
33569
|
+
* 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
33570
|
* @summary List cluster deployments
|
|
33565
33571
|
* @param {string} organizationId Organization ID
|
|
33566
33572
|
* @param {string} clusterId Cluster ID
|
|
@@ -33586,7 +33592,7 @@ export declare const ClusterDeploymentHistoryApiAxiosParamCreator: (configuratio
|
|
|
33586
33592
|
*/
|
|
33587
33593
|
export declare const ClusterDeploymentHistoryApiFp: (configuration?: Configuration) => {
|
|
33588
33594
|
/**
|
|
33589
|
-
* List previous and current cluster
|
|
33595
|
+
* 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
33596
|
* @summary List cluster deployments
|
|
33591
33597
|
* @param {string} organizationId Organization ID
|
|
33592
33598
|
* @param {string} clusterId Cluster ID
|
|
@@ -33612,7 +33618,7 @@ export declare const ClusterDeploymentHistoryApiFp: (configuration?: Configurati
|
|
|
33612
33618
|
*/
|
|
33613
33619
|
export declare const ClusterDeploymentHistoryApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
33614
33620
|
/**
|
|
33615
|
-
* List previous and current cluster
|
|
33621
|
+
* 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
33622
|
* @summary List cluster deployments
|
|
33617
33623
|
* @param {string} organizationId Organization ID
|
|
33618
33624
|
* @param {string} clusterId Cluster ID
|
|
@@ -33640,7 +33646,7 @@ export declare const ClusterDeploymentHistoryApiFactory: (configuration?: Config
|
|
|
33640
33646
|
*/
|
|
33641
33647
|
export declare class ClusterDeploymentHistoryApi extends BaseAPI {
|
|
33642
33648
|
/**
|
|
33643
|
-
* List previous and current cluster
|
|
33649
|
+
* 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
33650
|
* @summary List cluster deployments
|
|
33645
33651
|
* @param {string} organizationId Organization ID
|
|
33646
33652
|
* @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}
|
|
@@ -33560,7 +33566,7 @@ export declare class CloudProviderCredentialsApi extends BaseAPI {
|
|
|
33560
33566
|
*/
|
|
33561
33567
|
export declare const ClusterDeploymentHistoryApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
33562
33568
|
/**
|
|
33563
|
-
* List previous and current cluster
|
|
33569
|
+
* 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
33570
|
* @summary List cluster deployments
|
|
33565
33571
|
* @param {string} organizationId Organization ID
|
|
33566
33572
|
* @param {string} clusterId Cluster ID
|
|
@@ -33586,7 +33592,7 @@ export declare const ClusterDeploymentHistoryApiAxiosParamCreator: (configuratio
|
|
|
33586
33592
|
*/
|
|
33587
33593
|
export declare const ClusterDeploymentHistoryApiFp: (configuration?: Configuration) => {
|
|
33588
33594
|
/**
|
|
33589
|
-
* List previous and current cluster
|
|
33595
|
+
* 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
33596
|
* @summary List cluster deployments
|
|
33591
33597
|
* @param {string} organizationId Organization ID
|
|
33592
33598
|
* @param {string} clusterId Cluster ID
|
|
@@ -33612,7 +33618,7 @@ export declare const ClusterDeploymentHistoryApiFp: (configuration?: Configurati
|
|
|
33612
33618
|
*/
|
|
33613
33619
|
export declare const ClusterDeploymentHistoryApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
33614
33620
|
/**
|
|
33615
|
-
* List previous and current cluster
|
|
33621
|
+
* 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
33622
|
* @summary List cluster deployments
|
|
33617
33623
|
* @param {string} organizationId Organization ID
|
|
33618
33624
|
* @param {string} clusterId Cluster ID
|
|
@@ -33640,7 +33646,7 @@ export declare const ClusterDeploymentHistoryApiFactory: (configuration?: Config
|
|
|
33640
33646
|
*/
|
|
33641
33647
|
export declare class ClusterDeploymentHistoryApi extends BaseAPI {
|
|
33642
33648
|
/**
|
|
33643
|
-
* List previous and current cluster
|
|
33649
|
+
* 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
33650
|
* @summary List cluster deployments
|
|
33645
33651
|
* @param {string} organizationId Organization ID
|
|
33646
33652
|
* @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
|