@aws-sdk/client-backupsearch 3.934.0 → 3.936.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 +39 -38
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +38 -0
- package/dist-es/models/errors.js +113 -0
- package/dist-es/models/models_0.js +1 -151
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +86 -0
- package/dist-types/models/errors.d.ts +150 -0
- package/dist-types/models/models_0.d.ts +1 -236
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +49 -0
- package/dist-types/ts3.4/models/errors.d.ts +65 -0
- package/dist-types/ts3.4/models/models_0.d.ts +8 -114
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
package/dist-cjs/index.js
CHANGED
|
@@ -158,17 +158,6 @@ let InternalServerException$1 = class InternalServerException extends BackupSear
|
|
|
158
158
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
159
159
|
}
|
|
160
160
|
};
|
|
161
|
-
const ResourceType = {
|
|
162
|
-
EBS: "EBS",
|
|
163
|
-
S3: "S3",
|
|
164
|
-
};
|
|
165
|
-
const SearchJobState = {
|
|
166
|
-
COMPLETED: "COMPLETED",
|
|
167
|
-
FAILED: "FAILED",
|
|
168
|
-
RUNNING: "RUNNING",
|
|
169
|
-
STOPPED: "STOPPED",
|
|
170
|
-
STOPPING: "STOPPING",
|
|
171
|
-
};
|
|
172
161
|
let ResourceNotFoundException$1 = class ResourceNotFoundException extends BackupSearchServiceException$1 {
|
|
173
162
|
name = "ResourceNotFoundException";
|
|
174
163
|
$fault = "client";
|
|
@@ -218,28 +207,6 @@ let ValidationException$1 = class ValidationException extends BackupSearchServic
|
|
|
218
207
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
219
208
|
}
|
|
220
209
|
};
|
|
221
|
-
const TimeConditionOperator = {
|
|
222
|
-
EQUALS_TO: "EQUALS_TO",
|
|
223
|
-
GREATER_THAN_EQUAL_TO: "GREATER_THAN_EQUAL_TO",
|
|
224
|
-
LESS_THAN_EQUAL_TO: "LESS_THAN_EQUAL_TO",
|
|
225
|
-
NOT_EQUALS_TO: "NOT_EQUALS_TO",
|
|
226
|
-
};
|
|
227
|
-
const StringConditionOperator = {
|
|
228
|
-
BEGINS_WITH: "BEGINS_WITH",
|
|
229
|
-
CONTAINS: "CONTAINS",
|
|
230
|
-
DOES_NOT_BEGIN_WITH: "DOES_NOT_BEGIN_WITH",
|
|
231
|
-
DOES_NOT_CONTAIN: "DOES_NOT_CONTAIN",
|
|
232
|
-
DOES_NOT_END_WITH: "DOES_NOT_END_WITH",
|
|
233
|
-
ENDS_WITH: "ENDS_WITH",
|
|
234
|
-
EQUALS_TO: "EQUALS_TO",
|
|
235
|
-
NOT_EQUALS_TO: "NOT_EQUALS_TO",
|
|
236
|
-
};
|
|
237
|
-
const LongConditionOperator = {
|
|
238
|
-
EQUALS_TO: "EQUALS_TO",
|
|
239
|
-
GREATER_THAN_EQUAL_TO: "GREATER_THAN_EQUAL_TO",
|
|
240
|
-
LESS_THAN_EQUAL_TO: "LESS_THAN_EQUAL_TO",
|
|
241
|
-
NOT_EQUALS_TO: "NOT_EQUALS_TO",
|
|
242
|
-
};
|
|
243
210
|
let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends BackupSearchServiceException$1 {
|
|
244
211
|
name = "ServiceQuotaExceededException";
|
|
245
212
|
$fault = "client";
|
|
@@ -260,11 +227,6 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
|
|
|
260
227
|
this.quotaCode = opts.quotaCode;
|
|
261
228
|
}
|
|
262
229
|
};
|
|
263
|
-
const ExportJobStatus = {
|
|
264
|
-
COMPLETED: "COMPLETED",
|
|
265
|
-
FAILED: "FAILED",
|
|
266
|
-
RUNNING: "RUNNING",
|
|
267
|
-
};
|
|
268
230
|
|
|
269
231
|
const _ADE = "AccessDeniedException";
|
|
270
232
|
const _BCT = "BackupCreationTime";
|
|
@@ -1131,6 +1093,45 @@ const paginateListSearchJobs = core.createPaginator(BackupSearchClient, ListSear
|
|
|
1131
1093
|
|
|
1132
1094
|
const paginateListSearchResultExportJobs = core.createPaginator(BackupSearchClient, ListSearchResultExportJobsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1133
1095
|
|
|
1096
|
+
const ResourceType = {
|
|
1097
|
+
EBS: "EBS",
|
|
1098
|
+
S3: "S3",
|
|
1099
|
+
};
|
|
1100
|
+
const SearchJobState = {
|
|
1101
|
+
COMPLETED: "COMPLETED",
|
|
1102
|
+
FAILED: "FAILED",
|
|
1103
|
+
RUNNING: "RUNNING",
|
|
1104
|
+
STOPPED: "STOPPED",
|
|
1105
|
+
STOPPING: "STOPPING",
|
|
1106
|
+
};
|
|
1107
|
+
const TimeConditionOperator = {
|
|
1108
|
+
EQUALS_TO: "EQUALS_TO",
|
|
1109
|
+
GREATER_THAN_EQUAL_TO: "GREATER_THAN_EQUAL_TO",
|
|
1110
|
+
LESS_THAN_EQUAL_TO: "LESS_THAN_EQUAL_TO",
|
|
1111
|
+
NOT_EQUALS_TO: "NOT_EQUALS_TO",
|
|
1112
|
+
};
|
|
1113
|
+
const StringConditionOperator = {
|
|
1114
|
+
BEGINS_WITH: "BEGINS_WITH",
|
|
1115
|
+
CONTAINS: "CONTAINS",
|
|
1116
|
+
DOES_NOT_BEGIN_WITH: "DOES_NOT_BEGIN_WITH",
|
|
1117
|
+
DOES_NOT_CONTAIN: "DOES_NOT_CONTAIN",
|
|
1118
|
+
DOES_NOT_END_WITH: "DOES_NOT_END_WITH",
|
|
1119
|
+
ENDS_WITH: "ENDS_WITH",
|
|
1120
|
+
EQUALS_TO: "EQUALS_TO",
|
|
1121
|
+
NOT_EQUALS_TO: "NOT_EQUALS_TO",
|
|
1122
|
+
};
|
|
1123
|
+
const LongConditionOperator = {
|
|
1124
|
+
EQUALS_TO: "EQUALS_TO",
|
|
1125
|
+
GREATER_THAN_EQUAL_TO: "GREATER_THAN_EQUAL_TO",
|
|
1126
|
+
LESS_THAN_EQUAL_TO: "LESS_THAN_EQUAL_TO",
|
|
1127
|
+
NOT_EQUALS_TO: "NOT_EQUALS_TO",
|
|
1128
|
+
};
|
|
1129
|
+
const ExportJobStatus = {
|
|
1130
|
+
COMPLETED: "COMPLETED",
|
|
1131
|
+
FAILED: "FAILED",
|
|
1132
|
+
RUNNING: "RUNNING",
|
|
1133
|
+
};
|
|
1134
|
+
|
|
1134
1135
|
Object.defineProperty(exports, "$Command", {
|
|
1135
1136
|
enumerable: true,
|
|
1136
1137
|
get: function () { return smithyClient.Command; }
|
package/dist-es/index.js
CHANGED
|
@@ -2,5 +2,6 @@ export * from "./BackupSearchClient";
|
|
|
2
2
|
export * from "./BackupSearch";
|
|
3
3
|
export * from "./commands";
|
|
4
4
|
export * from "./pagination";
|
|
5
|
-
export * from "./models";
|
|
5
|
+
export * from "./models/enums";
|
|
6
|
+
export * from "./models/errors";
|
|
6
7
|
export { BackupSearchServiceException } from "./models/BackupSearchServiceException";
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
export const ResourceType = {
|
|
2
|
+
EBS: "EBS",
|
|
3
|
+
S3: "S3",
|
|
4
|
+
};
|
|
5
|
+
export const SearchJobState = {
|
|
6
|
+
COMPLETED: "COMPLETED",
|
|
7
|
+
FAILED: "FAILED",
|
|
8
|
+
RUNNING: "RUNNING",
|
|
9
|
+
STOPPED: "STOPPED",
|
|
10
|
+
STOPPING: "STOPPING",
|
|
11
|
+
};
|
|
12
|
+
export const TimeConditionOperator = {
|
|
13
|
+
EQUALS_TO: "EQUALS_TO",
|
|
14
|
+
GREATER_THAN_EQUAL_TO: "GREATER_THAN_EQUAL_TO",
|
|
15
|
+
LESS_THAN_EQUAL_TO: "LESS_THAN_EQUAL_TO",
|
|
16
|
+
NOT_EQUALS_TO: "NOT_EQUALS_TO",
|
|
17
|
+
};
|
|
18
|
+
export const StringConditionOperator = {
|
|
19
|
+
BEGINS_WITH: "BEGINS_WITH",
|
|
20
|
+
CONTAINS: "CONTAINS",
|
|
21
|
+
DOES_NOT_BEGIN_WITH: "DOES_NOT_BEGIN_WITH",
|
|
22
|
+
DOES_NOT_CONTAIN: "DOES_NOT_CONTAIN",
|
|
23
|
+
DOES_NOT_END_WITH: "DOES_NOT_END_WITH",
|
|
24
|
+
ENDS_WITH: "ENDS_WITH",
|
|
25
|
+
EQUALS_TO: "EQUALS_TO",
|
|
26
|
+
NOT_EQUALS_TO: "NOT_EQUALS_TO",
|
|
27
|
+
};
|
|
28
|
+
export const LongConditionOperator = {
|
|
29
|
+
EQUALS_TO: "EQUALS_TO",
|
|
30
|
+
GREATER_THAN_EQUAL_TO: "GREATER_THAN_EQUAL_TO",
|
|
31
|
+
LESS_THAN_EQUAL_TO: "LESS_THAN_EQUAL_TO",
|
|
32
|
+
NOT_EQUALS_TO: "NOT_EQUALS_TO",
|
|
33
|
+
};
|
|
34
|
+
export const ExportJobStatus = {
|
|
35
|
+
COMPLETED: "COMPLETED",
|
|
36
|
+
FAILED: "FAILED",
|
|
37
|
+
RUNNING: "RUNNING",
|
|
38
|
+
};
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
import { BackupSearchServiceException as __BaseException } from "./BackupSearchServiceException";
|
|
2
|
+
export class AccessDeniedException extends __BaseException {
|
|
3
|
+
name = "AccessDeniedException";
|
|
4
|
+
$fault = "client";
|
|
5
|
+
constructor(opts) {
|
|
6
|
+
super({
|
|
7
|
+
name: "AccessDeniedException",
|
|
8
|
+
$fault: "client",
|
|
9
|
+
...opts,
|
|
10
|
+
});
|
|
11
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
export class ConflictException extends __BaseException {
|
|
15
|
+
name = "ConflictException";
|
|
16
|
+
$fault = "client";
|
|
17
|
+
resourceId;
|
|
18
|
+
resourceType;
|
|
19
|
+
constructor(opts) {
|
|
20
|
+
super({
|
|
21
|
+
name: "ConflictException",
|
|
22
|
+
$fault: "client",
|
|
23
|
+
...opts,
|
|
24
|
+
});
|
|
25
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
26
|
+
this.resourceId = opts.resourceId;
|
|
27
|
+
this.resourceType = opts.resourceType;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
export class InternalServerException extends __BaseException {
|
|
31
|
+
name = "InternalServerException";
|
|
32
|
+
$fault = "server";
|
|
33
|
+
$retryable = {};
|
|
34
|
+
retryAfterSeconds;
|
|
35
|
+
constructor(opts) {
|
|
36
|
+
super({
|
|
37
|
+
name: "InternalServerException",
|
|
38
|
+
$fault: "server",
|
|
39
|
+
...opts,
|
|
40
|
+
});
|
|
41
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
42
|
+
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
46
|
+
name = "ResourceNotFoundException";
|
|
47
|
+
$fault = "client";
|
|
48
|
+
resourceId;
|
|
49
|
+
resourceType;
|
|
50
|
+
constructor(opts) {
|
|
51
|
+
super({
|
|
52
|
+
name: "ResourceNotFoundException",
|
|
53
|
+
$fault: "client",
|
|
54
|
+
...opts,
|
|
55
|
+
});
|
|
56
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
57
|
+
this.resourceId = opts.resourceId;
|
|
58
|
+
this.resourceType = opts.resourceType;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
export class ThrottlingException extends __BaseException {
|
|
62
|
+
name = "ThrottlingException";
|
|
63
|
+
$fault = "client";
|
|
64
|
+
$retryable = {
|
|
65
|
+
throttling: true,
|
|
66
|
+
};
|
|
67
|
+
serviceCode;
|
|
68
|
+
quotaCode;
|
|
69
|
+
retryAfterSeconds;
|
|
70
|
+
constructor(opts) {
|
|
71
|
+
super({
|
|
72
|
+
name: "ThrottlingException",
|
|
73
|
+
$fault: "client",
|
|
74
|
+
...opts,
|
|
75
|
+
});
|
|
76
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
77
|
+
this.serviceCode = opts.serviceCode;
|
|
78
|
+
this.quotaCode = opts.quotaCode;
|
|
79
|
+
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
export class ValidationException extends __BaseException {
|
|
83
|
+
name = "ValidationException";
|
|
84
|
+
$fault = "client";
|
|
85
|
+
constructor(opts) {
|
|
86
|
+
super({
|
|
87
|
+
name: "ValidationException",
|
|
88
|
+
$fault: "client",
|
|
89
|
+
...opts,
|
|
90
|
+
});
|
|
91
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
export class ServiceQuotaExceededException extends __BaseException {
|
|
95
|
+
name = "ServiceQuotaExceededException";
|
|
96
|
+
$fault = "client";
|
|
97
|
+
resourceId;
|
|
98
|
+
resourceType;
|
|
99
|
+
serviceCode;
|
|
100
|
+
quotaCode;
|
|
101
|
+
constructor(opts) {
|
|
102
|
+
super({
|
|
103
|
+
name: "ServiceQuotaExceededException",
|
|
104
|
+
$fault: "client",
|
|
105
|
+
...opts,
|
|
106
|
+
});
|
|
107
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
108
|
+
this.resourceId = opts.resourceId;
|
|
109
|
+
this.resourceType = opts.resourceType;
|
|
110
|
+
this.serviceCode = opts.serviceCode;
|
|
111
|
+
this.quotaCode = opts.quotaCode;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
@@ -1,151 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export class AccessDeniedException extends __BaseException {
|
|
3
|
-
name = "AccessDeniedException";
|
|
4
|
-
$fault = "client";
|
|
5
|
-
constructor(opts) {
|
|
6
|
-
super({
|
|
7
|
-
name: "AccessDeniedException",
|
|
8
|
-
$fault: "client",
|
|
9
|
-
...opts,
|
|
10
|
-
});
|
|
11
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
export class ConflictException extends __BaseException {
|
|
15
|
-
name = "ConflictException";
|
|
16
|
-
$fault = "client";
|
|
17
|
-
resourceId;
|
|
18
|
-
resourceType;
|
|
19
|
-
constructor(opts) {
|
|
20
|
-
super({
|
|
21
|
-
name: "ConflictException",
|
|
22
|
-
$fault: "client",
|
|
23
|
-
...opts,
|
|
24
|
-
});
|
|
25
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
26
|
-
this.resourceId = opts.resourceId;
|
|
27
|
-
this.resourceType = opts.resourceType;
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
export class InternalServerException extends __BaseException {
|
|
31
|
-
name = "InternalServerException";
|
|
32
|
-
$fault = "server";
|
|
33
|
-
$retryable = {};
|
|
34
|
-
retryAfterSeconds;
|
|
35
|
-
constructor(opts) {
|
|
36
|
-
super({
|
|
37
|
-
name: "InternalServerException",
|
|
38
|
-
$fault: "server",
|
|
39
|
-
...opts,
|
|
40
|
-
});
|
|
41
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
42
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
export const ResourceType = {
|
|
46
|
-
EBS: "EBS",
|
|
47
|
-
S3: "S3",
|
|
48
|
-
};
|
|
49
|
-
export const SearchJobState = {
|
|
50
|
-
COMPLETED: "COMPLETED",
|
|
51
|
-
FAILED: "FAILED",
|
|
52
|
-
RUNNING: "RUNNING",
|
|
53
|
-
STOPPED: "STOPPED",
|
|
54
|
-
STOPPING: "STOPPING",
|
|
55
|
-
};
|
|
56
|
-
export class ResourceNotFoundException extends __BaseException {
|
|
57
|
-
name = "ResourceNotFoundException";
|
|
58
|
-
$fault = "client";
|
|
59
|
-
resourceId;
|
|
60
|
-
resourceType;
|
|
61
|
-
constructor(opts) {
|
|
62
|
-
super({
|
|
63
|
-
name: "ResourceNotFoundException",
|
|
64
|
-
$fault: "client",
|
|
65
|
-
...opts,
|
|
66
|
-
});
|
|
67
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
68
|
-
this.resourceId = opts.resourceId;
|
|
69
|
-
this.resourceType = opts.resourceType;
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
export class ThrottlingException extends __BaseException {
|
|
73
|
-
name = "ThrottlingException";
|
|
74
|
-
$fault = "client";
|
|
75
|
-
$retryable = {
|
|
76
|
-
throttling: true,
|
|
77
|
-
};
|
|
78
|
-
serviceCode;
|
|
79
|
-
quotaCode;
|
|
80
|
-
retryAfterSeconds;
|
|
81
|
-
constructor(opts) {
|
|
82
|
-
super({
|
|
83
|
-
name: "ThrottlingException",
|
|
84
|
-
$fault: "client",
|
|
85
|
-
...opts,
|
|
86
|
-
});
|
|
87
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
88
|
-
this.serviceCode = opts.serviceCode;
|
|
89
|
-
this.quotaCode = opts.quotaCode;
|
|
90
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
export class ValidationException extends __BaseException {
|
|
94
|
-
name = "ValidationException";
|
|
95
|
-
$fault = "client";
|
|
96
|
-
constructor(opts) {
|
|
97
|
-
super({
|
|
98
|
-
name: "ValidationException",
|
|
99
|
-
$fault: "client",
|
|
100
|
-
...opts,
|
|
101
|
-
});
|
|
102
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
export const TimeConditionOperator = {
|
|
106
|
-
EQUALS_TO: "EQUALS_TO",
|
|
107
|
-
GREATER_THAN_EQUAL_TO: "GREATER_THAN_EQUAL_TO",
|
|
108
|
-
LESS_THAN_EQUAL_TO: "LESS_THAN_EQUAL_TO",
|
|
109
|
-
NOT_EQUALS_TO: "NOT_EQUALS_TO",
|
|
110
|
-
};
|
|
111
|
-
export const StringConditionOperator = {
|
|
112
|
-
BEGINS_WITH: "BEGINS_WITH",
|
|
113
|
-
CONTAINS: "CONTAINS",
|
|
114
|
-
DOES_NOT_BEGIN_WITH: "DOES_NOT_BEGIN_WITH",
|
|
115
|
-
DOES_NOT_CONTAIN: "DOES_NOT_CONTAIN",
|
|
116
|
-
DOES_NOT_END_WITH: "DOES_NOT_END_WITH",
|
|
117
|
-
ENDS_WITH: "ENDS_WITH",
|
|
118
|
-
EQUALS_TO: "EQUALS_TO",
|
|
119
|
-
NOT_EQUALS_TO: "NOT_EQUALS_TO",
|
|
120
|
-
};
|
|
121
|
-
export const LongConditionOperator = {
|
|
122
|
-
EQUALS_TO: "EQUALS_TO",
|
|
123
|
-
GREATER_THAN_EQUAL_TO: "GREATER_THAN_EQUAL_TO",
|
|
124
|
-
LESS_THAN_EQUAL_TO: "LESS_THAN_EQUAL_TO",
|
|
125
|
-
NOT_EQUALS_TO: "NOT_EQUALS_TO",
|
|
126
|
-
};
|
|
127
|
-
export class ServiceQuotaExceededException extends __BaseException {
|
|
128
|
-
name = "ServiceQuotaExceededException";
|
|
129
|
-
$fault = "client";
|
|
130
|
-
resourceId;
|
|
131
|
-
resourceType;
|
|
132
|
-
serviceCode;
|
|
133
|
-
quotaCode;
|
|
134
|
-
constructor(opts) {
|
|
135
|
-
super({
|
|
136
|
-
name: "ServiceQuotaExceededException",
|
|
137
|
-
$fault: "client",
|
|
138
|
-
...opts,
|
|
139
|
-
});
|
|
140
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
141
|
-
this.resourceId = opts.resourceId;
|
|
142
|
-
this.resourceType = opts.resourceType;
|
|
143
|
-
this.serviceCode = opts.serviceCode;
|
|
144
|
-
this.quotaCode = opts.quotaCode;
|
|
145
|
-
}
|
|
146
|
-
}
|
|
147
|
-
export const ExportJobStatus = {
|
|
148
|
-
COMPLETED: "COMPLETED",
|
|
149
|
-
FAILED: "FAILED",
|
|
150
|
-
RUNNING: "RUNNING",
|
|
151
|
-
};
|
|
1
|
+
export {};
|
|
@@ -148,7 +148,7 @@ const _tK = "tagKeys";
|
|
|
148
148
|
const n0 = "com.amazonaws.backupsearch";
|
|
149
149
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
150
150
|
import { BackupSearchServiceException as __BackupSearchServiceException } from "../models/BackupSearchServiceException";
|
|
151
|
-
import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/
|
|
151
|
+
import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/errors";
|
|
152
152
|
export var FilePath = [0, n0, _FP, 8, 0];
|
|
153
153
|
export var ObjectKey = [0, n0, _OK, 8, 0];
|
|
154
154
|
export var AccessDeniedException = [
|
package/dist-types/index.d.ts
CHANGED
|
@@ -10,5 +10,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
|
|
|
10
10
|
export type { BackupSearchExtensionConfiguration } from "./extensionConfiguration";
|
|
11
11
|
export * from "./commands";
|
|
12
12
|
export * from "./pagination";
|
|
13
|
-
export * from "./models";
|
|
13
|
+
export * from "./models/enums";
|
|
14
|
+
export * from "./models/errors";
|
|
15
|
+
export type * from "./models/models_0";
|
|
14
16
|
export { BackupSearchServiceException } from "./models/BackupSearchServiceException";
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const ResourceType: {
|
|
6
|
+
readonly EBS: "EBS";
|
|
7
|
+
readonly S3: "S3";
|
|
8
|
+
};
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
* @enum
|
|
16
|
+
*/
|
|
17
|
+
export declare const SearchJobState: {
|
|
18
|
+
readonly COMPLETED: "COMPLETED";
|
|
19
|
+
readonly FAILED: "FAILED";
|
|
20
|
+
readonly RUNNING: "RUNNING";
|
|
21
|
+
readonly STOPPED: "STOPPED";
|
|
22
|
+
readonly STOPPING: "STOPPING";
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
export type SearchJobState = (typeof SearchJobState)[keyof typeof SearchJobState];
|
|
28
|
+
/**
|
|
29
|
+
* @public
|
|
30
|
+
* @enum
|
|
31
|
+
*/
|
|
32
|
+
export declare const TimeConditionOperator: {
|
|
33
|
+
readonly EQUALS_TO: "EQUALS_TO";
|
|
34
|
+
readonly GREATER_THAN_EQUAL_TO: "GREATER_THAN_EQUAL_TO";
|
|
35
|
+
readonly LESS_THAN_EQUAL_TO: "LESS_THAN_EQUAL_TO";
|
|
36
|
+
readonly NOT_EQUALS_TO: "NOT_EQUALS_TO";
|
|
37
|
+
};
|
|
38
|
+
/**
|
|
39
|
+
* @public
|
|
40
|
+
*/
|
|
41
|
+
export type TimeConditionOperator = (typeof TimeConditionOperator)[keyof typeof TimeConditionOperator];
|
|
42
|
+
/**
|
|
43
|
+
* @public
|
|
44
|
+
* @enum
|
|
45
|
+
*/
|
|
46
|
+
export declare const StringConditionOperator: {
|
|
47
|
+
readonly BEGINS_WITH: "BEGINS_WITH";
|
|
48
|
+
readonly CONTAINS: "CONTAINS";
|
|
49
|
+
readonly DOES_NOT_BEGIN_WITH: "DOES_NOT_BEGIN_WITH";
|
|
50
|
+
readonly DOES_NOT_CONTAIN: "DOES_NOT_CONTAIN";
|
|
51
|
+
readonly DOES_NOT_END_WITH: "DOES_NOT_END_WITH";
|
|
52
|
+
readonly ENDS_WITH: "ENDS_WITH";
|
|
53
|
+
readonly EQUALS_TO: "EQUALS_TO";
|
|
54
|
+
readonly NOT_EQUALS_TO: "NOT_EQUALS_TO";
|
|
55
|
+
};
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
59
|
+
export type StringConditionOperator = (typeof StringConditionOperator)[keyof typeof StringConditionOperator];
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
* @enum
|
|
63
|
+
*/
|
|
64
|
+
export declare const LongConditionOperator: {
|
|
65
|
+
readonly EQUALS_TO: "EQUALS_TO";
|
|
66
|
+
readonly GREATER_THAN_EQUAL_TO: "GREATER_THAN_EQUAL_TO";
|
|
67
|
+
readonly LESS_THAN_EQUAL_TO: "LESS_THAN_EQUAL_TO";
|
|
68
|
+
readonly NOT_EQUALS_TO: "NOT_EQUALS_TO";
|
|
69
|
+
};
|
|
70
|
+
/**
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
73
|
+
export type LongConditionOperator = (typeof LongConditionOperator)[keyof typeof LongConditionOperator];
|
|
74
|
+
/**
|
|
75
|
+
* @public
|
|
76
|
+
* @enum
|
|
77
|
+
*/
|
|
78
|
+
export declare const ExportJobStatus: {
|
|
79
|
+
readonly COMPLETED: "COMPLETED";
|
|
80
|
+
readonly FAILED: "FAILED";
|
|
81
|
+
readonly RUNNING: "RUNNING";
|
|
82
|
+
};
|
|
83
|
+
/**
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
86
|
+
export type ExportJobStatus = (typeof ExportJobStatus)[keyof typeof ExportJobStatus];
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { BackupSearchServiceException as __BaseException } from "./BackupSearchServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
+
readonly name: "AccessDeniedException";
|
|
9
|
+
readonly $fault: "client";
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
13
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* <p>This exception occurs when a conflict with a previous successful operation is detected. This generally occurs when the previous operation did not have time to propagate to the host serving the current request.</p> <p>A retry (with appropriate backoff logic) is the recommended response to this exception.</p>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
export declare class ConflictException extends __BaseException {
|
|
20
|
+
readonly name: "ConflictException";
|
|
21
|
+
readonly $fault: "client";
|
|
22
|
+
/**
|
|
23
|
+
* <p>Identifier of the resource affected.</p>
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
resourceId: string | undefined;
|
|
27
|
+
/**
|
|
28
|
+
* <p>Type of the resource affected.</p>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
resourceType: string | undefined;
|
|
32
|
+
/**
|
|
33
|
+
* @internal
|
|
34
|
+
*/
|
|
35
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* <p>An internal server error occurred. Retry your request.</p>
|
|
39
|
+
* @public
|
|
40
|
+
*/
|
|
41
|
+
export declare class InternalServerException extends __BaseException {
|
|
42
|
+
readonly name: "InternalServerException";
|
|
43
|
+
readonly $fault: "server";
|
|
44
|
+
$retryable: {};
|
|
45
|
+
/**
|
|
46
|
+
* <p>Retry the call after number of seconds.</p>
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
49
|
+
retryAfterSeconds?: number | undefined;
|
|
50
|
+
/**
|
|
51
|
+
* @internal
|
|
52
|
+
*/
|
|
53
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* <p>The resource was not found for this request.</p> <p>Confirm the resource information, such as the ARN or type is correct and exists, then retry the request.</p>
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
59
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
60
|
+
readonly name: "ResourceNotFoundException";
|
|
61
|
+
readonly $fault: "client";
|
|
62
|
+
/**
|
|
63
|
+
* <p>Hypothetical identifier of the resource affected.</p>
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
66
|
+
resourceId: string | undefined;
|
|
67
|
+
/**
|
|
68
|
+
* <p>Hypothetical type of the resource affected.</p>
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
resourceType: string | undefined;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
75
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
76
|
+
}
|
|
77
|
+
/**
|
|
78
|
+
* <p>The request was denied due to request throttling.</p>
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
export declare class ThrottlingException extends __BaseException {
|
|
82
|
+
readonly name: "ThrottlingException";
|
|
83
|
+
readonly $fault: "client";
|
|
84
|
+
$retryable: {
|
|
85
|
+
throttling: boolean;
|
|
86
|
+
};
|
|
87
|
+
/**
|
|
88
|
+
* <p>This is the code unique to the originating service.</p>
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
91
|
+
serviceCode?: string | undefined;
|
|
92
|
+
/**
|
|
93
|
+
* <p>This is the code unique to the originating service with the quota.</p>
|
|
94
|
+
* @public
|
|
95
|
+
*/
|
|
96
|
+
quotaCode?: string | undefined;
|
|
97
|
+
/**
|
|
98
|
+
* <p>Retry the call after number of seconds.</p>
|
|
99
|
+
* @public
|
|
100
|
+
*/
|
|
101
|
+
retryAfterSeconds?: number | undefined;
|
|
102
|
+
/**
|
|
103
|
+
* @internal
|
|
104
|
+
*/
|
|
105
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* <p>The input fails to satisfy the constraints specified by a service.</p>
|
|
109
|
+
* @public
|
|
110
|
+
*/
|
|
111
|
+
export declare class ValidationException extends __BaseException {
|
|
112
|
+
readonly name: "ValidationException";
|
|
113
|
+
readonly $fault: "client";
|
|
114
|
+
/**
|
|
115
|
+
* @internal
|
|
116
|
+
*/
|
|
117
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
118
|
+
}
|
|
119
|
+
/**
|
|
120
|
+
* <p>The request denied due to exceeding the quota limits permitted.</p>
|
|
121
|
+
* @public
|
|
122
|
+
*/
|
|
123
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
124
|
+
readonly name: "ServiceQuotaExceededException";
|
|
125
|
+
readonly $fault: "client";
|
|
126
|
+
/**
|
|
127
|
+
* <p>Identifier of the resource.</p>
|
|
128
|
+
* @public
|
|
129
|
+
*/
|
|
130
|
+
resourceId: string | undefined;
|
|
131
|
+
/**
|
|
132
|
+
* <p>Type of resource.</p>
|
|
133
|
+
* @public
|
|
134
|
+
*/
|
|
135
|
+
resourceType: string | undefined;
|
|
136
|
+
/**
|
|
137
|
+
* <p>This is the code unique to the originating service with the quota.</p>
|
|
138
|
+
* @public
|
|
139
|
+
*/
|
|
140
|
+
serviceCode: string | undefined;
|
|
141
|
+
/**
|
|
142
|
+
* <p>This is the code specific to the quota type.</p>
|
|
143
|
+
* @public
|
|
144
|
+
*/
|
|
145
|
+
quotaCode: string | undefined;
|
|
146
|
+
/**
|
|
147
|
+
* @internal
|
|
148
|
+
*/
|
|
149
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
150
|
+
}
|
|
@@ -1,17 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { BackupSearchServiceException as __BaseException } from "./BackupSearchServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* <p>You do not have sufficient access to perform this action.</p>
|
|
5
|
-
* @public
|
|
6
|
-
*/
|
|
7
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
-
readonly name: "AccessDeniedException";
|
|
9
|
-
readonly $fault: "client";
|
|
10
|
-
/**
|
|
11
|
-
* @internal
|
|
12
|
-
*/
|
|
13
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
14
|
-
}
|
|
1
|
+
import { ExportJobStatus, LongConditionOperator, ResourceType, SearchJobState, StringConditionOperator, TimeConditionOperator } from "./enums";
|
|
15
2
|
/**
|
|
16
3
|
* <p>This filters by recovery points within the CreatedAfter and CreatedBefore timestamps.</p>
|
|
17
4
|
* @public
|
|
@@ -28,46 +15,6 @@ export interface BackupCreationTimeFilter {
|
|
|
28
15
|
*/
|
|
29
16
|
CreatedBefore?: Date | undefined;
|
|
30
17
|
}
|
|
31
|
-
/**
|
|
32
|
-
* <p>This exception occurs when a conflict with a previous successful operation is detected. This generally occurs when the previous operation did not have time to propagate to the host serving the current request.</p> <p>A retry (with appropriate backoff logic) is the recommended response to this exception.</p>
|
|
33
|
-
* @public
|
|
34
|
-
*/
|
|
35
|
-
export declare class ConflictException extends __BaseException {
|
|
36
|
-
readonly name: "ConflictException";
|
|
37
|
-
readonly $fault: "client";
|
|
38
|
-
/**
|
|
39
|
-
* <p>Identifier of the resource affected.</p>
|
|
40
|
-
* @public
|
|
41
|
-
*/
|
|
42
|
-
resourceId: string | undefined;
|
|
43
|
-
/**
|
|
44
|
-
* <p>Type of the resource affected.</p>
|
|
45
|
-
* @public
|
|
46
|
-
*/
|
|
47
|
-
resourceType: string | undefined;
|
|
48
|
-
/**
|
|
49
|
-
* @internal
|
|
50
|
-
*/
|
|
51
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
52
|
-
}
|
|
53
|
-
/**
|
|
54
|
-
* <p>An internal server error occurred. Retry your request.</p>
|
|
55
|
-
* @public
|
|
56
|
-
*/
|
|
57
|
-
export declare class InternalServerException extends __BaseException {
|
|
58
|
-
readonly name: "InternalServerException";
|
|
59
|
-
readonly $fault: "server";
|
|
60
|
-
$retryable: {};
|
|
61
|
-
/**
|
|
62
|
-
* <p>Retry the call after number of seconds.</p>
|
|
63
|
-
* @public
|
|
64
|
-
*/
|
|
65
|
-
retryAfterSeconds?: number | undefined;
|
|
66
|
-
/**
|
|
67
|
-
* @internal
|
|
68
|
-
*/
|
|
69
|
-
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
70
|
-
}
|
|
71
18
|
/**
|
|
72
19
|
* @public
|
|
73
20
|
*/
|
|
@@ -88,33 +35,6 @@ export interface ListSearchJobBackupsInput {
|
|
|
88
35
|
*/
|
|
89
36
|
MaxResults?: number | undefined;
|
|
90
37
|
}
|
|
91
|
-
/**
|
|
92
|
-
* @public
|
|
93
|
-
* @enum
|
|
94
|
-
*/
|
|
95
|
-
export declare const ResourceType: {
|
|
96
|
-
readonly EBS: "EBS";
|
|
97
|
-
readonly S3: "S3";
|
|
98
|
-
};
|
|
99
|
-
/**
|
|
100
|
-
* @public
|
|
101
|
-
*/
|
|
102
|
-
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
103
|
-
/**
|
|
104
|
-
* @public
|
|
105
|
-
* @enum
|
|
106
|
-
*/
|
|
107
|
-
export declare const SearchJobState: {
|
|
108
|
-
readonly COMPLETED: "COMPLETED";
|
|
109
|
-
readonly FAILED: "FAILED";
|
|
110
|
-
readonly RUNNING: "RUNNING";
|
|
111
|
-
readonly STOPPED: "STOPPED";
|
|
112
|
-
readonly STOPPING: "STOPPING";
|
|
113
|
-
};
|
|
114
|
-
/**
|
|
115
|
-
* @public
|
|
116
|
-
*/
|
|
117
|
-
export type SearchJobState = (typeof SearchJobState)[keyof typeof SearchJobState];
|
|
118
38
|
/**
|
|
119
39
|
* <p>This contains the information about recovery points returned in results of a search job.</p>
|
|
120
40
|
* @public
|
|
@@ -171,70 +91,6 @@ export interface ListSearchJobBackupsOutput {
|
|
|
171
91
|
*/
|
|
172
92
|
NextToken?: string | undefined;
|
|
173
93
|
}
|
|
174
|
-
/**
|
|
175
|
-
* <p>The resource was not found for this request.</p> <p>Confirm the resource information, such as the ARN or type is correct and exists, then retry the request.</p>
|
|
176
|
-
* @public
|
|
177
|
-
*/
|
|
178
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
179
|
-
readonly name: "ResourceNotFoundException";
|
|
180
|
-
readonly $fault: "client";
|
|
181
|
-
/**
|
|
182
|
-
* <p>Hypothetical identifier of the resource affected.</p>
|
|
183
|
-
* @public
|
|
184
|
-
*/
|
|
185
|
-
resourceId: string | undefined;
|
|
186
|
-
/**
|
|
187
|
-
* <p>Hypothetical type of the resource affected.</p>
|
|
188
|
-
* @public
|
|
189
|
-
*/
|
|
190
|
-
resourceType: string | undefined;
|
|
191
|
-
/**
|
|
192
|
-
* @internal
|
|
193
|
-
*/
|
|
194
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
195
|
-
}
|
|
196
|
-
/**
|
|
197
|
-
* <p>The request was denied due to request throttling.</p>
|
|
198
|
-
* @public
|
|
199
|
-
*/
|
|
200
|
-
export declare class ThrottlingException extends __BaseException {
|
|
201
|
-
readonly name: "ThrottlingException";
|
|
202
|
-
readonly $fault: "client";
|
|
203
|
-
$retryable: {
|
|
204
|
-
throttling: boolean;
|
|
205
|
-
};
|
|
206
|
-
/**
|
|
207
|
-
* <p>This is the code unique to the originating service.</p>
|
|
208
|
-
* @public
|
|
209
|
-
*/
|
|
210
|
-
serviceCode?: string | undefined;
|
|
211
|
-
/**
|
|
212
|
-
* <p>This is the code unique to the originating service with the quota.</p>
|
|
213
|
-
* @public
|
|
214
|
-
*/
|
|
215
|
-
quotaCode?: string | undefined;
|
|
216
|
-
/**
|
|
217
|
-
* <p>Retry the call after number of seconds.</p>
|
|
218
|
-
* @public
|
|
219
|
-
*/
|
|
220
|
-
retryAfterSeconds?: number | undefined;
|
|
221
|
-
/**
|
|
222
|
-
* @internal
|
|
223
|
-
*/
|
|
224
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
225
|
-
}
|
|
226
|
-
/**
|
|
227
|
-
* <p>The input fails to satisfy the constraints specified by a service.</p>
|
|
228
|
-
* @public
|
|
229
|
-
*/
|
|
230
|
-
export declare class ValidationException extends __BaseException {
|
|
231
|
-
readonly name: "ValidationException";
|
|
232
|
-
readonly $fault: "client";
|
|
233
|
-
/**
|
|
234
|
-
* @internal
|
|
235
|
-
*/
|
|
236
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
237
|
-
}
|
|
238
94
|
/**
|
|
239
95
|
* @public
|
|
240
96
|
*/
|
|
@@ -458,20 +314,6 @@ export interface GetSearchJobInput {
|
|
|
458
314
|
*/
|
|
459
315
|
SearchJobIdentifier: string | undefined;
|
|
460
316
|
}
|
|
461
|
-
/**
|
|
462
|
-
* @public
|
|
463
|
-
* @enum
|
|
464
|
-
*/
|
|
465
|
-
export declare const TimeConditionOperator: {
|
|
466
|
-
readonly EQUALS_TO: "EQUALS_TO";
|
|
467
|
-
readonly GREATER_THAN_EQUAL_TO: "GREATER_THAN_EQUAL_TO";
|
|
468
|
-
readonly LESS_THAN_EQUAL_TO: "LESS_THAN_EQUAL_TO";
|
|
469
|
-
readonly NOT_EQUALS_TO: "NOT_EQUALS_TO";
|
|
470
|
-
};
|
|
471
|
-
/**
|
|
472
|
-
* @public
|
|
473
|
-
*/
|
|
474
|
-
export type TimeConditionOperator = (typeof TimeConditionOperator)[keyof typeof TimeConditionOperator];
|
|
475
317
|
/**
|
|
476
318
|
* <p>A time condition denotes a creation time, last modification time, or other time.</p>
|
|
477
319
|
* @public
|
|
@@ -488,24 +330,6 @@ export interface TimeCondition {
|
|
|
488
330
|
*/
|
|
489
331
|
Operator?: TimeConditionOperator | undefined;
|
|
490
332
|
}
|
|
491
|
-
/**
|
|
492
|
-
* @public
|
|
493
|
-
* @enum
|
|
494
|
-
*/
|
|
495
|
-
export declare const StringConditionOperator: {
|
|
496
|
-
readonly BEGINS_WITH: "BEGINS_WITH";
|
|
497
|
-
readonly CONTAINS: "CONTAINS";
|
|
498
|
-
readonly DOES_NOT_BEGIN_WITH: "DOES_NOT_BEGIN_WITH";
|
|
499
|
-
readonly DOES_NOT_CONTAIN: "DOES_NOT_CONTAIN";
|
|
500
|
-
readonly DOES_NOT_END_WITH: "DOES_NOT_END_WITH";
|
|
501
|
-
readonly ENDS_WITH: "ENDS_WITH";
|
|
502
|
-
readonly EQUALS_TO: "EQUALS_TO";
|
|
503
|
-
readonly NOT_EQUALS_TO: "NOT_EQUALS_TO";
|
|
504
|
-
};
|
|
505
|
-
/**
|
|
506
|
-
* @public
|
|
507
|
-
*/
|
|
508
|
-
export type StringConditionOperator = (typeof StringConditionOperator)[keyof typeof StringConditionOperator];
|
|
509
333
|
/**
|
|
510
334
|
* <p>This contains the value of the string and can contain one or more operators.</p>
|
|
511
335
|
* @public
|
|
@@ -522,20 +346,6 @@ export interface StringCondition {
|
|
|
522
346
|
*/
|
|
523
347
|
Operator?: StringConditionOperator | undefined;
|
|
524
348
|
}
|
|
525
|
-
/**
|
|
526
|
-
* @public
|
|
527
|
-
* @enum
|
|
528
|
-
*/
|
|
529
|
-
export declare const LongConditionOperator: {
|
|
530
|
-
readonly EQUALS_TO: "EQUALS_TO";
|
|
531
|
-
readonly GREATER_THAN_EQUAL_TO: "GREATER_THAN_EQUAL_TO";
|
|
532
|
-
readonly LESS_THAN_EQUAL_TO: "LESS_THAN_EQUAL_TO";
|
|
533
|
-
readonly NOT_EQUALS_TO: "NOT_EQUALS_TO";
|
|
534
|
-
};
|
|
535
|
-
/**
|
|
536
|
-
* @public
|
|
537
|
-
*/
|
|
538
|
-
export type LongConditionOperator = (typeof LongConditionOperator)[keyof typeof LongConditionOperator];
|
|
539
349
|
/**
|
|
540
350
|
* <p>The long condition contains a <code>Value</code> and can optionally contain an <code>Operator</code>.</p>
|
|
541
351
|
* @public
|
|
@@ -818,38 +628,6 @@ export interface ListSearchJobsOutput {
|
|
|
818
628
|
*/
|
|
819
629
|
NextToken?: string | undefined;
|
|
820
630
|
}
|
|
821
|
-
/**
|
|
822
|
-
* <p>The request denied due to exceeding the quota limits permitted.</p>
|
|
823
|
-
* @public
|
|
824
|
-
*/
|
|
825
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
826
|
-
readonly name: "ServiceQuotaExceededException";
|
|
827
|
-
readonly $fault: "client";
|
|
828
|
-
/**
|
|
829
|
-
* <p>Identifier of the resource.</p>
|
|
830
|
-
* @public
|
|
831
|
-
*/
|
|
832
|
-
resourceId: string | undefined;
|
|
833
|
-
/**
|
|
834
|
-
* <p>Type of resource.</p>
|
|
835
|
-
* @public
|
|
836
|
-
*/
|
|
837
|
-
resourceType: string | undefined;
|
|
838
|
-
/**
|
|
839
|
-
* <p>This is the code unique to the originating service with the quota.</p>
|
|
840
|
-
* @public
|
|
841
|
-
*/
|
|
842
|
-
serviceCode: string | undefined;
|
|
843
|
-
/**
|
|
844
|
-
* <p>This is the code specific to the quota type.</p>
|
|
845
|
-
* @public
|
|
846
|
-
*/
|
|
847
|
-
quotaCode: string | undefined;
|
|
848
|
-
/**
|
|
849
|
-
* @internal
|
|
850
|
-
*/
|
|
851
|
-
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
852
|
-
}
|
|
853
631
|
/**
|
|
854
632
|
* @public
|
|
855
633
|
*/
|
|
@@ -920,19 +698,6 @@ export interface StopSearchJobInput {
|
|
|
920
698
|
*/
|
|
921
699
|
export interface StopSearchJobOutput {
|
|
922
700
|
}
|
|
923
|
-
/**
|
|
924
|
-
* @public
|
|
925
|
-
* @enum
|
|
926
|
-
*/
|
|
927
|
-
export declare const ExportJobStatus: {
|
|
928
|
-
readonly COMPLETED: "COMPLETED";
|
|
929
|
-
readonly FAILED: "FAILED";
|
|
930
|
-
readonly RUNNING: "RUNNING";
|
|
931
|
-
};
|
|
932
|
-
/**
|
|
933
|
-
* @public
|
|
934
|
-
*/
|
|
935
|
-
export type ExportJobStatus = (typeof ExportJobStatus)[keyof typeof ExportJobStatus];
|
|
936
701
|
/**
|
|
937
702
|
* <p>This specification contains a required string of the destination bucket; optionally, you can include the destination prefix.</p>
|
|
938
703
|
* @public
|
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { BackupSearchExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/enums";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
9
11
|
export { BackupSearchServiceException } from "./models/BackupSearchServiceException";
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
export declare const ResourceType: {
|
|
2
|
+
readonly EBS: "EBS";
|
|
3
|
+
readonly S3: "S3";
|
|
4
|
+
};
|
|
5
|
+
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
6
|
+
export declare const SearchJobState: {
|
|
7
|
+
readonly COMPLETED: "COMPLETED";
|
|
8
|
+
readonly FAILED: "FAILED";
|
|
9
|
+
readonly RUNNING: "RUNNING";
|
|
10
|
+
readonly STOPPED: "STOPPED";
|
|
11
|
+
readonly STOPPING: "STOPPING";
|
|
12
|
+
};
|
|
13
|
+
export type SearchJobState =
|
|
14
|
+
(typeof SearchJobState)[keyof typeof SearchJobState];
|
|
15
|
+
export declare const TimeConditionOperator: {
|
|
16
|
+
readonly EQUALS_TO: "EQUALS_TO";
|
|
17
|
+
readonly GREATER_THAN_EQUAL_TO: "GREATER_THAN_EQUAL_TO";
|
|
18
|
+
readonly LESS_THAN_EQUAL_TO: "LESS_THAN_EQUAL_TO";
|
|
19
|
+
readonly NOT_EQUALS_TO: "NOT_EQUALS_TO";
|
|
20
|
+
};
|
|
21
|
+
export type TimeConditionOperator =
|
|
22
|
+
(typeof TimeConditionOperator)[keyof typeof TimeConditionOperator];
|
|
23
|
+
export declare const StringConditionOperator: {
|
|
24
|
+
readonly BEGINS_WITH: "BEGINS_WITH";
|
|
25
|
+
readonly CONTAINS: "CONTAINS";
|
|
26
|
+
readonly DOES_NOT_BEGIN_WITH: "DOES_NOT_BEGIN_WITH";
|
|
27
|
+
readonly DOES_NOT_CONTAIN: "DOES_NOT_CONTAIN";
|
|
28
|
+
readonly DOES_NOT_END_WITH: "DOES_NOT_END_WITH";
|
|
29
|
+
readonly ENDS_WITH: "ENDS_WITH";
|
|
30
|
+
readonly EQUALS_TO: "EQUALS_TO";
|
|
31
|
+
readonly NOT_EQUALS_TO: "NOT_EQUALS_TO";
|
|
32
|
+
};
|
|
33
|
+
export type StringConditionOperator =
|
|
34
|
+
(typeof StringConditionOperator)[keyof typeof StringConditionOperator];
|
|
35
|
+
export declare const LongConditionOperator: {
|
|
36
|
+
readonly EQUALS_TO: "EQUALS_TO";
|
|
37
|
+
readonly GREATER_THAN_EQUAL_TO: "GREATER_THAN_EQUAL_TO";
|
|
38
|
+
readonly LESS_THAN_EQUAL_TO: "LESS_THAN_EQUAL_TO";
|
|
39
|
+
readonly NOT_EQUALS_TO: "NOT_EQUALS_TO";
|
|
40
|
+
};
|
|
41
|
+
export type LongConditionOperator =
|
|
42
|
+
(typeof LongConditionOperator)[keyof typeof LongConditionOperator];
|
|
43
|
+
export declare const ExportJobStatus: {
|
|
44
|
+
readonly COMPLETED: "COMPLETED";
|
|
45
|
+
readonly FAILED: "FAILED";
|
|
46
|
+
readonly RUNNING: "RUNNING";
|
|
47
|
+
};
|
|
48
|
+
export type ExportJobStatus =
|
|
49
|
+
(typeof ExportJobStatus)[keyof typeof ExportJobStatus];
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { BackupSearchServiceException as __BaseException } from "./BackupSearchServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
constructor(
|
|
7
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
|
+
);
|
|
9
|
+
}
|
|
10
|
+
export declare class ConflictException extends __BaseException {
|
|
11
|
+
readonly name: "ConflictException";
|
|
12
|
+
readonly $fault: "client";
|
|
13
|
+
resourceId: string | undefined;
|
|
14
|
+
resourceType: string | undefined;
|
|
15
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
16
|
+
}
|
|
17
|
+
export declare class InternalServerException extends __BaseException {
|
|
18
|
+
readonly name: "InternalServerException";
|
|
19
|
+
readonly $fault: "server";
|
|
20
|
+
$retryable: {};
|
|
21
|
+
retryAfterSeconds?: number | undefined;
|
|
22
|
+
constructor(
|
|
23
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
24
|
+
);
|
|
25
|
+
}
|
|
26
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
27
|
+
readonly name: "ResourceNotFoundException";
|
|
28
|
+
readonly $fault: "client";
|
|
29
|
+
resourceId: string | undefined;
|
|
30
|
+
resourceType: string | undefined;
|
|
31
|
+
constructor(
|
|
32
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
33
|
+
);
|
|
34
|
+
}
|
|
35
|
+
export declare class ThrottlingException extends __BaseException {
|
|
36
|
+
readonly name: "ThrottlingException";
|
|
37
|
+
readonly $fault: "client";
|
|
38
|
+
$retryable: {
|
|
39
|
+
throttling: boolean;
|
|
40
|
+
};
|
|
41
|
+
serviceCode?: string | undefined;
|
|
42
|
+
quotaCode?: string | undefined;
|
|
43
|
+
retryAfterSeconds?: number | undefined;
|
|
44
|
+
constructor(
|
|
45
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
46
|
+
);
|
|
47
|
+
}
|
|
48
|
+
export declare class ValidationException extends __BaseException {
|
|
49
|
+
readonly name: "ValidationException";
|
|
50
|
+
readonly $fault: "client";
|
|
51
|
+
constructor(
|
|
52
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
53
|
+
);
|
|
54
|
+
}
|
|
55
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
56
|
+
readonly name: "ServiceQuotaExceededException";
|
|
57
|
+
readonly $fault: "client";
|
|
58
|
+
resourceId: string | undefined;
|
|
59
|
+
resourceType: string | undefined;
|
|
60
|
+
serviceCode: string | undefined;
|
|
61
|
+
quotaCode: string | undefined;
|
|
62
|
+
constructor(
|
|
63
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
64
|
+
);
|
|
65
|
+
}
|
|
@@ -1,51 +1,20 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
}
|
|
1
|
+
import {
|
|
2
|
+
ExportJobStatus,
|
|
3
|
+
LongConditionOperator,
|
|
4
|
+
ResourceType,
|
|
5
|
+
SearchJobState,
|
|
6
|
+
StringConditionOperator,
|
|
7
|
+
TimeConditionOperator,
|
|
8
|
+
} from "./enums";
|
|
10
9
|
export interface BackupCreationTimeFilter {
|
|
11
10
|
CreatedAfter?: Date | undefined;
|
|
12
11
|
CreatedBefore?: Date | undefined;
|
|
13
12
|
}
|
|
14
|
-
export declare class ConflictException extends __BaseException {
|
|
15
|
-
readonly name: "ConflictException";
|
|
16
|
-
readonly $fault: "client";
|
|
17
|
-
resourceId: string | undefined;
|
|
18
|
-
resourceType: string | undefined;
|
|
19
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
20
|
-
}
|
|
21
|
-
export declare class InternalServerException extends __BaseException {
|
|
22
|
-
readonly name: "InternalServerException";
|
|
23
|
-
readonly $fault: "server";
|
|
24
|
-
$retryable: {};
|
|
25
|
-
retryAfterSeconds?: number | undefined;
|
|
26
|
-
constructor(
|
|
27
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
28
|
-
);
|
|
29
|
-
}
|
|
30
13
|
export interface ListSearchJobBackupsInput {
|
|
31
14
|
SearchJobIdentifier: string | undefined;
|
|
32
15
|
NextToken?: string | undefined;
|
|
33
16
|
MaxResults?: number | undefined;
|
|
34
17
|
}
|
|
35
|
-
export declare const ResourceType: {
|
|
36
|
-
readonly EBS: "EBS";
|
|
37
|
-
readonly S3: "S3";
|
|
38
|
-
};
|
|
39
|
-
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
40
|
-
export declare const SearchJobState: {
|
|
41
|
-
readonly COMPLETED: "COMPLETED";
|
|
42
|
-
readonly FAILED: "FAILED";
|
|
43
|
-
readonly RUNNING: "RUNNING";
|
|
44
|
-
readonly STOPPED: "STOPPED";
|
|
45
|
-
readonly STOPPING: "STOPPING";
|
|
46
|
-
};
|
|
47
|
-
export type SearchJobState =
|
|
48
|
-
(typeof SearchJobState)[keyof typeof SearchJobState];
|
|
49
18
|
export interface SearchJobBackupsResult {
|
|
50
19
|
Status?: SearchJobState | undefined;
|
|
51
20
|
StatusMessage?: string | undefined;
|
|
@@ -59,35 +28,6 @@ export interface ListSearchJobBackupsOutput {
|
|
|
59
28
|
Results: SearchJobBackupsResult[] | undefined;
|
|
60
29
|
NextToken?: string | undefined;
|
|
61
30
|
}
|
|
62
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
63
|
-
readonly name: "ResourceNotFoundException";
|
|
64
|
-
readonly $fault: "client";
|
|
65
|
-
resourceId: string | undefined;
|
|
66
|
-
resourceType: string | undefined;
|
|
67
|
-
constructor(
|
|
68
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
69
|
-
);
|
|
70
|
-
}
|
|
71
|
-
export declare class ThrottlingException extends __BaseException {
|
|
72
|
-
readonly name: "ThrottlingException";
|
|
73
|
-
readonly $fault: "client";
|
|
74
|
-
$retryable: {
|
|
75
|
-
throttling: boolean;
|
|
76
|
-
};
|
|
77
|
-
serviceCode?: string | undefined;
|
|
78
|
-
quotaCode?: string | undefined;
|
|
79
|
-
retryAfterSeconds?: number | undefined;
|
|
80
|
-
constructor(
|
|
81
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
82
|
-
);
|
|
83
|
-
}
|
|
84
|
-
export declare class ValidationException extends __BaseException {
|
|
85
|
-
readonly name: "ValidationException";
|
|
86
|
-
readonly $fault: "client";
|
|
87
|
-
constructor(
|
|
88
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
89
|
-
);
|
|
90
|
-
}
|
|
91
31
|
export interface ListSearchJobResultsInput {
|
|
92
32
|
SearchJobIdentifier: string | undefined;
|
|
93
33
|
NextToken?: string | undefined;
|
|
@@ -157,42 +97,14 @@ export interface CurrentSearchProgress {
|
|
|
157
97
|
export interface GetSearchJobInput {
|
|
158
98
|
SearchJobIdentifier: string | undefined;
|
|
159
99
|
}
|
|
160
|
-
export declare const TimeConditionOperator: {
|
|
161
|
-
readonly EQUALS_TO: "EQUALS_TO";
|
|
162
|
-
readonly GREATER_THAN_EQUAL_TO: "GREATER_THAN_EQUAL_TO";
|
|
163
|
-
readonly LESS_THAN_EQUAL_TO: "LESS_THAN_EQUAL_TO";
|
|
164
|
-
readonly NOT_EQUALS_TO: "NOT_EQUALS_TO";
|
|
165
|
-
};
|
|
166
|
-
export type TimeConditionOperator =
|
|
167
|
-
(typeof TimeConditionOperator)[keyof typeof TimeConditionOperator];
|
|
168
100
|
export interface TimeCondition {
|
|
169
101
|
Value: Date | undefined;
|
|
170
102
|
Operator?: TimeConditionOperator | undefined;
|
|
171
103
|
}
|
|
172
|
-
export declare const StringConditionOperator: {
|
|
173
|
-
readonly BEGINS_WITH: "BEGINS_WITH";
|
|
174
|
-
readonly CONTAINS: "CONTAINS";
|
|
175
|
-
readonly DOES_NOT_BEGIN_WITH: "DOES_NOT_BEGIN_WITH";
|
|
176
|
-
readonly DOES_NOT_CONTAIN: "DOES_NOT_CONTAIN";
|
|
177
|
-
readonly DOES_NOT_END_WITH: "DOES_NOT_END_WITH";
|
|
178
|
-
readonly ENDS_WITH: "ENDS_WITH";
|
|
179
|
-
readonly EQUALS_TO: "EQUALS_TO";
|
|
180
|
-
readonly NOT_EQUALS_TO: "NOT_EQUALS_TO";
|
|
181
|
-
};
|
|
182
|
-
export type StringConditionOperator =
|
|
183
|
-
(typeof StringConditionOperator)[keyof typeof StringConditionOperator];
|
|
184
104
|
export interface StringCondition {
|
|
185
105
|
Value: string | undefined;
|
|
186
106
|
Operator?: StringConditionOperator | undefined;
|
|
187
107
|
}
|
|
188
|
-
export declare const LongConditionOperator: {
|
|
189
|
-
readonly EQUALS_TO: "EQUALS_TO";
|
|
190
|
-
readonly GREATER_THAN_EQUAL_TO: "GREATER_THAN_EQUAL_TO";
|
|
191
|
-
readonly LESS_THAN_EQUAL_TO: "LESS_THAN_EQUAL_TO";
|
|
192
|
-
readonly NOT_EQUALS_TO: "NOT_EQUALS_TO";
|
|
193
|
-
};
|
|
194
|
-
export type LongConditionOperator =
|
|
195
|
-
(typeof LongConditionOperator)[keyof typeof LongConditionOperator];
|
|
196
108
|
export interface LongCondition {
|
|
197
109
|
Value: number | undefined;
|
|
198
110
|
Operator?: LongConditionOperator | undefined;
|
|
@@ -258,17 +170,6 @@ export interface ListSearchJobsOutput {
|
|
|
258
170
|
SearchJobs: SearchJobSummary[] | undefined;
|
|
259
171
|
NextToken?: string | undefined;
|
|
260
172
|
}
|
|
261
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
262
|
-
readonly name: "ServiceQuotaExceededException";
|
|
263
|
-
readonly $fault: "client";
|
|
264
|
-
resourceId: string | undefined;
|
|
265
|
-
resourceType: string | undefined;
|
|
266
|
-
serviceCode: string | undefined;
|
|
267
|
-
quotaCode: string | undefined;
|
|
268
|
-
constructor(
|
|
269
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
270
|
-
);
|
|
271
|
-
}
|
|
272
173
|
export interface StartSearchJobInput {
|
|
273
174
|
Tags?: Record<string, string> | undefined;
|
|
274
175
|
Name?: string | undefined;
|
|
@@ -286,13 +187,6 @@ export interface StopSearchJobInput {
|
|
|
286
187
|
SearchJobIdentifier: string | undefined;
|
|
287
188
|
}
|
|
288
189
|
export interface StopSearchJobOutput {}
|
|
289
|
-
export declare const ExportJobStatus: {
|
|
290
|
-
readonly COMPLETED: "COMPLETED";
|
|
291
|
-
readonly FAILED: "FAILED";
|
|
292
|
-
readonly RUNNING: "RUNNING";
|
|
293
|
-
};
|
|
294
|
-
export type ExportJobStatus =
|
|
295
|
-
(typeof ExportJobStatus)[keyof typeof ExportJobStatus];
|
|
296
190
|
export interface S3ExportSpecification {
|
|
297
191
|
DestinationBucket: string | undefined;
|
|
298
192
|
DestinationPrefix?: string | undefined;
|
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.936.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-backupsearch",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.936.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.936.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.936.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
30
|
+
"@aws-sdk/types": "3.936.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.936.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.936.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|