@aws-sdk/client-datasync 3.952.0 → 3.953.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/dist-cjs/index.js +651 -439
- package/dist-cjs/runtimeConfig.shared.js +6 -6
- package/dist-es/commands/CancelTaskExecutionCommand.js +2 -2
- package/dist-es/commands/CreateAgentCommand.js +2 -2
- package/dist-es/commands/CreateLocationAzureBlobCommand.js +2 -2
- package/dist-es/commands/CreateLocationEfsCommand.js +2 -2
- package/dist-es/commands/CreateLocationFsxLustreCommand.js +2 -2
- package/dist-es/commands/CreateLocationFsxOntapCommand.js +2 -2
- package/dist-es/commands/CreateLocationFsxOpenZfsCommand.js +2 -2
- package/dist-es/commands/CreateLocationFsxWindowsCommand.js +2 -2
- package/dist-es/commands/CreateLocationHdfsCommand.js +2 -2
- package/dist-es/commands/CreateLocationNfsCommand.js +2 -2
- package/dist-es/commands/CreateLocationObjectStorageCommand.js +2 -2
- package/dist-es/commands/CreateLocationS3Command.js +2 -2
- package/dist-es/commands/CreateLocationSmbCommand.js +2 -2
- package/dist-es/commands/CreateTaskCommand.js +2 -2
- package/dist-es/commands/DeleteAgentCommand.js +2 -2
- package/dist-es/commands/DeleteLocationCommand.js +2 -2
- package/dist-es/commands/DeleteTaskCommand.js +2 -2
- package/dist-es/commands/DescribeAgentCommand.js +2 -2
- package/dist-es/commands/DescribeLocationAzureBlobCommand.js +2 -2
- package/dist-es/commands/DescribeLocationEfsCommand.js +2 -2
- package/dist-es/commands/DescribeLocationFsxLustreCommand.js +2 -2
- package/dist-es/commands/DescribeLocationFsxOntapCommand.js +2 -2
- package/dist-es/commands/DescribeLocationFsxOpenZfsCommand.js +2 -2
- package/dist-es/commands/DescribeLocationFsxWindowsCommand.js +2 -2
- package/dist-es/commands/DescribeLocationHdfsCommand.js +2 -2
- package/dist-es/commands/DescribeLocationNfsCommand.js +2 -2
- package/dist-es/commands/DescribeLocationObjectStorageCommand.js +2 -2
- package/dist-es/commands/DescribeLocationS3Command.js +2 -2
- package/dist-es/commands/DescribeLocationSmbCommand.js +2 -2
- package/dist-es/commands/DescribeTaskCommand.js +2 -2
- package/dist-es/commands/DescribeTaskExecutionCommand.js +2 -2
- package/dist-es/commands/ListAgentsCommand.js +2 -2
- package/dist-es/commands/ListLocationsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/ListTaskExecutionsCommand.js +2 -2
- package/dist-es/commands/ListTasksCommand.js +2 -2
- package/dist-es/commands/StartTaskExecutionCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateAgentCommand.js +2 -2
- package/dist-es/commands/UpdateLocationAzureBlobCommand.js +2 -2
- package/dist-es/commands/UpdateLocationEfsCommand.js +2 -2
- package/dist-es/commands/UpdateLocationFsxLustreCommand.js +2 -2
- package/dist-es/commands/UpdateLocationFsxOntapCommand.js +2 -2
- package/dist-es/commands/UpdateLocationFsxOpenZfsCommand.js +2 -2
- package/dist-es/commands/UpdateLocationFsxWindowsCommand.js +2 -2
- package/dist-es/commands/UpdateLocationHdfsCommand.js +2 -2
- package/dist-es/commands/UpdateLocationNfsCommand.js +2 -2
- package/dist-es/commands/UpdateLocationObjectStorageCommand.js +2 -2
- package/dist-es/commands/UpdateLocationS3Command.js +2 -2
- package/dist-es/commands/UpdateLocationSmbCommand.js +2 -2
- package/dist-es/commands/UpdateTaskCommand.js +2 -2
- package/dist-es/commands/UpdateTaskExecutionCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -6
- package/dist-es/schemas/schemas_0.js +398 -391
- package/dist-types/DataSyncClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +206 -228
- package/dist-types/ts3.4/DataSyncClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +205 -229
- package/package.json +34 -34
|
@@ -26,12 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsJson1_1Protocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.datasync",
|
|
32
|
+
version: "2018-11-09",
|
|
33
|
+
serviceTarget: "FmrsService",
|
|
34
|
+
},
|
|
35
35
|
serviceId: config?.serviceId ?? "DataSync",
|
|
36
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
37
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CancelTaskExecution } from "../schemas/schemas_0";
|
|
4
|
+
import { CancelTaskExecution$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CancelTaskExecutionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CancelTaskExecutionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FmrsService", "CancelTaskExecution", {})
|
|
13
13
|
.n("DataSyncClient", "CancelTaskExecutionCommand")
|
|
14
|
-
.sc(CancelTaskExecution)
|
|
14
|
+
.sc(CancelTaskExecution$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateAgent } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateAgent$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateAgentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateAgentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FmrsService", "CreateAgent", {})
|
|
13
13
|
.n("DataSyncClient", "CreateAgentCommand")
|
|
14
|
-
.sc(CreateAgent)
|
|
14
|
+
.sc(CreateAgent$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateLocationAzureBlob } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateLocationAzureBlob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateLocationAzureBlobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateLocationAzureBlobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FmrsService", "CreateLocationAzureBlob", {})
|
|
13
13
|
.n("DataSyncClient", "CreateLocationAzureBlobCommand")
|
|
14
|
-
.sc(CreateLocationAzureBlob)
|
|
14
|
+
.sc(CreateLocationAzureBlob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateLocationEfs } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateLocationEfs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateLocationEfsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateLocationEfsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FmrsService", "CreateLocationEfs", {})
|
|
13
13
|
.n("DataSyncClient", "CreateLocationEfsCommand")
|
|
14
|
-
.sc(CreateLocationEfs)
|
|
14
|
+
.sc(CreateLocationEfs$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateLocationFsxLustre } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateLocationFsxLustre$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateLocationFsxLustreCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateLocationFsxLustreCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FmrsService", "CreateLocationFsxLustre", {})
|
|
13
13
|
.n("DataSyncClient", "CreateLocationFsxLustreCommand")
|
|
14
|
-
.sc(CreateLocationFsxLustre)
|
|
14
|
+
.sc(CreateLocationFsxLustre$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateLocationFsxOntap } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateLocationFsxOntap$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateLocationFsxOntapCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateLocationFsxOntapCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FmrsService", "CreateLocationFsxOntap", {})
|
|
13
13
|
.n("DataSyncClient", "CreateLocationFsxOntapCommand")
|
|
14
|
-
.sc(CreateLocationFsxOntap)
|
|
14
|
+
.sc(CreateLocationFsxOntap$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateLocationFsxOpenZfs } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateLocationFsxOpenZfs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateLocationFsxOpenZfsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateLocationFsxOpenZfsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FmrsService", "CreateLocationFsxOpenZfs", {})
|
|
13
13
|
.n("DataSyncClient", "CreateLocationFsxOpenZfsCommand")
|
|
14
|
-
.sc(CreateLocationFsxOpenZfs)
|
|
14
|
+
.sc(CreateLocationFsxOpenZfs$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateLocationFsxWindows } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateLocationFsxWindows$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateLocationFsxWindowsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateLocationFsxWindowsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FmrsService", "CreateLocationFsxWindows", {})
|
|
13
13
|
.n("DataSyncClient", "CreateLocationFsxWindowsCommand")
|
|
14
|
-
.sc(CreateLocationFsxWindows)
|
|
14
|
+
.sc(CreateLocationFsxWindows$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateLocationHdfs } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateLocationHdfs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateLocationHdfsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateLocationHdfsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FmrsService", "CreateLocationHdfs", {})
|
|
13
13
|
.n("DataSyncClient", "CreateLocationHdfsCommand")
|
|
14
|
-
.sc(CreateLocationHdfs)
|
|
14
|
+
.sc(CreateLocationHdfs$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateLocationNfs } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateLocationNfs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateLocationNfsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateLocationNfsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FmrsService", "CreateLocationNfs", {})
|
|
13
13
|
.n("DataSyncClient", "CreateLocationNfsCommand")
|
|
14
|
-
.sc(CreateLocationNfs)
|
|
14
|
+
.sc(CreateLocationNfs$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateLocationObjectStorage } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateLocationObjectStorage$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateLocationObjectStorageCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateLocationObjectStorageCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FmrsService", "CreateLocationObjectStorage", {})
|
|
13
13
|
.n("DataSyncClient", "CreateLocationObjectStorageCommand")
|
|
14
|
-
.sc(CreateLocationObjectStorage)
|
|
14
|
+
.sc(CreateLocationObjectStorage$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateLocationS3 } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateLocationS3$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateLocationS3Command extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateLocationS3Command extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FmrsService", "CreateLocationS3", {})
|
|
13
13
|
.n("DataSyncClient", "CreateLocationS3Command")
|
|
14
|
-
.sc(CreateLocationS3)
|
|
14
|
+
.sc(CreateLocationS3$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateLocationSmb } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateLocationSmb$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateLocationSmbCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateLocationSmbCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FmrsService", "CreateLocationSmb", {})
|
|
13
13
|
.n("DataSyncClient", "CreateLocationSmbCommand")
|
|
14
|
-
.sc(CreateLocationSmb)
|
|
14
|
+
.sc(CreateLocationSmb$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateTask } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateTask$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateTaskCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateTaskCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FmrsService", "CreateTask", {})
|
|
13
13
|
.n("DataSyncClient", "CreateTaskCommand")
|
|
14
|
-
.sc(CreateTask)
|
|
14
|
+
.sc(CreateTask$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteAgent } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteAgent$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteAgentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteAgentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FmrsService", "DeleteAgent", {})
|
|
13
13
|
.n("DataSyncClient", "DeleteAgentCommand")
|
|
14
|
-
.sc(DeleteAgent)
|
|
14
|
+
.sc(DeleteAgent$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteLocation } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteLocation$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteLocationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteLocationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FmrsService", "DeleteLocation", {})
|
|
13
13
|
.n("DataSyncClient", "DeleteLocationCommand")
|
|
14
|
-
.sc(DeleteLocation)
|
|
14
|
+
.sc(DeleteLocation$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteTask } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteTask$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteTaskCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteTaskCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FmrsService", "DeleteTask", {})
|
|
13
13
|
.n("DataSyncClient", "DeleteTaskCommand")
|
|
14
|
-
.sc(DeleteTask)
|
|
14
|
+
.sc(DeleteTask$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeAgent } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeAgent$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeAgentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeAgentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FmrsService", "DescribeAgent", {})
|
|
13
13
|
.n("DataSyncClient", "DescribeAgentCommand")
|
|
14
|
-
.sc(DescribeAgent)
|
|
14
|
+
.sc(DescribeAgent$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeLocationAzureBlob } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeLocationAzureBlob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeLocationAzureBlobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeLocationAzureBlobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FmrsService", "DescribeLocationAzureBlob", {})
|
|
13
13
|
.n("DataSyncClient", "DescribeLocationAzureBlobCommand")
|
|
14
|
-
.sc(DescribeLocationAzureBlob)
|
|
14
|
+
.sc(DescribeLocationAzureBlob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeLocationEfs } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeLocationEfs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeLocationEfsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeLocationEfsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FmrsService", "DescribeLocationEfs", {})
|
|
13
13
|
.n("DataSyncClient", "DescribeLocationEfsCommand")
|
|
14
|
-
.sc(DescribeLocationEfs)
|
|
14
|
+
.sc(DescribeLocationEfs$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeLocationFsxLustre } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeLocationFsxLustre$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeLocationFsxLustreCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeLocationFsxLustreCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FmrsService", "DescribeLocationFsxLustre", {})
|
|
13
13
|
.n("DataSyncClient", "DescribeLocationFsxLustreCommand")
|
|
14
|
-
.sc(DescribeLocationFsxLustre)
|
|
14
|
+
.sc(DescribeLocationFsxLustre$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeLocationFsxOntap } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeLocationFsxOntap$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeLocationFsxOntapCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeLocationFsxOntapCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FmrsService", "DescribeLocationFsxOntap", {})
|
|
13
13
|
.n("DataSyncClient", "DescribeLocationFsxOntapCommand")
|
|
14
|
-
.sc(DescribeLocationFsxOntap)
|
|
14
|
+
.sc(DescribeLocationFsxOntap$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeLocationFsxOpenZfs } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeLocationFsxOpenZfs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeLocationFsxOpenZfsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeLocationFsxOpenZfsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FmrsService", "DescribeLocationFsxOpenZfs", {})
|
|
13
13
|
.n("DataSyncClient", "DescribeLocationFsxOpenZfsCommand")
|
|
14
|
-
.sc(DescribeLocationFsxOpenZfs)
|
|
14
|
+
.sc(DescribeLocationFsxOpenZfs$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeLocationFsxWindows } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeLocationFsxWindows$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeLocationFsxWindowsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeLocationFsxWindowsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FmrsService", "DescribeLocationFsxWindows", {})
|
|
13
13
|
.n("DataSyncClient", "DescribeLocationFsxWindowsCommand")
|
|
14
|
-
.sc(DescribeLocationFsxWindows)
|
|
14
|
+
.sc(DescribeLocationFsxWindows$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeLocationHdfs } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeLocationHdfs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeLocationHdfsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeLocationHdfsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FmrsService", "DescribeLocationHdfs", {})
|
|
13
13
|
.n("DataSyncClient", "DescribeLocationHdfsCommand")
|
|
14
|
-
.sc(DescribeLocationHdfs)
|
|
14
|
+
.sc(DescribeLocationHdfs$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeLocationNfs } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeLocationNfs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeLocationNfsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeLocationNfsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FmrsService", "DescribeLocationNfs", {})
|
|
13
13
|
.n("DataSyncClient", "DescribeLocationNfsCommand")
|
|
14
|
-
.sc(DescribeLocationNfs)
|
|
14
|
+
.sc(DescribeLocationNfs$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeLocationObjectStorage } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeLocationObjectStorage$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeLocationObjectStorageCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeLocationObjectStorageCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FmrsService", "DescribeLocationObjectStorage", {})
|
|
13
13
|
.n("DataSyncClient", "DescribeLocationObjectStorageCommand")
|
|
14
|
-
.sc(DescribeLocationObjectStorage)
|
|
14
|
+
.sc(DescribeLocationObjectStorage$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeLocationS3 } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeLocationS3$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeLocationS3Command extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeLocationS3Command extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FmrsService", "DescribeLocationS3", {})
|
|
13
13
|
.n("DataSyncClient", "DescribeLocationS3Command")
|
|
14
|
-
.sc(DescribeLocationS3)
|
|
14
|
+
.sc(DescribeLocationS3$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeLocationSmb } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeLocationSmb$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeLocationSmbCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeLocationSmbCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FmrsService", "DescribeLocationSmb", {})
|
|
13
13
|
.n("DataSyncClient", "DescribeLocationSmbCommand")
|
|
14
|
-
.sc(DescribeLocationSmb)
|
|
14
|
+
.sc(DescribeLocationSmb$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeTask } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeTask$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeTaskCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeTaskCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FmrsService", "DescribeTask", {})
|
|
13
13
|
.n("DataSyncClient", "DescribeTaskCommand")
|
|
14
|
-
.sc(DescribeTask)
|
|
14
|
+
.sc(DescribeTask$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeTaskExecution } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeTaskExecution$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeTaskExecutionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeTaskExecutionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FmrsService", "DescribeTaskExecution", {})
|
|
13
13
|
.n("DataSyncClient", "DescribeTaskExecutionCommand")
|
|
14
|
-
.sc(DescribeTaskExecution)
|
|
14
|
+
.sc(DescribeTaskExecution$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListAgents } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAgents$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAgentsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAgentsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FmrsService", "ListAgents", {})
|
|
13
13
|
.n("DataSyncClient", "ListAgentsCommand")
|
|
14
|
-
.sc(ListAgents)
|
|
14
|
+
.sc(ListAgents$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListLocations } from "../schemas/schemas_0";
|
|
4
|
+
import { ListLocations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListLocationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListLocationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FmrsService", "ListLocations", {})
|
|
13
13
|
.n("DataSyncClient", "ListLocationsCommand")
|
|
14
|
-
.sc(ListLocations)
|
|
14
|
+
.sc(ListLocations$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FmrsService", "ListTagsForResource", {})
|
|
13
13
|
.n("DataSyncClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTaskExecutions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTaskExecutions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTaskExecutionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTaskExecutionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FmrsService", "ListTaskExecutions", {})
|
|
13
13
|
.n("DataSyncClient", "ListTaskExecutionsCommand")
|
|
14
|
-
.sc(ListTaskExecutions)
|
|
14
|
+
.sc(ListTaskExecutions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|