@aws-sdk/client-drs 3.95.0 → 3.102.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 (47) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/README.md +7 -7
  3. package/dist-cjs/Drs.js +45 -0
  4. package/dist-cjs/commands/CreateExtendedSourceServerCommand.js +36 -0
  5. package/dist-cjs/commands/ListExtensibleSourceServersCommand.js +36 -0
  6. package/dist-cjs/commands/ListStagingAccountsCommand.js +36 -0
  7. package/dist-cjs/commands/index.js +3 -0
  8. package/dist-cjs/models/models_0.js +273 -201
  9. package/dist-cjs/pagination/ListExtensibleSourceServersPaginator.js +36 -0
  10. package/dist-cjs/pagination/ListStagingAccountsPaginator.js +36 -0
  11. package/dist-cjs/pagination/index.js +2 -0
  12. package/dist-cjs/protocols/Aws_restJson1.js +353 -2
  13. package/dist-cjs/runtimeConfig.js +2 -0
  14. package/dist-es/Drs.js +45 -0
  15. package/dist-es/commands/CreateExtendedSourceServerCommand.js +39 -0
  16. package/dist-es/commands/ListExtensibleSourceServersCommand.js +39 -0
  17. package/dist-es/commands/ListStagingAccountsCommand.js +39 -0
  18. package/dist-es/commands/index.js +3 -0
  19. package/dist-es/models/models_0.js +217 -169
  20. package/dist-es/pagination/ListExtensibleSourceServersPaginator.js +75 -0
  21. package/dist-es/pagination/ListStagingAccountsPaginator.js +75 -0
  22. package/dist-es/pagination/index.js +2 -0
  23. package/dist-es/protocols/Aws_restJson1.js +439 -15
  24. package/dist-es/runtimeConfig.js +2 -0
  25. package/dist-types/Drs.d.ts +24 -0
  26. package/dist-types/DrsClient.d.ts +5 -2
  27. package/dist-types/commands/CreateExtendedSourceServerCommand.d.ts +35 -0
  28. package/dist-types/commands/ListExtensibleSourceServersCommand.d.ts +38 -0
  29. package/dist-types/commands/ListStagingAccountsCommand.d.ts +35 -0
  30. package/dist-types/commands/index.d.ts +3 -0
  31. package/dist-types/models/models_0.d.ts +731 -507
  32. package/dist-types/pagination/ListExtensibleSourceServersPaginator.d.ts +4 -0
  33. package/dist-types/pagination/ListStagingAccountsPaginator.d.ts +4 -0
  34. package/dist-types/pagination/index.d.ts +2 -0
  35. package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
  36. package/dist-types/ts3.4/Drs.d.ts +15 -0
  37. package/dist-types/ts3.4/DrsClient.d.ts +5 -2
  38. package/dist-types/ts3.4/commands/CreateExtendedSourceServerCommand.d.ts +17 -0
  39. package/dist-types/ts3.4/commands/ListExtensibleSourceServersCommand.d.ts +17 -0
  40. package/dist-types/ts3.4/commands/ListStagingAccountsCommand.d.ts +17 -0
  41. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  42. package/dist-types/ts3.4/models/models_0.d.ts +442 -305
  43. package/dist-types/ts3.4/pagination/ListExtensibleSourceServersPaginator.d.ts +4 -0
  44. package/dist-types/ts3.4/pagination/ListStagingAccountsPaginator.d.ts +4 -0
  45. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  46. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +9 -0
  47. package/package.json +6 -6
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListExtensibleSourceServersCommandInput, ListExtensibleSourceServersCommandOutput } from "../commands/ListExtensibleSourceServersCommand";
3
+ import { DrsPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListExtensibleSourceServers(config: DrsPaginationConfiguration, input: ListExtensibleSourceServersCommandInput, ...additionalArguments: any): Paginator<ListExtensibleSourceServersCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListStagingAccountsCommandInput, ListStagingAccountsCommandOutput } from "../commands/ListStagingAccountsCommand";
3
+ import { DrsPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListStagingAccounts(config: DrsPaginationConfiguration, input: ListStagingAccountsCommandInput, ...additionalArguments: any): Paginator<ListStagingAccountsCommandOutput>;
@@ -5,3 +5,5 @@ export * from "./DescribeRecoverySnapshotsPaginator";
5
5
  export * from "./DescribeReplicationConfigurationTemplatesPaginator";
6
6
  export * from "./DescribeSourceServersPaginator";
7
7
  export * from "./Interfaces";
8
+ export * from "./ListExtensibleSourceServersPaginator";
9
+ export * from "./ListStagingAccountsPaginator";
@@ -1,5 +1,6 @@
1
1
  import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
2
  import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
+ import { CreateExtendedSourceServerCommandInput, CreateExtendedSourceServerCommandOutput } from "../commands/CreateExtendedSourceServerCommand";
3
4
  import { CreateReplicationConfigurationTemplateCommandInput, CreateReplicationConfigurationTemplateCommandOutput } from "../commands/CreateReplicationConfigurationTemplateCommand";
4
5
  import { DeleteJobCommandInput, DeleteJobCommandOutput } from "../commands/DeleteJobCommand";
5
6
  import { DeleteRecoveryInstanceCommandInput, DeleteRecoveryInstanceCommandOutput } from "../commands/DeleteRecoveryInstanceCommand";
@@ -17,6 +18,8 @@ import { GetFailbackReplicationConfigurationCommandInput, GetFailbackReplication
17
18
  import { GetLaunchConfigurationCommandInput, GetLaunchConfigurationCommandOutput } from "../commands/GetLaunchConfigurationCommand";
18
19
  import { GetReplicationConfigurationCommandInput, GetReplicationConfigurationCommandOutput } from "../commands/GetReplicationConfigurationCommand";
19
20
  import { InitializeServiceCommandInput, InitializeServiceCommandOutput } from "../commands/InitializeServiceCommand";
21
+ import { ListExtensibleSourceServersCommandInput, ListExtensibleSourceServersCommandOutput } from "../commands/ListExtensibleSourceServersCommand";
22
+ import { ListStagingAccountsCommandInput, ListStagingAccountsCommandOutput } from "../commands/ListStagingAccountsCommand";
20
23
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
21
24
  import { RetryDataReplicationCommandInput, RetryDataReplicationCommandOutput } from "../commands/RetryDataReplicationCommand";
22
25
  import { StartFailbackLaunchCommandInput, StartFailbackLaunchCommandOutput } from "../commands/StartFailbackLaunchCommand";
@@ -29,6 +32,7 @@ import { UpdateFailbackReplicationConfigurationCommandInput, UpdateFailbackRepli
29
32
  import { UpdateLaunchConfigurationCommandInput, UpdateLaunchConfigurationCommandOutput } from "../commands/UpdateLaunchConfigurationCommand";
30
33
  import { UpdateReplicationConfigurationCommandInput, UpdateReplicationConfigurationCommandOutput } from "../commands/UpdateReplicationConfigurationCommand";
31
34
  import { UpdateReplicationConfigurationTemplateCommandInput, UpdateReplicationConfigurationTemplateCommandOutput } from "../commands/UpdateReplicationConfigurationTemplateCommand";
35
+ export declare const serializeAws_restJson1CreateExtendedSourceServerCommand: (input: CreateExtendedSourceServerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
36
  export declare const serializeAws_restJson1CreateReplicationConfigurationTemplateCommand: (input: CreateReplicationConfigurationTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
37
  export declare const serializeAws_restJson1DeleteJobCommand: (input: DeleteJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
38
  export declare const serializeAws_restJson1DeleteRecoveryInstanceCommand: (input: DeleteRecoveryInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -46,6 +50,8 @@ export declare const serializeAws_restJson1GetFailbackReplicationConfigurationCo
46
50
  export declare const serializeAws_restJson1GetLaunchConfigurationCommand: (input: GetLaunchConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
51
  export declare const serializeAws_restJson1GetReplicationConfigurationCommand: (input: GetReplicationConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
52
  export declare const serializeAws_restJson1InitializeServiceCommand: (input: InitializeServiceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
53
+ export declare const serializeAws_restJson1ListExtensibleSourceServersCommand: (input: ListExtensibleSourceServersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
54
+ export declare const serializeAws_restJson1ListStagingAccountsCommand: (input: ListStagingAccountsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
55
  export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
56
  export declare const serializeAws_restJson1RetryDataReplicationCommand: (input: RetryDataReplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
57
  export declare const serializeAws_restJson1StartFailbackLaunchCommand: (input: StartFailbackLaunchCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -58,6 +64,7 @@ export declare const serializeAws_restJson1UpdateFailbackReplicationConfiguratio
58
64
  export declare const serializeAws_restJson1UpdateLaunchConfigurationCommand: (input: UpdateLaunchConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
59
65
  export declare const serializeAws_restJson1UpdateReplicationConfigurationCommand: (input: UpdateReplicationConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
60
66
  export declare const serializeAws_restJson1UpdateReplicationConfigurationTemplateCommand: (input: UpdateReplicationConfigurationTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
67
+ export declare const deserializeAws_restJson1CreateExtendedSourceServerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateExtendedSourceServerCommandOutput>;
61
68
  export declare const deserializeAws_restJson1CreateReplicationConfigurationTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateReplicationConfigurationTemplateCommandOutput>;
62
69
  export declare const deserializeAws_restJson1DeleteJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteJobCommandOutput>;
63
70
  export declare const deserializeAws_restJson1DeleteRecoveryInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteRecoveryInstanceCommandOutput>;
@@ -75,6 +82,8 @@ export declare const deserializeAws_restJson1GetFailbackReplicationConfiguration
75
82
  export declare const deserializeAws_restJson1GetLaunchConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetLaunchConfigurationCommandOutput>;
76
83
  export declare const deserializeAws_restJson1GetReplicationConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetReplicationConfigurationCommandOutput>;
77
84
  export declare const deserializeAws_restJson1InitializeServiceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<InitializeServiceCommandOutput>;
85
+ export declare const deserializeAws_restJson1ListExtensibleSourceServersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListExtensibleSourceServersCommandOutput>;
86
+ export declare const deserializeAws_restJson1ListStagingAccountsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListStagingAccountsCommandOutput>;
78
87
  export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
79
88
  export declare const deserializeAws_restJson1RetryDataReplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RetryDataReplicationCommandOutput>;
80
89
  export declare const deserializeAws_restJson1StartFailbackLaunchCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartFailbackLaunchCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-drs",
3
3
  "description": "AWS SDK for JavaScript Drs Client for Node.js, Browser and React Native",
4
- "version": "3.95.0",
4
+ "version": "3.102.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",
@@ -18,9 +18,9 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.95.0",
21
+ "@aws-sdk/client-sts": "3.100.0",
22
22
  "@aws-sdk/config-resolver": "3.80.0",
23
- "@aws-sdk/credential-provider-node": "3.95.0",
23
+ "@aws-sdk/credential-provider-node": "3.100.0",
24
24
  "@aws-sdk/fetch-http-handler": "3.78.0",
25
25
  "@aws-sdk/hash-node": "3.78.0",
26
26
  "@aws-sdk/invalid-dependency": "3.78.0",
@@ -35,15 +35,15 @@
35
35
  "@aws-sdk/node-config-provider": "3.80.0",
36
36
  "@aws-sdk/node-http-handler": "3.94.0",
37
37
  "@aws-sdk/protocol-http": "3.78.0",
38
- "@aws-sdk/smithy-client": "3.85.0",
38
+ "@aws-sdk/smithy-client": "3.99.0",
39
39
  "@aws-sdk/types": "3.78.0",
40
40
  "@aws-sdk/url-parser": "3.78.0",
41
41
  "@aws-sdk/util-base64-browser": "3.58.0",
42
42
  "@aws-sdk/util-base64-node": "3.55.0",
43
43
  "@aws-sdk/util-body-length-browser": "3.55.0",
44
44
  "@aws-sdk/util-body-length-node": "3.55.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.85.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.85.0",
45
+ "@aws-sdk/util-defaults-mode-browser": "3.99.0",
46
+ "@aws-sdk/util-defaults-mode-node": "3.99.0",
47
47
  "@aws-sdk/util-user-agent-browser": "3.78.0",
48
48
  "@aws-sdk/util-user-agent-node": "3.80.0",
49
49
  "@aws-sdk/util-utf8-browser": "3.55.0",