@volcengine/metakms 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 +105 -0
- package/dist/esm/api.d.ts +78 -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 +56 -0
- package/dist/esm/types/batch-get-secret-value-request.d.ts +25 -0
- package/dist/esm/types/batch-get-secret-value-request.d.ts.map +1 -0
- package/dist/esm/types/batch-get-secret-value-response.d.ts +26 -0
- package/dist/esm/types/batch-get-secret-value-response.d.ts.map +1 -0
- package/dist/esm/types/describe-secret-request.d.ts +25 -0
- package/dist/esm/types/describe-secret-request.d.ts.map +1 -0
- package/dist/esm/types/describe-secret-response.d.ts +26 -0
- package/dist/esm/types/describe-secret-response.d.ts.map +1 -0
- package/dist/esm/types/describe-secret-versions-request.d.ts +35 -0
- package/dist/esm/types/describe-secret-versions-request.d.ts.map +1 -0
- package/dist/esm/types/describe-secret-versions-response.d.ts +32 -0
- package/dist/esm/types/describe-secret-versions-response.d.ts.map +1 -0
- package/dist/esm/types/describe-secrets-request.d.ts +40 -0
- package/dist/esm/types/describe-secrets-request.d.ts.map +1 -0
- package/dist/esm/types/describe-secrets-response.d.ts +32 -0
- package/dist/esm/types/describe-secrets-response.d.ts.map +1 -0
- package/dist/esm/types/get-secret-value-request.d.ts +30 -0
- package/dist/esm/types/get-secret-value-request.d.ts.map +1 -0
- package/dist/esm/types/get-secret-value-response.d.ts +40 -0
- package/dist/esm/types/get-secret-value-response.d.ts.map +1 -0
- package/dist/esm/types/index.d.ts +17 -0
- package/dist/esm/types/index.d.ts.map +1 -0
- package/dist/esm/types/page-info-for-describe-secret-versions-output.d.ts +40 -0
- package/dist/esm/types/page-info-for-describe-secret-versions-output.d.ts.map +1 -0
- package/dist/esm/types/page-info-for-describe-secrets-output.d.ts +40 -0
- package/dist/esm/types/page-info-for-describe-secrets-output.d.ts.map +1 -0
- package/dist/esm/types/secret-for-describe-secret-output.d.ts +130 -0
- package/dist/esm/types/secret-for-describe-secret-output.d.ts.map +1 -0
- package/dist/esm/types/secret-for-describe-secrets-output.d.ts +130 -0
- package/dist/esm/types/secret-for-describe-secrets-output.d.ts.map +1 -0
- package/dist/esm/types/secret-value-for-batch-get-secret-value-output.d.ts +53 -0
- package/dist/esm/types/secret-value-for-batch-get-secret-value-output.d.ts.map +1 -0
- package/dist/esm/types/secret-version-for-describe-secret-versions-output.d.ts +43 -0
- package/dist/esm/types/secret-version-for-describe-secret-versions-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 +134 -0
- package/src/index.ts +14 -0
- package/src/types/batch-get-secret-value-request.ts +28 -0
- package/src/types/batch-get-secret-value-response.ts +29 -0
- package/src/types/describe-secret-request.ts +28 -0
- package/src/types/describe-secret-response.ts +29 -0
- package/src/types/describe-secret-versions-request.ts +40 -0
- package/src/types/describe-secret-versions-response.ts +36 -0
- package/src/types/describe-secrets-request.ts +46 -0
- package/src/types/describe-secrets-response.ts +36 -0
- package/src/types/get-secret-value-request.ts +34 -0
- package/src/types/get-secret-value-response.ts +46 -0
- package/src/types/index.ts +16 -0
- package/src/types/page-info-for-describe-secret-versions-output.ts +46 -0
- package/src/types/page-info-for-describe-secrets-output.ts +46 -0
- package/src/types/secret-for-describe-secret-output.ts +152 -0
- package/src/types/secret-for-describe-secrets-output.ts +152 -0
- package/src/types/secret-value-for-batch-get-secret-value-output.ts +62 -0
- package/src/types/secret-version-for-describe-secret-versions-output.ts +50 -0
- package/tsconfig.json +12 -0
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* metakms
|
|
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 { PageInfoForDescribeSecretVersionsOutput } from './page-info-for-describe-secret-versions-output';
|
|
13
|
+
import { SecretVersionForDescribeSecretVersionsOutput } from './secret-version-for-describe-secret-versions-output';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
*
|
|
17
|
+
* @export
|
|
18
|
+
* @interface DescribeSecretVersionsResponse
|
|
19
|
+
*/
|
|
20
|
+
export interface DescribeSecretVersionsResponse {
|
|
21
|
+
/**
|
|
22
|
+
* @type {PageInfoForDescribeSecretVersionsOutput}
|
|
23
|
+
* @memberof DescribeSecretVersionsResponse
|
|
24
|
+
*/
|
|
25
|
+
PageInfo?: PageInfoForDescribeSecretVersionsOutput;
|
|
26
|
+
/**
|
|
27
|
+
* @type {Array<SecretVersionForDescribeSecretVersionsOutput>}
|
|
28
|
+
* @memberof DescribeSecretVersionsResponse
|
|
29
|
+
*/
|
|
30
|
+
SecretVersions?: Array<SecretVersionForDescribeSecretVersionsOutput>;
|
|
31
|
+
}
|
|
32
|
+
//# sourceMappingURL=describe-secret-versions-response.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"describe-secret-versions-response.d.ts","sourceRoot":"","sources":["../../../src/types/describe-secret-versions-response.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,uCAAuC,EAAE,MAAM,iDAAiD,CAAC;AAC1G,OAAO,EAAE,4CAA4C,EAAE,MAAM,sDAAsD,CAAC;AACnH;;;;;EAKE;AACH,MAAM,WAAW,8BAA8B;IAE3C;;;OAGG;IACH,QAAQ,CAAC,EAAE,uCAAuC,CAAC;IAEnD;;;OAGG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,4CAA4C,CAAC,CAAC;CACxE"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* metakms
|
|
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 DescribeSecretsRequest
|
|
17
|
+
*/
|
|
18
|
+
export interface DescribeSecretsRequest {
|
|
19
|
+
/**
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof DescribeSecretsRequest
|
|
22
|
+
*/
|
|
23
|
+
CurrentPage?: number;
|
|
24
|
+
/**
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof DescribeSecretsRequest
|
|
27
|
+
*/
|
|
28
|
+
Filters?: string;
|
|
29
|
+
/**
|
|
30
|
+
* @type {number}
|
|
31
|
+
* @memberof DescribeSecretsRequest
|
|
32
|
+
*/
|
|
33
|
+
PageSize?: number;
|
|
34
|
+
/**
|
|
35
|
+
* @type {string}
|
|
36
|
+
* @memberof DescribeSecretsRequest
|
|
37
|
+
*/
|
|
38
|
+
ProjectName?: string;
|
|
39
|
+
}
|
|
40
|
+
//# sourceMappingURL=describe-secrets-request.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"describe-secrets-request.d.ts","sourceRoot":"","sources":["../../../src/types/describe-secrets-request.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,sBAAsB;IAEnC;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;CACxB"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* metakms
|
|
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 { PageInfoForDescribeSecretsOutput } from './page-info-for-describe-secrets-output';
|
|
13
|
+
import { SecretForDescribeSecretsOutput } from './secret-for-describe-secrets-output';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
*
|
|
17
|
+
* @export
|
|
18
|
+
* @interface DescribeSecretsResponse
|
|
19
|
+
*/
|
|
20
|
+
export interface DescribeSecretsResponse {
|
|
21
|
+
/**
|
|
22
|
+
* @type {PageInfoForDescribeSecretsOutput}
|
|
23
|
+
* @memberof DescribeSecretsResponse
|
|
24
|
+
*/
|
|
25
|
+
PageInfo?: PageInfoForDescribeSecretsOutput;
|
|
26
|
+
/**
|
|
27
|
+
* @type {Array<SecretForDescribeSecretsOutput>}
|
|
28
|
+
* @memberof DescribeSecretsResponse
|
|
29
|
+
*/
|
|
30
|
+
Secrets?: Array<SecretForDescribeSecretsOutput>;
|
|
31
|
+
}
|
|
32
|
+
//# sourceMappingURL=describe-secrets-response.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"describe-secrets-response.d.ts","sourceRoot":"","sources":["../../../src/types/describe-secrets-response.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,gCAAgC,EAAE,MAAM,yCAAyC,CAAC;AAC3F,OAAO,EAAE,8BAA8B,EAAE,MAAM,sCAAsC,CAAC;AACrF;;;;;EAKE;AACH,MAAM,WAAW,uBAAuB;IAEpC;;;OAGG;IACH,QAAQ,CAAC,EAAE,gCAAgC,CAAC;IAE5C;;;OAGG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,8BAA8B,CAAC,CAAC;CACnD"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* metakms
|
|
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 GetSecretValueRequest
|
|
17
|
+
*/
|
|
18
|
+
export interface GetSecretValueRequest {
|
|
19
|
+
/**
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof GetSecretValueRequest
|
|
22
|
+
*/
|
|
23
|
+
SecretName: string;
|
|
24
|
+
/**
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof GetSecretValueRequest
|
|
27
|
+
*/
|
|
28
|
+
VersionID?: string;
|
|
29
|
+
}
|
|
30
|
+
//# sourceMappingURL=get-secret-value-request.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-secret-value-request.d.ts","sourceRoot":"","sources":["../../../src/types/get-secret-value-request.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,qBAAqB;IAElC;;;OAGG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* metakms
|
|
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 GetSecretValueResponse
|
|
17
|
+
*/
|
|
18
|
+
export interface GetSecretValueResponse {
|
|
19
|
+
/**
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof GetSecretValueResponse
|
|
22
|
+
*/
|
|
23
|
+
CreationDate?: number;
|
|
24
|
+
/**
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof GetSecretValueResponse
|
|
27
|
+
*/
|
|
28
|
+
SecretValue?: string;
|
|
29
|
+
/**
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof GetSecretValueResponse
|
|
32
|
+
*/
|
|
33
|
+
VersionID?: string;
|
|
34
|
+
/**
|
|
35
|
+
* @type {string}
|
|
36
|
+
* @memberof GetSecretValueResponse
|
|
37
|
+
*/
|
|
38
|
+
VersionStage?: string;
|
|
39
|
+
}
|
|
40
|
+
//# sourceMappingURL=get-secret-value-response.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-secret-value-response.d.ts","sourceRoot":"","sources":["../../../src/types/get-secret-value-response.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,sBAAsB;IAEnC;;;OAGG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;CACzB"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export * from './batch-get-secret-value-request';
|
|
2
|
+
export * from './batch-get-secret-value-response';
|
|
3
|
+
export * from './describe-secret-request';
|
|
4
|
+
export * from './describe-secret-response';
|
|
5
|
+
export * from './describe-secret-versions-request';
|
|
6
|
+
export * from './describe-secret-versions-response';
|
|
7
|
+
export * from './describe-secrets-request';
|
|
8
|
+
export * from './describe-secrets-response';
|
|
9
|
+
export * from './get-secret-value-request';
|
|
10
|
+
export * from './get-secret-value-response';
|
|
11
|
+
export * from './page-info-for-describe-secret-versions-output';
|
|
12
|
+
export * from './page-info-for-describe-secrets-output';
|
|
13
|
+
export * from './secret-for-describe-secret-output';
|
|
14
|
+
export * from './secret-for-describe-secrets-output';
|
|
15
|
+
export * from './secret-value-for-batch-get-secret-value-output';
|
|
16
|
+
export * from './secret-version-for-describe-secret-versions-output';
|
|
17
|
+
//# 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,kCAAkC,CAAC;AACjD,cAAc,mCAAmC,CAAC;AAClD,cAAc,2BAA2B,CAAC;AAC1C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,oCAAoC,CAAC;AACnD,cAAc,qCAAqC,CAAC;AACpD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,iDAAiD,CAAC;AAChE,cAAc,yCAAyC,CAAC;AACxD,cAAc,qCAAqC,CAAC;AACpD,cAAc,sCAAsC,CAAC;AACrD,cAAc,kDAAkD,CAAC;AACjE,cAAc,sDAAsD,CAAC"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* metakms
|
|
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 PageInfoForDescribeSecretVersionsOutput
|
|
17
|
+
*/
|
|
18
|
+
export interface PageInfoForDescribeSecretVersionsOutput {
|
|
19
|
+
/**
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof PageInfoForDescribeSecretVersionsOutput
|
|
22
|
+
*/
|
|
23
|
+
Count?: number;
|
|
24
|
+
/**
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof PageInfoForDescribeSecretVersionsOutput
|
|
27
|
+
*/
|
|
28
|
+
CurrentPage?: number;
|
|
29
|
+
/**
|
|
30
|
+
* @type {number}
|
|
31
|
+
* @memberof PageInfoForDescribeSecretVersionsOutput
|
|
32
|
+
*/
|
|
33
|
+
PageSize?: number;
|
|
34
|
+
/**
|
|
35
|
+
* @type {number}
|
|
36
|
+
* @memberof PageInfoForDescribeSecretVersionsOutput
|
|
37
|
+
*/
|
|
38
|
+
TotalCount?: number;
|
|
39
|
+
}
|
|
40
|
+
//# sourceMappingURL=page-info-for-describe-secret-versions-output.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"page-info-for-describe-secret-versions-output.d.ts","sourceRoot":"","sources":["../../../src/types/page-info-for-describe-secret-versions-output.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,uCAAuC;IAEpD;;;OAGG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;CACvB"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* metakms
|
|
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 PageInfoForDescribeSecretsOutput
|
|
17
|
+
*/
|
|
18
|
+
export interface PageInfoForDescribeSecretsOutput {
|
|
19
|
+
/**
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof PageInfoForDescribeSecretsOutput
|
|
22
|
+
*/
|
|
23
|
+
Count?: number;
|
|
24
|
+
/**
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof PageInfoForDescribeSecretsOutput
|
|
27
|
+
*/
|
|
28
|
+
CurrentPage?: number;
|
|
29
|
+
/**
|
|
30
|
+
* @type {number}
|
|
31
|
+
* @memberof PageInfoForDescribeSecretsOutput
|
|
32
|
+
*/
|
|
33
|
+
PageSize?: number;
|
|
34
|
+
/**
|
|
35
|
+
* @type {number}
|
|
36
|
+
* @memberof PageInfoForDescribeSecretsOutput
|
|
37
|
+
*/
|
|
38
|
+
TotalCount?: number;
|
|
39
|
+
}
|
|
40
|
+
//# sourceMappingURL=page-info-for-describe-secrets-output.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"page-info-for-describe-secrets-output.d.ts","sourceRoot":"","sources":["../../../src/types/page-info-for-describe-secrets-output.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,gCAAgC;IAE7C;;;OAGG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;CACvB"}
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* metakms
|
|
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 SecretForDescribeSecretOutput
|
|
17
|
+
*/
|
|
18
|
+
export interface SecretForDescribeSecretOutput {
|
|
19
|
+
/**
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof SecretForDescribeSecretOutput
|
|
22
|
+
*/
|
|
23
|
+
CreationDate?: number;
|
|
24
|
+
/**
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof SecretForDescribeSecretOutput
|
|
27
|
+
*/
|
|
28
|
+
Description?: string;
|
|
29
|
+
/**
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof SecretForDescribeSecretOutput
|
|
32
|
+
*/
|
|
33
|
+
EncryptionKey?: string;
|
|
34
|
+
/**
|
|
35
|
+
* @type {string}
|
|
36
|
+
* @memberof SecretForDescribeSecretOutput
|
|
37
|
+
*/
|
|
38
|
+
ExtendedConfig?: string;
|
|
39
|
+
/**
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof SecretForDescribeSecretOutput
|
|
42
|
+
*/
|
|
43
|
+
ID?: string;
|
|
44
|
+
/**
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof SecretForDescribeSecretOutput
|
|
47
|
+
*/
|
|
48
|
+
LastRotationTime?: string;
|
|
49
|
+
/**
|
|
50
|
+
* @type {boolean}
|
|
51
|
+
* @memberof SecretForDescribeSecretOutput
|
|
52
|
+
*/
|
|
53
|
+
Managed?: boolean;
|
|
54
|
+
/**
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof SecretForDescribeSecretOutput
|
|
57
|
+
*/
|
|
58
|
+
ProjectName?: string;
|
|
59
|
+
/**
|
|
60
|
+
* @type {number}
|
|
61
|
+
* @memberof SecretForDescribeSecretOutput
|
|
62
|
+
*/
|
|
63
|
+
RotationInterval?: number;
|
|
64
|
+
/**
|
|
65
|
+
* @type {string}
|
|
66
|
+
* @memberof SecretForDescribeSecretOutput
|
|
67
|
+
*/
|
|
68
|
+
RotationState?: string;
|
|
69
|
+
/**
|
|
70
|
+
* @type {string}
|
|
71
|
+
* @memberof SecretForDescribeSecretOutput
|
|
72
|
+
*/
|
|
73
|
+
ScheduleDeleteTime?: string;
|
|
74
|
+
/**
|
|
75
|
+
* @type {string}
|
|
76
|
+
* @memberof SecretForDescribeSecretOutput
|
|
77
|
+
*/
|
|
78
|
+
ScheduleRotationTime?: string;
|
|
79
|
+
/**
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof SecretForDescribeSecretOutput
|
|
82
|
+
*/
|
|
83
|
+
SecretName?: string;
|
|
84
|
+
/**
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof SecretForDescribeSecretOutput
|
|
87
|
+
*/
|
|
88
|
+
SecretState?: SecretForDescribeSecretOutputSecretStateEnum;
|
|
89
|
+
/**
|
|
90
|
+
* @type {string}
|
|
91
|
+
* @memberof SecretForDescribeSecretOutput
|
|
92
|
+
*/
|
|
93
|
+
SecretType?: SecretForDescribeSecretOutputSecretTypeEnum;
|
|
94
|
+
/**
|
|
95
|
+
* @type {string}
|
|
96
|
+
* @memberof SecretForDescribeSecretOutput
|
|
97
|
+
*/
|
|
98
|
+
Trn?: string;
|
|
99
|
+
/**
|
|
100
|
+
* @type {string}
|
|
101
|
+
* @memberof SecretForDescribeSecretOutput
|
|
102
|
+
*/
|
|
103
|
+
UID?: string;
|
|
104
|
+
/**
|
|
105
|
+
* @type {number}
|
|
106
|
+
* @memberof SecretForDescribeSecretOutput
|
|
107
|
+
*/
|
|
108
|
+
UpdateDate?: number;
|
|
109
|
+
}
|
|
110
|
+
/**
|
|
111
|
+
* @export
|
|
112
|
+
* @enum {string}
|
|
113
|
+
*/
|
|
114
|
+
export declare enum SecretForDescribeSecretOutputSecretStateEnum {
|
|
115
|
+
Enable = "Enable",
|
|
116
|
+
Disable = "Disable",
|
|
117
|
+
PendingDelete = "PendingDelete"
|
|
118
|
+
}
|
|
119
|
+
/**
|
|
120
|
+
* @export
|
|
121
|
+
* @enum {string}
|
|
122
|
+
*/
|
|
123
|
+
export declare enum SecretForDescribeSecretOutputSecretTypeEnum {
|
|
124
|
+
Generic = "Generic",
|
|
125
|
+
IAM = "IAM",
|
|
126
|
+
RDS = "RDS",
|
|
127
|
+
Redis = "Redis",
|
|
128
|
+
ECS = "ECS"
|
|
129
|
+
}
|
|
130
|
+
//# sourceMappingURL=secret-for-describe-secret-output.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"secret-for-describe-secret-output.d.ts","sourceRoot":"","sources":["../../../src/types/secret-for-describe-secret-output.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,6BAA6B;IAE1C;;;OAGG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IAEvB;;;OAGG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IAExB;;;OAGG;IACH,EAAE,CAAC,EAAE,MAAM,CAAC;IAEZ;;;OAGG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAE1B;;;OAGG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAElB;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAE1B;;;OAGG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IAEvB;;;OAGG;IACH,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAE5B;;;OAGG;IACH,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAE9B;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACH,WAAW,CAAC,EAAE,4CAA4C,CAAC;IAE3D;;;OAGG;IACH,UAAU,CAAC,EAAE,2CAA2C,CAAC;IAEzD;;;OAGG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;IAEb;;;OAGG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;IAEb;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;CACvB;AAED;;;GAGG;AACH,oBAAY,4CAA4C;IACpD,MAAM,WAAW;IACjB,OAAO,YAAY;IACnB,aAAa,kBAAkB;CAClC;AACD;;;GAGG;AACH,oBAAY,2CAA2C;IACnD,OAAO,YAAY;IACnB,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,KAAK,UAAU;IACf,GAAG,QAAQ;CACd"}
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* metakms
|
|
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 SecretForDescribeSecretsOutput
|
|
17
|
+
*/
|
|
18
|
+
export interface SecretForDescribeSecretsOutput {
|
|
19
|
+
/**
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof SecretForDescribeSecretsOutput
|
|
22
|
+
*/
|
|
23
|
+
CreationDate?: number;
|
|
24
|
+
/**
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof SecretForDescribeSecretsOutput
|
|
27
|
+
*/
|
|
28
|
+
Description?: string;
|
|
29
|
+
/**
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof SecretForDescribeSecretsOutput
|
|
32
|
+
*/
|
|
33
|
+
EncryptionKey?: string;
|
|
34
|
+
/**
|
|
35
|
+
* @type {string}
|
|
36
|
+
* @memberof SecretForDescribeSecretsOutput
|
|
37
|
+
*/
|
|
38
|
+
ExtendedConfig?: string;
|
|
39
|
+
/**
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof SecretForDescribeSecretsOutput
|
|
42
|
+
*/
|
|
43
|
+
ID?: string;
|
|
44
|
+
/**
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof SecretForDescribeSecretsOutput
|
|
47
|
+
*/
|
|
48
|
+
LastRotationTime?: string;
|
|
49
|
+
/**
|
|
50
|
+
* @type {boolean}
|
|
51
|
+
* @memberof SecretForDescribeSecretsOutput
|
|
52
|
+
*/
|
|
53
|
+
Managed?: boolean;
|
|
54
|
+
/**
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof SecretForDescribeSecretsOutput
|
|
57
|
+
*/
|
|
58
|
+
ProjectName?: string;
|
|
59
|
+
/**
|
|
60
|
+
* @type {number}
|
|
61
|
+
* @memberof SecretForDescribeSecretsOutput
|
|
62
|
+
*/
|
|
63
|
+
RotationInterval?: number;
|
|
64
|
+
/**
|
|
65
|
+
* @type {string}
|
|
66
|
+
* @memberof SecretForDescribeSecretsOutput
|
|
67
|
+
*/
|
|
68
|
+
RotationState?: string;
|
|
69
|
+
/**
|
|
70
|
+
* @type {string}
|
|
71
|
+
* @memberof SecretForDescribeSecretsOutput
|
|
72
|
+
*/
|
|
73
|
+
ScheduleDeleteTime?: string;
|
|
74
|
+
/**
|
|
75
|
+
* @type {string}
|
|
76
|
+
* @memberof SecretForDescribeSecretsOutput
|
|
77
|
+
*/
|
|
78
|
+
ScheduleRotationTime?: string;
|
|
79
|
+
/**
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof SecretForDescribeSecretsOutput
|
|
82
|
+
*/
|
|
83
|
+
SecretName?: string;
|
|
84
|
+
/**
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof SecretForDescribeSecretsOutput
|
|
87
|
+
*/
|
|
88
|
+
SecretState?: SecretForDescribeSecretsOutputSecretStateEnum;
|
|
89
|
+
/**
|
|
90
|
+
* @type {string}
|
|
91
|
+
* @memberof SecretForDescribeSecretsOutput
|
|
92
|
+
*/
|
|
93
|
+
SecretType?: SecretForDescribeSecretsOutputSecretTypeEnum;
|
|
94
|
+
/**
|
|
95
|
+
* @type {string}
|
|
96
|
+
* @memberof SecretForDescribeSecretsOutput
|
|
97
|
+
*/
|
|
98
|
+
Trn?: string;
|
|
99
|
+
/**
|
|
100
|
+
* @type {string}
|
|
101
|
+
* @memberof SecretForDescribeSecretsOutput
|
|
102
|
+
*/
|
|
103
|
+
UID?: string;
|
|
104
|
+
/**
|
|
105
|
+
* @type {number}
|
|
106
|
+
* @memberof SecretForDescribeSecretsOutput
|
|
107
|
+
*/
|
|
108
|
+
UpdateDate?: number;
|
|
109
|
+
}
|
|
110
|
+
/**
|
|
111
|
+
* @export
|
|
112
|
+
* @enum {string}
|
|
113
|
+
*/
|
|
114
|
+
export declare enum SecretForDescribeSecretsOutputSecretStateEnum {
|
|
115
|
+
Enable = "Enable",
|
|
116
|
+
Disable = "Disable",
|
|
117
|
+
PendingDelete = "PendingDelete"
|
|
118
|
+
}
|
|
119
|
+
/**
|
|
120
|
+
* @export
|
|
121
|
+
* @enum {string}
|
|
122
|
+
*/
|
|
123
|
+
export declare enum SecretForDescribeSecretsOutputSecretTypeEnum {
|
|
124
|
+
Generic = "Generic",
|
|
125
|
+
IAM = "IAM",
|
|
126
|
+
RDS = "RDS",
|
|
127
|
+
Redis = "Redis",
|
|
128
|
+
ECS = "ECS"
|
|
129
|
+
}
|
|
130
|
+
//# sourceMappingURL=secret-for-describe-secrets-output.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"secret-for-describe-secrets-output.d.ts","sourceRoot":"","sources":["../../../src/types/secret-for-describe-secrets-output.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,8BAA8B;IAE3C;;;OAGG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IAEvB;;;OAGG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IAExB;;;OAGG;IACH,EAAE,CAAC,EAAE,MAAM,CAAC;IAEZ;;;OAGG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAE1B;;;OAGG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAElB;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAE1B;;;OAGG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IAEvB;;;OAGG;IACH,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAE5B;;;OAGG;IACH,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAE9B;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACH,WAAW,CAAC,EAAE,6CAA6C,CAAC;IAE5D;;;OAGG;IACH,UAAU,CAAC,EAAE,4CAA4C,CAAC;IAE1D;;;OAGG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;IAEb;;;OAGG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;IAEb;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;CACvB;AAED;;;GAGG;AACH,oBAAY,6CAA6C;IACrD,MAAM,WAAW;IACjB,OAAO,YAAY;IACnB,aAAa,kBAAkB;CAClC;AACD;;;GAGG;AACH,oBAAY,4CAA4C;IACpD,OAAO,YAAY;IACnB,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,KAAK,UAAU;IACf,GAAG,QAAQ;CACd"}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* metakms
|
|
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 SecretValueForBatchGetSecretValueOutput
|
|
17
|
+
*/
|
|
18
|
+
export interface SecretValueForBatchGetSecretValueOutput {
|
|
19
|
+
/**
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof SecretValueForBatchGetSecretValueOutput
|
|
22
|
+
*/
|
|
23
|
+
CreationDate?: number;
|
|
24
|
+
/**
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof SecretValueForBatchGetSecretValueOutput
|
|
27
|
+
*/
|
|
28
|
+
SecretName?: string;
|
|
29
|
+
/**
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof SecretValueForBatchGetSecretValueOutput
|
|
32
|
+
*/
|
|
33
|
+
SecretValue?: string;
|
|
34
|
+
/**
|
|
35
|
+
* @type {string}
|
|
36
|
+
* @memberof SecretValueForBatchGetSecretValueOutput
|
|
37
|
+
*/
|
|
38
|
+
VersionID?: string;
|
|
39
|
+
/**
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof SecretValueForBatchGetSecretValueOutput
|
|
42
|
+
*/
|
|
43
|
+
VersionStage?: SecretValueForBatchGetSecretValueOutputVersionStageEnum;
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* @export
|
|
47
|
+
* @enum {string}
|
|
48
|
+
*/
|
|
49
|
+
export declare enum SecretValueForBatchGetSecretValueOutputVersionStageEnum {
|
|
50
|
+
CURRENT = "CURRENT",
|
|
51
|
+
OLDER = "OLDER"
|
|
52
|
+
}
|
|
53
|
+
//# sourceMappingURL=secret-value-for-batch-get-secret-value-output.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"secret-value-for-batch-get-secret-value-output.d.ts","sourceRoot":"","sources":["../../../src/types/secret-value-for-batch-get-secret-value-output.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,uCAAuC;IAEpD;;;OAGG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,YAAY,CAAC,EAAE,uDAAuD,CAAC;CAC1E;AAED;;;GAGG;AACH,oBAAY,uDAAuD;IAC/D,OAAO,YAAY;IACnB,KAAK,UAAU;CAClB"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* metakms
|
|
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 SecretVersionForDescribeSecretVersionsOutput
|
|
17
|
+
*/
|
|
18
|
+
export interface SecretVersionForDescribeSecretVersionsOutput {
|
|
19
|
+
/**
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof SecretVersionForDescribeSecretVersionsOutput
|
|
22
|
+
*/
|
|
23
|
+
CreationDate?: number;
|
|
24
|
+
/**
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof SecretVersionForDescribeSecretVersionsOutput
|
|
27
|
+
*/
|
|
28
|
+
VersionID?: string;
|
|
29
|
+
/**
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof SecretVersionForDescribeSecretVersionsOutput
|
|
32
|
+
*/
|
|
33
|
+
VersionStage?: SecretVersionForDescribeSecretVersionsOutputVersionStageEnum;
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* @export
|
|
37
|
+
* @enum {string}
|
|
38
|
+
*/
|
|
39
|
+
export declare enum SecretVersionForDescribeSecretVersionsOutputVersionStageEnum {
|
|
40
|
+
CURRENT = "CURRENT",
|
|
41
|
+
OLDER = "OLDER"
|
|
42
|
+
}
|
|
43
|
+
//# sourceMappingURL=secret-version-for-describe-secret-versions-output.d.ts.map
|