@aws-sdk/client-efs 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.
Files changed (51) hide show
  1. package/dist-cjs/index.js +502 -352
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/CreateAccessPointCommand.js +2 -2
  4. package/dist-es/commands/CreateFileSystemCommand.js +2 -2
  5. package/dist-es/commands/CreateMountTargetCommand.js +2 -2
  6. package/dist-es/commands/CreateReplicationConfigurationCommand.js +2 -2
  7. package/dist-es/commands/CreateTagsCommand.js +2 -2
  8. package/dist-es/commands/DeleteAccessPointCommand.js +2 -2
  9. package/dist-es/commands/DeleteFileSystemCommand.js +2 -2
  10. package/dist-es/commands/DeleteFileSystemPolicyCommand.js +2 -2
  11. package/dist-es/commands/DeleteMountTargetCommand.js +2 -2
  12. package/dist-es/commands/DeleteReplicationConfigurationCommand.js +2 -2
  13. package/dist-es/commands/DeleteTagsCommand.js +2 -2
  14. package/dist-es/commands/DescribeAccessPointsCommand.js +2 -2
  15. package/dist-es/commands/DescribeAccountPreferencesCommand.js +2 -2
  16. package/dist-es/commands/DescribeBackupPolicyCommand.js +2 -2
  17. package/dist-es/commands/DescribeFileSystemPolicyCommand.js +2 -2
  18. package/dist-es/commands/DescribeFileSystemsCommand.js +2 -2
  19. package/dist-es/commands/DescribeLifecycleConfigurationCommand.js +2 -2
  20. package/dist-es/commands/DescribeMountTargetSecurityGroupsCommand.js +2 -2
  21. package/dist-es/commands/DescribeMountTargetsCommand.js +2 -2
  22. package/dist-es/commands/DescribeReplicationConfigurationsCommand.js +2 -2
  23. package/dist-es/commands/DescribeTagsCommand.js +2 -2
  24. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  25. package/dist-es/commands/ModifyMountTargetSecurityGroupsCommand.js +2 -2
  26. package/dist-es/commands/PutAccountPreferencesCommand.js +2 -2
  27. package/dist-es/commands/PutBackupPolicyCommand.js +2 -2
  28. package/dist-es/commands/PutFileSystemPolicyCommand.js +2 -2
  29. package/dist-es/commands/PutLifecycleConfigurationCommand.js +2 -2
  30. package/dist-es/commands/TagResourceCommand.js +2 -2
  31. package/dist-es/commands/UntagResourceCommand.js +2 -2
  32. package/dist-es/commands/UpdateFileSystemCommand.js +2 -2
  33. package/dist-es/commands/UpdateFileSystemProtectionCommand.js +2 -2
  34. package/dist-es/index.js +1 -0
  35. package/dist-es/runtimeConfig.shared.js +6 -1
  36. package/dist-es/schemas/schemas_0.js +259 -231
  37. package/dist-types/EFSClient.d.ts +1 -10
  38. package/dist-types/index.d.ts +1 -0
  39. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  40. package/dist-types/runtimeConfig.d.ts +6 -2
  41. package/dist-types/runtimeConfig.native.d.ts +6 -2
  42. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  43. package/dist-types/schemas/schemas_0.d.ts +123 -136
  44. package/dist-types/ts3.4/EFSClient.d.ts +0 -4
  45. package/dist-types/ts3.4/index.d.ts +1 -0
  46. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  47. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  48. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  49. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  50. package/dist-types/ts3.4/schemas/schemas_0.d.ts +122 -136
  51. package/package.json +34 -34
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
26
26
  },
27
27
  ],
28
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
- protocol: config?.protocol ?? new protocols_1.AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.efs" }),
29
+ protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
30
+ protocolSettings: config?.protocolSettings ?? {
31
+ defaultNamespace: "com.amazonaws.efs",
32
+ version: "2015-02-01",
33
+ serviceTarget: "MagnolioAPIService_v20150201",
34
+ },
30
35
  serviceId: config?.serviceId ?? "EFS",
31
36
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
32
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 { CreateAccessPoint } from "../schemas/schemas_0";
4
+ import { CreateAccessPoint$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateAccessPointCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateAccessPointCommand extends $Command
11
11
  })
12
12
  .s("MagnolioAPIService_v20150201", "CreateAccessPoint", {})
13
13
  .n("EFSClient", "CreateAccessPointCommand")
14
- .sc(CreateAccessPoint)
14
+ .sc(CreateAccessPoint$)
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 { CreateFileSystem } from "../schemas/schemas_0";
4
+ import { CreateFileSystem$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateFileSystemCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateFileSystemCommand extends $Command
11
11
  })
12
12
  .s("MagnolioAPIService_v20150201", "CreateFileSystem", {})
13
13
  .n("EFSClient", "CreateFileSystemCommand")
14
- .sc(CreateFileSystem)
14
+ .sc(CreateFileSystem$)
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 { CreateMountTarget } from "../schemas/schemas_0";
4
+ import { CreateMountTarget$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateMountTargetCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateMountTargetCommand extends $Command
11
11
  })
12
12
  .s("MagnolioAPIService_v20150201", "CreateMountTarget", {})
13
13
  .n("EFSClient", "CreateMountTargetCommand")
14
- .sc(CreateMountTarget)
14
+ .sc(CreateMountTarget$)
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 { CreateReplicationConfiguration } from "../schemas/schemas_0";
4
+ import { CreateReplicationConfiguration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateReplicationConfigurationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateReplicationConfigurationCommand extends $Command
11
11
  })
12
12
  .s("MagnolioAPIService_v20150201", "CreateReplicationConfiguration", {})
13
13
  .n("EFSClient", "CreateReplicationConfigurationCommand")
14
- .sc(CreateReplicationConfiguration)
14
+ .sc(CreateReplicationConfiguration$)
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 { CreateTags } from "../schemas/schemas_0";
4
+ import { CreateTags$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateTagsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateTagsCommand extends $Command
11
11
  })
12
12
  .s("MagnolioAPIService_v20150201", "CreateTags", {})
13
13
  .n("EFSClient", "CreateTagsCommand")
14
- .sc(CreateTags)
14
+ .sc(CreateTags$)
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 { DeleteAccessPoint } from "../schemas/schemas_0";
4
+ import { DeleteAccessPoint$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteAccessPointCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteAccessPointCommand extends $Command
11
11
  })
12
12
  .s("MagnolioAPIService_v20150201", "DeleteAccessPoint", {})
13
13
  .n("EFSClient", "DeleteAccessPointCommand")
14
- .sc(DeleteAccessPoint)
14
+ .sc(DeleteAccessPoint$)
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 { DeleteFileSystem } from "../schemas/schemas_0";
4
+ import { DeleteFileSystem$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteFileSystemCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteFileSystemCommand extends $Command
11
11
  })
12
12
  .s("MagnolioAPIService_v20150201", "DeleteFileSystem", {})
13
13
  .n("EFSClient", "DeleteFileSystemCommand")
14
- .sc(DeleteFileSystem)
14
+ .sc(DeleteFileSystem$)
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 { DeleteFileSystemPolicy } from "../schemas/schemas_0";
4
+ import { DeleteFileSystemPolicy$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteFileSystemPolicyCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteFileSystemPolicyCommand extends $Command
11
11
  })
12
12
  .s("MagnolioAPIService_v20150201", "DeleteFileSystemPolicy", {})
13
13
  .n("EFSClient", "DeleteFileSystemPolicyCommand")
14
- .sc(DeleteFileSystemPolicy)
14
+ .sc(DeleteFileSystemPolicy$)
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 { DeleteMountTarget } from "../schemas/schemas_0";
4
+ import { DeleteMountTarget$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteMountTargetCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteMountTargetCommand extends $Command
11
11
  })
12
12
  .s("MagnolioAPIService_v20150201", "DeleteMountTarget", {})
13
13
  .n("EFSClient", "DeleteMountTargetCommand")
14
- .sc(DeleteMountTarget)
14
+ .sc(DeleteMountTarget$)
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 { DeleteReplicationConfiguration } from "../schemas/schemas_0";
4
+ import { DeleteReplicationConfiguration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteReplicationConfigurationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteReplicationConfigurationCommand extends $Command
11
11
  })
12
12
  .s("MagnolioAPIService_v20150201", "DeleteReplicationConfiguration", {})
13
13
  .n("EFSClient", "DeleteReplicationConfigurationCommand")
14
- .sc(DeleteReplicationConfiguration)
14
+ .sc(DeleteReplicationConfiguration$)
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 { DeleteTags } from "../schemas/schemas_0";
4
+ import { DeleteTags$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteTagsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteTagsCommand extends $Command
11
11
  })
12
12
  .s("MagnolioAPIService_v20150201", "DeleteTags", {})
13
13
  .n("EFSClient", "DeleteTagsCommand")
14
- .sc(DeleteTags)
14
+ .sc(DeleteTags$)
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 { DescribeAccessPoints } from "../schemas/schemas_0";
4
+ import { DescribeAccessPoints$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeAccessPointsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeAccessPointsCommand extends $Command
11
11
  })
12
12
  .s("MagnolioAPIService_v20150201", "DescribeAccessPoints", {})
13
13
  .n("EFSClient", "DescribeAccessPointsCommand")
14
- .sc(DescribeAccessPoints)
14
+ .sc(DescribeAccessPoints$)
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 { DescribeAccountPreferences } from "../schemas/schemas_0";
4
+ import { DescribeAccountPreferences$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeAccountPreferencesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeAccountPreferencesCommand extends $Command
11
11
  })
12
12
  .s("MagnolioAPIService_v20150201", "DescribeAccountPreferences", {})
13
13
  .n("EFSClient", "DescribeAccountPreferencesCommand")
14
- .sc(DescribeAccountPreferences)
14
+ .sc(DescribeAccountPreferences$)
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 { DescribeBackupPolicy } from "../schemas/schemas_0";
4
+ import { DescribeBackupPolicy$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeBackupPolicyCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeBackupPolicyCommand extends $Command
11
11
  })
12
12
  .s("MagnolioAPIService_v20150201", "DescribeBackupPolicy", {})
13
13
  .n("EFSClient", "DescribeBackupPolicyCommand")
14
- .sc(DescribeBackupPolicy)
14
+ .sc(DescribeBackupPolicy$)
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 { DescribeFileSystemPolicy } from "../schemas/schemas_0";
4
+ import { DescribeFileSystemPolicy$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeFileSystemPolicyCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeFileSystemPolicyCommand extends $Command
11
11
  })
12
12
  .s("MagnolioAPIService_v20150201", "DescribeFileSystemPolicy", {})
13
13
  .n("EFSClient", "DescribeFileSystemPolicyCommand")
14
- .sc(DescribeFileSystemPolicy)
14
+ .sc(DescribeFileSystemPolicy$)
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 { DescribeFileSystems } from "../schemas/schemas_0";
4
+ import { DescribeFileSystems$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeFileSystemsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeFileSystemsCommand extends $Command
11
11
  })
12
12
  .s("MagnolioAPIService_v20150201", "DescribeFileSystems", {})
13
13
  .n("EFSClient", "DescribeFileSystemsCommand")
14
- .sc(DescribeFileSystems)
14
+ .sc(DescribeFileSystems$)
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 { DescribeLifecycleConfiguration } from "../schemas/schemas_0";
4
+ import { DescribeLifecycleConfiguration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeLifecycleConfigurationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeLifecycleConfigurationCommand extends $Command
11
11
  })
12
12
  .s("MagnolioAPIService_v20150201", "DescribeLifecycleConfiguration", {})
13
13
  .n("EFSClient", "DescribeLifecycleConfigurationCommand")
14
- .sc(DescribeLifecycleConfiguration)
14
+ .sc(DescribeLifecycleConfiguration$)
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 { DescribeMountTargetSecurityGroups } from "../schemas/schemas_0";
4
+ import { DescribeMountTargetSecurityGroups$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeMountTargetSecurityGroupsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeMountTargetSecurityGroupsCommand extends $Command
11
11
  })
12
12
  .s("MagnolioAPIService_v20150201", "DescribeMountTargetSecurityGroups", {})
13
13
  .n("EFSClient", "DescribeMountTargetSecurityGroupsCommand")
14
- .sc(DescribeMountTargetSecurityGroups)
14
+ .sc(DescribeMountTargetSecurityGroups$)
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 { DescribeMountTargets } from "../schemas/schemas_0";
4
+ import { DescribeMountTargets$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeMountTargetsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeMountTargetsCommand extends $Command
11
11
  })
12
12
  .s("MagnolioAPIService_v20150201", "DescribeMountTargets", {})
13
13
  .n("EFSClient", "DescribeMountTargetsCommand")
14
- .sc(DescribeMountTargets)
14
+ .sc(DescribeMountTargets$)
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 { DescribeReplicationConfigurations } from "../schemas/schemas_0";
4
+ import { DescribeReplicationConfigurations$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeReplicationConfigurationsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeReplicationConfigurationsCommand extends $Command
11
11
  })
12
12
  .s("MagnolioAPIService_v20150201", "DescribeReplicationConfigurations", {})
13
13
  .n("EFSClient", "DescribeReplicationConfigurationsCommand")
14
- .sc(DescribeReplicationConfigurations)
14
+ .sc(DescribeReplicationConfigurations$)
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 { DescribeTags } from "../schemas/schemas_0";
4
+ import { DescribeTags$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeTagsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeTagsCommand extends $Command
11
11
  })
12
12
  .s("MagnolioAPIService_v20150201", "DescribeTags", {})
13
13
  .n("EFSClient", "DescribeTagsCommand")
14
- .sc(DescribeTags)
14
+ .sc(DescribeTags$)
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("MagnolioAPIService_v20150201", "ListTagsForResource", {})
13
13
  .n("EFSClient", "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 { ModifyMountTargetSecurityGroups } from "../schemas/schemas_0";
4
+ import { ModifyMountTargetSecurityGroups$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ModifyMountTargetSecurityGroupsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ModifyMountTargetSecurityGroupsCommand extends $Command
11
11
  })
12
12
  .s("MagnolioAPIService_v20150201", "ModifyMountTargetSecurityGroups", {})
13
13
  .n("EFSClient", "ModifyMountTargetSecurityGroupsCommand")
14
- .sc(ModifyMountTargetSecurityGroups)
14
+ .sc(ModifyMountTargetSecurityGroups$)
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 { PutAccountPreferences } from "../schemas/schemas_0";
4
+ import { PutAccountPreferences$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PutAccountPreferencesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class PutAccountPreferencesCommand extends $Command
11
11
  })
12
12
  .s("MagnolioAPIService_v20150201", "PutAccountPreferences", {})
13
13
  .n("EFSClient", "PutAccountPreferencesCommand")
14
- .sc(PutAccountPreferences)
14
+ .sc(PutAccountPreferences$)
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 { PutBackupPolicy } from "../schemas/schemas_0";
4
+ import { PutBackupPolicy$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PutBackupPolicyCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class PutBackupPolicyCommand extends $Command
11
11
  })
12
12
  .s("MagnolioAPIService_v20150201", "PutBackupPolicy", {})
13
13
  .n("EFSClient", "PutBackupPolicyCommand")
14
- .sc(PutBackupPolicy)
14
+ .sc(PutBackupPolicy$)
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 { PutFileSystemPolicy } from "../schemas/schemas_0";
4
+ import { PutFileSystemPolicy$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PutFileSystemPolicyCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class PutFileSystemPolicyCommand extends $Command
11
11
  })
12
12
  .s("MagnolioAPIService_v20150201", "PutFileSystemPolicy", {})
13
13
  .n("EFSClient", "PutFileSystemPolicyCommand")
14
- .sc(PutFileSystemPolicy)
14
+ .sc(PutFileSystemPolicy$)
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 { PutLifecycleConfiguration } from "../schemas/schemas_0";
4
+ import { PutLifecycleConfiguration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PutLifecycleConfigurationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class PutLifecycleConfigurationCommand extends $Command
11
11
  })
12
12
  .s("MagnolioAPIService_v20150201", "PutLifecycleConfiguration", {})
13
13
  .n("EFSClient", "PutLifecycleConfigurationCommand")
14
- .sc(PutLifecycleConfiguration)
14
+ .sc(PutLifecycleConfiguration$)
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 { TagResource } from "../schemas/schemas_0";
4
+ import { TagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class TagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
11
11
  })
12
12
  .s("MagnolioAPIService_v20150201", "TagResource", {})
13
13
  .n("EFSClient", "TagResourceCommand")
14
- .sc(TagResource)
14
+ .sc(TagResource$)
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 { UntagResource } from "../schemas/schemas_0";
4
+ import { UntagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UntagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
11
11
  })
12
12
  .s("MagnolioAPIService_v20150201", "UntagResource", {})
13
13
  .n("EFSClient", "UntagResourceCommand")
14
- .sc(UntagResource)
14
+ .sc(UntagResource$)
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 { UpdateFileSystem } from "../schemas/schemas_0";
4
+ import { UpdateFileSystem$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateFileSystemCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateFileSystemCommand extends $Command
11
11
  })
12
12
  .s("MagnolioAPIService_v20150201", "UpdateFileSystem", {})
13
13
  .n("EFSClient", "UpdateFileSystemCommand")
14
- .sc(UpdateFileSystem)
14
+ .sc(UpdateFileSystem$)
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 { UpdateFileSystemProtection } from "../schemas/schemas_0";
4
+ import { UpdateFileSystemProtection$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateFileSystemProtectionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateFileSystemProtectionCommand extends $Command
11
11
  })
12
12
  .s("MagnolioAPIService_v20150201", "UpdateFileSystemProtection", {})
13
13
  .n("EFSClient", "UpdateFileSystemProtectionCommand")
14
- .sc(UpdateFileSystemProtection)
14
+ .sc(UpdateFileSystemProtection$)
15
15
  .build() {
16
16
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./EFSClient";
2
2
  export * from "./EFS";
3
3
  export * from "./commands";
4
+ export * from "./schemas/schemas_0";
4
5
  export * from "./pagination";
5
6
  export * from "./models/enums";
6
7
  export * from "./models/errors";
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
23
23
  },
24
24
  ],
25
25
  logger: config?.logger ?? new NoOpLogger(),
26
- protocol: config?.protocol ?? new AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.efs" }),
26
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
27
+ protocolSettings: config?.protocolSettings ?? {
28
+ defaultNamespace: "com.amazonaws.efs",
29
+ version: "2015-02-01",
30
+ serviceTarget: "MagnolioAPIService_v20150201",
31
+ },
27
32
  serviceId: config?.serviceId ?? "EFS",
28
33
  urlParser: config?.urlParser ?? parseUrl,
29
34
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,