@aws-sdk/client-backup 3.713.0 → 3.716.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/index.js +206 -4
- package/dist-cjs/runtimeConfig.js +8 -6
- package/dist-es/Backup.js +6 -0
- package/dist-es/commands/GetRecoveryPointIndexDetailsCommand.js +22 -0
- package/dist-es/commands/ListIndexedRecoveryPointsCommand.js +22 -0
- package/dist-es/commands/UpdateRecoveryPointIndexSettingsCommand.js +22 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +10 -0
- package/dist-es/pagination/ListIndexedRecoveryPointsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +135 -4
- package/dist-es/runtimeConfig.js +8 -6
- package/dist-types/Backup.d.ts +22 -0
- package/dist-types/BackupClient.d.ts +23 -2
- package/dist-types/commands/CreateBackupPlanCommand.d.ts +7 -0
- package/dist-types/commands/DescribeRecoveryPointCommand.d.ts +2 -0
- package/dist-types/commands/GetBackupPlanCommand.d.ts +7 -0
- package/dist-types/commands/GetBackupPlanFromJSONCommand.d.ts +7 -0
- package/dist-types/commands/GetBackupPlanFromTemplateCommand.d.ts +7 -0
- package/dist-types/commands/GetRecoveryPointIndexDetailsCommand.d.ts +94 -0
- package/dist-types/commands/ListIndexedRecoveryPointsCommand.d.ts +104 -0
- package/dist-types/commands/ListRecoveryPointsByBackupVaultCommand.d.ts +2 -0
- package/dist-types/commands/ListRecoveryPointsByResourceCommand.d.ts +2 -0
- package/dist-types/commands/StartBackupJobCommand.d.ts +1 -0
- package/dist-types/commands/UpdateBackupPlanCommand.d.ts +7 -0
- package/dist-types/commands/UpdateRecoveryPointIndexSettingsCommand.d.ts +95 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +475 -0
- package/dist-types/pagination/ListIndexedRecoveryPointsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/Backup.d.ts +52 -0
- package/dist-types/ts3.4/BackupClient.d.ts +19 -0
- package/dist-types/ts3.4/commands/GetRecoveryPointIndexDetailsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListIndexedRecoveryPointsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateRecoveryPointIndexSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +75 -0
- package/dist-types/ts3.4/pagination/ListIndexedRecoveryPointsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +19 -19
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-backup",
|
|
3
3
|
"description": "AWS SDK for JavaScript Backup Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.716.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-backup",
|
|
@@ -20,40 +20,40 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.716.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.716.0",
|
|
25
|
+
"@aws-sdk/core": "3.716.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.716.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.714.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.714.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.714.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.716.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.714.0",
|
|
32
|
+
"@aws-sdk/types": "3.714.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.714.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.714.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.716.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.13",
|
|
37
37
|
"@smithy/core": "^2.5.5",
|
|
38
38
|
"@smithy/fetch-http-handler": "^4.1.2",
|
|
39
39
|
"@smithy/hash-node": "^3.0.11",
|
|
40
40
|
"@smithy/invalid-dependency": "^3.0.11",
|
|
41
41
|
"@smithy/middleware-content-length": "^3.0.13",
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.2.
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.2.6",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.31",
|
|
44
44
|
"@smithy/middleware-serde": "^3.0.11",
|
|
45
45
|
"@smithy/middleware-stack": "^3.0.11",
|
|
46
46
|
"@smithy/node-config-provider": "^3.1.12",
|
|
47
47
|
"@smithy/node-http-handler": "^3.3.2",
|
|
48
48
|
"@smithy/protocol-http": "^4.1.8",
|
|
49
|
-
"@smithy/smithy-client": "^3.5.
|
|
49
|
+
"@smithy/smithy-client": "^3.5.1",
|
|
50
50
|
"@smithy/types": "^3.7.2",
|
|
51
51
|
"@smithy/url-parser": "^3.0.11",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.31",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.31",
|
|
57
57
|
"@smithy/util-endpoints": "^2.1.7",
|
|
58
58
|
"@smithy/util-middleware": "^3.0.11",
|
|
59
59
|
"@smithy/util-retry": "^3.0.11",
|