@aws-sdk/client-backupsearch 3.1024.0 → 3.1026.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.
|
@@ -281,7 +281,7 @@ export interface ListTagsForResourceResponse {
|
|
|
281
281
|
* <p>List of tags returned by the operation.</p>
|
|
282
282
|
* @public
|
|
283
283
|
*/
|
|
284
|
-
Tags?: Record<string, string> | undefined;
|
|
284
|
+
Tags?: Record<string, string | null> | undefined;
|
|
285
285
|
}
|
|
286
286
|
/**
|
|
287
287
|
* <p>This contains information results retrieved from a search job that may not have completed.</p>
|
|
@@ -464,7 +464,7 @@ export interface SearchScope {
|
|
|
464
464
|
* <p>These are one or more tags on the backup (recovery point).</p>
|
|
465
465
|
* @public
|
|
466
466
|
*/
|
|
467
|
-
BackupResourceTags?: Record<string, string> | undefined;
|
|
467
|
+
BackupResourceTags?: Record<string, string | null> | undefined;
|
|
468
468
|
}
|
|
469
469
|
/**
|
|
470
470
|
* <p>The summary of the specified search job scope, including: </p> <ul> <li> <p>TotalBackupsToScanCount, the number of recovery points returned by the search.</p> </li> <li> <p>TotalItemsToScanCount, the number of items returned by the search.</p> </li> </ul>
|
|
@@ -636,7 +636,7 @@ export interface StartSearchJobInput {
|
|
|
636
636
|
* <p>List of tags returned by the operation.</p>
|
|
637
637
|
* @public
|
|
638
638
|
*/
|
|
639
|
-
Tags?: Record<string, string> | undefined;
|
|
639
|
+
Tags?: Record<string, string | null> | undefined;
|
|
640
640
|
/**
|
|
641
641
|
* <p>Include alphanumeric characters to create a name for this search job.</p>
|
|
642
642
|
* @public
|
|
@@ -906,7 +906,7 @@ export interface StartSearchResultExportJobInput {
|
|
|
906
906
|
* <p>Optional tags to include. A tag is a key-value pair you can use to manage, filter, and search for your resources. Allowed characters include UTF-8 letters, numbers, spaces, and the following characters: + - = . _ : /. </p>
|
|
907
907
|
* @public
|
|
908
908
|
*/
|
|
909
|
-
Tags?: Record<string, string> | undefined;
|
|
909
|
+
Tags?: Record<string, string | null> | undefined;
|
|
910
910
|
/**
|
|
911
911
|
* <p>This parameter specifies the role ARN used to start the search results export jobs.</p>
|
|
912
912
|
* @public
|
|
@@ -941,7 +941,7 @@ export interface TagResourceRequest {
|
|
|
941
941
|
* <p>Required tags to include. A tag is a key-value pair you can use to manage, filter, and search for your resources. Allowed characters include UTF-8 letters, numbers, spaces, and the following characters: + - = . _ : /. </p>
|
|
942
942
|
* @public
|
|
943
943
|
*/
|
|
944
|
-
Tags: Record<string, string> | undefined;
|
|
944
|
+
Tags: Record<string, string | null> | undefined;
|
|
945
945
|
}
|
|
946
946
|
/**
|
|
947
947
|
* @public
|
|
@@ -87,7 +87,7 @@ export interface ListTagsForResourceRequest {
|
|
|
87
87
|
ResourceArn: string | undefined;
|
|
88
88
|
}
|
|
89
89
|
export interface ListTagsForResourceResponse {
|
|
90
|
-
Tags?: Record<string, string> | undefined;
|
|
90
|
+
Tags?: Record<string, string | null> | undefined;
|
|
91
91
|
}
|
|
92
92
|
export interface CurrentSearchProgress {
|
|
93
93
|
RecoveryPointsScannedCount?: number | undefined;
|
|
@@ -131,7 +131,7 @@ export interface SearchScope {
|
|
|
131
131
|
BackupResourceCreationTime?: BackupCreationTimeFilter | undefined;
|
|
132
132
|
SourceResourceArns?: string[] | undefined;
|
|
133
133
|
BackupResourceArns?: string[] | undefined;
|
|
134
|
-
BackupResourceTags?: Record<string, string> | undefined;
|
|
134
|
+
BackupResourceTags?: Record<string, string | null> | undefined;
|
|
135
135
|
}
|
|
136
136
|
export interface SearchScopeSummary {
|
|
137
137
|
TotalRecoveryPointsToScanCount?: number | undefined;
|
|
@@ -171,7 +171,7 @@ export interface ListSearchJobsOutput {
|
|
|
171
171
|
NextToken?: string | undefined;
|
|
172
172
|
}
|
|
173
173
|
export interface StartSearchJobInput {
|
|
174
|
-
Tags?: Record<string, string> | undefined;
|
|
174
|
+
Tags?: Record<string, string | null> | undefined;
|
|
175
175
|
Name?: string | undefined;
|
|
176
176
|
EncryptionKeyArn?: string | undefined;
|
|
177
177
|
ClientToken?: string | undefined;
|
|
@@ -244,7 +244,7 @@ export interface StartSearchResultExportJobInput {
|
|
|
244
244
|
SearchJobIdentifier: string | undefined;
|
|
245
245
|
ExportSpecification: ExportSpecification | undefined;
|
|
246
246
|
ClientToken?: string | undefined;
|
|
247
|
-
Tags?: Record<string, string> | undefined;
|
|
247
|
+
Tags?: Record<string, string | null> | undefined;
|
|
248
248
|
RoleArn?: string | undefined;
|
|
249
249
|
}
|
|
250
250
|
export interface StartSearchResultExportJobOutput {
|
|
@@ -253,7 +253,7 @@ export interface StartSearchResultExportJobOutput {
|
|
|
253
253
|
}
|
|
254
254
|
export interface TagResourceRequest {
|
|
255
255
|
ResourceArn: string | undefined;
|
|
256
|
-
Tags: Record<string, string> | undefined;
|
|
256
|
+
Tags: Record<string, string | null> | undefined;
|
|
257
257
|
}
|
|
258
258
|
export interface TagResourceResponse {}
|
|
259
259
|
export interface UntagResourceRequest {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-backupsearch",
|
|
3
3
|
"description": "AWS SDK for JavaScript Backupsearch Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1026.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-backupsearch",
|
|
@@ -21,41 +21,41 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
32
|
-
"@aws-sdk/util-endpoints": "^3.996.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
35
|
-
"@smithy/config-resolver": "^4.4.
|
|
36
|
-
"@smithy/core": "^3.23.
|
|
37
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
38
|
-
"@smithy/hash-node": "^4.2.
|
|
39
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
40
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.
|
|
43
|
-
"@smithy/middleware-serde": "^4.2.
|
|
44
|
-
"@smithy/middleware-stack": "^4.2.
|
|
45
|
-
"@smithy/node-config-provider": "^4.3.
|
|
46
|
-
"@smithy/node-http-handler": "^4.5.
|
|
47
|
-
"@smithy/protocol-http": "^5.3.
|
|
48
|
-
"@smithy/smithy-client": "^4.12.
|
|
49
|
-
"@smithy/types": "^4.
|
|
50
|
-
"@smithy/url-parser": "^4.2.
|
|
24
|
+
"@aws-sdk/core": "^3.973.27",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.30",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.9",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.9",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.10",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.29",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.11",
|
|
31
|
+
"@aws-sdk/types": "^3.973.7",
|
|
32
|
+
"@aws-sdk/util-endpoints": "^3.996.6",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.9",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.973.15",
|
|
35
|
+
"@smithy/config-resolver": "^4.4.14",
|
|
36
|
+
"@smithy/core": "^3.23.14",
|
|
37
|
+
"@smithy/fetch-http-handler": "^5.3.16",
|
|
38
|
+
"@smithy/hash-node": "^4.2.13",
|
|
39
|
+
"@smithy/invalid-dependency": "^4.2.13",
|
|
40
|
+
"@smithy/middleware-content-length": "^4.2.13",
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.29",
|
|
42
|
+
"@smithy/middleware-retry": "^4.5.0",
|
|
43
|
+
"@smithy/middleware-serde": "^4.2.17",
|
|
44
|
+
"@smithy/middleware-stack": "^4.2.13",
|
|
45
|
+
"@smithy/node-config-provider": "^4.3.13",
|
|
46
|
+
"@smithy/node-http-handler": "^4.5.2",
|
|
47
|
+
"@smithy/protocol-http": "^5.3.13",
|
|
48
|
+
"@smithy/smithy-client": "^4.12.9",
|
|
49
|
+
"@smithy/types": "^4.14.0",
|
|
50
|
+
"@smithy/url-parser": "^4.2.13",
|
|
51
51
|
"@smithy/util-base64": "^4.3.2",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
56
|
-
"@smithy/util-endpoints": "^3.3.
|
|
57
|
-
"@smithy/util-middleware": "^4.2.
|
|
58
|
-
"@smithy/util-retry": "^4.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.45",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.49",
|
|
56
|
+
"@smithy/util-endpoints": "^3.3.4",
|
|
57
|
+
"@smithy/util-middleware": "^4.2.13",
|
|
58
|
+
"@smithy/util-retry": "^4.3.0",
|
|
59
59
|
"@smithy/util-utf8": "^4.2.2",
|
|
60
60
|
"tslib": "^2.6.2"
|
|
61
61
|
},
|