qovery-typescript-axios 1.1.807 → 1.1.809
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 +4 -29
- package/dist/api.d.ts +3 -28
- package/dist/api.js +1 -1
- package/dist/esm/api.d.ts +3 -28
- package/dist/esm/api.js +1 -1
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -19624,25 +19624,6 @@ export interface TerraformRequestTerraformFilesSourceOneOf {
|
|
|
19624
19624
|
*/
|
|
19625
19625
|
'git_repository'?: TerraformGitRepositoryRequest;
|
|
19626
19626
|
}
|
|
19627
|
-
/**
|
|
19628
|
-
* A single attribute of a Terraform resource with key and value
|
|
19629
|
-
* @export
|
|
19630
|
-
* @interface TerraformResourceAttribute
|
|
19631
|
-
*/
|
|
19632
|
-
export interface TerraformResourceAttribute {
|
|
19633
|
-
/**
|
|
19634
|
-
* The attribute key name
|
|
19635
|
-
* @type {string}
|
|
19636
|
-
* @memberof TerraformResourceAttribute
|
|
19637
|
-
*/
|
|
19638
|
-
'key': string;
|
|
19639
|
-
/**
|
|
19640
|
-
* The attribute value as a string
|
|
19641
|
-
* @type {string}
|
|
19642
|
-
* @memberof TerraformResourceAttribute
|
|
19643
|
-
*/
|
|
19644
|
-
'value': string;
|
|
19645
|
-
}
|
|
19646
19627
|
/**
|
|
19647
19628
|
* A Terraform resource from a deployment execution
|
|
19648
19629
|
* @export
|
|
@@ -19660,7 +19641,7 @@ export interface TerraformResourceResponse {
|
|
|
19660
19641
|
* @type {string}
|
|
19661
19642
|
* @memberof TerraformResourceResponse
|
|
19662
19643
|
*/
|
|
19663
|
-
'
|
|
19644
|
+
'resource_type': string;
|
|
19664
19645
|
/**
|
|
19665
19646
|
* Name of the resource as defined in Terraform configuration
|
|
19666
19647
|
* @type {string}
|
|
@@ -19696,13 +19677,7 @@ export interface TerraformResourceResponse {
|
|
|
19696
19677
|
* @type {string}
|
|
19697
19678
|
* @memberof TerraformResourceResponse
|
|
19698
19679
|
*/
|
|
19699
|
-
'extractedAt'
|
|
19700
|
-
/**
|
|
19701
|
-
* Most important attributes for this resource type (for display)
|
|
19702
|
-
* @type {Array<TerraformResourceAttribute>}
|
|
19703
|
-
* @memberof TerraformResourceResponse
|
|
19704
|
-
*/
|
|
19705
|
-
'keyAttributes': Array<TerraformResourceAttribute>;
|
|
19680
|
+
'extractedAt'?: string;
|
|
19706
19681
|
}
|
|
19707
19682
|
|
|
19708
19683
|
export const TerraformResourceResponseModeEnum = {
|
|
@@ -19748,7 +19723,7 @@ export interface TerraformResourcesResponse {
|
|
|
19748
19723
|
* @type {Array<TerraformResourceResponse>}
|
|
19749
19724
|
* @memberof TerraformResourcesResponse
|
|
19750
19725
|
*/
|
|
19751
|
-
'
|
|
19726
|
+
'results': Array<TerraformResourceResponse>;
|
|
19752
19727
|
}
|
|
19753
19728
|
/**
|
|
19754
19729
|
* A Terraform service
|
|
@@ -63627,7 +63602,7 @@ export const TerraformResourcesApiAxiosParamCreator = function (configuration?:
|
|
|
63627
63602
|
getTerraformResources: async (terraformId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
63628
63603
|
// verify required parameter 'terraformId' is not null or undefined
|
|
63629
63604
|
assertParamExists('getTerraformResources', 'terraformId', terraformId)
|
|
63630
|
-
const localVarPath = `/
|
|
63605
|
+
const localVarPath = `/terraform/{terraformId}/terraformResources`
|
|
63631
63606
|
.replace(`{${"terraformId"}}`, encodeURIComponent(String(terraformId)));
|
|
63632
63607
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
63633
63608
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
package/dist/api.d.ts
CHANGED
|
@@ -18959,25 +18959,6 @@ export interface TerraformRequestTerraformFilesSourceOneOf {
|
|
|
18959
18959
|
*/
|
|
18960
18960
|
'git_repository'?: TerraformGitRepositoryRequest;
|
|
18961
18961
|
}
|
|
18962
|
-
/**
|
|
18963
|
-
* A single attribute of a Terraform resource with key and value
|
|
18964
|
-
* @export
|
|
18965
|
-
* @interface TerraformResourceAttribute
|
|
18966
|
-
*/
|
|
18967
|
-
export interface TerraformResourceAttribute {
|
|
18968
|
-
/**
|
|
18969
|
-
* The attribute key name
|
|
18970
|
-
* @type {string}
|
|
18971
|
-
* @memberof TerraformResourceAttribute
|
|
18972
|
-
*/
|
|
18973
|
-
'key': string;
|
|
18974
|
-
/**
|
|
18975
|
-
* The attribute value as a string
|
|
18976
|
-
* @type {string}
|
|
18977
|
-
* @memberof TerraformResourceAttribute
|
|
18978
|
-
*/
|
|
18979
|
-
'value': string;
|
|
18980
|
-
}
|
|
18981
18962
|
/**
|
|
18982
18963
|
* A Terraform resource from a deployment execution
|
|
18983
18964
|
* @export
|
|
@@ -18995,7 +18976,7 @@ export interface TerraformResourceResponse {
|
|
|
18995
18976
|
* @type {string}
|
|
18996
18977
|
* @memberof TerraformResourceResponse
|
|
18997
18978
|
*/
|
|
18998
|
-
'
|
|
18979
|
+
'resource_type': string;
|
|
18999
18980
|
/**
|
|
19000
18981
|
* Name of the resource as defined in Terraform configuration
|
|
19001
18982
|
* @type {string}
|
|
@@ -19033,13 +19014,7 @@ export interface TerraformResourceResponse {
|
|
|
19033
19014
|
* @type {string}
|
|
19034
19015
|
* @memberof TerraformResourceResponse
|
|
19035
19016
|
*/
|
|
19036
|
-
'extractedAt'
|
|
19037
|
-
/**
|
|
19038
|
-
* Most important attributes for this resource type (for display)
|
|
19039
|
-
* @type {Array<TerraformResourceAttribute>}
|
|
19040
|
-
* @memberof TerraformResourceResponse
|
|
19041
|
-
*/
|
|
19042
|
-
'keyAttributes': Array<TerraformResourceAttribute>;
|
|
19017
|
+
'extractedAt'?: string;
|
|
19043
19018
|
}
|
|
19044
19019
|
export declare const TerraformResourceResponseModeEnum: {
|
|
19045
19020
|
readonly MANAGED: "managed";
|
|
@@ -19082,7 +19057,7 @@ export interface TerraformResourcesResponse {
|
|
|
19082
19057
|
* @type {Array<TerraformResourceResponse>}
|
|
19083
19058
|
* @memberof TerraformResourcesResponse
|
|
19084
19059
|
*/
|
|
19085
|
-
'
|
|
19060
|
+
'results': Array<TerraformResourceResponse>;
|
|
19086
19061
|
}
|
|
19087
19062
|
/**
|
|
19088
19063
|
* A Terraform service
|
package/dist/api.js
CHANGED
|
@@ -41284,7 +41284,7 @@ const TerraformResourcesApiAxiosParamCreator = function (configuration) {
|
|
|
41284
41284
|
getTerraformResources: (terraformId_1, ...args_1) => __awaiter(this, [terraformId_1, ...args_1], void 0, function* (terraformId, options = {}) {
|
|
41285
41285
|
// verify required parameter 'terraformId' is not null or undefined
|
|
41286
41286
|
(0, common_1.assertParamExists)('getTerraformResources', 'terraformId', terraformId);
|
|
41287
|
-
const localVarPath = `/
|
|
41287
|
+
const localVarPath = `/terraform/{terraformId}/terraformResources`
|
|
41288
41288
|
.replace(`{${"terraformId"}}`, encodeURIComponent(String(terraformId)));
|
|
41289
41289
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
41290
41290
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -18959,25 +18959,6 @@ export interface TerraformRequestTerraformFilesSourceOneOf {
|
|
|
18959
18959
|
*/
|
|
18960
18960
|
'git_repository'?: TerraformGitRepositoryRequest;
|
|
18961
18961
|
}
|
|
18962
|
-
/**
|
|
18963
|
-
* A single attribute of a Terraform resource with key and value
|
|
18964
|
-
* @export
|
|
18965
|
-
* @interface TerraformResourceAttribute
|
|
18966
|
-
*/
|
|
18967
|
-
export interface TerraformResourceAttribute {
|
|
18968
|
-
/**
|
|
18969
|
-
* The attribute key name
|
|
18970
|
-
* @type {string}
|
|
18971
|
-
* @memberof TerraformResourceAttribute
|
|
18972
|
-
*/
|
|
18973
|
-
'key': string;
|
|
18974
|
-
/**
|
|
18975
|
-
* The attribute value as a string
|
|
18976
|
-
* @type {string}
|
|
18977
|
-
* @memberof TerraformResourceAttribute
|
|
18978
|
-
*/
|
|
18979
|
-
'value': string;
|
|
18980
|
-
}
|
|
18981
18962
|
/**
|
|
18982
18963
|
* A Terraform resource from a deployment execution
|
|
18983
18964
|
* @export
|
|
@@ -18995,7 +18976,7 @@ export interface TerraformResourceResponse {
|
|
|
18995
18976
|
* @type {string}
|
|
18996
18977
|
* @memberof TerraformResourceResponse
|
|
18997
18978
|
*/
|
|
18998
|
-
'
|
|
18979
|
+
'resource_type': string;
|
|
18999
18980
|
/**
|
|
19000
18981
|
* Name of the resource as defined in Terraform configuration
|
|
19001
18982
|
* @type {string}
|
|
@@ -19033,13 +19014,7 @@ export interface TerraformResourceResponse {
|
|
|
19033
19014
|
* @type {string}
|
|
19034
19015
|
* @memberof TerraformResourceResponse
|
|
19035
19016
|
*/
|
|
19036
|
-
'extractedAt'
|
|
19037
|
-
/**
|
|
19038
|
-
* Most important attributes for this resource type (for display)
|
|
19039
|
-
* @type {Array<TerraformResourceAttribute>}
|
|
19040
|
-
* @memberof TerraformResourceResponse
|
|
19041
|
-
*/
|
|
19042
|
-
'keyAttributes': Array<TerraformResourceAttribute>;
|
|
19017
|
+
'extractedAt'?: string;
|
|
19043
19018
|
}
|
|
19044
19019
|
export declare const TerraformResourceResponseModeEnum: {
|
|
19045
19020
|
readonly MANAGED: "managed";
|
|
@@ -19082,7 +19057,7 @@ export interface TerraformResourcesResponse {
|
|
|
19082
19057
|
* @type {Array<TerraformResourceResponse>}
|
|
19083
19058
|
* @memberof TerraformResourcesResponse
|
|
19084
19059
|
*/
|
|
19085
|
-
'
|
|
19060
|
+
'results': Array<TerraformResourceResponse>;
|
|
19086
19061
|
}
|
|
19087
19062
|
/**
|
|
19088
19063
|
* A Terraform service
|
package/dist/esm/api.js
CHANGED
|
@@ -40920,7 +40920,7 @@ export const TerraformResourcesApiAxiosParamCreator = function (configuration) {
|
|
|
40920
40920
|
getTerraformResources: (terraformId_1, ...args_1) => __awaiter(this, [terraformId_1, ...args_1], void 0, function* (terraformId, options = {}) {
|
|
40921
40921
|
// verify required parameter 'terraformId' is not null or undefined
|
|
40922
40922
|
assertParamExists('getTerraformResources', 'terraformId', terraformId);
|
|
40923
|
-
const localVarPath = `/
|
|
40923
|
+
const localVarPath = `/terraform/{terraformId}/terraformResources`
|
|
40924
40924
|
.replace(`{${"terraformId"}}`, encodeURIComponent(String(terraformId)));
|
|
40925
40925
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
40926
40926
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|