@aws-sdk/client-datasync 3.370.0 → 3.377.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/README.md +24 -0
- package/dist-cjs/DataSync.js +6 -0
- package/dist-cjs/commands/CreateLocationAzureBlobCommand.js +47 -0
- package/dist-cjs/commands/DescribeLocationAzureBlobCommand.js +46 -0
- package/dist-cjs/commands/UpdateLocationAzureBlobCommand.js +47 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/models/models_0.js +28 -2
- package/dist-cjs/protocols/Aws_json1_1.js +143 -3
- package/dist-es/DataSync.js +6 -0
- package/dist-es/commands/CreateLocationAzureBlobCommand.js +43 -0
- package/dist-es/commands/DescribeLocationAzureBlobCommand.js +42 -0
- package/dist-es/commands/UpdateLocationAzureBlobCommand.js +43 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +23 -0
- package/dist-es/protocols/Aws_json1_1.js +134 -0
- package/dist-types/DataSync.d.ts +21 -0
- package/dist-types/DataSyncClient.d.ts +5 -2
- package/dist-types/commands/CreateLocationAzureBlobCommand.d.ts +98 -0
- package/dist-types/commands/CreateLocationNfsCommand.d.ts +2 -2
- package/dist-types/commands/CreateLocationSmbCommand.d.ts +3 -1
- package/dist-types/commands/DescribeLocationAzureBlobCommand.d.ts +88 -0
- package/dist-types/commands/DescribeTaskCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTaskExecutionCommand.d.ts +2 -1
- package/dist-types/commands/UpdateLocationAzureBlobCommand.d.ts +88 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +240 -45
- package/dist-types/protocols/Aws_json1_1.d.ts +27 -0
- package/dist-types/ts3.4/DataSync.d.ts +51 -0
- package/dist-types/ts3.4/DataSyncClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/CreateLocationAzureBlobCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeLocationAzureBlobCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateLocationAzureBlobCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +63 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +36 -0
- package/package.json +2 -2
|
@@ -56,6 +56,10 @@ import {
|
|
|
56
56
|
CreateAgentCommandInput,
|
|
57
57
|
CreateAgentCommandOutput,
|
|
58
58
|
} from "./commands/CreateAgentCommand";
|
|
59
|
+
import {
|
|
60
|
+
CreateLocationAzureBlobCommandInput,
|
|
61
|
+
CreateLocationAzureBlobCommandOutput,
|
|
62
|
+
} from "./commands/CreateLocationAzureBlobCommand";
|
|
59
63
|
import {
|
|
60
64
|
CreateLocationEfsCommandInput,
|
|
61
65
|
CreateLocationEfsCommandOutput,
|
|
@@ -120,6 +124,10 @@ import {
|
|
|
120
124
|
DescribeDiscoveryJobCommandInput,
|
|
121
125
|
DescribeDiscoveryJobCommandOutput,
|
|
122
126
|
} from "./commands/DescribeDiscoveryJobCommand";
|
|
127
|
+
import {
|
|
128
|
+
DescribeLocationAzureBlobCommandInput,
|
|
129
|
+
DescribeLocationAzureBlobCommandOutput,
|
|
130
|
+
} from "./commands/DescribeLocationAzureBlobCommand";
|
|
123
131
|
import {
|
|
124
132
|
DescribeLocationEfsCommandInput,
|
|
125
133
|
DescribeLocationEfsCommandOutput,
|
|
@@ -244,6 +252,10 @@ import {
|
|
|
244
252
|
UpdateDiscoveryJobCommandInput,
|
|
245
253
|
UpdateDiscoveryJobCommandOutput,
|
|
246
254
|
} from "./commands/UpdateDiscoveryJobCommand";
|
|
255
|
+
import {
|
|
256
|
+
UpdateLocationAzureBlobCommandInput,
|
|
257
|
+
UpdateLocationAzureBlobCommandOutput,
|
|
258
|
+
} from "./commands/UpdateLocationAzureBlobCommand";
|
|
247
259
|
import {
|
|
248
260
|
UpdateLocationHdfsCommandInput,
|
|
249
261
|
UpdateLocationHdfsCommandOutput,
|
|
@@ -282,6 +294,7 @@ export type ServiceInputTypes =
|
|
|
282
294
|
| AddStorageSystemCommandInput
|
|
283
295
|
| CancelTaskExecutionCommandInput
|
|
284
296
|
| CreateAgentCommandInput
|
|
297
|
+
| CreateLocationAzureBlobCommandInput
|
|
285
298
|
| CreateLocationEfsCommandInput
|
|
286
299
|
| CreateLocationFsxLustreCommandInput
|
|
287
300
|
| CreateLocationFsxOntapCommandInput
|
|
@@ -298,6 +311,7 @@ export type ServiceInputTypes =
|
|
|
298
311
|
| DeleteTaskCommandInput
|
|
299
312
|
| DescribeAgentCommandInput
|
|
300
313
|
| DescribeDiscoveryJobCommandInput
|
|
314
|
+
| DescribeLocationAzureBlobCommandInput
|
|
301
315
|
| DescribeLocationEfsCommandInput
|
|
302
316
|
| DescribeLocationFsxLustreCommandInput
|
|
303
317
|
| DescribeLocationFsxOntapCommandInput
|
|
@@ -329,6 +343,7 @@ export type ServiceInputTypes =
|
|
|
329
343
|
| UntagResourceCommandInput
|
|
330
344
|
| UpdateAgentCommandInput
|
|
331
345
|
| UpdateDiscoveryJobCommandInput
|
|
346
|
+
| UpdateLocationAzureBlobCommandInput
|
|
332
347
|
| UpdateLocationHdfsCommandInput
|
|
333
348
|
| UpdateLocationNfsCommandInput
|
|
334
349
|
| UpdateLocationObjectStorageCommandInput
|
|
@@ -340,6 +355,7 @@ export type ServiceOutputTypes =
|
|
|
340
355
|
| AddStorageSystemCommandOutput
|
|
341
356
|
| CancelTaskExecutionCommandOutput
|
|
342
357
|
| CreateAgentCommandOutput
|
|
358
|
+
| CreateLocationAzureBlobCommandOutput
|
|
343
359
|
| CreateLocationEfsCommandOutput
|
|
344
360
|
| CreateLocationFsxLustreCommandOutput
|
|
345
361
|
| CreateLocationFsxOntapCommandOutput
|
|
@@ -356,6 +372,7 @@ export type ServiceOutputTypes =
|
|
|
356
372
|
| DeleteTaskCommandOutput
|
|
357
373
|
| DescribeAgentCommandOutput
|
|
358
374
|
| DescribeDiscoveryJobCommandOutput
|
|
375
|
+
| DescribeLocationAzureBlobCommandOutput
|
|
359
376
|
| DescribeLocationEfsCommandOutput
|
|
360
377
|
| DescribeLocationFsxLustreCommandOutput
|
|
361
378
|
| DescribeLocationFsxOntapCommandOutput
|
|
@@ -387,6 +404,7 @@ export type ServiceOutputTypes =
|
|
|
387
404
|
| UntagResourceCommandOutput
|
|
388
405
|
| UpdateAgentCommandOutput
|
|
389
406
|
| UpdateDiscoveryJobCommandOutput
|
|
407
|
+
| UpdateLocationAzureBlobCommandOutput
|
|
390
408
|
| UpdateLocationHdfsCommandOutput
|
|
391
409
|
| UpdateLocationNfsCommandOutput
|
|
392
410
|
| UpdateLocationObjectStorageCommandOutput
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
DataSyncClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../DataSyncClient";
|
|
14
|
+
import {
|
|
15
|
+
CreateLocationAzureBlobRequest,
|
|
16
|
+
CreateLocationAzureBlobResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface CreateLocationAzureBlobCommandInput
|
|
20
|
+
extends CreateLocationAzureBlobRequest {}
|
|
21
|
+
export interface CreateLocationAzureBlobCommandOutput
|
|
22
|
+
extends CreateLocationAzureBlobResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class CreateLocationAzureBlobCommand extends $Command<
|
|
25
|
+
CreateLocationAzureBlobCommandInput,
|
|
26
|
+
CreateLocationAzureBlobCommandOutput,
|
|
27
|
+
DataSyncClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: CreateLocationAzureBlobCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: CreateLocationAzureBlobCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: DataSyncClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
CreateLocationAzureBlobCommandInput,
|
|
38
|
+
CreateLocationAzureBlobCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
DataSyncClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../DataSyncClient";
|
|
14
|
+
import {
|
|
15
|
+
DescribeLocationAzureBlobRequest,
|
|
16
|
+
DescribeLocationAzureBlobResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface DescribeLocationAzureBlobCommandInput
|
|
20
|
+
extends DescribeLocationAzureBlobRequest {}
|
|
21
|
+
export interface DescribeLocationAzureBlobCommandOutput
|
|
22
|
+
extends DescribeLocationAzureBlobResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class DescribeLocationAzureBlobCommand extends $Command<
|
|
25
|
+
DescribeLocationAzureBlobCommandInput,
|
|
26
|
+
DescribeLocationAzureBlobCommandOutput,
|
|
27
|
+
DataSyncClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: DescribeLocationAzureBlobCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: DescribeLocationAzureBlobCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: DataSyncClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
DescribeLocationAzureBlobCommandInput,
|
|
38
|
+
DescribeLocationAzureBlobCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
DataSyncClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../DataSyncClient";
|
|
14
|
+
import {
|
|
15
|
+
UpdateLocationAzureBlobRequest,
|
|
16
|
+
UpdateLocationAzureBlobResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface UpdateLocationAzureBlobCommandInput
|
|
20
|
+
extends UpdateLocationAzureBlobRequest {}
|
|
21
|
+
export interface UpdateLocationAzureBlobCommandOutput
|
|
22
|
+
extends UpdateLocationAzureBlobResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class UpdateLocationAzureBlobCommand extends $Command<
|
|
25
|
+
UpdateLocationAzureBlobCommandInput,
|
|
26
|
+
UpdateLocationAzureBlobCommandOutput,
|
|
27
|
+
DataSyncClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: UpdateLocationAzureBlobCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: UpdateLocationAzureBlobCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: DataSyncClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
UpdateLocationAzureBlobCommandInput,
|
|
38
|
+
UpdateLocationAzureBlobCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./AddStorageSystemCommand";
|
|
2
2
|
export * from "./CancelTaskExecutionCommand";
|
|
3
3
|
export * from "./CreateAgentCommand";
|
|
4
|
+
export * from "./CreateLocationAzureBlobCommand";
|
|
4
5
|
export * from "./CreateLocationEfsCommand";
|
|
5
6
|
export * from "./CreateLocationFsxLustreCommand";
|
|
6
7
|
export * from "./CreateLocationFsxOntapCommand";
|
|
@@ -17,6 +18,7 @@ export * from "./DeleteLocationCommand";
|
|
|
17
18
|
export * from "./DeleteTaskCommand";
|
|
18
19
|
export * from "./DescribeAgentCommand";
|
|
19
20
|
export * from "./DescribeDiscoveryJobCommand";
|
|
21
|
+
export * from "./DescribeLocationAzureBlobCommand";
|
|
20
22
|
export * from "./DescribeLocationEfsCommand";
|
|
21
23
|
export * from "./DescribeLocationFsxLustreCommand";
|
|
22
24
|
export * from "./DescribeLocationFsxOntapCommand";
|
|
@@ -48,6 +50,7 @@ export * from "./TagResourceCommand";
|
|
|
48
50
|
export * from "./UntagResourceCommand";
|
|
49
51
|
export * from "./UpdateAgentCommand";
|
|
50
52
|
export * from "./UpdateDiscoveryJobCommand";
|
|
53
|
+
export * from "./UpdateLocationAzureBlobCommand";
|
|
51
54
|
export * from "./UpdateLocationHdfsCommand";
|
|
52
55
|
export * from "./UpdateLocationNfsCommand";
|
|
53
56
|
export * from "./UpdateLocationObjectStorageCommand";
|
|
@@ -60,6 +60,25 @@ export declare const Atime: {
|
|
|
60
60
|
readonly NONE: "NONE";
|
|
61
61
|
};
|
|
62
62
|
export type Atime = (typeof Atime)[keyof typeof Atime];
|
|
63
|
+
export declare const AzureAccessTier: {
|
|
64
|
+
readonly ARCHIVE: "ARCHIVE";
|
|
65
|
+
readonly COOL: "COOL";
|
|
66
|
+
readonly HOT: "HOT";
|
|
67
|
+
};
|
|
68
|
+
export type AzureAccessTier =
|
|
69
|
+
(typeof AzureAccessTier)[keyof typeof AzureAccessTier];
|
|
70
|
+
export declare const AzureBlobAuthenticationType: {
|
|
71
|
+
readonly SAS: "SAS";
|
|
72
|
+
};
|
|
73
|
+
export type AzureBlobAuthenticationType =
|
|
74
|
+
(typeof AzureBlobAuthenticationType)[keyof typeof AzureBlobAuthenticationType];
|
|
75
|
+
export interface AzureBlobSasConfiguration {
|
|
76
|
+
Token: string | undefined;
|
|
77
|
+
}
|
|
78
|
+
export declare const AzureBlobType: {
|
|
79
|
+
readonly BLOCK: "BLOCK";
|
|
80
|
+
};
|
|
81
|
+
export type AzureBlobType = (typeof AzureBlobType)[keyof typeof AzureBlobType];
|
|
63
82
|
export interface CancelTaskExecutionRequest {
|
|
64
83
|
TaskExecutionArn: string | undefined;
|
|
65
84
|
}
|
|
@@ -80,6 +99,19 @@ export interface CreateAgentRequest {
|
|
|
80
99
|
export interface CreateAgentResponse {
|
|
81
100
|
AgentArn?: string;
|
|
82
101
|
}
|
|
102
|
+
export interface CreateLocationAzureBlobRequest {
|
|
103
|
+
ContainerUrl: string | undefined;
|
|
104
|
+
AuthenticationType: AzureBlobAuthenticationType | string | undefined;
|
|
105
|
+
SasConfiguration?: AzureBlobSasConfiguration;
|
|
106
|
+
BlobType?: AzureBlobType | string;
|
|
107
|
+
AccessTier?: AzureAccessTier | string;
|
|
108
|
+
Subdirectory?: string;
|
|
109
|
+
AgentArns: string[] | undefined;
|
|
110
|
+
Tags?: TagListEntry[];
|
|
111
|
+
}
|
|
112
|
+
export interface CreateLocationAzureBlobResponse {
|
|
113
|
+
LocationArn?: string;
|
|
114
|
+
}
|
|
83
115
|
export interface Ec2Config {
|
|
84
116
|
SubnetArn: string | undefined;
|
|
85
117
|
SecurityGroupArns: string[] | undefined;
|
|
@@ -474,6 +506,18 @@ export interface DescribeDiscoveryJobResponse {
|
|
|
474
506
|
JobStartTime?: Date;
|
|
475
507
|
JobEndTime?: Date;
|
|
476
508
|
}
|
|
509
|
+
export interface DescribeLocationAzureBlobRequest {
|
|
510
|
+
LocationArn: string | undefined;
|
|
511
|
+
}
|
|
512
|
+
export interface DescribeLocationAzureBlobResponse {
|
|
513
|
+
LocationArn?: string;
|
|
514
|
+
LocationUri?: string;
|
|
515
|
+
AuthenticationType?: AzureBlobAuthenticationType | string;
|
|
516
|
+
BlobType?: AzureBlobType | string;
|
|
517
|
+
AccessTier?: AzureAccessTier | string;
|
|
518
|
+
AgentArns?: string[];
|
|
519
|
+
CreationTime?: Date;
|
|
520
|
+
}
|
|
477
521
|
export interface DescribeLocationEfsRequest {
|
|
478
522
|
LocationArn: string | undefined;
|
|
479
523
|
}
|
|
@@ -1002,6 +1046,16 @@ export interface UpdateDiscoveryJobRequest {
|
|
|
1002
1046
|
CollectionDurationMinutes: number | undefined;
|
|
1003
1047
|
}
|
|
1004
1048
|
export interface UpdateDiscoveryJobResponse {}
|
|
1049
|
+
export interface UpdateLocationAzureBlobRequest {
|
|
1050
|
+
LocationArn: string | undefined;
|
|
1051
|
+
Subdirectory?: string;
|
|
1052
|
+
AuthenticationType?: AzureBlobAuthenticationType | string;
|
|
1053
|
+
SasConfiguration?: AzureBlobSasConfiguration;
|
|
1054
|
+
BlobType?: AzureBlobType | string;
|
|
1055
|
+
AccessTier?: AzureAccessTier | string;
|
|
1056
|
+
AgentArns?: string[];
|
|
1057
|
+
}
|
|
1058
|
+
export interface UpdateLocationAzureBlobResponse {}
|
|
1005
1059
|
export interface UpdateLocationHdfsRequest {
|
|
1006
1060
|
LocationArn: string | undefined;
|
|
1007
1061
|
Subdirectory?: string;
|
|
@@ -1074,6 +1128,12 @@ export declare const CredentialsFilterSensitiveLog: (obj: Credentials) => any;
|
|
|
1074
1128
|
export declare const AddStorageSystemRequestFilterSensitiveLog: (
|
|
1075
1129
|
obj: AddStorageSystemRequest
|
|
1076
1130
|
) => any;
|
|
1131
|
+
export declare const AzureBlobSasConfigurationFilterSensitiveLog: (
|
|
1132
|
+
obj: AzureBlobSasConfiguration
|
|
1133
|
+
) => any;
|
|
1134
|
+
export declare const CreateLocationAzureBlobRequestFilterSensitiveLog: (
|
|
1135
|
+
obj: CreateLocationAzureBlobRequest
|
|
1136
|
+
) => any;
|
|
1077
1137
|
export declare const FsxProtocolSmbFilterSensitiveLog: (
|
|
1078
1138
|
obj: FsxProtocolSmb
|
|
1079
1139
|
) => any;
|
|
@@ -1099,6 +1159,9 @@ export declare const DescribeLocationFsxOntapResponseFilterSensitiveLog: (
|
|
|
1099
1159
|
export declare const DescribeLocationFsxOpenZfsResponseFilterSensitiveLog: (
|
|
1100
1160
|
obj: DescribeLocationFsxOpenZfsResponse
|
|
1101
1161
|
) => any;
|
|
1162
|
+
export declare const UpdateLocationAzureBlobRequestFilterSensitiveLog: (
|
|
1163
|
+
obj: UpdateLocationAzureBlobRequest
|
|
1164
|
+
) => any;
|
|
1102
1165
|
export declare const UpdateLocationObjectStorageRequestFilterSensitiveLog: (
|
|
1103
1166
|
obj: UpdateLocationObjectStorageRequest
|
|
1104
1167
|
) => any;
|
|
@@ -15,6 +15,10 @@ import {
|
|
|
15
15
|
CreateAgentCommandInput,
|
|
16
16
|
CreateAgentCommandOutput,
|
|
17
17
|
} from "../commands/CreateAgentCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateLocationAzureBlobCommandInput,
|
|
20
|
+
CreateLocationAzureBlobCommandOutput,
|
|
21
|
+
} from "../commands/CreateLocationAzureBlobCommand";
|
|
18
22
|
import {
|
|
19
23
|
CreateLocationEfsCommandInput,
|
|
20
24
|
CreateLocationEfsCommandOutput,
|
|
@@ -79,6 +83,10 @@ import {
|
|
|
79
83
|
DescribeDiscoveryJobCommandInput,
|
|
80
84
|
DescribeDiscoveryJobCommandOutput,
|
|
81
85
|
} from "../commands/DescribeDiscoveryJobCommand";
|
|
86
|
+
import {
|
|
87
|
+
DescribeLocationAzureBlobCommandInput,
|
|
88
|
+
DescribeLocationAzureBlobCommandOutput,
|
|
89
|
+
} from "../commands/DescribeLocationAzureBlobCommand";
|
|
82
90
|
import {
|
|
83
91
|
DescribeLocationEfsCommandInput,
|
|
84
92
|
DescribeLocationEfsCommandOutput,
|
|
@@ -203,6 +211,10 @@ import {
|
|
|
203
211
|
UpdateDiscoveryJobCommandInput,
|
|
204
212
|
UpdateDiscoveryJobCommandOutput,
|
|
205
213
|
} from "../commands/UpdateDiscoveryJobCommand";
|
|
214
|
+
import {
|
|
215
|
+
UpdateLocationAzureBlobCommandInput,
|
|
216
|
+
UpdateLocationAzureBlobCommandOutput,
|
|
217
|
+
} from "../commands/UpdateLocationAzureBlobCommand";
|
|
206
218
|
import {
|
|
207
219
|
UpdateLocationHdfsCommandInput,
|
|
208
220
|
UpdateLocationHdfsCommandOutput,
|
|
@@ -243,6 +255,10 @@ export declare const se_CreateAgentCommand: (
|
|
|
243
255
|
input: CreateAgentCommandInput,
|
|
244
256
|
context: __SerdeContext
|
|
245
257
|
) => Promise<__HttpRequest>;
|
|
258
|
+
export declare const se_CreateLocationAzureBlobCommand: (
|
|
259
|
+
input: CreateLocationAzureBlobCommandInput,
|
|
260
|
+
context: __SerdeContext
|
|
261
|
+
) => Promise<__HttpRequest>;
|
|
246
262
|
export declare const se_CreateLocationEfsCommand: (
|
|
247
263
|
input: CreateLocationEfsCommandInput,
|
|
248
264
|
context: __SerdeContext
|
|
@@ -307,6 +323,10 @@ export declare const se_DescribeDiscoveryJobCommand: (
|
|
|
307
323
|
input: DescribeDiscoveryJobCommandInput,
|
|
308
324
|
context: __SerdeContext
|
|
309
325
|
) => Promise<__HttpRequest>;
|
|
326
|
+
export declare const se_DescribeLocationAzureBlobCommand: (
|
|
327
|
+
input: DescribeLocationAzureBlobCommandInput,
|
|
328
|
+
context: __SerdeContext
|
|
329
|
+
) => Promise<__HttpRequest>;
|
|
310
330
|
export declare const se_DescribeLocationEfsCommand: (
|
|
311
331
|
input: DescribeLocationEfsCommandInput,
|
|
312
332
|
context: __SerdeContext
|
|
@@ -431,6 +451,10 @@ export declare const se_UpdateDiscoveryJobCommand: (
|
|
|
431
451
|
input: UpdateDiscoveryJobCommandInput,
|
|
432
452
|
context: __SerdeContext
|
|
433
453
|
) => Promise<__HttpRequest>;
|
|
454
|
+
export declare const se_UpdateLocationAzureBlobCommand: (
|
|
455
|
+
input: UpdateLocationAzureBlobCommandInput,
|
|
456
|
+
context: __SerdeContext
|
|
457
|
+
) => Promise<__HttpRequest>;
|
|
434
458
|
export declare const se_UpdateLocationHdfsCommand: (
|
|
435
459
|
input: UpdateLocationHdfsCommandInput,
|
|
436
460
|
context: __SerdeContext
|
|
@@ -471,6 +495,10 @@ export declare const de_CreateAgentCommand: (
|
|
|
471
495
|
output: __HttpResponse,
|
|
472
496
|
context: __SerdeContext
|
|
473
497
|
) => Promise<CreateAgentCommandOutput>;
|
|
498
|
+
export declare const de_CreateLocationAzureBlobCommand: (
|
|
499
|
+
output: __HttpResponse,
|
|
500
|
+
context: __SerdeContext
|
|
501
|
+
) => Promise<CreateLocationAzureBlobCommandOutput>;
|
|
474
502
|
export declare const de_CreateLocationEfsCommand: (
|
|
475
503
|
output: __HttpResponse,
|
|
476
504
|
context: __SerdeContext
|
|
@@ -535,6 +563,10 @@ export declare const de_DescribeDiscoveryJobCommand: (
|
|
|
535
563
|
output: __HttpResponse,
|
|
536
564
|
context: __SerdeContext
|
|
537
565
|
) => Promise<DescribeDiscoveryJobCommandOutput>;
|
|
566
|
+
export declare const de_DescribeLocationAzureBlobCommand: (
|
|
567
|
+
output: __HttpResponse,
|
|
568
|
+
context: __SerdeContext
|
|
569
|
+
) => Promise<DescribeLocationAzureBlobCommandOutput>;
|
|
538
570
|
export declare const de_DescribeLocationEfsCommand: (
|
|
539
571
|
output: __HttpResponse,
|
|
540
572
|
context: __SerdeContext
|
|
@@ -659,6 +691,10 @@ export declare const de_UpdateDiscoveryJobCommand: (
|
|
|
659
691
|
output: __HttpResponse,
|
|
660
692
|
context: __SerdeContext
|
|
661
693
|
) => Promise<UpdateDiscoveryJobCommandOutput>;
|
|
694
|
+
export declare const de_UpdateLocationAzureBlobCommand: (
|
|
695
|
+
output: __HttpResponse,
|
|
696
|
+
context: __SerdeContext
|
|
697
|
+
) => Promise<UpdateLocationAzureBlobCommandOutput>;
|
|
662
698
|
export declare const de_UpdateLocationHdfsCommand: (
|
|
663
699
|
output: __HttpResponse,
|
|
664
700
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-datasync",
|
|
3
3
|
"description": "AWS SDK for JavaScript Datasync Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.377.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",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.377.0",
|
|
25
25
|
"@aws-sdk/credential-provider-node": "3.370.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.370.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.370.0",
|