@aws-sdk/client-outposts 3.183.0 → 3.186.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.
Files changed (65) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/dist-cjs/models/models_0.js +14 -2
  3. package/dist-cjs/protocols/Aws_restJson1.js +7 -2
  4. package/dist-es/Outposts.js +113 -106
  5. package/dist-es/OutpostsClient.js +28 -22
  6. package/dist-es/commands/CancelOrderCommand.js +28 -21
  7. package/dist-es/commands/CreateOrderCommand.js +28 -21
  8. package/dist-es/commands/CreateOutpostCommand.js +28 -21
  9. package/dist-es/commands/CreateSiteCommand.js +28 -21
  10. package/dist-es/commands/DeleteOutpostCommand.js +28 -21
  11. package/dist-es/commands/DeleteSiteCommand.js +28 -21
  12. package/dist-es/commands/GetCatalogItemCommand.js +28 -21
  13. package/dist-es/commands/GetConnectionCommand.js +28 -21
  14. package/dist-es/commands/GetOrderCommand.js +28 -21
  15. package/dist-es/commands/GetOutpostCommand.js +28 -21
  16. package/dist-es/commands/GetOutpostInstanceTypesCommand.js +28 -21
  17. package/dist-es/commands/GetSiteAddressCommand.js +28 -21
  18. package/dist-es/commands/GetSiteCommand.js +28 -21
  19. package/dist-es/commands/ListAssetsCommand.js +28 -21
  20. package/dist-es/commands/ListCatalogItemsCommand.js +28 -21
  21. package/dist-es/commands/ListOrdersCommand.js +28 -21
  22. package/dist-es/commands/ListOutpostsCommand.js +28 -21
  23. package/dist-es/commands/ListSitesCommand.js +28 -21
  24. package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
  25. package/dist-es/commands/StartConnectionCommand.js +28 -21
  26. package/dist-es/commands/TagResourceCommand.js +28 -21
  27. package/dist-es/commands/UntagResourceCommand.js +28 -21
  28. package/dist-es/commands/UpdateOutpostCommand.js +28 -21
  29. package/dist-es/commands/UpdateSiteAddressCommand.js +28 -21
  30. package/dist-es/commands/UpdateSiteCommand.js +28 -21
  31. package/dist-es/commands/UpdateSiteRackPhysicalPropertiesCommand.js +28 -21
  32. package/dist-es/endpoints.js +8 -8
  33. package/dist-es/models/OutpostsServiceException.js +10 -5
  34. package/dist-es/models/models_0.js +156 -281
  35. package/dist-es/pagination/GetOutpostInstanceTypesPaginator.js +68 -25
  36. package/dist-es/pagination/ListAssetsPaginator.js +68 -25
  37. package/dist-es/pagination/ListCatalogItemsPaginator.js +68 -25
  38. package/dist-es/pagination/ListOrdersPaginator.js +68 -25
  39. package/dist-es/pagination/ListOutpostsPaginator.js +68 -25
  40. package/dist-es/pagination/ListSitesPaginator.js +68 -25
  41. package/dist-es/protocols/Aws_restJson1.js +2643 -1870
  42. package/dist-es/runtimeConfig.browser.js +12 -26
  43. package/dist-es/runtimeConfig.js +12 -30
  44. package/dist-es/runtimeConfig.native.js +5 -8
  45. package/dist-es/runtimeConfig.shared.js +11 -8
  46. package/dist-types/Outposts.d.ts +32 -52
  47. package/dist-types/commands/CancelOrderCommand.d.ts +1 -3
  48. package/dist-types/commands/CreateOutpostCommand.d.ts +1 -1
  49. package/dist-types/commands/DeleteOutpostCommand.d.ts +1 -1
  50. package/dist-types/commands/DeleteSiteCommand.d.ts +1 -1
  51. package/dist-types/commands/GetCatalogItemCommand.d.ts +1 -1
  52. package/dist-types/commands/GetConnectionCommand.d.ts +1 -1
  53. package/dist-types/commands/GetOrderCommand.d.ts +1 -1
  54. package/dist-types/commands/GetSiteAddressCommand.d.ts +1 -1
  55. package/dist-types/commands/GetSiteCommand.d.ts +1 -3
  56. package/dist-types/commands/ListAssetsCommand.d.ts +4 -5
  57. package/dist-types/commands/ListCatalogItemsCommand.d.ts +4 -5
  58. package/dist-types/commands/ListOrdersCommand.d.ts +1 -2
  59. package/dist-types/commands/ListOutpostsCommand.d.ts +4 -6
  60. package/dist-types/commands/ListSitesCommand.d.ts +4 -6
  61. package/dist-types/commands/UpdateSiteAddressCommand.d.ts +5 -12
  62. package/dist-types/commands/UpdateSiteCommand.d.ts +1 -3
  63. package/dist-types/models/models_0.d.ts +67 -164
  64. package/dist-types/ts3.4/models/models_0.d.ts +12 -0
  65. package/package.json +33 -33
@@ -1,3 +1,4 @@
1
+ import { __assign, __awaiter, __generator } from "tslib";
1
2
  import packageInfo from "../package.json";
2
3
  import { Sha256 } from "@aws-crypto/sha256-browser";
3
4
  import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@aws-sdk/config-resolver";
@@ -11,30 +12,15 @@ import { fromUtf8, toUtf8 } from "@aws-sdk/util-utf8-browser";
11
12
  import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
12
13
  import { loadConfigsForDefaultMode } from "@aws-sdk/smithy-client";
13
14
  import { resolveDefaultsModeConfig } from "@aws-sdk/util-defaults-mode-browser";
14
- export const getRuntimeConfig = (config) => {
15
- const defaultsMode = resolveDefaultsModeConfig(config);
16
- const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
17
- const clientSharedValues = getSharedRuntimeConfig(config);
18
- return {
19
- ...clientSharedValues,
20
- ...config,
21
- runtime: "browser",
22
- defaultsMode,
23
- base64Decoder: config?.base64Decoder ?? fromBase64,
24
- base64Encoder: config?.base64Encoder ?? toBase64,
25
- bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
26
- credentialDefaultProvider: config?.credentialDefaultProvider ?? ((_) => () => Promise.reject(new Error("Credential is missing"))),
27
- defaultUserAgentProvider: config?.defaultUserAgentProvider ??
28
- defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
29
- maxAttempts: config?.maxAttempts ?? DEFAULT_MAX_ATTEMPTS,
30
- region: config?.region ?? invalidProvider("Region is missing"),
31
- requestHandler: config?.requestHandler ?? new RequestHandler(defaultConfigProvider),
32
- retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE),
33
- sha256: config?.sha256 ?? Sha256,
34
- streamCollector: config?.streamCollector ?? streamCollector,
35
- useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(DEFAULT_USE_DUALSTACK_ENDPOINT)),
36
- useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(DEFAULT_USE_FIPS_ENDPOINT)),
37
- utf8Decoder: config?.utf8Decoder ?? fromUtf8,
38
- utf8Encoder: config?.utf8Encoder ?? toUtf8,
39
- };
15
+ export var getRuntimeConfig = function (config) {
16
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
17
+ var defaultsMode = resolveDefaultsModeConfig(config);
18
+ var defaultConfigProvider = function () { return defaultsMode().then(loadConfigsForDefaultMode); };
19
+ var clientSharedValues = getSharedRuntimeConfig(config);
20
+ return __assign(__assign(__assign({}, clientSharedValues), config), { runtime: "browser", defaultsMode: defaultsMode, base64Decoder: (_a = config === null || config === void 0 ? void 0 : config.base64Decoder) !== null && _a !== void 0 ? _a : fromBase64, base64Encoder: (_b = config === null || config === void 0 ? void 0 : config.base64Encoder) !== null && _b !== void 0 ? _b : toBase64, bodyLengthChecker: (_c = config === null || config === void 0 ? void 0 : config.bodyLengthChecker) !== null && _c !== void 0 ? _c : calculateBodyLength, credentialDefaultProvider: (_d = config === null || config === void 0 ? void 0 : config.credentialDefaultProvider) !== null && _d !== void 0 ? _d : (function (_) { return function () { return Promise.reject(new Error("Credential is missing")); }; }), defaultUserAgentProvider: (_e = config === null || config === void 0 ? void 0 : config.defaultUserAgentProvider) !== null && _e !== void 0 ? _e : defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }), maxAttempts: (_f = config === null || config === void 0 ? void 0 : config.maxAttempts) !== null && _f !== void 0 ? _f : DEFAULT_MAX_ATTEMPTS, region: (_g = config === null || config === void 0 ? void 0 : config.region) !== null && _g !== void 0 ? _g : invalidProvider("Region is missing"), requestHandler: (_h = config === null || config === void 0 ? void 0 : config.requestHandler) !== null && _h !== void 0 ? _h : new RequestHandler(defaultConfigProvider), retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : (function () { return __awaiter(void 0, void 0, void 0, function () { return __generator(this, function (_a) {
21
+ switch (_a.label) {
22
+ case 0: return [4, defaultConfigProvider()];
23
+ case 1: return [2, (_a.sent()).retryMode || DEFAULT_RETRY_MODE];
24
+ }
25
+ }); }); }), sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : Sha256, streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : streamCollector, useDualstackEndpoint: (_m = config === null || config === void 0 ? void 0 : config.useDualstackEndpoint) !== null && _m !== void 0 ? _m : (function () { return Promise.resolve(DEFAULT_USE_DUALSTACK_ENDPOINT); }), useFipsEndpoint: (_o = config === null || config === void 0 ? void 0 : config.useFipsEndpoint) !== null && _o !== void 0 ? _o : (function () { return Promise.resolve(DEFAULT_USE_FIPS_ENDPOINT); }), utf8Decoder: (_p = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _p !== void 0 ? _p : fromUtf8, utf8Encoder: (_q = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _q !== void 0 ? _q : toUtf8 });
40
26
  };
@@ -1,3 +1,4 @@
1
+ import { __assign, __awaiter, __generator } from "tslib";
1
2
  import packageInfo from "../package.json";
2
3
  import { decorateDefaultCredentialProvider } from "@aws-sdk/client-sts";
3
4
  import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@aws-sdk/config-resolver";
@@ -14,35 +15,16 @@ import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shar
14
15
  import { loadConfigsForDefaultMode } from "@aws-sdk/smithy-client";
15
16
  import { resolveDefaultsModeConfig } from "@aws-sdk/util-defaults-mode-node";
16
17
  import { emitWarningIfUnsupportedVersion } from "@aws-sdk/smithy-client";
17
- export const getRuntimeConfig = (config) => {
18
+ export var getRuntimeConfig = function (config) {
19
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
18
20
  emitWarningIfUnsupportedVersion(process.version);
19
- const defaultsMode = resolveDefaultsModeConfig(config);
20
- const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
21
- const clientSharedValues = getSharedRuntimeConfig(config);
22
- return {
23
- ...clientSharedValues,
24
- ...config,
25
- runtime: "node",
26
- defaultsMode,
27
- base64Decoder: config?.base64Decoder ?? fromBase64,
28
- base64Encoder: config?.base64Encoder ?? toBase64,
29
- bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
30
- credentialDefaultProvider: config?.credentialDefaultProvider ?? decorateDefaultCredentialProvider(credentialDefaultProvider),
31
- defaultUserAgentProvider: config?.defaultUserAgentProvider ??
32
- defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
33
- maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS),
34
- region: config?.region ?? loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS),
35
- requestHandler: config?.requestHandler ?? new RequestHandler(defaultConfigProvider),
36
- retryMode: config?.retryMode ??
37
- loadNodeConfig({
38
- ...NODE_RETRY_MODE_CONFIG_OPTIONS,
39
- default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
40
- }),
41
- sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
42
- streamCollector: config?.streamCollector ?? streamCollector,
43
- useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS),
44
- useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS),
45
- utf8Decoder: config?.utf8Decoder ?? fromUtf8,
46
- utf8Encoder: config?.utf8Encoder ?? toUtf8,
47
- };
21
+ var defaultsMode = resolveDefaultsModeConfig(config);
22
+ var defaultConfigProvider = function () { return defaultsMode().then(loadConfigsForDefaultMode); };
23
+ var clientSharedValues = getSharedRuntimeConfig(config);
24
+ return __assign(__assign(__assign({}, clientSharedValues), config), { runtime: "node", defaultsMode: defaultsMode, base64Decoder: (_a = config === null || config === void 0 ? void 0 : config.base64Decoder) !== null && _a !== void 0 ? _a : fromBase64, base64Encoder: (_b = config === null || config === void 0 ? void 0 : config.base64Encoder) !== null && _b !== void 0 ? _b : toBase64, bodyLengthChecker: (_c = config === null || config === void 0 ? void 0 : config.bodyLengthChecker) !== null && _c !== void 0 ? _c : calculateBodyLength, credentialDefaultProvider: (_d = config === null || config === void 0 ? void 0 : config.credentialDefaultProvider) !== null && _d !== void 0 ? _d : decorateDefaultCredentialProvider(credentialDefaultProvider), defaultUserAgentProvider: (_e = config === null || config === void 0 ? void 0 : config.defaultUserAgentProvider) !== null && _e !== void 0 ? _e : defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }), maxAttempts: (_f = config === null || config === void 0 ? void 0 : config.maxAttempts) !== null && _f !== void 0 ? _f : loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS), region: (_g = config === null || config === void 0 ? void 0 : config.region) !== null && _g !== void 0 ? _g : loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS), requestHandler: (_h = config === null || config === void 0 ? void 0 : config.requestHandler) !== null && _h !== void 0 ? _h : new RequestHandler(defaultConfigProvider), retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : loadNodeConfig(__assign(__assign({}, NODE_RETRY_MODE_CONFIG_OPTIONS), { default: function () { return __awaiter(void 0, void 0, void 0, function () { return __generator(this, function (_a) {
25
+ switch (_a.label) {
26
+ case 0: return [4, defaultConfigProvider()];
27
+ case 1: return [2, (_a.sent()).retryMode || DEFAULT_RETRY_MODE];
28
+ }
29
+ }); }); } })), sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : Hash.bind(null, "sha256"), streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : streamCollector, useDualstackEndpoint: (_m = config === null || config === void 0 ? void 0 : config.useDualstackEndpoint) !== null && _m !== void 0 ? _m : loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS), useFipsEndpoint: (_o = config === null || config === void 0 ? void 0 : config.useFipsEndpoint) !== null && _o !== void 0 ? _o : loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS), utf8Decoder: (_p = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _p !== void 0 ? _p : fromUtf8, utf8Encoder: (_q = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _q !== void 0 ? _q : toUtf8 });
48
30
  };
@@ -1,11 +1,8 @@
1
+ import { __assign } from "tslib";
1
2
  import { Sha256 } from "@aws-crypto/sha256-js";
2
3
  import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser";
3
- export const getRuntimeConfig = (config) => {
4
- const browserDefaults = getBrowserRuntimeConfig(config);
5
- return {
6
- ...browserDefaults,
7
- ...config,
8
- runtime: "react-native",
9
- sha256: config?.sha256 ?? Sha256,
10
- };
4
+ export var getRuntimeConfig = function (config) {
5
+ var _a;
6
+ var browserDefaults = getBrowserRuntimeConfig(config);
7
+ return __assign(__assign(__assign({}, browserDefaults), config), { runtime: "react-native", sha256: (_a = config === null || config === void 0 ? void 0 : config.sha256) !== null && _a !== void 0 ? _a : Sha256 });
11
8
  };
@@ -1,10 +1,13 @@
1
1
  import { parseUrl } from "@aws-sdk/url-parser";
2
2
  import { defaultRegionInfoProvider } from "./endpoints";
3
- export const getRuntimeConfig = (config) => ({
4
- apiVersion: "2019-12-03",
5
- disableHostPrefix: config?.disableHostPrefix ?? false,
6
- logger: config?.logger ?? {},
7
- regionInfoProvider: config?.regionInfoProvider ?? defaultRegionInfoProvider,
8
- serviceId: config?.serviceId ?? "Outposts",
9
- urlParser: config?.urlParser ?? parseUrl,
10
- });
3
+ export var getRuntimeConfig = function (config) {
4
+ var _a, _b, _c, _d, _e;
5
+ return ({
6
+ apiVersion: "2019-12-03",
7
+ disableHostPrefix: (_a = config === null || config === void 0 ? void 0 : config.disableHostPrefix) !== null && _a !== void 0 ? _a : false,
8
+ logger: (_b = config === null || config === void 0 ? void 0 : config.logger) !== null && _b !== void 0 ? _b : {},
9
+ regionInfoProvider: (_c = config === null || config === void 0 ? void 0 : config.regionInfoProvider) !== null && _c !== void 0 ? _c : defaultRegionInfoProvider,
10
+ serviceId: (_d = config === null || config === void 0 ? void 0 : config.serviceId) !== null && _d !== void 0 ? _d : "Outposts",
11
+ urlParser: (_e = config === null || config === void 0 ? void 0 : config.urlParser) !== null && _e !== void 0 ? _e : parseUrl,
12
+ });
13
+ };
@@ -35,9 +35,7 @@ import { OutpostsClient } from "./OutpostsClient";
35
35
  */
36
36
  export declare class Outposts extends OutpostsClient {
37
37
  /**
38
- * <p>
39
- * Cancels an order for an Outpost.
40
- * </p>
38
+ * <p>Cancels the specified order for an Outpost.</p>
41
39
  */
42
40
  cancelOrder(args: CancelOrderCommandInput, options?: __HttpHandlerOptions): Promise<CancelOrderCommandOutput>;
43
41
  cancelOrder(args: CancelOrderCommandInput, cb: (err: any, data?: CancelOrderCommandOutput) => void): void;
@@ -50,7 +48,7 @@ export declare class Outposts extends OutpostsClient {
50
48
  createOrder(args: CreateOrderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateOrderCommandOutput) => void): void;
51
49
  /**
52
50
  * <p>Creates an Outpost.</p>
53
- * <p>You can specify <code>AvailabilityZone</code> or <code>AvailabilityZoneId</code>.</p>
51
+ * <p>You can specify either an Availability one or an AZ ID.</p>
54
52
  */
55
53
  createOutpost(args: CreateOutpostCommandInput, options?: __HttpHandlerOptions): Promise<CreateOutpostCommandOutput>;
56
54
  createOutpost(args: CreateOutpostCommandInput, cb: (err: any, data?: CreateOutpostCommandOutput) => void): void;
@@ -64,19 +62,19 @@ export declare class Outposts extends OutpostsClient {
64
62
  createSite(args: CreateSiteCommandInput, cb: (err: any, data?: CreateSiteCommandOutput) => void): void;
65
63
  createSite(args: CreateSiteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSiteCommandOutput) => void): void;
66
64
  /**
67
- * <p>Deletes the Outpost.</p>
65
+ * <p>Deletes the specified Outpost.</p>
68
66
  */
69
67
  deleteOutpost(args: DeleteOutpostCommandInput, options?: __HttpHandlerOptions): Promise<DeleteOutpostCommandOutput>;
70
68
  deleteOutpost(args: DeleteOutpostCommandInput, cb: (err: any, data?: DeleteOutpostCommandOutput) => void): void;
71
69
  deleteOutpost(args: DeleteOutpostCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteOutpostCommandOutput) => void): void;
72
70
  /**
73
- * <p>Deletes the site.</p>
71
+ * <p>Deletes the specified site.</p>
74
72
  */
75
73
  deleteSite(args: DeleteSiteCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSiteCommandOutput>;
76
74
  deleteSite(args: DeleteSiteCommandInput, cb: (err: any, data?: DeleteSiteCommandOutput) => void): void;
77
75
  deleteSite(args: DeleteSiteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSiteCommandOutput) => void): void;
78
76
  /**
79
- * <p>Gets information about a catalog item.</p>
77
+ * <p>Gets information about the specified catalog item.</p>
80
78
  */
81
79
  getCatalogItem(args: GetCatalogItemCommandInput, options?: __HttpHandlerOptions): Promise<GetCatalogItemCommandOutput>;
82
80
  getCatalogItem(args: GetCatalogItemCommandInput, cb: (err: any, data?: GetCatalogItemCommandOutput) => void): void;
@@ -87,7 +85,7 @@ export declare class Outposts extends OutpostsClient {
87
85
  * Amazon Web Services uses this action to install Outpost servers.</p>
88
86
  * </note>
89
87
  * <p>
90
- * Gets information about a specified connection.
88
+ * Gets information about the specified connection.
91
89
  * </p>
92
90
  * <p>
93
91
  * Use CloudTrail to monitor this action or Amazon Web Services managed policy for Amazon Web Services Outposts to secure it. For
@@ -100,7 +98,7 @@ export declare class Outposts extends OutpostsClient {
100
98
  getConnection(args: GetConnectionCommandInput, cb: (err: any, data?: GetConnectionCommandOutput) => void): void;
101
99
  getConnection(args: GetConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetConnectionCommandOutput) => void): void;
102
100
  /**
103
- * <p>Gets an order.</p>
101
+ * <p>Gets information about the specified order.</p>
104
102
  */
105
103
  getOrder(args: GetOrderCommandInput, options?: __HttpHandlerOptions): Promise<GetOrderCommandOutput>;
106
104
  getOrder(args: GetOrderCommandInput, cb: (err: any, data?: GetOrderCommandOutput) => void): void;
@@ -118,66 +116,57 @@ export declare class Outposts extends OutpostsClient {
118
116
  getOutpostInstanceTypes(args: GetOutpostInstanceTypesCommandInput, cb: (err: any, data?: GetOutpostInstanceTypesCommandOutput) => void): void;
119
117
  getOutpostInstanceTypes(args: GetOutpostInstanceTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetOutpostInstanceTypesCommandOutput) => void): void;
120
118
  /**
121
- * <p>
122
- * Gets information about the specified Outpost site.
123
- * </p>
119
+ * <p>Gets information about the specified Outpost site.</p>
124
120
  */
125
121
  getSite(args: GetSiteCommandInput, options?: __HttpHandlerOptions): Promise<GetSiteCommandOutput>;
126
122
  getSite(args: GetSiteCommandInput, cb: (err: any, data?: GetSiteCommandOutput) => void): void;
127
123
  getSite(args: GetSiteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSiteCommandOutput) => void): void;
128
124
  /**
129
125
  * <p>
130
- * Gets the site address.
126
+ * Gets the site address of the specified site.
131
127
  * </p>
132
128
  */
133
129
  getSiteAddress(args: GetSiteAddressCommandInput, options?: __HttpHandlerOptions): Promise<GetSiteAddressCommandOutput>;
134
130
  getSiteAddress(args: GetSiteAddressCommandInput, cb: (err: any, data?: GetSiteAddressCommandOutput) => void): void;
135
131
  getSiteAddress(args: GetSiteAddressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSiteAddressCommandOutput) => void): void;
136
132
  /**
137
- * <p>
138
- * Lists the hardware assets in an Outpost. If you are using Dedicated Hosts on
139
- * Amazon Web Services Outposts, you can filter your request by host ID to return a list of hardware
140
- * assets that allocate resources for Dedicated Hosts.
141
- * </p>
133
+ * <p>Lists the hardware assets for the specified Outpost.</p>
134
+ * <p>Use filters to return specific results. If you specify multiple filters, the results include only the resources that match
135
+ * all of the specified filters. For a filter where you can specify multiple values, the results include
136
+ * items that match any of the values that you specify for the filter.</p>
142
137
  */
143
138
  listAssets(args: ListAssetsCommandInput, options?: __HttpHandlerOptions): Promise<ListAssetsCommandOutput>;
144
139
  listAssets(args: ListAssetsCommandInput, cb: (err: any, data?: ListAssetsCommandOutput) => void): void;
145
140
  listAssets(args: ListAssetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAssetsCommandOutput) => void): void;
146
141
  /**
147
- * <p>Lists the items in the catalog. Add filters to your request to return a
148
- * more specific list of results. Use filters to match an item class, storage
149
- * option, or EC2 family. </p>
150
- * <p>If you specify multiple filters, the filters are joined with an <code>AND</code>, and
151
- * the request returns only results that match all of the specified filters.</p>
142
+ * <p>Lists the items in the catalog.</p>
143
+ * <p>Use filters to return specific results. If you specify multiple filters, the results include only the resources that match
144
+ * all of the specified filters. For a filter where you can specify multiple values, the results include
145
+ * items that match any of the values that you specify for the filter.</p>
152
146
  */
153
147
  listCatalogItems(args: ListCatalogItemsCommandInput, options?: __HttpHandlerOptions): Promise<ListCatalogItemsCommandOutput>;
154
148
  listCatalogItems(args: ListCatalogItemsCommandInput, cb: (err: any, data?: ListCatalogItemsCommandOutput) => void): void;
155
149
  listCatalogItems(args: ListCatalogItemsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCatalogItemsCommandOutput) => void): void;
156
150
  /**
157
- * <p>Lists the Outpost orders for your Amazon Web Services account. You can filter your request by Outpost to
158
- * return a more specific list of results. </p>
151
+ * <p>Lists the Outpost orders for your Amazon Web Services account.</p>
159
152
  */
160
153
  listOrders(args: ListOrdersCommandInput, options?: __HttpHandlerOptions): Promise<ListOrdersCommandOutput>;
161
154
  listOrders(args: ListOrdersCommandInput, cb: (err: any, data?: ListOrdersCommandOutput) => void): void;
162
155
  listOrders(args: ListOrdersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOrdersCommandOutput) => void): void;
163
156
  /**
164
- * <p>Lists the Outposts for your Amazon Web Services account. Add filters to your request to return
165
- * a more specific list of results. Use filters to match an Outpost lifecycle status,
166
- * Availability Zone (<code>us-east-1a</code>), and AZ ID (<code>use1-az1</code>). </p>
167
- *
168
- * <p>If you specify multiple filters, the filters are joined with an <code>AND</code>, and the request returns only
169
- * results that match all of the specified filters.</p>
157
+ * <p>Lists the Outposts for your Amazon Web Services account.</p>
158
+ * <p>Use filters to return specific results. If you specify multiple filters, the results include only the resources that match
159
+ * all of the specified filters. For a filter where you can specify multiple values, the results include
160
+ * items that match any of the values that you specify for the filter.</p>
170
161
  */
171
162
  listOutposts(args: ListOutpostsCommandInput, options?: __HttpHandlerOptions): Promise<ListOutpostsCommandOutput>;
172
163
  listOutposts(args: ListOutpostsCommandInput, cb: (err: any, data?: ListOutpostsCommandOutput) => void): void;
173
164
  listOutposts(args: ListOutpostsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOutpostsCommandOutput) => void): void;
174
165
  /**
175
- * <p>Lists the Outpost sites for your Amazon Web Services account. Add operating address filters to your request to
176
- * return a more specific list of results. Use filters to match site city, country code, or state/region of the
177
- * operating address. </p>
178
- *
179
- * <p>If you specify multiple filters, the filters are joined with an <code>AND</code>, and the request returns only
180
- * results that match all of the specified filters.</p>
166
+ * <p>Lists the Outpost sites for your Amazon Web Services account. Use filters to return specific results.</p>
167
+ * <p>Use filters to return specific results. If you specify multiple filters, the results include only the resources that match
168
+ * all of the specified filters. For a filter where you can specify multiple values, the results include
169
+ * items that match any of the values that you specify for the filter.</p>
181
170
  */
182
171
  listSites(args: ListSitesCommandInput, options?: __HttpHandlerOptions): Promise<ListSitesCommandOutput>;
183
172
  listSites(args: ListSitesCommandInput, cb: (err: any, data?: ListSitesCommandOutput) => void): void;
@@ -227,26 +216,17 @@ export declare class Outposts extends OutpostsClient {
227
216
  updateOutpost(args: UpdateOutpostCommandInput, cb: (err: any, data?: UpdateOutpostCommandOutput) => void): void;
228
217
  updateOutpost(args: UpdateOutpostCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateOutpostCommandOutput) => void): void;
229
218
  /**
230
- * <p>
231
- * Updates the site.
232
- * </p>
219
+ * <p>Updates the specified site.</p>
233
220
  */
234
221
  updateSite(args: UpdateSiteCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSiteCommandOutput>;
235
222
  updateSite(args: UpdateSiteCommandInput, cb: (err: any, data?: UpdateSiteCommandOutput) => void): void;
236
223
  updateSite(args: UpdateSiteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSiteCommandOutput) => void): void;
237
224
  /**
238
- * <p>
239
- * Updates the site address.
240
- * </p>
241
- * <p>
242
- * To update a site address
243
- * with an order <code>IN_PROGRESS</code>, you must wait for the order
244
- * to complete or cancel the order.
245
- * </p>
246
- * <p>You
247
- * can update the operating address before you place an order at the
248
- * site, or after all Outposts that belong to the site have been deactivated.
249
- * </p>
225
+ * <p>Updates the address of the specified site.</p>
226
+ * <p>You can't update a site address if there is an order in progress. You must wait for the order
227
+ * to complete or cancel the order.</p>
228
+ * <p>You can update the operating address before you place an order at the
229
+ * site, or after all Outposts that belong to the site have been deactivated.</p>
250
230
  */
251
231
  updateSiteAddress(args: UpdateSiteAddressCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSiteAddressCommandOutput>;
252
232
  updateSiteAddress(args: UpdateSiteAddressCommandInput, cb: (err: any, data?: UpdateSiteAddressCommandOutput) => void): void;
@@ -7,9 +7,7 @@ export interface CancelOrderCommandInput extends CancelOrderInput {
7
7
  export interface CancelOrderCommandOutput extends CancelOrderOutput, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>
11
- * Cancels an order for an Outpost.
12
- * </p>
10
+ * <p>Cancels the specified order for an Outpost.</p>
13
11
  * @example
14
12
  * Use a bare-bones client and the command you need to make an API call.
15
13
  * ```javascript
@@ -8,7 +8,7 @@ export interface CreateOutpostCommandOutput extends CreateOutpostOutput, __Metad
8
8
  }
9
9
  /**
10
10
  * <p>Creates an Outpost.</p>
11
- * <p>You can specify <code>AvailabilityZone</code> or <code>AvailabilityZoneId</code>.</p>
11
+ * <p>You can specify either an Availability one or an AZ ID.</p>
12
12
  * @example
13
13
  * Use a bare-bones client and the command you need to make an API call.
14
14
  * ```javascript
@@ -7,7 +7,7 @@ export interface DeleteOutpostCommandInput extends DeleteOutpostInput {
7
7
  export interface DeleteOutpostCommandOutput extends DeleteOutpostOutput, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Deletes the Outpost.</p>
10
+ * <p>Deletes the specified Outpost.</p>
11
11
  * @example
12
12
  * Use a bare-bones client and the command you need to make an API call.
13
13
  * ```javascript
@@ -7,7 +7,7 @@ export interface DeleteSiteCommandInput extends DeleteSiteInput {
7
7
  export interface DeleteSiteCommandOutput extends DeleteSiteOutput, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Deletes the site.</p>
10
+ * <p>Deletes the specified site.</p>
11
11
  * @example
12
12
  * Use a bare-bones client and the command you need to make an API call.
13
13
  * ```javascript
@@ -7,7 +7,7 @@ export interface GetCatalogItemCommandInput extends GetCatalogItemInput {
7
7
  export interface GetCatalogItemCommandOutput extends GetCatalogItemOutput, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Gets information about a catalog item.</p>
10
+ * <p>Gets information about the specified catalog item.</p>
11
11
  * @example
12
12
  * Use a bare-bones client and the command you need to make an API call.
13
13
  * ```javascript
@@ -12,7 +12,7 @@ export interface GetConnectionCommandOutput extends GetConnectionResponse, __Met
12
12
  * Amazon Web Services uses this action to install Outpost servers.</p>
13
13
  * </note>
14
14
  * <p>
15
- * Gets information about a specified connection.
15
+ * Gets information about the specified connection.
16
16
  * </p>
17
17
  * <p>
18
18
  * Use CloudTrail to monitor this action or Amazon Web Services managed policy for Amazon Web Services Outposts to secure it. For
@@ -7,7 +7,7 @@ export interface GetOrderCommandInput extends GetOrderInput {
7
7
  export interface GetOrderCommandOutput extends GetOrderOutput, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Gets an order.</p>
10
+ * <p>Gets information about the specified order.</p>
11
11
  * @example
12
12
  * Use a bare-bones client and the command you need to make an API call.
13
13
  * ```javascript
@@ -8,7 +8,7 @@ export interface GetSiteAddressCommandOutput extends GetSiteAddressOutput, __Met
8
8
  }
9
9
  /**
10
10
  * <p>
11
- * Gets the site address.
11
+ * Gets the site address of the specified site.
12
12
  * </p>
13
13
  * @example
14
14
  * Use a bare-bones client and the command you need to make an API call.
@@ -7,9 +7,7 @@ export interface GetSiteCommandInput extends GetSiteInput {
7
7
  export interface GetSiteCommandOutput extends GetSiteOutput, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>
11
- * Gets information about the specified Outpost site.
12
- * </p>
10
+ * <p>Gets information about the specified Outpost site.</p>
13
11
  * @example
14
12
  * Use a bare-bones client and the command you need to make an API call.
15
13
  * ```javascript
@@ -7,11 +7,10 @@ export interface ListAssetsCommandInput extends ListAssetsInput {
7
7
  export interface ListAssetsCommandOutput extends ListAssetsOutput, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>
11
- * Lists the hardware assets in an Outpost. If you are using Dedicated Hosts on
12
- * Amazon Web Services Outposts, you can filter your request by host ID to return a list of hardware
13
- * assets that allocate resources for Dedicated Hosts.
14
- * </p>
10
+ * <p>Lists the hardware assets for the specified Outpost.</p>
11
+ * <p>Use filters to return specific results. If you specify multiple filters, the results include only the resources that match
12
+ * all of the specified filters. For a filter where you can specify multiple values, the results include
13
+ * items that match any of the values that you specify for the filter.</p>
15
14
  * @example
16
15
  * Use a bare-bones client and the command you need to make an API call.
17
16
  * ```javascript
@@ -7,11 +7,10 @@ export interface ListCatalogItemsCommandInput extends ListCatalogItemsInput {
7
7
  export interface ListCatalogItemsCommandOutput extends ListCatalogItemsOutput, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Lists the items in the catalog. Add filters to your request to return a
11
- * more specific list of results. Use filters to match an item class, storage
12
- * option, or EC2 family. </p>
13
- * <p>If you specify multiple filters, the filters are joined with an <code>AND</code>, and
14
- * the request returns only results that match all of the specified filters.</p>
10
+ * <p>Lists the items in the catalog.</p>
11
+ * <p>Use filters to return specific results. If you specify multiple filters, the results include only the resources that match
12
+ * all of the specified filters. For a filter where you can specify multiple values, the results include
13
+ * items that match any of the values that you specify for the filter.</p>
15
14
  * @example
16
15
  * Use a bare-bones client and the command you need to make an API call.
17
16
  * ```javascript
@@ -7,8 +7,7 @@ export interface ListOrdersCommandInput extends ListOrdersInput {
7
7
  export interface ListOrdersCommandOutput extends ListOrdersOutput, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Lists the Outpost orders for your Amazon Web Services account. You can filter your request by Outpost to
11
- * return a more specific list of results. </p>
10
+ * <p>Lists the Outpost orders for your Amazon Web Services account.</p>
12
11
  * @example
13
12
  * Use a bare-bones client and the command you need to make an API call.
14
13
  * ```javascript
@@ -7,12 +7,10 @@ export interface ListOutpostsCommandInput extends ListOutpostsInput {
7
7
  export interface ListOutpostsCommandOutput extends ListOutpostsOutput, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Lists the Outposts for your Amazon Web Services account. Add filters to your request to return
11
- * a more specific list of results. Use filters to match an Outpost lifecycle status,
12
- * Availability Zone (<code>us-east-1a</code>), and AZ ID (<code>use1-az1</code>). </p>
13
- *
14
- * <p>If you specify multiple filters, the filters are joined with an <code>AND</code>, and the request returns only
15
- * results that match all of the specified filters.</p>
10
+ * <p>Lists the Outposts for your Amazon Web Services account.</p>
11
+ * <p>Use filters to return specific results. If you specify multiple filters, the results include only the resources that match
12
+ * all of the specified filters. For a filter where you can specify multiple values, the results include
13
+ * items that match any of the values that you specify for the filter.</p>
16
14
  * @example
17
15
  * Use a bare-bones client and the command you need to make an API call.
18
16
  * ```javascript
@@ -7,12 +7,10 @@ export interface ListSitesCommandInput extends ListSitesInput {
7
7
  export interface ListSitesCommandOutput extends ListSitesOutput, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Lists the Outpost sites for your Amazon Web Services account. Add operating address filters to your request to
11
- * return a more specific list of results. Use filters to match site city, country code, or state/region of the
12
- * operating address. </p>
13
- *
14
- * <p>If you specify multiple filters, the filters are joined with an <code>AND</code>, and the request returns only
15
- * results that match all of the specified filters.</p>
10
+ * <p>Lists the Outpost sites for your Amazon Web Services account. Use filters to return specific results.</p>
11
+ * <p>Use filters to return specific results. If you specify multiple filters, the results include only the resources that match
12
+ * all of the specified filters. For a filter where you can specify multiple values, the results include
13
+ * items that match any of the values that you specify for the filter.</p>
16
14
  * @example
17
15
  * Use a bare-bones client and the command you need to make an API call.
18
16
  * ```javascript
@@ -7,18 +7,11 @@ export interface UpdateSiteAddressCommandInput extends UpdateSiteAddressInput {
7
7
  export interface UpdateSiteAddressCommandOutput extends UpdateSiteAddressOutput, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>
11
- * Updates the site address.
12
- * </p>
13
- * <p>
14
- * To update a site address
15
- * with an order <code>IN_PROGRESS</code>, you must wait for the order
16
- * to complete or cancel the order.
17
- * </p>
18
- * <p>You
19
- * can update the operating address before you place an order at the
20
- * site, or after all Outposts that belong to the site have been deactivated.
21
- * </p>
10
+ * <p>Updates the address of the specified site.</p>
11
+ * <p>You can't update a site address if there is an order in progress. You must wait for the order
12
+ * to complete or cancel the order.</p>
13
+ * <p>You can update the operating address before you place an order at the
14
+ * site, or after all Outposts that belong to the site have been deactivated.</p>
22
15
  * @example
23
16
  * Use a bare-bones client and the command you need to make an API call.
24
17
  * ```javascript
@@ -7,9 +7,7 @@ export interface UpdateSiteCommandInput extends UpdateSiteInput {
7
7
  export interface UpdateSiteCommandOutput extends UpdateSiteOutput, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>
11
- * Updates the site.
12
- * </p>
10
+ * <p>Updates the specified site.</p>
13
11
  * @example
14
12
  * Use a bare-bones client and the command you need to make an API call.
15
13
  * ```javascript