@aws-sdk/client-outposts 3.82.0 → 3.90.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 +27 -0
- package/README.md +2 -0
- package/dist-types/models/models_0.d.ts +72 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.90.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.89.0...v3.90.0) (2022-05-12)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-outposts
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.87.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.86.0...v3.87.0) (2022-05-09)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-outposts
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [3.85.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.84.0...v3.85.0) (2022-05-05)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* **codegen:** add codegen indicator comment to all generated files ([#3592](https://github.com/aws/aws-sdk-js-v3/issues/3592)) ([567a530](https://github.com/aws/aws-sdk-js-v3/commit/567a5304232fcc1f9db3fd3df545054de8336b4b))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
# [3.82.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.81.0...v3.82.0) (2022-05-02)
|
|
7
34
|
|
|
8
35
|
|
package/README.md
CHANGED
|
@@ -521,6 +521,12 @@ export interface CreateOutpostInput {
|
|
|
521
521
|
* <p>
|
|
522
522
|
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
523
523
|
* </p>
|
|
524
|
+
* <note>
|
|
525
|
+
* <p>In requests, Amazon Web Services Outposts accepts the Amazon Resource Name (ARN) or an ID for Outposts and
|
|
526
|
+
* sites throughout the Outposts Query API. To address backwards compatibility, the parameter names
|
|
527
|
+
* <code>OutpostID</code> or <code>SiteID</code> remain in use. Despite the parameter name,
|
|
528
|
+
* you can make the request with an ARN.</p>
|
|
529
|
+
* </note>
|
|
524
530
|
*/
|
|
525
531
|
SiteId: string | undefined;
|
|
526
532
|
/**
|
|
@@ -884,6 +890,12 @@ export interface DeleteOutpostInput {
|
|
|
884
890
|
* <p>
|
|
885
891
|
* The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
886
892
|
* </p>
|
|
893
|
+
* <note>
|
|
894
|
+
* <p>In requests, Amazon Web Services Outposts accepts the Amazon Resource Name (ARN) or an ID for Outposts and
|
|
895
|
+
* sites throughout the Outposts Query API. To address backwards compatibility, the parameter names
|
|
896
|
+
* <code>OutpostID</code> or <code>SiteID</code> remain in use. Despite the parameter name,
|
|
897
|
+
* you can make the request with an ARN.</p>
|
|
898
|
+
* </note>
|
|
887
899
|
*/
|
|
888
900
|
OutpostId: string | undefined;
|
|
889
901
|
}
|
|
@@ -906,6 +918,12 @@ export interface DeleteSiteInput {
|
|
|
906
918
|
* <p>
|
|
907
919
|
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
908
920
|
* </p>
|
|
921
|
+
* <note>
|
|
922
|
+
* <p>In requests, Amazon Web Services Outposts accepts the Amazon Resource Name (ARN) or an ID for Outposts and
|
|
923
|
+
* sites throughout the Outposts Query API. To address backwards compatibility, the parameter names
|
|
924
|
+
* <code>OutpostID</code> or <code>SiteID</code> remain in use. Despite the parameter name,
|
|
925
|
+
* you can make the request with an ARN.</p>
|
|
926
|
+
* </note>
|
|
909
927
|
*/
|
|
910
928
|
SiteId: string | undefined;
|
|
911
929
|
}
|
|
@@ -976,6 +994,12 @@ export interface GetOutpostInput {
|
|
|
976
994
|
* <p>
|
|
977
995
|
* The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
978
996
|
* </p>
|
|
997
|
+
* <note>
|
|
998
|
+
* <p>In requests, Amazon Web Services Outposts accepts the Amazon Resource Name (ARN) or an ID for Outposts and
|
|
999
|
+
* sites throughout the Outposts Query API. To address backwards compatibility, the parameter names
|
|
1000
|
+
* <code>OutpostID</code> or <code>SiteID</code> remain in use. Despite the parameter name,
|
|
1001
|
+
* you can make the request with an ARN.</p>
|
|
1002
|
+
* </note>
|
|
979
1003
|
*/
|
|
980
1004
|
OutpostId: string | undefined;
|
|
981
1005
|
}
|
|
@@ -1002,6 +1026,12 @@ export interface GetOutpostInstanceTypesInput {
|
|
|
1002
1026
|
* <p>
|
|
1003
1027
|
* The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
1004
1028
|
* </p>
|
|
1029
|
+
* <note>
|
|
1030
|
+
* <p>In requests, Amazon Web Services Outposts accepts the Amazon Resource Name (ARN) or an ID for Outposts and
|
|
1031
|
+
* sites throughout the Outposts Query API. To address backwards compatibility, the parameter names
|
|
1032
|
+
* <code>OutpostID</code> or <code>SiteID</code> remain in use. Despite the parameter name,
|
|
1033
|
+
* you can make the request with an ARN.</p>
|
|
1034
|
+
* </note>
|
|
1005
1035
|
*/
|
|
1006
1036
|
OutpostId: string | undefined;
|
|
1007
1037
|
/**
|
|
@@ -1047,6 +1077,12 @@ export interface GetOutpostInstanceTypesOutput {
|
|
|
1047
1077
|
* <p>
|
|
1048
1078
|
* The ID of the Outpost.
|
|
1049
1079
|
* </p>
|
|
1080
|
+
* <note>
|
|
1081
|
+
* <p>In requests, Amazon Web Services Outposts accepts the Amazon Resource Name (ARN) or an ID for Outposts and
|
|
1082
|
+
* sites throughout the Outposts Query API. To address backwards compatibility, the parameter names
|
|
1083
|
+
* <code>OutpostID</code> or <code>SiteID</code> remain in use. Despite the parameter name,
|
|
1084
|
+
* you can make the request with an ARN.</p>
|
|
1085
|
+
* </note>
|
|
1050
1086
|
*/
|
|
1051
1087
|
OutpostId?: string;
|
|
1052
1088
|
/**
|
|
@@ -1065,6 +1101,12 @@ export interface GetSiteInput {
|
|
|
1065
1101
|
* <p>
|
|
1066
1102
|
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
1067
1103
|
* </p>
|
|
1104
|
+
* <note>
|
|
1105
|
+
* <p>In requests, Amazon Web Services Outposts accepts the Amazon Resource Name (ARN) or an ID for Outposts and
|
|
1106
|
+
* sites throughout the Outposts Query API. To address backwards compatibility, the parameter names
|
|
1107
|
+
* <code>OutpostID</code> or <code>SiteID</code> remain in use. Despite the parameter name,
|
|
1108
|
+
* you can make the request with an ARN.</p>
|
|
1109
|
+
* </note>
|
|
1068
1110
|
*/
|
|
1069
1111
|
SiteId: string | undefined;
|
|
1070
1112
|
}
|
|
@@ -1091,6 +1133,12 @@ export interface GetSiteAddressInput {
|
|
|
1091
1133
|
* <p>
|
|
1092
1134
|
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
1093
1135
|
* </p>
|
|
1136
|
+
* <note>
|
|
1137
|
+
* <p>In requests, Amazon Web Services Outposts accepts the Amazon Resource Name (ARN) or an ID for Outposts and
|
|
1138
|
+
* sites throughout the Outposts Query API. To address backwards compatibility, the parameter names
|
|
1139
|
+
* <code>OutpostID</code> or <code>SiteID</code> remain in use. Despite the parameter name,
|
|
1140
|
+
* you can make the request with an ARN.</p>
|
|
1141
|
+
* </note>
|
|
1094
1142
|
*/
|
|
1095
1143
|
SiteId: string | undefined;
|
|
1096
1144
|
/**
|
|
@@ -1558,6 +1606,12 @@ export interface UpdateOutpostInput {
|
|
|
1558
1606
|
* <p>
|
|
1559
1607
|
* The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
1560
1608
|
* </p>
|
|
1609
|
+
* <note>
|
|
1610
|
+
* <p>In requests, Amazon Web Services Outposts accepts the Amazon Resource Name (ARN) or an ID for Outposts and
|
|
1611
|
+
* sites throughout the Outposts Query API. To address backwards compatibility, the parameter names
|
|
1612
|
+
* <code>OutpostID</code> or <code>SiteID</code> remain in use. Despite the parameter name,
|
|
1613
|
+
* you can make the request with an ARN.</p>
|
|
1614
|
+
* </note>
|
|
1561
1615
|
*/
|
|
1562
1616
|
OutpostId: string | undefined;
|
|
1563
1617
|
/**
|
|
@@ -1598,6 +1652,12 @@ export interface UpdateSiteInput {
|
|
|
1598
1652
|
* <p>
|
|
1599
1653
|
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
1600
1654
|
* </p>
|
|
1655
|
+
* <note>
|
|
1656
|
+
* <p>In requests, Amazon Web Services Outposts accepts the Amazon Resource Name (ARN) or an ID for Outposts and
|
|
1657
|
+
* sites throughout the Outposts Query API. To address backwards compatibility, the parameter names
|
|
1658
|
+
* <code>OutpostID</code> or <code>SiteID</code> remain in use. Despite the parameter name,
|
|
1659
|
+
* you can make the request with an ARN.</p>
|
|
1660
|
+
* </note>
|
|
1601
1661
|
*/
|
|
1602
1662
|
SiteId: string | undefined;
|
|
1603
1663
|
/**
|
|
@@ -1638,6 +1698,12 @@ export interface UpdateSiteAddressInput {
|
|
|
1638
1698
|
* <p>
|
|
1639
1699
|
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
1640
1700
|
* </p>
|
|
1701
|
+
* <note>
|
|
1702
|
+
* <p>In requests, Amazon Web Services Outposts accepts the Amazon Resource Name (ARN) or an ID for Outposts and
|
|
1703
|
+
* sites throughout the Outposts Query API. To address backwards compatibility, the parameter names
|
|
1704
|
+
* <code>OutpostID</code> or <code>SiteID</code> remain in use. Despite the parameter name,
|
|
1705
|
+
* you can make the request with an ARN.</p>
|
|
1706
|
+
* </note>
|
|
1641
1707
|
*/
|
|
1642
1708
|
SiteId: string | undefined;
|
|
1643
1709
|
/**
|
|
@@ -1684,6 +1750,12 @@ export interface UpdateSiteRackPhysicalPropertiesInput {
|
|
|
1684
1750
|
* <p>
|
|
1685
1751
|
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
1686
1752
|
* </p>
|
|
1753
|
+
* <note>
|
|
1754
|
+
* <p>In requests, Amazon Web Services Outposts accepts the Amazon Resource Name (ARN) or an ID for Outposts and
|
|
1755
|
+
* sites throughout the Outposts Query API. To address backwards compatibility, the parameter names
|
|
1756
|
+
* <code>OutpostID</code> or <code>SiteID</code> remain in use. Despite the parameter name,
|
|
1757
|
+
* you can make the request with an ARN.</p>
|
|
1758
|
+
* </note>
|
|
1687
1759
|
*/
|
|
1688
1760
|
SiteId: string | undefined;
|
|
1689
1761
|
/**
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-outposts",
|
|
3
3
|
"description": "AWS SDK for JavaScript Outposts Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.90.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.87.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.80.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.87.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.78.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.78.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.78.0",
|
|
@@ -35,15 +35,15 @@
|
|
|
35
35
|
"@aws-sdk/node-config-provider": "3.80.0",
|
|
36
36
|
"@aws-sdk/node-http-handler": "3.82.0",
|
|
37
37
|
"@aws-sdk/protocol-http": "3.78.0",
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
38
|
+
"@aws-sdk/smithy-client": "3.85.0",
|
|
39
39
|
"@aws-sdk/types": "3.78.0",
|
|
40
40
|
"@aws-sdk/url-parser": "3.78.0",
|
|
41
41
|
"@aws-sdk/util-base64-browser": "3.58.0",
|
|
42
42
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
43
43
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.85.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.85.0",
|
|
47
47
|
"@aws-sdk/util-user-agent-browser": "3.78.0",
|
|
48
48
|
"@aws-sdk/util-user-agent-node": "3.80.0",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.55.0",
|