@volcengine/resourcecenter 1.0.1
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/.turbo/turbo-build.log +19 -0
- package/LICENSE.txt +202 -0
- package/dist/cjs/index.js +125 -0
- package/dist/esm/api.d.ts +100 -0
- package/dist/esm/api.d.ts.map +1 -0
- package/dist/esm/index.d.ts +13 -0
- package/dist/esm/index.d.ts.map +1 -0
- package/dist/esm/index.mjs +70 -0
- package/dist/esm/types/disable-resource-center-request.d.ts +20 -0
- package/dist/esm/types/disable-resource-center-request.d.ts.map +1 -0
- package/dist/esm/types/disable-resource-center-response.d.ts +20 -0
- package/dist/esm/types/disable-resource-center-response.d.ts.map +1 -0
- package/dist/esm/types/enable-resource-center-request.d.ts +20 -0
- package/dist/esm/types/enable-resource-center-request.d.ts.map +1 -0
- package/dist/esm/types/enable-resource-center-response.d.ts +20 -0
- package/dist/esm/types/enable-resource-center-response.d.ts.map +1 -0
- package/dist/esm/types/execute-sqlquery-request.d.ts +35 -0
- package/dist/esm/types/execute-sqlquery-request.d.ts.map +1 -0
- package/dist/esm/types/execute-sqlquery-response.d.ts +25 -0
- package/dist/esm/types/execute-sqlquery-response.d.ts.map +1 -0
- package/dist/esm/types/filter-for-get-resource-counts-input.d.ts +35 -0
- package/dist/esm/types/filter-for-get-resource-counts-input.d.ts.map +1 -0
- package/dist/esm/types/filter-for-get-resource-counts-output.d.ts +35 -0
- package/dist/esm/types/filter-for-get-resource-counts-output.d.ts.map +1 -0
- package/dist/esm/types/filter-for-search-resources-input.d.ts +35 -0
- package/dist/esm/types/filter-for-search-resources-input.d.ts.map +1 -0
- package/dist/esm/types/get-resource-center-status-request.d.ts +20 -0
- package/dist/esm/types/get-resource-center-status-request.d.ts.map +1 -0
- package/dist/esm/types/get-resource-center-status-response.d.ts +30 -0
- package/dist/esm/types/get-resource-center-status-response.d.ts.map +1 -0
- package/dist/esm/types/get-resource-counts-request.d.ts +39 -0
- package/dist/esm/types/get-resource-counts-request.d.ts.map +1 -0
- package/dist/esm/types/get-resource-counts-response.d.ts +37 -0
- package/dist/esm/types/get-resource-counts-response.d.ts.map +1 -0
- package/dist/esm/types/index.d.ts +22 -0
- package/dist/esm/types/index.d.ts.map +1 -0
- package/dist/esm/types/list-resource-types-request.d.ts +20 -0
- package/dist/esm/types/list-resource-types-request.d.ts.map +1 -0
- package/dist/esm/types/list-resource-types-response.d.ts +26 -0
- package/dist/esm/types/list-resource-types-response.d.ts.map +1 -0
- package/dist/esm/types/resource-count-for-get-resource-counts-output.d.ts +30 -0
- package/dist/esm/types/resource-count-for-get-resource-counts-output.d.ts.map +1 -0
- package/dist/esm/types/resource-for-search-resources-output.d.ts +76 -0
- package/dist/esm/types/resource-for-search-resources-output.d.ts.map +1 -0
- package/dist/esm/types/resource-type-for-list-resource-types-output.d.ts +40 -0
- package/dist/esm/types/resource-type-for-list-resource-types-output.d.ts.map +1 -0
- package/dist/esm/types/search-resources-request.d.ts +61 -0
- package/dist/esm/types/search-resources-request.d.ts.map +1 -0
- package/dist/esm/types/search-resources-response.d.ts +31 -0
- package/dist/esm/types/search-resources-response.d.ts.map +1 -0
- package/dist/esm/types/tag-for-search-resources-output.d.ts +30 -0
- package/dist/esm/types/tag-for-search-resources-output.d.ts.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +37 -0
- package/rslib.config.ts +26 -0
- package/src/api.ts +172 -0
- package/src/index.ts +14 -0
- package/src/types/disable-resource-center-request.ts +22 -0
- package/src/types/disable-resource-center-response.ts +22 -0
- package/src/types/enable-resource-center-request.ts +22 -0
- package/src/types/enable-resource-center-response.ts +22 -0
- package/src/types/execute-sqlquery-request.ts +40 -0
- package/src/types/execute-sqlquery-response.ts +28 -0
- package/src/types/filter-for-get-resource-counts-input.ts +40 -0
- package/src/types/filter-for-get-resource-counts-output.ts +40 -0
- package/src/types/filter-for-search-resources-input.ts +40 -0
- package/src/types/get-resource-center-status-request.ts +22 -0
- package/src/types/get-resource-center-status-response.ts +34 -0
- package/src/types/get-resource-counts-request.ts +45 -0
- package/src/types/get-resource-counts-response.ts +42 -0
- package/src/types/index.ts +21 -0
- package/src/types/list-resource-types-request.ts +22 -0
- package/src/types/list-resource-types-response.ts +29 -0
- package/src/types/resource-count-for-get-resource-counts-output.ts +34 -0
- package/src/types/resource-for-search-resources-output.ts +89 -0
- package/src/types/resource-type-for-list-resource-types-output.ts +46 -0
- package/src/types/search-resources-request.ts +70 -0
- package/src/types/search-resources-response.ts +35 -0
- package/src/types/tag-for-search-resources-output.ts +34 -0
- package/tsconfig.json +12 -0
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* resourcecenter
|
|
3
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: common-version
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ExecuteSQLQueryRequest
|
|
17
|
+
*/
|
|
18
|
+
export interface ExecuteSQLQueryRequest {
|
|
19
|
+
/**
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ExecuteSQLQueryRequest
|
|
22
|
+
*/
|
|
23
|
+
Expression: string;
|
|
24
|
+
/**
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof ExecuteSQLQueryRequest
|
|
27
|
+
*/
|
|
28
|
+
MaxResults: number;
|
|
29
|
+
/**
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof ExecuteSQLQueryRequest
|
|
32
|
+
*/
|
|
33
|
+
NextToken?: string;
|
|
34
|
+
}
|
|
35
|
+
//# sourceMappingURL=execute-sqlquery-request.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"execute-sqlquery-request.d.ts","sourceRoot":"","sources":["../../../src/types/execute-sqlquery-request.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,sBAAsB;IAEnC;;;OAGG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* resourcecenter
|
|
3
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: common-version
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ExecuteSQLQueryResponse
|
|
17
|
+
*/
|
|
18
|
+
export interface ExecuteSQLQueryResponse {
|
|
19
|
+
/**
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ExecuteSQLQueryResponse
|
|
22
|
+
*/
|
|
23
|
+
NextToken?: string;
|
|
24
|
+
}
|
|
25
|
+
//# sourceMappingURL=execute-sqlquery-response.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"execute-sqlquery-response.d.ts","sourceRoot":"","sources":["../../../src/types/execute-sqlquery-response.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,uBAAuB;IAEpC;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* resourcecenter
|
|
3
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: common-version
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface FilterForGetResourceCountsInput
|
|
17
|
+
*/
|
|
18
|
+
export interface FilterForGetResourceCountsInput {
|
|
19
|
+
/**
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof FilterForGetResourceCountsInput
|
|
22
|
+
*/
|
|
23
|
+
Key?: string;
|
|
24
|
+
/**
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof FilterForGetResourceCountsInput
|
|
27
|
+
*/
|
|
28
|
+
MatchType?: string;
|
|
29
|
+
/**
|
|
30
|
+
* @type {Array<string>}
|
|
31
|
+
* @memberof FilterForGetResourceCountsInput
|
|
32
|
+
*/
|
|
33
|
+
Values?: Array<string>;
|
|
34
|
+
}
|
|
35
|
+
//# sourceMappingURL=filter-for-get-resource-counts-input.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"filter-for-get-resource-counts-input.d.ts","sourceRoot":"","sources":["../../../src/types/filter-for-get-resource-counts-input.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,+BAA+B;IAE5C;;;OAGG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;IAEb;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,MAAM,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;CAC1B"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* resourcecenter
|
|
3
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: common-version
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface FilterForGetResourceCountsOutput
|
|
17
|
+
*/
|
|
18
|
+
export interface FilterForGetResourceCountsOutput {
|
|
19
|
+
/**
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof FilterForGetResourceCountsOutput
|
|
22
|
+
*/
|
|
23
|
+
Key?: string;
|
|
24
|
+
/**
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof FilterForGetResourceCountsOutput
|
|
27
|
+
*/
|
|
28
|
+
MatchType?: string;
|
|
29
|
+
/**
|
|
30
|
+
* @type {Array<string>}
|
|
31
|
+
* @memberof FilterForGetResourceCountsOutput
|
|
32
|
+
*/
|
|
33
|
+
Values?: Array<string>;
|
|
34
|
+
}
|
|
35
|
+
//# sourceMappingURL=filter-for-get-resource-counts-output.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"filter-for-get-resource-counts-output.d.ts","sourceRoot":"","sources":["../../../src/types/filter-for-get-resource-counts-output.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,gCAAgC;IAE7C;;;OAGG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;IAEb;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,MAAM,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;CAC1B"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* resourcecenter
|
|
3
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: common-version
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface FilterForSearchResourcesInput
|
|
17
|
+
*/
|
|
18
|
+
export interface FilterForSearchResourcesInput {
|
|
19
|
+
/**
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof FilterForSearchResourcesInput
|
|
22
|
+
*/
|
|
23
|
+
Key?: string;
|
|
24
|
+
/**
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof FilterForSearchResourcesInput
|
|
27
|
+
*/
|
|
28
|
+
MatchType?: string;
|
|
29
|
+
/**
|
|
30
|
+
* @type {Array<string>}
|
|
31
|
+
* @memberof FilterForSearchResourcesInput
|
|
32
|
+
*/
|
|
33
|
+
Values?: Array<string>;
|
|
34
|
+
}
|
|
35
|
+
//# sourceMappingURL=filter-for-search-resources-input.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"filter-for-search-resources-input.d.ts","sourceRoot":"","sources":["../../../src/types/filter-for-search-resources-input.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,6BAA6B;IAE1C;;;OAGG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;IAEb;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,MAAM,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;CAC1B"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* resourcecenter
|
|
3
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: common-version
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface GetResourceCenterStatusRequest
|
|
17
|
+
*/
|
|
18
|
+
export interface GetResourceCenterStatusRequest {
|
|
19
|
+
}
|
|
20
|
+
//# sourceMappingURL=get-resource-center-status-request.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-resource-center-status-request.d.ts","sourceRoot":"","sources":["../../../src/types/get-resource-center-status-request.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,8BAA8B;CAC9C"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* resourcecenter
|
|
3
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: common-version
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface GetResourceCenterStatusResponse
|
|
17
|
+
*/
|
|
18
|
+
export interface GetResourceCenterStatusResponse {
|
|
19
|
+
/**
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof GetResourceCenterStatusResponse
|
|
22
|
+
*/
|
|
23
|
+
InitStatus?: string;
|
|
24
|
+
/**
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof GetResourceCenterStatusResponse
|
|
27
|
+
*/
|
|
28
|
+
ServiceStatus?: string;
|
|
29
|
+
}
|
|
30
|
+
//# sourceMappingURL=get-resource-center-status-response.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-resource-center-status-response.d.ts","sourceRoot":"","sources":["../../../src/types/get-resource-center-status-response.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,+BAA+B;IAE5C;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;CAC1B"}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* resourcecenter
|
|
3
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: common-version
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { FilterForGetResourceCountsInput } from './filter-for-get-resource-counts-input';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface GetResourceCountsRequest
|
|
18
|
+
*/
|
|
19
|
+
export interface GetResourceCountsRequest {
|
|
20
|
+
/**
|
|
21
|
+
* @type {Array<FilterForGetResourceCountsInput>}
|
|
22
|
+
* @memberof GetResourceCountsRequest
|
|
23
|
+
*/
|
|
24
|
+
Filter?: Array<FilterForGetResourceCountsInput>;
|
|
25
|
+
/**
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof GetResourceCountsRequest
|
|
28
|
+
*/
|
|
29
|
+
GroupByKey: GetResourceCountsRequestGroupByKeyEnum;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* @export
|
|
33
|
+
* @enum {string}
|
|
34
|
+
*/
|
|
35
|
+
export declare enum GetResourceCountsRequestGroupByKeyEnum {
|
|
36
|
+
ResourceType = "ResourceType",
|
|
37
|
+
Region = "Region"
|
|
38
|
+
}
|
|
39
|
+
//# sourceMappingURL=get-resource-counts-request.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-resource-counts-request.d.ts","sourceRoot":"","sources":["../../../src/types/get-resource-counts-request.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,+BAA+B,EAAE,MAAM,wCAAwC,CAAC;AACxF;;;;;EAKE;AACH,MAAM,WAAW,wBAAwB;IAErC;;;OAGG;IACH,MAAM,CAAC,EAAE,KAAK,CAAC,+BAA+B,CAAC,CAAC;IAEhD;;;OAGG;IACH,UAAU,EAAE,sCAAsC,CAAC;CACtD;AAED;;;GAGG;AACH,oBAAY,sCAAsC;IAC9C,YAAY,iBAAiB;IAC7B,MAAM,WAAW;CACpB"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* resourcecenter
|
|
3
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: common-version
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { FilterForGetResourceCountsOutput } from './filter-for-get-resource-counts-output';
|
|
13
|
+
import { ResourceCountForGetResourceCountsOutput } from './resource-count-for-get-resource-counts-output';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
*
|
|
17
|
+
* @export
|
|
18
|
+
* @interface GetResourceCountsResponse
|
|
19
|
+
*/
|
|
20
|
+
export interface GetResourceCountsResponse {
|
|
21
|
+
/**
|
|
22
|
+
* @type {Array<FilterForGetResourceCountsOutput>}
|
|
23
|
+
* @memberof GetResourceCountsResponse
|
|
24
|
+
*/
|
|
25
|
+
Filter?: Array<FilterForGetResourceCountsOutput>;
|
|
26
|
+
/**
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof GetResourceCountsResponse
|
|
29
|
+
*/
|
|
30
|
+
GroupByKey?: string;
|
|
31
|
+
/**
|
|
32
|
+
* @type {Array<ResourceCountForGetResourceCountsOutput>}
|
|
33
|
+
* @memberof GetResourceCountsResponse
|
|
34
|
+
*/
|
|
35
|
+
ResourceCounts?: Array<ResourceCountForGetResourceCountsOutput>;
|
|
36
|
+
}
|
|
37
|
+
//# sourceMappingURL=get-resource-counts-response.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-resource-counts-response.d.ts","sourceRoot":"","sources":["../../../src/types/get-resource-counts-response.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,gCAAgC,EAAE,MAAM,yCAAyC,CAAC;AAC3F,OAAO,EAAE,uCAAuC,EAAE,MAAM,iDAAiD,CAAC;AACzG;;;;;EAKE;AACH,MAAM,WAAW,yBAAyB;IAEtC;;;OAGG;IACH,MAAM,CAAC,EAAE,KAAK,CAAC,gCAAgC,CAAC,CAAC;IAEjD;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,uCAAuC,CAAC,CAAC;CACnE"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export * from './disable-resource-center-request';
|
|
2
|
+
export * from './disable-resource-center-response';
|
|
3
|
+
export * from './enable-resource-center-request';
|
|
4
|
+
export * from './enable-resource-center-response';
|
|
5
|
+
export * from './execute-sqlquery-request';
|
|
6
|
+
export * from './execute-sqlquery-response';
|
|
7
|
+
export * from './filter-for-get-resource-counts-input';
|
|
8
|
+
export * from './filter-for-get-resource-counts-output';
|
|
9
|
+
export * from './filter-for-search-resources-input';
|
|
10
|
+
export * from './get-resource-center-status-request';
|
|
11
|
+
export * from './get-resource-center-status-response';
|
|
12
|
+
export * from './get-resource-counts-request';
|
|
13
|
+
export * from './get-resource-counts-response';
|
|
14
|
+
export * from './list-resource-types-request';
|
|
15
|
+
export * from './list-resource-types-response';
|
|
16
|
+
export * from './resource-count-for-get-resource-counts-output';
|
|
17
|
+
export * from './resource-for-search-resources-output';
|
|
18
|
+
export * from './resource-type-for-list-resource-types-output';
|
|
19
|
+
export * from './search-resources-request';
|
|
20
|
+
export * from './search-resources-response';
|
|
21
|
+
export * from './tag-for-search-resources-output';
|
|
22
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,mCAAmC,CAAC;AAClD,cAAc,oCAAoC,CAAC;AACnD,cAAc,kCAAkC,CAAC;AACjD,cAAc,mCAAmC,CAAC;AAClD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,wCAAwC,CAAC;AACvD,cAAc,yCAAyC,CAAC;AACxD,cAAc,qCAAqC,CAAC;AACpD,cAAc,sCAAsC,CAAC;AACrD,cAAc,uCAAuC,CAAC;AACtD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,iDAAiD,CAAC;AAChE,cAAc,wCAAwC,CAAC;AACvD,cAAc,gDAAgD,CAAC;AAC/D,cAAc,4BAA4B,CAAC;AAC3C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,mCAAmC,CAAC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* resourcecenter
|
|
3
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: common-version
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ListResourceTypesRequest
|
|
17
|
+
*/
|
|
18
|
+
export interface ListResourceTypesRequest {
|
|
19
|
+
}
|
|
20
|
+
//# sourceMappingURL=list-resource-types-request.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-resource-types-request.d.ts","sourceRoot":"","sources":["../../../src/types/list-resource-types-request.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,wBAAwB;CACxC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* resourcecenter
|
|
3
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: common-version
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { ResourceTypeForListResourceTypesOutput } from './resource-type-for-list-resource-types-output';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface ListResourceTypesResponse
|
|
18
|
+
*/
|
|
19
|
+
export interface ListResourceTypesResponse {
|
|
20
|
+
/**
|
|
21
|
+
* @type {Array<ResourceTypeForListResourceTypesOutput>}
|
|
22
|
+
* @memberof ListResourceTypesResponse
|
|
23
|
+
*/
|
|
24
|
+
ResourceTypes?: Array<ResourceTypeForListResourceTypesOutput>;
|
|
25
|
+
}
|
|
26
|
+
//# sourceMappingURL=list-resource-types-response.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-resource-types-response.d.ts","sourceRoot":"","sources":["../../../src/types/list-resource-types-response.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,sCAAsC,EAAE,MAAM,gDAAgD,CAAC;AACvG;;;;;EAKE;AACH,MAAM,WAAW,yBAAyB;IAEtC;;;OAGG;IACH,aAAa,CAAC,EAAE,KAAK,CAAC,sCAAsC,CAAC,CAAC;CACjE"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* resourcecenter
|
|
3
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: common-version
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ResourceCountForGetResourceCountsOutput
|
|
17
|
+
*/
|
|
18
|
+
export interface ResourceCountForGetResourceCountsOutput {
|
|
19
|
+
/**
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof ResourceCountForGetResourceCountsOutput
|
|
22
|
+
*/
|
|
23
|
+
Count?: number;
|
|
24
|
+
/**
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof ResourceCountForGetResourceCountsOutput
|
|
27
|
+
*/
|
|
28
|
+
GroupName?: string;
|
|
29
|
+
}
|
|
30
|
+
//# sourceMappingURL=resource-count-for-get-resource-counts-output.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"resource-count-for-get-resource-counts-output.d.ts","sourceRoot":"","sources":["../../../src/types/resource-count-for-get-resource-counts-output.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,uCAAuC;IAEpD;;;OAGG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB"}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* resourcecenter
|
|
3
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: common-version
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { TagForSearchResourcesOutput } from './tag-for-search-resources-output';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface ResourceForSearchResourcesOutput
|
|
18
|
+
*/
|
|
19
|
+
export interface ResourceForSearchResourcesOutput {
|
|
20
|
+
/**
|
|
21
|
+
* @type {number}
|
|
22
|
+
* @memberof ResourceForSearchResourcesOutput
|
|
23
|
+
*/
|
|
24
|
+
AccountID?: number;
|
|
25
|
+
/**
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ResourceForSearchResourcesOutput
|
|
28
|
+
*/
|
|
29
|
+
CreateTime?: string;
|
|
30
|
+
/**
|
|
31
|
+
* @type {Array<string>}
|
|
32
|
+
* @memberof ResourceForSearchResourcesOutput
|
|
33
|
+
*/
|
|
34
|
+
PrivateIpAddress?: Array<string>;
|
|
35
|
+
/**
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof ResourceForSearchResourcesOutput
|
|
38
|
+
*/
|
|
39
|
+
ProjectName?: string;
|
|
40
|
+
/**
|
|
41
|
+
* @type {Array<string>}
|
|
42
|
+
* @memberof ResourceForSearchResourcesOutput
|
|
43
|
+
*/
|
|
44
|
+
PublicIpAddress?: Array<string>;
|
|
45
|
+
/**
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof ResourceForSearchResourcesOutput
|
|
48
|
+
*/
|
|
49
|
+
Region?: string;
|
|
50
|
+
/**
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @memberof ResourceForSearchResourcesOutput
|
|
53
|
+
*/
|
|
54
|
+
ResourceID?: string;
|
|
55
|
+
/**
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof ResourceForSearchResourcesOutput
|
|
58
|
+
*/
|
|
59
|
+
ResourceName?: string;
|
|
60
|
+
/**
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof ResourceForSearchResourcesOutput
|
|
63
|
+
*/
|
|
64
|
+
ResourceType?: string;
|
|
65
|
+
/**
|
|
66
|
+
* @type {string}
|
|
67
|
+
* @memberof ResourceForSearchResourcesOutput
|
|
68
|
+
*/
|
|
69
|
+
Service?: string;
|
|
70
|
+
/**
|
|
71
|
+
* @type {Array<TagForSearchResourcesOutput>}
|
|
72
|
+
* @memberof ResourceForSearchResourcesOutput
|
|
73
|
+
*/
|
|
74
|
+
Tags?: Array<TagForSearchResourcesOutput>;
|
|
75
|
+
}
|
|
76
|
+
//# sourceMappingURL=resource-for-search-resources-output.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"resource-for-search-resources-output.d.ts","sourceRoot":"","sources":["../../../src/types/resource-for-search-resources-output.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,2BAA2B,EAAE,MAAM,mCAAmC,CAAC;AAC/E;;;;;EAKE;AACH,MAAM,WAAW,gCAAgC;IAE7C;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACH,gBAAgB,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IAEjC;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,eAAe,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IAEhC;;;OAGG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;;OAGG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;;OAGG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB;;;OAGG;IACH,IAAI,CAAC,EAAE,KAAK,CAAC,2BAA2B,CAAC,CAAC;CAC7C"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* resourcecenter
|
|
3
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: common-version
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ResourceTypeForListResourceTypesOutput
|
|
17
|
+
*/
|
|
18
|
+
export interface ResourceTypeForListResourceTypesOutput {
|
|
19
|
+
/**
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ResourceTypeForListResourceTypesOutput
|
|
22
|
+
*/
|
|
23
|
+
ResourceType?: string;
|
|
24
|
+
/**
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof ResourceTypeForListResourceTypesOutput
|
|
27
|
+
*/
|
|
28
|
+
ResourceTypeName?: string;
|
|
29
|
+
/**
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof ResourceTypeForListResourceTypesOutput
|
|
32
|
+
*/
|
|
33
|
+
Service?: string;
|
|
34
|
+
/**
|
|
35
|
+
* @type {string}
|
|
36
|
+
* @memberof ResourceTypeForListResourceTypesOutput
|
|
37
|
+
*/
|
|
38
|
+
ServiceName?: string;
|
|
39
|
+
}
|
|
40
|
+
//# sourceMappingURL=resource-type-for-list-resource-types-output.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"resource-type-for-list-resource-types-output.d.ts","sourceRoot":"","sources":["../../../src/types/resource-type-for-list-resource-types-output.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,sCAAsC;IAEnD;;;OAGG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;;OAGG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAE1B;;;OAGG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;CACxB"}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* resourcecenter
|
|
3
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: common-version
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { FilterForSearchResourcesInput } from './filter-for-search-resources-input';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface SearchResourcesRequest
|
|
18
|
+
*/
|
|
19
|
+
export interface SearchResourcesRequest {
|
|
20
|
+
/**
|
|
21
|
+
* @type {Array<FilterForSearchResourcesInput>}
|
|
22
|
+
* @memberof SearchResourcesRequest
|
|
23
|
+
*/
|
|
24
|
+
Filter?: Array<FilterForSearchResourcesInput>;
|
|
25
|
+
/**
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof SearchResourcesRequest
|
|
28
|
+
*/
|
|
29
|
+
MaxResults?: number;
|
|
30
|
+
/**
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof SearchResourcesRequest
|
|
33
|
+
*/
|
|
34
|
+
NextToken?: string;
|
|
35
|
+
/**
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof SearchResourcesRequest
|
|
38
|
+
*/
|
|
39
|
+
SortBy?: SearchResourcesRequestSortByEnum;
|
|
40
|
+
/**
|
|
41
|
+
* @type {string}
|
|
42
|
+
* @memberof SearchResourcesRequest
|
|
43
|
+
*/
|
|
44
|
+
SortOrder?: SearchResourcesRequestSortOrderEnum;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* @export
|
|
48
|
+
* @enum {string}
|
|
49
|
+
*/
|
|
50
|
+
export declare enum SearchResourcesRequestSortByEnum {
|
|
51
|
+
CreateTime = "CreateTime"
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* @export
|
|
55
|
+
* @enum {string}
|
|
56
|
+
*/
|
|
57
|
+
export declare enum SearchResourcesRequestSortOrderEnum {
|
|
58
|
+
Asc = "Asc",
|
|
59
|
+
Desc = "Desc"
|
|
60
|
+
}
|
|
61
|
+
//# sourceMappingURL=search-resources-request.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"search-resources-request.d.ts","sourceRoot":"","sources":["../../../src/types/search-resources-request.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,6BAA6B,EAAE,MAAM,qCAAqC,CAAC;AACnF;;;;;EAKE;AACH,MAAM,WAAW,sBAAsB;IAEnC;;;OAGG;IACH,MAAM,CAAC,EAAE,KAAK,CAAC,6BAA6B,CAAC,CAAC;IAE9C;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,MAAM,CAAC,EAAE,gCAAgC,CAAC;IAE1C;;;OAGG;IACH,SAAS,CAAC,EAAE,mCAAmC,CAAC;CACnD;AAED;;;GAGG;AACH,oBAAY,gCAAgC;IACxC,UAAU,eAAe;CAC5B;AACD;;;GAGG;AACH,oBAAY,mCAAmC;IAC3C,GAAG,QAAQ;IACX,IAAI,SAAS;CAChB"}
|