@aws-sdk/client-dlm 3.170.0 → 3.171.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 CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-dlm
9
+
10
+
11
+
12
+
13
+
6
14
  # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
15
 
8
16
  **Note:** Version bump only for package @aws-sdk/client-dlm
@@ -32,7 +32,6 @@ import {
32
32
  UpdateLifecyclePolicyCommandOutput,
33
33
  } from "./commands/UpdateLifecyclePolicyCommand";
34
34
  import { DLMClient } from "./DLMClient";
35
-
36
35
  export declare class DLM extends DLMClient {
37
36
  createLifecyclePolicy(
38
37
  args: CreateLifecyclePolicyCommandInput,
@@ -47,7 +46,6 @@ export declare class DLM extends DLMClient {
47
46
  options: __HttpHandlerOptions,
48
47
  cb: (err: any, data?: CreateLifecyclePolicyCommandOutput) => void
49
48
  ): void;
50
-
51
49
  deleteLifecyclePolicy(
52
50
  args: DeleteLifecyclePolicyCommandInput,
53
51
  options?: __HttpHandlerOptions
@@ -61,7 +59,6 @@ export declare class DLM extends DLMClient {
61
59
  options: __HttpHandlerOptions,
62
60
  cb: (err: any, data?: DeleteLifecyclePolicyCommandOutput) => void
63
61
  ): void;
64
-
65
62
  getLifecyclePolicies(
66
63
  args: GetLifecyclePoliciesCommandInput,
67
64
  options?: __HttpHandlerOptions
@@ -75,7 +72,6 @@ export declare class DLM extends DLMClient {
75
72
  options: __HttpHandlerOptions,
76
73
  cb: (err: any, data?: GetLifecyclePoliciesCommandOutput) => void
77
74
  ): void;
78
-
79
75
  getLifecyclePolicy(
80
76
  args: GetLifecyclePolicyCommandInput,
81
77
  options?: __HttpHandlerOptions
@@ -89,7 +85,6 @@ export declare class DLM extends DLMClient {
89
85
  options: __HttpHandlerOptions,
90
86
  cb: (err: any, data?: GetLifecyclePolicyCommandOutput) => void
91
87
  ): void;
92
-
93
88
  listTagsForResource(
94
89
  args: ListTagsForResourceCommandInput,
95
90
  options?: __HttpHandlerOptions
@@ -103,7 +98,6 @@ export declare class DLM extends DLMClient {
103
98
  options: __HttpHandlerOptions,
104
99
  cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
105
100
  ): void;
106
-
107
101
  tagResource(
108
102
  args: TagResourceCommandInput,
109
103
  options?: __HttpHandlerOptions
@@ -117,7 +111,6 @@ export declare class DLM extends DLMClient {
117
111
  options: __HttpHandlerOptions,
118
112
  cb: (err: any, data?: TagResourceCommandOutput) => void
119
113
  ): void;
120
-
121
114
  untagResource(
122
115
  args: UntagResourceCommandInput,
123
116
  options?: __HttpHandlerOptions
@@ -131,7 +124,6 @@ export declare class DLM extends DLMClient {
131
124
  options: __HttpHandlerOptions,
132
125
  cb: (err: any, data?: UntagResourceCommandOutput) => void
133
126
  ): void;
134
-
135
127
  updateLifecyclePolicy(
136
128
  args: UpdateLifecyclePolicyCommandInput,
137
129
  options?: __HttpHandlerOptions
@@ -95,47 +95,26 @@ export declare type ServiceOutputTypes =
95
95
  export interface ClientDefaults
96
96
  extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
97
97
  requestHandler?: __HttpHandler;
98
-
99
98
  sha256?: __HashConstructor;
100
-
101
99
  urlParser?: __UrlParser;
102
-
103
100
  bodyLengthChecker?: __BodyLengthCalculator;
104
-
105
101
  streamCollector?: __StreamCollector;
106
-
107
102
  base64Decoder?: __Decoder;
108
-
109
103
  base64Encoder?: __Encoder;
110
-
111
104
  utf8Decoder?: __Decoder;
112
-
113
105
  utf8Encoder?: __Encoder;
114
-
115
106
  runtime?: string;
116
-
117
107
  disableHostPrefix?: boolean;
118
-
119
108
  maxAttempts?: number | __Provider<number>;
120
-
121
109
  retryMode?: string | __Provider<string>;
122
-
123
110
  logger?: __Logger;
124
-
125
111
  useDualstackEndpoint?: boolean | __Provider<boolean>;
126
-
127
112
  useFipsEndpoint?: boolean | __Provider<boolean>;
128
-
129
113
  serviceId?: string;
130
-
131
114
  region?: string | __Provider<string>;
132
-
133
115
  credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
134
-
135
116
  regionInfoProvider?: RegionInfoProvider;
136
-
137
117
  defaultUserAgentProvider?: Provider<__UserAgent>;
138
-
139
118
  defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
140
119
  }
141
120
  declare type DLMClientConfigType = Partial<
@@ -148,7 +127,6 @@ declare type DLMClientConfigType = Partial<
148
127
  HostHeaderInputConfig &
149
128
  AwsAuthInputConfig &
150
129
  UserAgentInputConfig;
151
-
152
130
  export interface DLMClientConfig extends DLMClientConfigType {}
153
131
  declare type DLMClientResolvedConfigType =
154
132
  __SmithyResolvedConfiguration<__HttpHandlerOptions> &
@@ -159,9 +137,7 @@ declare type DLMClientResolvedConfigType =
159
137
  HostHeaderResolvedConfig &
160
138
  AwsAuthResolvedConfig &
161
139
  UserAgentResolvedConfig;
162
-
163
140
  export interface DLMClientResolvedConfig extends DLMClientResolvedConfigType {}
164
-
165
141
  export declare class DLMClient extends __Client<
166
142
  __HttpHandlerOptions,
167
143
  ServiceInputTypes,
@@ -170,7 +146,6 @@ export declare class DLMClient extends __Client<
170
146
  > {
171
147
  readonly config: DLMClientResolvedConfig;
172
148
  constructor(configuration: DLMClientConfig);
173
-
174
149
  destroy(): void;
175
150
  }
176
151
  export {};
@@ -19,7 +19,6 @@ export interface CreateLifecyclePolicyCommandInput
19
19
  export interface CreateLifecyclePolicyCommandOutput
20
20
  extends CreateLifecyclePolicyResponse,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class CreateLifecyclePolicyCommand extends $Command<
24
23
  CreateLifecyclePolicyCommandInput,
25
24
  CreateLifecyclePolicyCommandOutput,
@@ -27,7 +26,6 @@ export declare class CreateLifecyclePolicyCommand extends $Command<
27
26
  > {
28
27
  readonly input: CreateLifecyclePolicyCommandInput;
29
28
  constructor(input: CreateLifecyclePolicyCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: DLMClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface DeleteLifecyclePolicyCommandInput
19
19
  export interface DeleteLifecyclePolicyCommandOutput
20
20
  extends DeleteLifecyclePolicyResponse,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class DeleteLifecyclePolicyCommand extends $Command<
24
23
  DeleteLifecyclePolicyCommandInput,
25
24
  DeleteLifecyclePolicyCommandOutput,
@@ -27,7 +26,6 @@ export declare class DeleteLifecyclePolicyCommand extends $Command<
27
26
  > {
28
27
  readonly input: DeleteLifecyclePolicyCommandInput;
29
28
  constructor(input: DeleteLifecyclePolicyCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: DLMClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface GetLifecyclePoliciesCommandInput
19
19
  export interface GetLifecyclePoliciesCommandOutput
20
20
  extends GetLifecyclePoliciesResponse,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class GetLifecyclePoliciesCommand extends $Command<
24
23
  GetLifecyclePoliciesCommandInput,
25
24
  GetLifecyclePoliciesCommandOutput,
@@ -27,7 +26,6 @@ export declare class GetLifecyclePoliciesCommand extends $Command<
27
26
  > {
28
27
  readonly input: GetLifecyclePoliciesCommandInput;
29
28
  constructor(input: GetLifecyclePoliciesCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: DLMClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface GetLifecyclePolicyCommandInput
19
19
  export interface GetLifecyclePolicyCommandOutput
20
20
  extends GetLifecyclePolicyResponse,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class GetLifecyclePolicyCommand extends $Command<
24
23
  GetLifecyclePolicyCommandInput,
25
24
  GetLifecyclePolicyCommandOutput,
@@ -27,7 +26,6 @@ export declare class GetLifecyclePolicyCommand extends $Command<
27
26
  > {
28
27
  readonly input: GetLifecyclePolicyCommandInput;
29
28
  constructor(input: GetLifecyclePolicyCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: DLMClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface ListTagsForResourceCommandInput
19
19
  export interface ListTagsForResourceCommandOutput
20
20
  extends ListTagsForResourceResponse,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class ListTagsForResourceCommand extends $Command<
24
23
  ListTagsForResourceCommandInput,
25
24
  ListTagsForResourceCommandOutput,
@@ -27,7 +26,6 @@ export declare class ListTagsForResourceCommand extends $Command<
27
26
  > {
28
27
  readonly input: ListTagsForResourceCommandInput;
29
28
  constructor(input: ListTagsForResourceCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: DLMClientResolvedConfig,
@@ -15,7 +15,6 @@ export interface TagResourceCommandInput extends TagResourceRequest {}
15
15
  export interface TagResourceCommandOutput
16
16
  extends TagResourceResponse,
17
17
  __MetadataBearer {}
18
-
19
18
  export declare class TagResourceCommand extends $Command<
20
19
  TagResourceCommandInput,
21
20
  TagResourceCommandOutput,
@@ -23,7 +22,6 @@ export declare class TagResourceCommand extends $Command<
23
22
  > {
24
23
  readonly input: TagResourceCommandInput;
25
24
  constructor(input: TagResourceCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: DLMClientResolvedConfig,
@@ -18,7 +18,6 @@ export interface UntagResourceCommandInput extends UntagResourceRequest {}
18
18
  export interface UntagResourceCommandOutput
19
19
  extends UntagResourceResponse,
20
20
  __MetadataBearer {}
21
-
22
21
  export declare class UntagResourceCommand extends $Command<
23
22
  UntagResourceCommandInput,
24
23
  UntagResourceCommandOutput,
@@ -26,7 +25,6 @@ export declare class UntagResourceCommand extends $Command<
26
25
  > {
27
26
  readonly input: UntagResourceCommandInput;
28
27
  constructor(input: UntagResourceCommandInput);
29
-
30
28
  resolveMiddleware(
31
29
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
30
  configuration: DLMClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface UpdateLifecyclePolicyCommandInput
19
19
  export interface UpdateLifecyclePolicyCommandOutput
20
20
  extends UpdateLifecyclePolicyResponse,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class UpdateLifecyclePolicyCommand extends $Command<
24
23
  UpdateLifecyclePolicyCommandInput,
25
24
  UpdateLifecyclePolicyCommandOutput,
@@ -27,7 +26,6 @@ export declare class UpdateLifecyclePolicyCommand extends $Command<
27
26
  > {
28
27
  readonly input: UpdateLifecyclePolicyCommandInput;
29
28
  constructor(input: UpdateLifecyclePolicyCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: DLMClientResolvedConfig,
@@ -2,7 +2,6 @@ import {
2
2
  ServiceException as __ServiceException,
3
3
  ServiceExceptionOptions as __ServiceExceptionOptions,
4
4
  } from "@aws-sdk/smithy-client";
5
-
6
5
  export declare class DLMServiceException extends __ServiceException {
7
6
  constructor(options: __ServiceExceptionOptions);
8
7
  }
@@ -1,9 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { DLMServiceException as __BaseException } from "./DLMServiceException";
3
-
4
3
  export interface EncryptionConfiguration {
5
4
  Encrypted: boolean | undefined;
6
-
7
5
  CmkArn?: string;
8
6
  }
9
7
  export declare enum RetentionIntervalUnitValues {
@@ -12,58 +10,41 @@ export declare enum RetentionIntervalUnitValues {
12
10
  WEEKS = "WEEKS",
13
11
  YEARS = "YEARS",
14
12
  }
15
-
16
13
  export interface CrossRegionCopyRetainRule {
17
14
  Interval?: number;
18
-
19
15
  IntervalUnit?: RetentionIntervalUnitValues | string;
20
16
  }
21
-
22
17
  export interface CrossRegionCopyAction {
23
18
  Target: string | undefined;
24
-
25
19
  EncryptionConfiguration: EncryptionConfiguration | undefined;
26
-
27
20
  RetainRule?: CrossRegionCopyRetainRule;
28
21
  }
29
-
30
22
  export interface Action {
31
23
  Name: string | undefined;
32
-
33
24
  CrossRegionCopy: CrossRegionCopyAction[] | undefined;
34
25
  }
35
26
  export declare enum EventTypeValues {
36
27
  SHARE_SNAPSHOT = "shareSnapshot",
37
28
  }
38
-
39
29
  export interface EventParameters {
40
30
  EventType: EventTypeValues | string | undefined;
41
-
42
31
  SnapshotOwner: string[] | undefined;
43
-
44
32
  DescriptionRegex: string | undefined;
45
33
  }
46
34
  export declare enum EventSourceValues {
47
35
  MANAGED_CWE = "MANAGED_CWE",
48
36
  }
49
-
50
37
  export interface EventSource {
51
38
  Type: EventSourceValues | string | undefined;
52
-
53
39
  Parameters?: EventParameters;
54
40
  }
55
-
56
41
  export interface Tag {
57
42
  Key: string | undefined;
58
-
59
43
  Value: string | undefined;
60
44
  }
61
-
62
45
  export interface _Parameters {
63
46
  ExcludeBootVolume?: boolean;
64
-
65
47
  NoReboot?: boolean;
66
-
67
48
  ExcludeDataVolumeTags?: Tag[];
68
49
  }
69
50
  export declare enum PolicyTypeValues {
@@ -86,112 +67,67 @@ export declare enum LocationValues {
86
67
  CLOUD = "CLOUD",
87
68
  OUTPOST_LOCAL = "OUTPOST_LOCAL",
88
69
  }
89
-
90
70
  export interface CreateRule {
91
71
  Location?: LocationValues | string;
92
-
93
72
  Interval?: number;
94
-
95
73
  IntervalUnit?: IntervalUnitValues | string;
96
-
97
74
  Times?: string[];
98
-
99
75
  CronExpression?: string;
100
76
  }
101
-
102
77
  export interface CrossRegionCopyDeprecateRule {
103
78
  Interval?: number;
104
-
105
79
  IntervalUnit?: RetentionIntervalUnitValues | string;
106
80
  }
107
-
108
81
  export interface CrossRegionCopyRule {
109
82
  TargetRegion?: string;
110
-
111
83
  Target?: string;
112
-
113
84
  Encrypted: boolean | undefined;
114
-
115
85
  CmkArn?: string;
116
-
117
86
  CopyTags?: boolean;
118
-
119
87
  RetainRule?: CrossRegionCopyRetainRule;
120
-
121
88
  DeprecateRule?: CrossRegionCopyDeprecateRule;
122
89
  }
123
-
124
90
  export interface DeprecateRule {
125
91
  Count?: number;
126
-
127
92
  Interval?: number;
128
-
129
93
  IntervalUnit?: RetentionIntervalUnitValues | string;
130
94
  }
131
-
132
95
  export interface FastRestoreRule {
133
96
  Count?: number;
134
-
135
97
  Interval?: number;
136
-
137
98
  IntervalUnit?: RetentionIntervalUnitValues | string;
138
-
139
99
  AvailabilityZones: string[] | undefined;
140
100
  }
141
-
142
101
  export interface RetainRule {
143
102
  Count?: number;
144
-
145
103
  Interval?: number;
146
-
147
104
  IntervalUnit?: RetentionIntervalUnitValues | string;
148
105
  }
149
-
150
106
  export interface ShareRule {
151
107
  TargetAccounts: string[] | undefined;
152
-
153
108
  UnshareInterval?: number;
154
-
155
109
  UnshareIntervalUnit?: RetentionIntervalUnitValues | string;
156
110
  }
157
-
158
111
  export interface Schedule {
159
112
  Name?: string;
160
-
161
113
  CopyTags?: boolean;
162
-
163
114
  TagsToAdd?: Tag[];
164
-
165
115
  VariableTags?: Tag[];
166
-
167
116
  CreateRule?: CreateRule;
168
-
169
117
  RetainRule?: RetainRule;
170
-
171
118
  FastRestoreRule?: FastRestoreRule;
172
-
173
119
  CrossRegionCopyRules?: CrossRegionCopyRule[];
174
-
175
120
  ShareRules?: ShareRule[];
176
-
177
121
  DeprecateRule?: DeprecateRule;
178
122
  }
179
-
180
123
  export interface PolicyDetails {
181
124
  PolicyType?: PolicyTypeValues | string;
182
-
183
125
  ResourceTypes?: (ResourceTypeValues | string)[];
184
-
185
126
  ResourceLocations?: (ResourceLocationValues | string)[];
186
-
187
127
  TargetTags?: Tag[];
188
-
189
128
  Schedules?: Schedule[];
190
-
191
129
  Parameters?: _Parameters;
192
-
193
130
  EventSource?: EventSource;
194
-
195
131
  Actions?: Action[];
196
132
  }
197
133
  export declare enum SettablePolicyStateValues {
@@ -200,53 +136,40 @@ export declare enum SettablePolicyStateValues {
200
136
  }
201
137
  export interface CreateLifecyclePolicyRequest {
202
138
  ExecutionRoleArn: string | undefined;
203
-
204
139
  Description: string | undefined;
205
-
206
140
  State: SettablePolicyStateValues | string | undefined;
207
-
208
141
  PolicyDetails: PolicyDetails | undefined;
209
-
210
142
  Tags?: Record<string, string>;
211
143
  }
212
144
  export interface CreateLifecyclePolicyResponse {
213
145
  PolicyId?: string;
214
146
  }
215
-
216
147
  export declare class InternalServerException extends __BaseException {
217
148
  readonly name: "InternalServerException";
218
149
  readonly $fault: "server";
219
150
  Message?: string;
220
151
  Code?: string;
221
-
222
152
  constructor(
223
153
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
224
154
  );
225
155
  }
226
-
227
156
  export declare class InvalidRequestException extends __BaseException {
228
157
  readonly name: "InvalidRequestException";
229
158
  readonly $fault: "client";
230
159
  Message?: string;
231
160
  Code?: string;
232
-
233
161
  RequiredParameters?: string[];
234
-
235
162
  MutuallyExclusiveParameters?: string[];
236
-
237
163
  constructor(
238
164
  opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
239
165
  );
240
166
  }
241
-
242
167
  export declare class LimitExceededException extends __BaseException {
243
168
  readonly name: "LimitExceededException";
244
169
  readonly $fault: "client";
245
170
  Message?: string;
246
171
  Code?: string;
247
-
248
172
  ResourceType?: string;
249
-
250
173
  constructor(
251
174
  opts: __ExceptionOptionType<LimitExceededException, __BaseException>
252
175
  );
@@ -255,17 +178,13 @@ export interface DeleteLifecyclePolicyRequest {
255
178
  PolicyId: string | undefined;
256
179
  }
257
180
  export interface DeleteLifecyclePolicyResponse {}
258
-
259
181
  export declare class ResourceNotFoundException extends __BaseException {
260
182
  readonly name: "ResourceNotFoundException";
261
183
  readonly $fault: "client";
262
184
  Message?: string;
263
185
  Code?: string;
264
-
265
186
  ResourceType?: string;
266
-
267
187
  ResourceIds?: string[];
268
-
269
188
  constructor(
270
189
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
271
190
  );
@@ -277,25 +196,16 @@ export declare enum GettablePolicyStateValues {
277
196
  }
278
197
  export interface GetLifecyclePoliciesRequest {
279
198
  PolicyIds?: string[];
280
-
281
199
  State?: GettablePolicyStateValues | string;
282
-
283
200
  ResourceTypes?: (ResourceTypeValues | string)[];
284
-
285
201
  TargetTags?: string[];
286
-
287
202
  TagsToAdd?: string[];
288
203
  }
289
-
290
204
  export interface LifecyclePolicySummary {
291
205
  PolicyId?: string;
292
-
293
206
  Description?: string;
294
-
295
207
  State?: GettablePolicyStateValues | string;
296
-
297
208
  Tags?: Record<string, string>;
298
-
299
209
  PolicyType?: PolicyTypeValues | string;
300
210
  }
301
211
  export interface GetLifecyclePoliciesResponse {
@@ -304,26 +214,16 @@ export interface GetLifecyclePoliciesResponse {
304
214
  export interface GetLifecyclePolicyRequest {
305
215
  PolicyId: string | undefined;
306
216
  }
307
-
308
217
  export interface LifecyclePolicy {
309
218
  PolicyId?: string;
310
-
311
219
  Description?: string;
312
-
313
220
  State?: GettablePolicyStateValues | string;
314
-
315
221
  StatusMessage?: string;
316
-
317
222
  ExecutionRoleArn?: string;
318
-
319
223
  DateCreated?: Date;
320
-
321
224
  DateModified?: Date;
322
-
323
225
  PolicyDetails?: PolicyDetails;
324
-
325
226
  Tags?: Record<string, string>;
326
-
327
227
  PolicyArn?: string;
328
228
  }
329
229
  export interface GetLifecyclePolicyResponse {
@@ -337,149 +237,108 @@ export interface ListTagsForResourceResponse {
337
237
  }
338
238
  export interface TagResourceRequest {
339
239
  ResourceArn: string | undefined;
340
-
341
240
  Tags: Record<string, string> | undefined;
342
241
  }
343
242
  export interface TagResourceResponse {}
344
243
  export interface UntagResourceRequest {
345
244
  ResourceArn: string | undefined;
346
-
347
245
  TagKeys: string[] | undefined;
348
246
  }
349
247
  export interface UntagResourceResponse {}
350
248
  export interface UpdateLifecyclePolicyRequest {
351
249
  PolicyId: string | undefined;
352
-
353
250
  ExecutionRoleArn?: string;
354
-
355
251
  State?: SettablePolicyStateValues | string;
356
-
357
252
  Description?: string;
358
-
359
253
  PolicyDetails?: PolicyDetails;
360
254
  }
361
255
  export interface UpdateLifecyclePolicyResponse {}
362
-
363
256
  export declare const EncryptionConfigurationFilterSensitiveLog: (
364
257
  obj: EncryptionConfiguration
365
258
  ) => any;
366
-
367
259
  export declare const CrossRegionCopyRetainRuleFilterSensitiveLog: (
368
260
  obj: CrossRegionCopyRetainRule
369
261
  ) => any;
370
-
371
262
  export declare const CrossRegionCopyActionFilterSensitiveLog: (
372
263
  obj: CrossRegionCopyAction
373
264
  ) => any;
374
-
375
265
  export declare const ActionFilterSensitiveLog: (obj: Action) => any;
376
-
377
266
  export declare const EventParametersFilterSensitiveLog: (
378
267
  obj: EventParameters
379
268
  ) => any;
380
-
381
269
  export declare const EventSourceFilterSensitiveLog: (obj: EventSource) => any;
382
-
383
270
  export declare const TagFilterSensitiveLog: (obj: Tag) => any;
384
-
385
271
  export declare const _ParametersFilterSensitiveLog: (obj: _Parameters) => any;
386
-
387
272
  export declare const CreateRuleFilterSensitiveLog: (obj: CreateRule) => any;
388
-
389
273
  export declare const CrossRegionCopyDeprecateRuleFilterSensitiveLog: (
390
274
  obj: CrossRegionCopyDeprecateRule
391
275
  ) => any;
392
-
393
276
  export declare const CrossRegionCopyRuleFilterSensitiveLog: (
394
277
  obj: CrossRegionCopyRule
395
278
  ) => any;
396
-
397
279
  export declare const DeprecateRuleFilterSensitiveLog: (
398
280
  obj: DeprecateRule
399
281
  ) => any;
400
-
401
282
  export declare const FastRestoreRuleFilterSensitiveLog: (
402
283
  obj: FastRestoreRule
403
284
  ) => any;
404
-
405
285
  export declare const RetainRuleFilterSensitiveLog: (obj: RetainRule) => any;
406
-
407
286
  export declare const ShareRuleFilterSensitiveLog: (obj: ShareRule) => any;
408
-
409
287
  export declare const ScheduleFilterSensitiveLog: (obj: Schedule) => any;
410
-
411
288
  export declare const PolicyDetailsFilterSensitiveLog: (
412
289
  obj: PolicyDetails
413
290
  ) => any;
414
-
415
291
  export declare const CreateLifecyclePolicyRequestFilterSensitiveLog: (
416
292
  obj: CreateLifecyclePolicyRequest
417
293
  ) => any;
418
-
419
294
  export declare const CreateLifecyclePolicyResponseFilterSensitiveLog: (
420
295
  obj: CreateLifecyclePolicyResponse
421
296
  ) => any;
422
-
423
297
  export declare const DeleteLifecyclePolicyRequestFilterSensitiveLog: (
424
298
  obj: DeleteLifecyclePolicyRequest
425
299
  ) => any;
426
-
427
300
  export declare const DeleteLifecyclePolicyResponseFilterSensitiveLog: (
428
301
  obj: DeleteLifecyclePolicyResponse
429
302
  ) => any;
430
-
431
303
  export declare const GetLifecyclePoliciesRequestFilterSensitiveLog: (
432
304
  obj: GetLifecyclePoliciesRequest
433
305
  ) => any;
434
-
435
306
  export declare const LifecyclePolicySummaryFilterSensitiveLog: (
436
307
  obj: LifecyclePolicySummary
437
308
  ) => any;
438
-
439
309
  export declare const GetLifecyclePoliciesResponseFilterSensitiveLog: (
440
310
  obj: GetLifecyclePoliciesResponse
441
311
  ) => any;
442
-
443
312
  export declare const GetLifecyclePolicyRequestFilterSensitiveLog: (
444
313
  obj: GetLifecyclePolicyRequest
445
314
  ) => any;
446
-
447
315
  export declare const LifecyclePolicyFilterSensitiveLog: (
448
316
  obj: LifecyclePolicy
449
317
  ) => any;
450
-
451
318
  export declare const GetLifecyclePolicyResponseFilterSensitiveLog: (
452
319
  obj: GetLifecyclePolicyResponse
453
320
  ) => any;
454
-
455
321
  export declare const ListTagsForResourceRequestFilterSensitiveLog: (
456
322
  obj: ListTagsForResourceRequest
457
323
  ) => any;
458
-
459
324
  export declare const ListTagsForResourceResponseFilterSensitiveLog: (
460
325
  obj: ListTagsForResourceResponse
461
326
  ) => any;
462
-
463
327
  export declare const TagResourceRequestFilterSensitiveLog: (
464
328
  obj: TagResourceRequest
465
329
  ) => any;
466
-
467
330
  export declare const TagResourceResponseFilterSensitiveLog: (
468
331
  obj: TagResourceResponse
469
332
  ) => any;
470
-
471
333
  export declare const UntagResourceRequestFilterSensitiveLog: (
472
334
  obj: UntagResourceRequest
473
335
  ) => any;
474
-
475
336
  export declare const UntagResourceResponseFilterSensitiveLog: (
476
337
  obj: UntagResourceResponse
477
338
  ) => any;
478
-
479
339
  export declare const UpdateLifecyclePolicyRequestFilterSensitiveLog: (
480
340
  obj: UpdateLifecyclePolicyRequest
481
341
  ) => any;
482
-
483
342
  export declare const UpdateLifecyclePolicyResponseFilterSensitiveLog: (
484
343
  obj: UpdateLifecyclePolicyResponse
485
344
  ) => any;
@@ -1,6 +1,5 @@
1
1
  import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
2
  import { DLMClientConfig } from "./DLMClient";
3
-
4
3
  export declare const getRuntimeConfig: (config: DLMClientConfig) => {
5
4
  runtime: string;
6
5
  defaultsMode: import("@aws-sdk/types").Provider<
@@ -1,6 +1,5 @@
1
1
  import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
2
  import { DLMClientConfig } from "./DLMClient";
3
-
4
3
  export declare const getRuntimeConfig: (config: DLMClientConfig) => {
5
4
  runtime: string;
6
5
  defaultsMode: import("@aws-sdk/types").Provider<
@@ -1,5 +1,4 @@
1
1
  import { DLMClientConfig } from "./DLMClient";
2
-
3
2
  export declare const getRuntimeConfig: (config: DLMClientConfig) => {
4
3
  runtime: string;
5
4
  sha256: import("@aws-sdk/types").HashConstructor;
@@ -1,6 +1,5 @@
1
1
  import { Logger as __Logger } from "@aws-sdk/types";
2
2
  import { DLMClientConfig } from "./DLMClient";
3
-
4
3
  export declare const getRuntimeConfig: (config: DLMClientConfig) => {
5
4
  apiVersion: string;
6
5
  disableHostPrefix: boolean;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-dlm",
3
3
  "description": "AWS SDK for JavaScript Dlm Client for Node.js, Browser and React Native",
4
- "version": "3.170.0",
4
+ "version": "3.171.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -19,35 +19,35 @@
19
19
  "dependencies": {
20
20
  "@aws-crypto/sha256-browser": "2.0.0",
21
21
  "@aws-crypto/sha256-js": "2.0.0",
22
- "@aws-sdk/client-sts": "3.170.0",
23
- "@aws-sdk/config-resolver": "3.170.0",
24
- "@aws-sdk/credential-provider-node": "3.170.0",
25
- "@aws-sdk/fetch-http-handler": "3.170.0",
26
- "@aws-sdk/hash-node": "3.170.0",
27
- "@aws-sdk/invalid-dependency": "3.170.0",
28
- "@aws-sdk/middleware-content-length": "3.170.0",
29
- "@aws-sdk/middleware-host-header": "3.170.0",
30
- "@aws-sdk/middleware-logger": "3.170.0",
31
- "@aws-sdk/middleware-recursion-detection": "3.170.0",
32
- "@aws-sdk/middleware-retry": "3.170.0",
33
- "@aws-sdk/middleware-serde": "3.170.0",
34
- "@aws-sdk/middleware-signing": "3.170.0",
35
- "@aws-sdk/middleware-stack": "3.170.0",
36
- "@aws-sdk/middleware-user-agent": "3.170.0",
37
- "@aws-sdk/node-config-provider": "3.170.0",
38
- "@aws-sdk/node-http-handler": "3.170.0",
39
- "@aws-sdk/protocol-http": "3.170.0",
40
- "@aws-sdk/smithy-client": "3.170.0",
41
- "@aws-sdk/types": "3.170.0",
42
- "@aws-sdk/url-parser": "3.170.0",
22
+ "@aws-sdk/client-sts": "3.171.0",
23
+ "@aws-sdk/config-resolver": "3.171.0",
24
+ "@aws-sdk/credential-provider-node": "3.171.0",
25
+ "@aws-sdk/fetch-http-handler": "3.171.0",
26
+ "@aws-sdk/hash-node": "3.171.0",
27
+ "@aws-sdk/invalid-dependency": "3.171.0",
28
+ "@aws-sdk/middleware-content-length": "3.171.0",
29
+ "@aws-sdk/middleware-host-header": "3.171.0",
30
+ "@aws-sdk/middleware-logger": "3.171.0",
31
+ "@aws-sdk/middleware-recursion-detection": "3.171.0",
32
+ "@aws-sdk/middleware-retry": "3.171.0",
33
+ "@aws-sdk/middleware-serde": "3.171.0",
34
+ "@aws-sdk/middleware-signing": "3.171.0",
35
+ "@aws-sdk/middleware-stack": "3.171.0",
36
+ "@aws-sdk/middleware-user-agent": "3.171.0",
37
+ "@aws-sdk/node-config-provider": "3.171.0",
38
+ "@aws-sdk/node-http-handler": "3.171.0",
39
+ "@aws-sdk/protocol-http": "3.171.0",
40
+ "@aws-sdk/smithy-client": "3.171.0",
41
+ "@aws-sdk/types": "3.171.0",
42
+ "@aws-sdk/url-parser": "3.171.0",
43
43
  "@aws-sdk/util-base64-browser": "3.170.0",
44
44
  "@aws-sdk/util-base64-node": "3.170.0",
45
45
  "@aws-sdk/util-body-length-browser": "3.170.0",
46
46
  "@aws-sdk/util-body-length-node": "3.170.0",
47
- "@aws-sdk/util-defaults-mode-browser": "3.170.0",
48
- "@aws-sdk/util-defaults-mode-node": "3.170.0",
49
- "@aws-sdk/util-user-agent-browser": "3.170.0",
50
- "@aws-sdk/util-user-agent-node": "3.170.0",
47
+ "@aws-sdk/util-defaults-mode-browser": "3.171.0",
48
+ "@aws-sdk/util-defaults-mode-node": "3.171.0",
49
+ "@aws-sdk/util-user-agent-browser": "3.171.0",
50
+ "@aws-sdk/util-user-agent-node": "3.171.0",
51
51
  "@aws-sdk/util-utf8-browser": "3.170.0",
52
52
  "@aws-sdk/util-utf8-node": "3.170.0",
53
53
  "tslib": "^2.3.1"