aws-sdk 2.1041.0 → 2.1045.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/CHANGELOG.md +22 -1
- package/README.md +1 -1
- package/apis/amplifyuibuilder-2021-08-11.examples.json +5 -0
- package/apis/amplifyuibuilder-2021-08-11.min.json +1036 -0
- package/apis/amplifyuibuilder-2021-08-11.paginators.json +16 -0
- package/apis/appsync-2017-07-25.min.json +327 -102
- package/apis/comprehendmedical-2018-10-30.min.json +244 -29
- package/apis/iot-2015-05-28.min.json +280 -271
- package/apis/location-2020-11-19.min.json +235 -107
- package/apis/logs-2014-03-28.min.json +4 -1
- package/apis/lookoutvision-2020-11-20.min.json +208 -11
- package/apis/lookoutvision-2020-11-20.paginators.json +6 -0
- package/apis/metadata.json +3 -0
- package/apis/networkmanager-2019-07-05.min.json +1931 -558
- package/apis/networkmanager-2019-07-05.paginators.json +36 -0
- package/apis/outposts-2019-12-03.min.json +29 -0
- package/apis/ram-2018-01-04.min.json +16 -11
- package/apis/sagemaker-2017-07-24.min.json +31 -28
- package/clients/all.d.ts +1 -0
- package/clients/all.js +2 -1
- package/clients/amplifyuibuilder.d.ts +1003 -0
- package/clients/amplifyuibuilder.js +18 -0
- package/clients/appsync.d.ts +330 -109
- package/clients/cloudwatchlogs.d.ts +6 -1
- package/clients/comprehendmedical.d.ts +306 -25
- package/clients/health.d.ts +2 -2
- package/clients/iot.d.ts +13 -0
- package/clients/location.d.ts +139 -9
- package/clients/lookoutvision.d.ts +293 -23
- package/clients/networkmanager.d.ts +1856 -361
- package/clients/outposts.d.ts +47 -3
- package/clients/ram.d.ts +234 -212
- package/clients/rekognition.d.ts +5 -5
- package/clients/route53.d.ts +11 -11
- package/clients/sagemaker.d.ts +3 -1
- package/clients/support.d.ts +62 -62
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +53 -16
- package/dist/aws-sdk.js +769 -411
- package/dist/aws-sdk.min.js +74 -74
- package/lib/config_service_placeholders.d.ts +2 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/outposts.d.ts
CHANGED
|
@@ -163,6 +163,14 @@ declare class Outposts extends Service {
|
|
|
163
163
|
* Removes tags from the specified resource.
|
|
164
164
|
*/
|
|
165
165
|
untagResource(callback?: (err: AWSError, data: Outposts.Types.UntagResourceResponse) => void): Request<Outposts.Types.UntagResourceResponse, AWSError>;
|
|
166
|
+
/**
|
|
167
|
+
* Updates an Outpost.
|
|
168
|
+
*/
|
|
169
|
+
updateOutpost(params: Outposts.Types.UpdateOutpostInput, callback?: (err: AWSError, data: Outposts.Types.UpdateOutpostOutput) => void): Request<Outposts.Types.UpdateOutpostOutput, AWSError>;
|
|
170
|
+
/**
|
|
171
|
+
* Updates an Outpost.
|
|
172
|
+
*/
|
|
173
|
+
updateOutpost(callback?: (err: AWSError, data: Outposts.Types.UpdateOutpostOutput) => void): Request<Outposts.Types.UpdateOutpostOutput, AWSError>;
|
|
166
174
|
/**
|
|
167
175
|
* Updates the site.
|
|
168
176
|
*/
|
|
@@ -320,6 +328,9 @@ declare namespace Outposts {
|
|
|
320
328
|
export interface CreateOutpostInput {
|
|
321
329
|
Name: OutpostName;
|
|
322
330
|
Description?: OutpostDescription;
|
|
331
|
+
/**
|
|
332
|
+
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
333
|
+
*/
|
|
323
334
|
SiteId: SiteId;
|
|
324
335
|
AvailabilityZone?: AvailabilityZone;
|
|
325
336
|
AvailabilityZoneId?: AvailabilityZoneId;
|
|
@@ -364,13 +375,16 @@ declare namespace Outposts {
|
|
|
364
375
|
}
|
|
365
376
|
export interface DeleteOutpostInput {
|
|
366
377
|
/**
|
|
367
|
-
* The ID of the Outpost.
|
|
378
|
+
* The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
368
379
|
*/
|
|
369
380
|
OutpostId: OutpostId;
|
|
370
381
|
}
|
|
371
382
|
export interface DeleteOutpostOutput {
|
|
372
383
|
}
|
|
373
384
|
export interface DeleteSiteInput {
|
|
385
|
+
/**
|
|
386
|
+
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
387
|
+
*/
|
|
374
388
|
SiteId: SiteId;
|
|
375
389
|
}
|
|
376
390
|
export interface DeleteSiteOutput {
|
|
@@ -417,13 +431,13 @@ declare namespace Outposts {
|
|
|
417
431
|
}
|
|
418
432
|
export interface GetOutpostInput {
|
|
419
433
|
/**
|
|
420
|
-
* The ID of the Outpost.
|
|
434
|
+
* The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
421
435
|
*/
|
|
422
436
|
OutpostId: OutpostId;
|
|
423
437
|
}
|
|
424
438
|
export interface GetOutpostInstanceTypesInput {
|
|
425
439
|
/**
|
|
426
|
-
* The ID of the Outpost.
|
|
440
|
+
* The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
427
441
|
*/
|
|
428
442
|
OutpostId: OutpostId;
|
|
429
443
|
NextToken?: Token;
|
|
@@ -442,6 +456,9 @@ declare namespace Outposts {
|
|
|
442
456
|
Outpost?: Outpost;
|
|
443
457
|
}
|
|
444
458
|
export interface GetSiteAddressInput {
|
|
459
|
+
/**
|
|
460
|
+
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
461
|
+
*/
|
|
445
462
|
SiteId: SiteId;
|
|
446
463
|
/**
|
|
447
464
|
* The type of the address you request.
|
|
@@ -460,6 +477,9 @@ declare namespace Outposts {
|
|
|
460
477
|
Address?: Address;
|
|
461
478
|
}
|
|
462
479
|
export interface GetSiteInput {
|
|
480
|
+
/**
|
|
481
|
+
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
482
|
+
*/
|
|
463
483
|
SiteId: SiteId;
|
|
464
484
|
}
|
|
465
485
|
export interface GetSiteOutput {
|
|
@@ -802,7 +822,25 @@ declare namespace Outposts {
|
|
|
802
822
|
}
|
|
803
823
|
export interface UntagResourceResponse {
|
|
804
824
|
}
|
|
825
|
+
export interface UpdateOutpostInput {
|
|
826
|
+
/**
|
|
827
|
+
* The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
828
|
+
*/
|
|
829
|
+
OutpostId: OutpostId;
|
|
830
|
+
Name?: OutpostName;
|
|
831
|
+
Description?: OutpostDescription;
|
|
832
|
+
/**
|
|
833
|
+
* The type of hardware for this Outpost.
|
|
834
|
+
*/
|
|
835
|
+
SupportedHardwareType?: SupportedHardwareType;
|
|
836
|
+
}
|
|
837
|
+
export interface UpdateOutpostOutput {
|
|
838
|
+
Outpost?: Outpost;
|
|
839
|
+
}
|
|
805
840
|
export interface UpdateSiteAddressInput {
|
|
841
|
+
/**
|
|
842
|
+
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
843
|
+
*/
|
|
806
844
|
SiteId: SiteId;
|
|
807
845
|
/**
|
|
808
846
|
* The type of the address.
|
|
@@ -824,6 +862,9 @@ declare namespace Outposts {
|
|
|
824
862
|
Address?: Address;
|
|
825
863
|
}
|
|
826
864
|
export interface UpdateSiteInput {
|
|
865
|
+
/**
|
|
866
|
+
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
867
|
+
*/
|
|
827
868
|
SiteId: SiteId;
|
|
828
869
|
Name?: SiteName;
|
|
829
870
|
Description?: SiteDescription;
|
|
@@ -836,6 +877,9 @@ declare namespace Outposts {
|
|
|
836
877
|
Site?: Site;
|
|
837
878
|
}
|
|
838
879
|
export interface UpdateSiteRackPhysicalPropertiesInput {
|
|
880
|
+
/**
|
|
881
|
+
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
882
|
+
*/
|
|
839
883
|
SiteId: SiteId;
|
|
840
884
|
/**
|
|
841
885
|
* Specify in kVA the power draw available at the hardware placement position for the rack.
|