@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,40 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* resourcecenter
|
|
5
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
6
|
+
*
|
|
7
|
+
* OpenAPI spec version: common-version
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
11
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
*
|
|
18
|
+
* @export
|
|
19
|
+
* @interface FilterForGetResourceCountsOutput
|
|
20
|
+
*/
|
|
21
|
+
export interface FilterForGetResourceCountsOutput {
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof FilterForGetResourceCountsOutput
|
|
26
|
+
*/
|
|
27
|
+
Key?: string;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof FilterForGetResourceCountsOutput
|
|
32
|
+
*/
|
|
33
|
+
MatchType?: string;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* @type {Array<string>}
|
|
37
|
+
* @memberof FilterForGetResourceCountsOutput
|
|
38
|
+
*/
|
|
39
|
+
Values?: Array<string>;
|
|
40
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* resourcecenter
|
|
5
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
6
|
+
*
|
|
7
|
+
* OpenAPI spec version: common-version
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
11
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
*
|
|
18
|
+
* @export
|
|
19
|
+
* @interface FilterForSearchResourcesInput
|
|
20
|
+
*/
|
|
21
|
+
export interface FilterForSearchResourcesInput {
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof FilterForSearchResourcesInput
|
|
26
|
+
*/
|
|
27
|
+
Key?: string;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof FilterForSearchResourcesInput
|
|
32
|
+
*/
|
|
33
|
+
MatchType?: string;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* @type {Array<string>}
|
|
37
|
+
* @memberof FilterForSearchResourcesInput
|
|
38
|
+
*/
|
|
39
|
+
Values?: Array<string>;
|
|
40
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* resourcecenter
|
|
5
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
6
|
+
*
|
|
7
|
+
* OpenAPI spec version: common-version
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
11
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
*
|
|
18
|
+
* @export
|
|
19
|
+
* @interface GetResourceCenterStatusRequest
|
|
20
|
+
*/
|
|
21
|
+
export interface GetResourceCenterStatusRequest {
|
|
22
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* resourcecenter
|
|
5
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
6
|
+
*
|
|
7
|
+
* OpenAPI spec version: common-version
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
11
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
*
|
|
18
|
+
* @export
|
|
19
|
+
* @interface GetResourceCenterStatusResponse
|
|
20
|
+
*/
|
|
21
|
+
export interface GetResourceCenterStatusResponse {
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof GetResourceCenterStatusResponse
|
|
26
|
+
*/
|
|
27
|
+
InitStatus?: string;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof GetResourceCenterStatusResponse
|
|
32
|
+
*/
|
|
33
|
+
ServiceStatus?: string;
|
|
34
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* resourcecenter
|
|
5
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
6
|
+
*
|
|
7
|
+
* OpenAPI spec version: common-version
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
11
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import { FilterForGetResourceCountsInput } from './filter-for-get-resource-counts-input';
|
|
16
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface GetResourceCountsRequest
|
|
21
|
+
*/
|
|
22
|
+
export interface GetResourceCountsRequest {
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* @type {Array<FilterForGetResourceCountsInput>}
|
|
26
|
+
* @memberof GetResourceCountsRequest
|
|
27
|
+
*/
|
|
28
|
+
Filter?: Array<FilterForGetResourceCountsInput>;
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof GetResourceCountsRequest
|
|
33
|
+
*/
|
|
34
|
+
GroupByKey: GetResourceCountsRequestGroupByKeyEnum;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* @export
|
|
39
|
+
* @enum {string}
|
|
40
|
+
*/
|
|
41
|
+
export enum GetResourceCountsRequestGroupByKeyEnum {
|
|
42
|
+
ResourceType = 'ResourceType',
|
|
43
|
+
Region = 'Region'
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* resourcecenter
|
|
5
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
6
|
+
*
|
|
7
|
+
* OpenAPI spec version: common-version
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
11
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import { FilterForGetResourceCountsOutput } from './filter-for-get-resource-counts-output';
|
|
16
|
+
import { ResourceCountForGetResourceCountsOutput } from './resource-count-for-get-resource-counts-output';
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GetResourceCountsResponse
|
|
22
|
+
*/
|
|
23
|
+
export interface GetResourceCountsResponse {
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* @type {Array<FilterForGetResourceCountsOutput>}
|
|
27
|
+
* @memberof GetResourceCountsResponse
|
|
28
|
+
*/
|
|
29
|
+
Filter?: Array<FilterForGetResourceCountsOutput>;
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof GetResourceCountsResponse
|
|
34
|
+
*/
|
|
35
|
+
GroupByKey?: string;
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* @type {Array<ResourceCountForGetResourceCountsOutput>}
|
|
39
|
+
* @memberof GetResourceCountsResponse
|
|
40
|
+
*/
|
|
41
|
+
ResourceCounts?: Array<ResourceCountForGetResourceCountsOutput>;
|
|
42
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
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';
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* resourcecenter
|
|
5
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
6
|
+
*
|
|
7
|
+
* OpenAPI spec version: common-version
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
11
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
*
|
|
18
|
+
* @export
|
|
19
|
+
* @interface ListResourceTypesRequest
|
|
20
|
+
*/
|
|
21
|
+
export interface ListResourceTypesRequest {
|
|
22
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* resourcecenter
|
|
5
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
6
|
+
*
|
|
7
|
+
* OpenAPI spec version: common-version
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
11
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import { ResourceTypeForListResourceTypesOutput } from './resource-type-for-list-resource-types-output';
|
|
16
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface ListResourceTypesResponse
|
|
21
|
+
*/
|
|
22
|
+
export interface ListResourceTypesResponse {
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* @type {Array<ResourceTypeForListResourceTypesOutput>}
|
|
26
|
+
* @memberof ListResourceTypesResponse
|
|
27
|
+
*/
|
|
28
|
+
ResourceTypes?: Array<ResourceTypeForListResourceTypesOutput>;
|
|
29
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* resourcecenter
|
|
5
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
6
|
+
*
|
|
7
|
+
* OpenAPI spec version: common-version
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
11
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
*
|
|
18
|
+
* @export
|
|
19
|
+
* @interface ResourceCountForGetResourceCountsOutput
|
|
20
|
+
*/
|
|
21
|
+
export interface ResourceCountForGetResourceCountsOutput {
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* @type {number}
|
|
25
|
+
* @memberof ResourceCountForGetResourceCountsOutput
|
|
26
|
+
*/
|
|
27
|
+
Count?: number;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof ResourceCountForGetResourceCountsOutput
|
|
32
|
+
*/
|
|
33
|
+
GroupName?: string;
|
|
34
|
+
}
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* resourcecenter
|
|
5
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
6
|
+
*
|
|
7
|
+
* OpenAPI spec version: common-version
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
11
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import { TagForSearchResourcesOutput } from './tag-for-search-resources-output';
|
|
16
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface ResourceForSearchResourcesOutput
|
|
21
|
+
*/
|
|
22
|
+
export interface ResourceForSearchResourcesOutput {
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof ResourceForSearchResourcesOutput
|
|
27
|
+
*/
|
|
28
|
+
AccountID?: number;
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof ResourceForSearchResourcesOutput
|
|
33
|
+
*/
|
|
34
|
+
CreateTime?: string;
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* @type {Array<string>}
|
|
38
|
+
* @memberof ResourceForSearchResourcesOutput
|
|
39
|
+
*/
|
|
40
|
+
PrivateIpAddress?: Array<string>;
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof ResourceForSearchResourcesOutput
|
|
45
|
+
*/
|
|
46
|
+
ProjectName?: string;
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* @type {Array<string>}
|
|
50
|
+
* @memberof ResourceForSearchResourcesOutput
|
|
51
|
+
*/
|
|
52
|
+
PublicIpAddress?: Array<string>;
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof ResourceForSearchResourcesOutput
|
|
57
|
+
*/
|
|
58
|
+
Region?: string;
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof ResourceForSearchResourcesOutput
|
|
63
|
+
*/
|
|
64
|
+
ResourceID?: string;
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof ResourceForSearchResourcesOutput
|
|
69
|
+
*/
|
|
70
|
+
ResourceName?: string;
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof ResourceForSearchResourcesOutput
|
|
75
|
+
*/
|
|
76
|
+
ResourceType?: string;
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof ResourceForSearchResourcesOutput
|
|
81
|
+
*/
|
|
82
|
+
Service?: string;
|
|
83
|
+
|
|
84
|
+
/**
|
|
85
|
+
* @type {Array<TagForSearchResourcesOutput>}
|
|
86
|
+
* @memberof ResourceForSearchResourcesOutput
|
|
87
|
+
*/
|
|
88
|
+
Tags?: Array<TagForSearchResourcesOutput>;
|
|
89
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* resourcecenter
|
|
5
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
6
|
+
*
|
|
7
|
+
* OpenAPI spec version: common-version
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
11
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
*
|
|
18
|
+
* @export
|
|
19
|
+
* @interface ResourceTypeForListResourceTypesOutput
|
|
20
|
+
*/
|
|
21
|
+
export interface ResourceTypeForListResourceTypesOutput {
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof ResourceTypeForListResourceTypesOutput
|
|
26
|
+
*/
|
|
27
|
+
ResourceType?: string;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof ResourceTypeForListResourceTypesOutput
|
|
32
|
+
*/
|
|
33
|
+
ResourceTypeName?: string;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof ResourceTypeForListResourceTypesOutput
|
|
38
|
+
*/
|
|
39
|
+
Service?: string;
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* @type {string}
|
|
43
|
+
* @memberof ResourceTypeForListResourceTypesOutput
|
|
44
|
+
*/
|
|
45
|
+
ServiceName?: string;
|
|
46
|
+
}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* resourcecenter
|
|
5
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
6
|
+
*
|
|
7
|
+
* OpenAPI spec version: common-version
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
11
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import { FilterForSearchResourcesInput } from './filter-for-search-resources-input';
|
|
16
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface SearchResourcesRequest
|
|
21
|
+
*/
|
|
22
|
+
export interface SearchResourcesRequest {
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* @type {Array<FilterForSearchResourcesInput>}
|
|
26
|
+
* @memberof SearchResourcesRequest
|
|
27
|
+
*/
|
|
28
|
+
Filter?: Array<FilterForSearchResourcesInput>;
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof SearchResourcesRequest
|
|
33
|
+
*/
|
|
34
|
+
MaxResults?: number;
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof SearchResourcesRequest
|
|
39
|
+
*/
|
|
40
|
+
NextToken?: string;
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof SearchResourcesRequest
|
|
45
|
+
*/
|
|
46
|
+
SortBy?: SearchResourcesRequestSortByEnum;
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof SearchResourcesRequest
|
|
51
|
+
*/
|
|
52
|
+
SortOrder?: SearchResourcesRequestSortOrderEnum;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
/**
|
|
56
|
+
* @export
|
|
57
|
+
* @enum {string}
|
|
58
|
+
*/
|
|
59
|
+
export enum SearchResourcesRequestSortByEnum {
|
|
60
|
+
CreateTime = 'CreateTime'
|
|
61
|
+
}
|
|
62
|
+
/**
|
|
63
|
+
* @export
|
|
64
|
+
* @enum {string}
|
|
65
|
+
*/
|
|
66
|
+
export enum SearchResourcesRequestSortOrderEnum {
|
|
67
|
+
Asc = 'Asc',
|
|
68
|
+
Desc = 'Desc'
|
|
69
|
+
}
|
|
70
|
+
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* resourcecenter
|
|
5
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
6
|
+
*
|
|
7
|
+
* OpenAPI spec version: common-version
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
11
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import { ResourceForSearchResourcesOutput } from './resource-for-search-resources-output';
|
|
16
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface SearchResourcesResponse
|
|
21
|
+
*/
|
|
22
|
+
export interface SearchResourcesResponse {
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof SearchResourcesResponse
|
|
27
|
+
*/
|
|
28
|
+
NextToken?: string;
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* @type {Array<ResourceForSearchResourcesOutput>}
|
|
32
|
+
* @memberof SearchResourcesResponse
|
|
33
|
+
*/
|
|
34
|
+
Resources?: Array<ResourceForSearchResourcesOutput>;
|
|
35
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* resourcecenter
|
|
5
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
6
|
+
*
|
|
7
|
+
* OpenAPI spec version: common-version
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
11
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
*
|
|
18
|
+
* @export
|
|
19
|
+
* @interface TagForSearchResourcesOutput
|
|
20
|
+
*/
|
|
21
|
+
export interface TagForSearchResourcesOutput {
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof TagForSearchResourcesOutput
|
|
26
|
+
*/
|
|
27
|
+
Key?: string;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof TagForSearchResourcesOutput
|
|
32
|
+
*/
|
|
33
|
+
Value?: string;
|
|
34
|
+
}
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "../../tsconfig.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"outDir": "./dist/types",
|
|
5
|
+
"rootDir": "./src"
|
|
6
|
+
},
|
|
7
|
+
"include": ["src/**/*"],
|
|
8
|
+
"exclude": ["node_modules", "dist", "test"],
|
|
9
|
+
"references": [
|
|
10
|
+
{ "path": "../../packages/sdk-core" }
|
|
11
|
+
]
|
|
12
|
+
}
|