@aws-sdk/client-rbin 3.169.0 → 3.170.0
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/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/Rbin.d.ts +148 -45
- package/dist-types/ts3.4/RbinClient.d.ts +177 -81
- package/dist-types/ts3.4/commands/CreateRuleCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteRuleCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetRuleCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListRulesCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateRuleCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +8 -8
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/RbinServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +271 -249
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/dist-types/ts3.4/pagination/ListRulesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +2 -2
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +101 -26
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,249 +1,271 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { RbinServiceException as __BaseException } from "./RbinServiceException";
|
|
3
|
-
|
|
4
|
-
export interface ResourceTag {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
43
|
-
export
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
}
|
|
102
|
-
export interface DeleteRuleResponse {
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
}
|
|
121
|
-
export interface GetRuleResponse {
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
}
|
|
168
|
-
export interface
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
}
|
|
174
|
-
export interface
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
export declare const
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
export declare const
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
export declare const
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
export declare const
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
export declare const GetRuleResponseFilterSensitiveLog: (
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
export declare const
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
export declare const
|
|
236
|
-
|
|
237
|
-
export declare const
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
export declare const
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
export declare const
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
export declare const
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { RbinServiceException as __BaseException } from "./RbinServiceException";
|
|
3
|
+
|
|
4
|
+
export interface ResourceTag {
|
|
5
|
+
ResourceTagKey: string | undefined;
|
|
6
|
+
|
|
7
|
+
ResourceTagValue?: string;
|
|
8
|
+
}
|
|
9
|
+
export declare enum ResourceType {
|
|
10
|
+
EBS_SNAPSHOT = "EBS_SNAPSHOT",
|
|
11
|
+
EC2_IMAGE = "EC2_IMAGE",
|
|
12
|
+
}
|
|
13
|
+
export declare enum RetentionPeriodUnit {
|
|
14
|
+
DAYS = "DAYS",
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export interface RetentionPeriod {
|
|
18
|
+
RetentionPeriodValue: number | undefined;
|
|
19
|
+
|
|
20
|
+
RetentionPeriodUnit: RetentionPeriodUnit | string | undefined;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export interface Tag {
|
|
24
|
+
Key: string | undefined;
|
|
25
|
+
|
|
26
|
+
Value: string | undefined;
|
|
27
|
+
}
|
|
28
|
+
export interface CreateRuleRequest {
|
|
29
|
+
RetentionPeriod: RetentionPeriod | undefined;
|
|
30
|
+
|
|
31
|
+
Description?: string;
|
|
32
|
+
|
|
33
|
+
Tags?: Tag[];
|
|
34
|
+
|
|
35
|
+
ResourceType: ResourceType | string | undefined;
|
|
36
|
+
|
|
37
|
+
ResourceTags?: ResourceTag[];
|
|
38
|
+
}
|
|
39
|
+
export declare enum RuleStatus {
|
|
40
|
+
AVAILABLE = "available",
|
|
41
|
+
PENDING = "pending",
|
|
42
|
+
}
|
|
43
|
+
export interface CreateRuleResponse {
|
|
44
|
+
Identifier?: string;
|
|
45
|
+
|
|
46
|
+
RetentionPeriod?: RetentionPeriod;
|
|
47
|
+
|
|
48
|
+
Description?: string;
|
|
49
|
+
|
|
50
|
+
Tags?: Tag[];
|
|
51
|
+
|
|
52
|
+
ResourceType?: ResourceType | string;
|
|
53
|
+
|
|
54
|
+
ResourceTags?: ResourceTag[];
|
|
55
|
+
|
|
56
|
+
Status?: RuleStatus | string;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
export declare class InternalServerException extends __BaseException {
|
|
60
|
+
readonly name: "InternalServerException";
|
|
61
|
+
readonly $fault: "server";
|
|
62
|
+
Message?: string;
|
|
63
|
+
|
|
64
|
+
constructor(
|
|
65
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
66
|
+
);
|
|
67
|
+
}
|
|
68
|
+
export declare enum ServiceQuotaExceededExceptionReason {
|
|
69
|
+
SERVICE_QUOTA_EXCEEDED = "SERVICE_QUOTA_EXCEEDED",
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
73
|
+
readonly name: "ServiceQuotaExceededException";
|
|
74
|
+
readonly $fault: "client";
|
|
75
|
+
Message?: string;
|
|
76
|
+
|
|
77
|
+
Reason?: ServiceQuotaExceededExceptionReason | string;
|
|
78
|
+
|
|
79
|
+
constructor(
|
|
80
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
81
|
+
);
|
|
82
|
+
}
|
|
83
|
+
export declare enum ValidationExceptionReason {
|
|
84
|
+
INVALID_PAGE_TOKEN = "INVALID_PAGE_TOKEN",
|
|
85
|
+
INVALID_PARAMETER_VALUE = "INVALID_PARAMETER_VALUE",
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
export declare class ValidationException extends __BaseException {
|
|
89
|
+
readonly name: "ValidationException";
|
|
90
|
+
readonly $fault: "client";
|
|
91
|
+
Message?: string;
|
|
92
|
+
|
|
93
|
+
Reason?: ValidationExceptionReason | string;
|
|
94
|
+
|
|
95
|
+
constructor(
|
|
96
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
97
|
+
);
|
|
98
|
+
}
|
|
99
|
+
export interface DeleteRuleRequest {
|
|
100
|
+
Identifier: string | undefined;
|
|
101
|
+
}
|
|
102
|
+
export interface DeleteRuleResponse {}
|
|
103
|
+
export declare enum ResourceNotFoundExceptionReason {
|
|
104
|
+
RULE_NOT_FOUND = "RULE_NOT_FOUND",
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
108
|
+
readonly name: "ResourceNotFoundException";
|
|
109
|
+
readonly $fault: "client";
|
|
110
|
+
Message?: string;
|
|
111
|
+
|
|
112
|
+
Reason?: ResourceNotFoundExceptionReason | string;
|
|
113
|
+
|
|
114
|
+
constructor(
|
|
115
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
116
|
+
);
|
|
117
|
+
}
|
|
118
|
+
export interface GetRuleRequest {
|
|
119
|
+
Identifier: string | undefined;
|
|
120
|
+
}
|
|
121
|
+
export interface GetRuleResponse {
|
|
122
|
+
Identifier?: string;
|
|
123
|
+
|
|
124
|
+
Description?: string;
|
|
125
|
+
|
|
126
|
+
ResourceType?: ResourceType | string;
|
|
127
|
+
|
|
128
|
+
RetentionPeriod?: RetentionPeriod;
|
|
129
|
+
|
|
130
|
+
ResourceTags?: ResourceTag[];
|
|
131
|
+
|
|
132
|
+
Status?: RuleStatus | string;
|
|
133
|
+
}
|
|
134
|
+
export interface ListRulesRequest {
|
|
135
|
+
MaxResults?: number;
|
|
136
|
+
|
|
137
|
+
NextToken?: string;
|
|
138
|
+
|
|
139
|
+
ResourceType: ResourceType | string | undefined;
|
|
140
|
+
|
|
141
|
+
ResourceTags?: ResourceTag[];
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
export interface RuleSummary {
|
|
145
|
+
Identifier?: string;
|
|
146
|
+
|
|
147
|
+
Description?: string;
|
|
148
|
+
|
|
149
|
+
RetentionPeriod?: RetentionPeriod;
|
|
150
|
+
}
|
|
151
|
+
export interface ListRulesResponse {
|
|
152
|
+
Rules?: RuleSummary[];
|
|
153
|
+
|
|
154
|
+
NextToken?: string;
|
|
155
|
+
}
|
|
156
|
+
export interface ListTagsForResourceRequest {
|
|
157
|
+
ResourceArn: string | undefined;
|
|
158
|
+
}
|
|
159
|
+
export interface ListTagsForResourceResponse {
|
|
160
|
+
Tags?: Tag[];
|
|
161
|
+
}
|
|
162
|
+
export interface TagResourceRequest {
|
|
163
|
+
ResourceArn: string | undefined;
|
|
164
|
+
|
|
165
|
+
Tags: Tag[] | undefined;
|
|
166
|
+
}
|
|
167
|
+
export interface TagResourceResponse {}
|
|
168
|
+
export interface UntagResourceRequest {
|
|
169
|
+
ResourceArn: string | undefined;
|
|
170
|
+
|
|
171
|
+
TagKeys: string[] | undefined;
|
|
172
|
+
}
|
|
173
|
+
export interface UntagResourceResponse {}
|
|
174
|
+
export interface UpdateRuleRequest {
|
|
175
|
+
Identifier: string | undefined;
|
|
176
|
+
|
|
177
|
+
RetentionPeriod?: RetentionPeriod;
|
|
178
|
+
|
|
179
|
+
Description?: string;
|
|
180
|
+
|
|
181
|
+
ResourceType?: ResourceType | string;
|
|
182
|
+
|
|
183
|
+
ResourceTags?: ResourceTag[];
|
|
184
|
+
}
|
|
185
|
+
export interface UpdateRuleResponse {
|
|
186
|
+
Identifier?: string;
|
|
187
|
+
|
|
188
|
+
RetentionPeriod?: RetentionPeriod;
|
|
189
|
+
|
|
190
|
+
Description?: string;
|
|
191
|
+
|
|
192
|
+
ResourceType?: ResourceType | string;
|
|
193
|
+
|
|
194
|
+
ResourceTags?: ResourceTag[];
|
|
195
|
+
|
|
196
|
+
Status?: RuleStatus | string;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
export declare const ResourceTagFilterSensitiveLog: (obj: ResourceTag) => any;
|
|
200
|
+
|
|
201
|
+
export declare const RetentionPeriodFilterSensitiveLog: (
|
|
202
|
+
obj: RetentionPeriod
|
|
203
|
+
) => any;
|
|
204
|
+
|
|
205
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
206
|
+
|
|
207
|
+
export declare const CreateRuleRequestFilterSensitiveLog: (
|
|
208
|
+
obj: CreateRuleRequest
|
|
209
|
+
) => any;
|
|
210
|
+
|
|
211
|
+
export declare const CreateRuleResponseFilterSensitiveLog: (
|
|
212
|
+
obj: CreateRuleResponse
|
|
213
|
+
) => any;
|
|
214
|
+
|
|
215
|
+
export declare const DeleteRuleRequestFilterSensitiveLog: (
|
|
216
|
+
obj: DeleteRuleRequest
|
|
217
|
+
) => any;
|
|
218
|
+
|
|
219
|
+
export declare const DeleteRuleResponseFilterSensitiveLog: (
|
|
220
|
+
obj: DeleteRuleResponse
|
|
221
|
+
) => any;
|
|
222
|
+
|
|
223
|
+
export declare const GetRuleRequestFilterSensitiveLog: (
|
|
224
|
+
obj: GetRuleRequest
|
|
225
|
+
) => any;
|
|
226
|
+
|
|
227
|
+
export declare const GetRuleResponseFilterSensitiveLog: (
|
|
228
|
+
obj: GetRuleResponse
|
|
229
|
+
) => any;
|
|
230
|
+
|
|
231
|
+
export declare const ListRulesRequestFilterSensitiveLog: (
|
|
232
|
+
obj: ListRulesRequest
|
|
233
|
+
) => any;
|
|
234
|
+
|
|
235
|
+
export declare const RuleSummaryFilterSensitiveLog: (obj: RuleSummary) => any;
|
|
236
|
+
|
|
237
|
+
export declare const ListRulesResponseFilterSensitiveLog: (
|
|
238
|
+
obj: ListRulesResponse
|
|
239
|
+
) => any;
|
|
240
|
+
|
|
241
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
242
|
+
obj: ListTagsForResourceRequest
|
|
243
|
+
) => any;
|
|
244
|
+
|
|
245
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
246
|
+
obj: ListTagsForResourceResponse
|
|
247
|
+
) => any;
|
|
248
|
+
|
|
249
|
+
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
250
|
+
obj: TagResourceRequest
|
|
251
|
+
) => any;
|
|
252
|
+
|
|
253
|
+
export declare const TagResourceResponseFilterSensitiveLog: (
|
|
254
|
+
obj: TagResourceResponse
|
|
255
|
+
) => any;
|
|
256
|
+
|
|
257
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
258
|
+
obj: UntagResourceRequest
|
|
259
|
+
) => any;
|
|
260
|
+
|
|
261
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (
|
|
262
|
+
obj: UntagResourceResponse
|
|
263
|
+
) => any;
|
|
264
|
+
|
|
265
|
+
export declare const UpdateRuleRequestFilterSensitiveLog: (
|
|
266
|
+
obj: UpdateRuleRequest
|
|
267
|
+
) => any;
|
|
268
|
+
|
|
269
|
+
export declare const UpdateRuleResponseFilterSensitiveLog: (
|
|
270
|
+
obj: UpdateRuleResponse
|
|
271
|
+
) => any;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { Rbin } from "../Rbin";
|
|
3
|
-
import { RbinClient } from "../RbinClient";
|
|
4
|
-
export interface RbinPaginationConfiguration extends PaginationConfiguration {
|
|
5
|
-
|
|
6
|
-
}
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { Rbin } from "../Rbin";
|
|
3
|
+
import { RbinClient } from "../RbinClient";
|
|
4
|
+
export interface RbinPaginationConfiguration extends PaginationConfiguration {
|
|
5
|
+
client: Rbin | RbinClient;
|
|
6
|
+
}
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListRulesCommandInput,
|
|
4
|
+
ListRulesCommandOutput,
|
|
5
|
+
} from "../commands/ListRulesCommand";
|
|
6
|
+
import { RbinPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListRules(
|
|
8
|
+
config: RbinPaginationConfiguration,
|
|
9
|
+
input: ListRulesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListRulesCommandOutput>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from "./Interfaces";
|
|
2
|
-
export * from "./ListRulesPaginator";
|
|
1
|
+
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListRulesPaginator";
|