aws-sdk 2.1643.0 → 2.1645.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 +1 -1
- package/apis/artifact-2018-05-10.examples.json +113 -0
- package/apis/artifact-2018-05-10.min.json +47 -41
- package/apis/artifact-2018-05-10.waiters2.json +5 -0
- package/apis/athena-2017-05-18.min.json +4 -1
- package/apis/bedrock-runtime-2023-09-30.min.json +248 -28
- package/apis/cloudtrail-2013-11-01.min.json +4 -1
- package/apis/config-2014-11-12.min.json +7 -1
- package/apis/cur-2017-01-06.min.json +7 -1
- package/apis/directconnect-2012-10-25.min.json +7 -1
- package/apis/eks-2017-11-01.min.json +63 -42
- package/apis/elastictranscoder-2012-09-25.min.json +7 -1
- package/apis/lightsail-2016-11-28.min.json +4 -1
- package/apis/opensearch-2021-01-01.min.json +137 -112
- package/apis/polly-2016-06-10.min.json +7 -1
- package/apis/rekognition-2016-06-27.min.json +7 -1
- package/apis/sagemaker-2017-07-24.min.json +1188 -945
- package/apis/sagemaker-2017-07-24.paginators.json +6 -0
- package/apis/shield-2016-06-02.min.json +7 -1
- package/apis/snowball-2016-06-30.min.json +7 -1
- package/clients/artifact.d.ts +68 -64
- package/clients/artifact.js +1 -0
- package/clients/bedrockruntime.d.ts +264 -14
- package/clients/eks.d.ts +26 -0
- package/clients/opensearch.d.ts +48 -2
- package/clients/sagemaker.d.ts +364 -4
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +96 -89
- package/dist/aws-sdk.js +53 -11
- package/dist/aws-sdk.min.js +105 -105
- package/lib/core.js +1 -1
- package/package.json +1 -1
@@ -216,6 +216,12 @@
|
|
216
216
|
"limit_key": "MaxResults",
|
217
217
|
"result_key": "LineageGroupSummaries"
|
218
218
|
},
|
219
|
+
"ListMlflowTrackingServers": {
|
220
|
+
"input_token": "NextToken",
|
221
|
+
"output_token": "NextToken",
|
222
|
+
"limit_key": "MaxResults",
|
223
|
+
"result_key": "TrackingServerSummaries"
|
224
|
+
},
|
219
225
|
"ListModelBiasJobDefinitions": {
|
220
226
|
"input_token": "NextToken",
|
221
227
|
"output_token": "NextToken",
|
@@ -5,12 +5,18 @@
|
|
5
5
|
"endpointPrefix": "shield",
|
6
6
|
"jsonVersion": "1.1",
|
7
7
|
"protocol": "json",
|
8
|
+
"protocols": [
|
9
|
+
"json"
|
10
|
+
],
|
8
11
|
"serviceAbbreviation": "AWS Shield",
|
9
12
|
"serviceFullName": "AWS Shield",
|
10
13
|
"serviceId": "Shield",
|
11
14
|
"signatureVersion": "v4",
|
12
15
|
"targetPrefix": "AWSShield_20160616",
|
13
|
-
"uid": "shield-2016-06-02"
|
16
|
+
"uid": "shield-2016-06-02",
|
17
|
+
"auth": [
|
18
|
+
"aws.auth#sigv4"
|
19
|
+
]
|
14
20
|
},
|
15
21
|
"operations": {
|
16
22
|
"AssociateDRTLogBucket": {
|
@@ -5,12 +5,18 @@
|
|
5
5
|
"endpointPrefix": "snowball",
|
6
6
|
"jsonVersion": "1.1",
|
7
7
|
"protocol": "json",
|
8
|
+
"protocols": [
|
9
|
+
"json"
|
10
|
+
],
|
8
11
|
"serviceAbbreviation": "Amazon Snowball",
|
9
12
|
"serviceFullName": "Amazon Import/Export Snowball",
|
10
13
|
"serviceId": "Snowball",
|
11
14
|
"signatureVersion": "v4",
|
12
15
|
"targetPrefix": "AWSIESnowballJobManagementService",
|
13
|
-
"uid": "snowball-2016-06-30"
|
16
|
+
"uid": "snowball-2016-06-30",
|
17
|
+
"auth": [
|
18
|
+
"aws.auth#sigv4"
|
19
|
+
]
|
14
20
|
},
|
15
21
|
"operations": {
|
16
22
|
"CancelCluster": {
|
package/clients/artifact.d.ts
CHANGED
@@ -142,14 +142,14 @@ declare namespace Artifact {
|
|
142
142
|
nextToken?: NextTokenAttribute;
|
143
143
|
}
|
144
144
|
export interface ListReportsResponse {
|
145
|
-
/**
|
146
|
-
* Pagination token to request the next page of resources.
|
147
|
-
*/
|
148
|
-
nextToken?: NextTokenAttribute;
|
149
145
|
/**
|
150
146
|
* List of report resources.
|
151
147
|
*/
|
152
148
|
reports?: ReportsList;
|
149
|
+
/**
|
150
|
+
* Pagination token to request the next page of resources.
|
151
|
+
*/
|
152
|
+
nextToken?: NextTokenAttribute;
|
153
153
|
}
|
154
154
|
export type LongStringAttribute = string;
|
155
155
|
export type MaxResultsAttribute = number;
|
@@ -167,144 +167,148 @@ declare namespace Artifact {
|
|
167
167
|
}
|
168
168
|
export interface ReportDetail {
|
169
169
|
/**
|
170
|
-
*
|
170
|
+
* Unique resource ID for the report resource.
|
171
171
|
*/
|
172
|
-
|
172
|
+
id?: ReportId;
|
173
173
|
/**
|
174
|
-
*
|
174
|
+
* Name for the report resource.
|
175
175
|
*/
|
176
|
-
|
176
|
+
name?: ShortStringAttribute;
|
177
177
|
/**
|
178
|
-
*
|
178
|
+
* Description for the report resource.
|
179
179
|
*/
|
180
|
-
|
180
|
+
description?: LongStringAttribute;
|
181
181
|
/**
|
182
|
-
*
|
182
|
+
* Timestamp indicating the report resource effective start.
|
183
183
|
*/
|
184
|
-
|
184
|
+
periodStart?: TimestampAttribute;
|
185
|
+
/**
|
186
|
+
* Timestamp indicating the report resource effective end.
|
187
|
+
*/
|
188
|
+
periodEnd?: TimestampAttribute;
|
185
189
|
/**
|
186
190
|
* Timestamp indicating when the report resource was created.
|
187
191
|
*/
|
188
192
|
createdAt?: TimestampAttribute;
|
189
193
|
/**
|
190
|
-
* Timestamp indicating when the report resource was
|
194
|
+
* Timestamp indicating when the report resource was last modified.
|
191
195
|
*/
|
192
|
-
|
196
|
+
lastModifiedAt?: TimestampAttribute;
|
193
197
|
/**
|
194
|
-
*
|
198
|
+
* Timestamp indicating when the report resource was deleted.
|
195
199
|
*/
|
196
|
-
|
200
|
+
deletedAt?: TimestampAttribute;
|
197
201
|
/**
|
198
|
-
*
|
202
|
+
* Current state of the report resource
|
199
203
|
*/
|
200
|
-
|
204
|
+
state?: PublishedState;
|
201
205
|
/**
|
202
|
-
*
|
206
|
+
* ARN for the report resource.
|
203
207
|
*/
|
204
|
-
|
208
|
+
arn?: LongStringAttribute;
|
205
209
|
/**
|
206
|
-
*
|
210
|
+
* Series for the report resource.
|
207
211
|
*/
|
208
|
-
|
212
|
+
series?: ShortStringAttribute;
|
209
213
|
/**
|
210
|
-
*
|
214
|
+
* Category for the report resource.
|
211
215
|
*/
|
212
|
-
|
216
|
+
category?: ShortStringAttribute;
|
213
217
|
/**
|
214
|
-
*
|
218
|
+
* Associated company name for the report resource.
|
215
219
|
*/
|
216
|
-
|
220
|
+
companyName?: ShortStringAttribute;
|
217
221
|
/**
|
218
222
|
* Associated product name for the report resource.
|
219
223
|
*/
|
220
224
|
productName?: ShortStringAttribute;
|
221
225
|
/**
|
222
|
-
*
|
223
|
-
*/
|
224
|
-
sequenceNumber?: SequenceNumberAttribute;
|
225
|
-
/**
|
226
|
-
* Series for the report resource.
|
226
|
+
* Unique resource ARN for term resource.
|
227
227
|
*/
|
228
|
-
|
228
|
+
termArn?: LongStringAttribute;
|
229
229
|
/**
|
230
|
-
*
|
230
|
+
* Version for the report resource.
|
231
231
|
*/
|
232
|
-
|
232
|
+
version?: VersionAttribute;
|
233
233
|
/**
|
234
|
-
*
|
234
|
+
* Acceptance type for report.
|
235
235
|
*/
|
236
|
-
|
236
|
+
acceptanceType?: AcceptanceType;
|
237
237
|
/**
|
238
|
-
*
|
238
|
+
* Sequence number to enforce optimistic locking.
|
239
239
|
*/
|
240
|
-
|
240
|
+
sequenceNumber?: SequenceNumberAttribute;
|
241
241
|
/**
|
242
242
|
* The current state of the document upload.
|
243
243
|
*/
|
244
244
|
uploadState?: UploadState;
|
245
245
|
/**
|
246
|
-
*
|
246
|
+
* The message associated with the current upload state.
|
247
247
|
*/
|
248
|
-
|
248
|
+
statusMessage?: StatusMessage;
|
249
249
|
}
|
250
250
|
export type ReportId = string;
|
251
251
|
export interface ReportSummary {
|
252
252
|
/**
|
253
|
-
*
|
253
|
+
* Unique resource ID for the report resource.
|
254
254
|
*/
|
255
|
-
|
255
|
+
id?: ReportId;
|
256
256
|
/**
|
257
|
-
*
|
257
|
+
* Name for the report resource.
|
258
258
|
*/
|
259
|
-
|
259
|
+
name?: ShortStringAttribute;
|
260
260
|
/**
|
261
|
-
*
|
261
|
+
* Current state of the report resource.
|
262
262
|
*/
|
263
|
-
|
263
|
+
state?: PublishedState;
|
264
264
|
/**
|
265
|
-
*
|
265
|
+
* ARN for the report resource.
|
266
266
|
*/
|
267
|
-
|
267
|
+
arn?: LongStringAttribute;
|
268
268
|
/**
|
269
|
-
*
|
269
|
+
* Version for the report resource.
|
270
270
|
*/
|
271
|
-
|
271
|
+
version?: VersionAttribute;
|
272
272
|
/**
|
273
|
-
*
|
273
|
+
* The current state of the document upload.
|
274
274
|
*/
|
275
|
-
|
275
|
+
uploadState?: UploadState;
|
276
276
|
/**
|
277
|
-
*
|
277
|
+
* Description for the report resource.
|
278
278
|
*/
|
279
|
-
|
279
|
+
description?: LongStringAttribute;
|
280
280
|
/**
|
281
281
|
* Timestamp indicating the report resource effective start.
|
282
282
|
*/
|
283
283
|
periodStart?: TimestampAttribute;
|
284
284
|
/**
|
285
|
-
*
|
285
|
+
* Timestamp indicating the report resource effective end.
|
286
286
|
*/
|
287
|
-
|
287
|
+
periodEnd?: TimestampAttribute;
|
288
288
|
/**
|
289
289
|
* Series for the report resource.
|
290
290
|
*/
|
291
291
|
series?: ShortStringAttribute;
|
292
292
|
/**
|
293
|
-
*
|
293
|
+
* Category for the report resource.
|
294
294
|
*/
|
295
|
-
|
295
|
+
category?: ShortStringAttribute;
|
296
296
|
/**
|
297
|
-
*
|
297
|
+
* Associated company name for the report resource.
|
298
298
|
*/
|
299
|
-
|
299
|
+
companyName?: ShortStringAttribute;
|
300
300
|
/**
|
301
|
-
*
|
301
|
+
* Associated product name for the report resource.
|
302
302
|
*/
|
303
|
-
|
303
|
+
productName?: ShortStringAttribute;
|
304
304
|
/**
|
305
|
-
*
|
305
|
+
* The message associated with the current upload state.
|
306
306
|
*/
|
307
|
-
|
307
|
+
statusMessage?: StatusMessage;
|
308
|
+
/**
|
309
|
+
* Acceptance type for report.
|
310
|
+
*/
|
311
|
+
acceptanceType?: AcceptanceType;
|
308
312
|
}
|
309
313
|
export type ReportsList = ReportSummary[];
|
310
314
|
export type SequenceNumberAttribute = number;
|
package/clients/artifact.js
CHANGED
@@ -9,6 +9,7 @@ Object.defineProperty(apiLoader.services['artifact'], '2018-05-10', {
|
|
9
9
|
get: function get() {
|
10
10
|
var model = require('../apis/artifact-2018-05-10.min.json');
|
11
11
|
model.paginators = require('../apis/artifact-2018-05-10.paginators.json').pagination;
|
12
|
+
model.waiters = require('../apis/artifact-2018-05-10.waiters2.json').waiters;
|
12
13
|
return model;
|
13
14
|
},
|
14
15
|
enumerable: true,
|