@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,46 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* metakms
|
|
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 GetSecretValueResponse
|
|
20
|
+
*/
|
|
21
|
+
export interface GetSecretValueResponse {
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* @type {number}
|
|
25
|
+
* @memberof GetSecretValueResponse
|
|
26
|
+
*/
|
|
27
|
+
CreationDate?: number;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof GetSecretValueResponse
|
|
32
|
+
*/
|
|
33
|
+
SecretValue?: string;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof GetSecretValueResponse
|
|
38
|
+
*/
|
|
39
|
+
VersionID?: string;
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* @type {string}
|
|
43
|
+
* @memberof GetSecretValueResponse
|
|
44
|
+
*/
|
|
45
|
+
VersionStage?: string;
|
|
46
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
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';
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* metakms
|
|
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 PageInfoForDescribeSecretVersionsOutput
|
|
20
|
+
*/
|
|
21
|
+
export interface PageInfoForDescribeSecretVersionsOutput {
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* @type {number}
|
|
25
|
+
* @memberof PageInfoForDescribeSecretVersionsOutput
|
|
26
|
+
*/
|
|
27
|
+
Count?: number;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* @type {number}
|
|
31
|
+
* @memberof PageInfoForDescribeSecretVersionsOutput
|
|
32
|
+
*/
|
|
33
|
+
CurrentPage?: number;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* @type {number}
|
|
37
|
+
* @memberof PageInfoForDescribeSecretVersionsOutput
|
|
38
|
+
*/
|
|
39
|
+
PageSize?: number;
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* @type {number}
|
|
43
|
+
* @memberof PageInfoForDescribeSecretVersionsOutput
|
|
44
|
+
*/
|
|
45
|
+
TotalCount?: number;
|
|
46
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* metakms
|
|
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 PageInfoForDescribeSecretsOutput
|
|
20
|
+
*/
|
|
21
|
+
export interface PageInfoForDescribeSecretsOutput {
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* @type {number}
|
|
25
|
+
* @memberof PageInfoForDescribeSecretsOutput
|
|
26
|
+
*/
|
|
27
|
+
Count?: number;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* @type {number}
|
|
31
|
+
* @memberof PageInfoForDescribeSecretsOutput
|
|
32
|
+
*/
|
|
33
|
+
CurrentPage?: number;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* @type {number}
|
|
37
|
+
* @memberof PageInfoForDescribeSecretsOutput
|
|
38
|
+
*/
|
|
39
|
+
PageSize?: number;
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* @type {number}
|
|
43
|
+
* @memberof PageInfoForDescribeSecretsOutput
|
|
44
|
+
*/
|
|
45
|
+
TotalCount?: number;
|
|
46
|
+
}
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* metakms
|
|
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 SecretForDescribeSecretOutput
|
|
20
|
+
*/
|
|
21
|
+
export interface SecretForDescribeSecretOutput {
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* @type {number}
|
|
25
|
+
* @memberof SecretForDescribeSecretOutput
|
|
26
|
+
*/
|
|
27
|
+
CreationDate?: number;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof SecretForDescribeSecretOutput
|
|
32
|
+
*/
|
|
33
|
+
Description?: string;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof SecretForDescribeSecretOutput
|
|
38
|
+
*/
|
|
39
|
+
EncryptionKey?: string;
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* @type {string}
|
|
43
|
+
* @memberof SecretForDescribeSecretOutput
|
|
44
|
+
*/
|
|
45
|
+
ExtendedConfig?: string;
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* @type {string}
|
|
49
|
+
* @memberof SecretForDescribeSecretOutput
|
|
50
|
+
*/
|
|
51
|
+
ID?: string;
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* @type {string}
|
|
55
|
+
* @memberof SecretForDescribeSecretOutput
|
|
56
|
+
*/
|
|
57
|
+
LastRotationTime?: string;
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* @type {boolean}
|
|
61
|
+
* @memberof SecretForDescribeSecretOutput
|
|
62
|
+
*/
|
|
63
|
+
Managed?: boolean;
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* @type {string}
|
|
67
|
+
* @memberof SecretForDescribeSecretOutput
|
|
68
|
+
*/
|
|
69
|
+
ProjectName?: string;
|
|
70
|
+
|
|
71
|
+
/**
|
|
72
|
+
* @type {number}
|
|
73
|
+
* @memberof SecretForDescribeSecretOutput
|
|
74
|
+
*/
|
|
75
|
+
RotationInterval?: number;
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* @type {string}
|
|
79
|
+
* @memberof SecretForDescribeSecretOutput
|
|
80
|
+
*/
|
|
81
|
+
RotationState?: string;
|
|
82
|
+
|
|
83
|
+
/**
|
|
84
|
+
* @type {string}
|
|
85
|
+
* @memberof SecretForDescribeSecretOutput
|
|
86
|
+
*/
|
|
87
|
+
ScheduleDeleteTime?: string;
|
|
88
|
+
|
|
89
|
+
/**
|
|
90
|
+
* @type {string}
|
|
91
|
+
* @memberof SecretForDescribeSecretOutput
|
|
92
|
+
*/
|
|
93
|
+
ScheduleRotationTime?: string;
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* @type {string}
|
|
97
|
+
* @memberof SecretForDescribeSecretOutput
|
|
98
|
+
*/
|
|
99
|
+
SecretName?: string;
|
|
100
|
+
|
|
101
|
+
/**
|
|
102
|
+
* @type {string}
|
|
103
|
+
* @memberof SecretForDescribeSecretOutput
|
|
104
|
+
*/
|
|
105
|
+
SecretState?: SecretForDescribeSecretOutputSecretStateEnum;
|
|
106
|
+
|
|
107
|
+
/**
|
|
108
|
+
* @type {string}
|
|
109
|
+
* @memberof SecretForDescribeSecretOutput
|
|
110
|
+
*/
|
|
111
|
+
SecretType?: SecretForDescribeSecretOutputSecretTypeEnum;
|
|
112
|
+
|
|
113
|
+
/**
|
|
114
|
+
* @type {string}
|
|
115
|
+
* @memberof SecretForDescribeSecretOutput
|
|
116
|
+
*/
|
|
117
|
+
Trn?: string;
|
|
118
|
+
|
|
119
|
+
/**
|
|
120
|
+
* @type {string}
|
|
121
|
+
* @memberof SecretForDescribeSecretOutput
|
|
122
|
+
*/
|
|
123
|
+
UID?: string;
|
|
124
|
+
|
|
125
|
+
/**
|
|
126
|
+
* @type {number}
|
|
127
|
+
* @memberof SecretForDescribeSecretOutput
|
|
128
|
+
*/
|
|
129
|
+
UpdateDate?: number;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
/**
|
|
133
|
+
* @export
|
|
134
|
+
* @enum {string}
|
|
135
|
+
*/
|
|
136
|
+
export enum SecretForDescribeSecretOutputSecretStateEnum {
|
|
137
|
+
Enable = 'Enable',
|
|
138
|
+
Disable = 'Disable',
|
|
139
|
+
PendingDelete = 'PendingDelete'
|
|
140
|
+
}
|
|
141
|
+
/**
|
|
142
|
+
* @export
|
|
143
|
+
* @enum {string}
|
|
144
|
+
*/
|
|
145
|
+
export enum SecretForDescribeSecretOutputSecretTypeEnum {
|
|
146
|
+
Generic = 'Generic',
|
|
147
|
+
IAM = 'IAM',
|
|
148
|
+
RDS = 'RDS',
|
|
149
|
+
Redis = 'Redis',
|
|
150
|
+
ECS = 'ECS'
|
|
151
|
+
}
|
|
152
|
+
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* metakms
|
|
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 SecretForDescribeSecretsOutput
|
|
20
|
+
*/
|
|
21
|
+
export interface SecretForDescribeSecretsOutput {
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* @type {number}
|
|
25
|
+
* @memberof SecretForDescribeSecretsOutput
|
|
26
|
+
*/
|
|
27
|
+
CreationDate?: number;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof SecretForDescribeSecretsOutput
|
|
32
|
+
*/
|
|
33
|
+
Description?: string;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof SecretForDescribeSecretsOutput
|
|
38
|
+
*/
|
|
39
|
+
EncryptionKey?: string;
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* @type {string}
|
|
43
|
+
* @memberof SecretForDescribeSecretsOutput
|
|
44
|
+
*/
|
|
45
|
+
ExtendedConfig?: string;
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* @type {string}
|
|
49
|
+
* @memberof SecretForDescribeSecretsOutput
|
|
50
|
+
*/
|
|
51
|
+
ID?: string;
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* @type {string}
|
|
55
|
+
* @memberof SecretForDescribeSecretsOutput
|
|
56
|
+
*/
|
|
57
|
+
LastRotationTime?: string;
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* @type {boolean}
|
|
61
|
+
* @memberof SecretForDescribeSecretsOutput
|
|
62
|
+
*/
|
|
63
|
+
Managed?: boolean;
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* @type {string}
|
|
67
|
+
* @memberof SecretForDescribeSecretsOutput
|
|
68
|
+
*/
|
|
69
|
+
ProjectName?: string;
|
|
70
|
+
|
|
71
|
+
/**
|
|
72
|
+
* @type {number}
|
|
73
|
+
* @memberof SecretForDescribeSecretsOutput
|
|
74
|
+
*/
|
|
75
|
+
RotationInterval?: number;
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* @type {string}
|
|
79
|
+
* @memberof SecretForDescribeSecretsOutput
|
|
80
|
+
*/
|
|
81
|
+
RotationState?: string;
|
|
82
|
+
|
|
83
|
+
/**
|
|
84
|
+
* @type {string}
|
|
85
|
+
* @memberof SecretForDescribeSecretsOutput
|
|
86
|
+
*/
|
|
87
|
+
ScheduleDeleteTime?: string;
|
|
88
|
+
|
|
89
|
+
/**
|
|
90
|
+
* @type {string}
|
|
91
|
+
* @memberof SecretForDescribeSecretsOutput
|
|
92
|
+
*/
|
|
93
|
+
ScheduleRotationTime?: string;
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* @type {string}
|
|
97
|
+
* @memberof SecretForDescribeSecretsOutput
|
|
98
|
+
*/
|
|
99
|
+
SecretName?: string;
|
|
100
|
+
|
|
101
|
+
/**
|
|
102
|
+
* @type {string}
|
|
103
|
+
* @memberof SecretForDescribeSecretsOutput
|
|
104
|
+
*/
|
|
105
|
+
SecretState?: SecretForDescribeSecretsOutputSecretStateEnum;
|
|
106
|
+
|
|
107
|
+
/**
|
|
108
|
+
* @type {string}
|
|
109
|
+
* @memberof SecretForDescribeSecretsOutput
|
|
110
|
+
*/
|
|
111
|
+
SecretType?: SecretForDescribeSecretsOutputSecretTypeEnum;
|
|
112
|
+
|
|
113
|
+
/**
|
|
114
|
+
* @type {string}
|
|
115
|
+
* @memberof SecretForDescribeSecretsOutput
|
|
116
|
+
*/
|
|
117
|
+
Trn?: string;
|
|
118
|
+
|
|
119
|
+
/**
|
|
120
|
+
* @type {string}
|
|
121
|
+
* @memberof SecretForDescribeSecretsOutput
|
|
122
|
+
*/
|
|
123
|
+
UID?: string;
|
|
124
|
+
|
|
125
|
+
/**
|
|
126
|
+
* @type {number}
|
|
127
|
+
* @memberof SecretForDescribeSecretsOutput
|
|
128
|
+
*/
|
|
129
|
+
UpdateDate?: number;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
/**
|
|
133
|
+
* @export
|
|
134
|
+
* @enum {string}
|
|
135
|
+
*/
|
|
136
|
+
export enum SecretForDescribeSecretsOutputSecretStateEnum {
|
|
137
|
+
Enable = 'Enable',
|
|
138
|
+
Disable = 'Disable',
|
|
139
|
+
PendingDelete = 'PendingDelete'
|
|
140
|
+
}
|
|
141
|
+
/**
|
|
142
|
+
* @export
|
|
143
|
+
* @enum {string}
|
|
144
|
+
*/
|
|
145
|
+
export enum SecretForDescribeSecretsOutputSecretTypeEnum {
|
|
146
|
+
Generic = 'Generic',
|
|
147
|
+
IAM = 'IAM',
|
|
148
|
+
RDS = 'RDS',
|
|
149
|
+
Redis = 'Redis',
|
|
150
|
+
ECS = 'ECS'
|
|
151
|
+
}
|
|
152
|
+
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* metakms
|
|
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 SecretValueForBatchGetSecretValueOutput
|
|
20
|
+
*/
|
|
21
|
+
export interface SecretValueForBatchGetSecretValueOutput {
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* @type {number}
|
|
25
|
+
* @memberof SecretValueForBatchGetSecretValueOutput
|
|
26
|
+
*/
|
|
27
|
+
CreationDate?: number;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof SecretValueForBatchGetSecretValueOutput
|
|
32
|
+
*/
|
|
33
|
+
SecretName?: string;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof SecretValueForBatchGetSecretValueOutput
|
|
38
|
+
*/
|
|
39
|
+
SecretValue?: string;
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* @type {string}
|
|
43
|
+
* @memberof SecretValueForBatchGetSecretValueOutput
|
|
44
|
+
*/
|
|
45
|
+
VersionID?: string;
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* @type {string}
|
|
49
|
+
* @memberof SecretValueForBatchGetSecretValueOutput
|
|
50
|
+
*/
|
|
51
|
+
VersionStage?: SecretValueForBatchGetSecretValueOutputVersionStageEnum;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* @export
|
|
56
|
+
* @enum {string}
|
|
57
|
+
*/
|
|
58
|
+
export enum SecretValueForBatchGetSecretValueOutputVersionStageEnum {
|
|
59
|
+
CURRENT = 'CURRENT',
|
|
60
|
+
OLDER = 'OLDER'
|
|
61
|
+
}
|
|
62
|
+
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* metakms
|
|
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 SecretVersionForDescribeSecretVersionsOutput
|
|
20
|
+
*/
|
|
21
|
+
export interface SecretVersionForDescribeSecretVersionsOutput {
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* @type {number}
|
|
25
|
+
* @memberof SecretVersionForDescribeSecretVersionsOutput
|
|
26
|
+
*/
|
|
27
|
+
CreationDate?: number;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof SecretVersionForDescribeSecretVersionsOutput
|
|
32
|
+
*/
|
|
33
|
+
VersionID?: string;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof SecretVersionForDescribeSecretVersionsOutput
|
|
38
|
+
*/
|
|
39
|
+
VersionStage?: SecretVersionForDescribeSecretVersionsOutputVersionStageEnum;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* @export
|
|
44
|
+
* @enum {string}
|
|
45
|
+
*/
|
|
46
|
+
export enum SecretVersionForDescribeSecretVersionsOutputVersionStageEnum {
|
|
47
|
+
CURRENT = 'CURRENT',
|
|
48
|
+
OLDER = 'OLDER'
|
|
49
|
+
}
|
|
50
|
+
|
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
|
+
}
|