@aws-sdk/client-outposts 3.169.0 → 3.170.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 (49) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/Outposts.d.ts +472 -135
  3. package/dist-types/ts3.4/OutpostsClient.d.ts +285 -99
  4. package/dist-types/ts3.4/commands/CancelOrderCommand.d.ts +34 -17
  5. package/dist-types/ts3.4/commands/CreateOrderCommand.d.ts +34 -17
  6. package/dist-types/ts3.4/commands/CreateOutpostCommand.d.ts +34 -17
  7. package/dist-types/ts3.4/commands/CreateSiteCommand.d.ts +34 -17
  8. package/dist-types/ts3.4/commands/DeleteOutpostCommand.d.ts +34 -17
  9. package/dist-types/ts3.4/commands/DeleteSiteCommand.d.ts +34 -17
  10. package/dist-types/ts3.4/commands/GetCatalogItemCommand.d.ts +34 -17
  11. package/dist-types/ts3.4/commands/GetConnectionCommand.d.ts +37 -17
  12. package/dist-types/ts3.4/commands/GetOrderCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/GetOutpostCommand.d.ts +34 -17
  14. package/dist-types/ts3.4/commands/GetOutpostInstanceTypesCommand.d.ts +41 -17
  15. package/dist-types/ts3.4/commands/GetSiteAddressCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/GetSiteCommand.d.ts +32 -17
  17. package/dist-types/ts3.4/commands/ListAssetsCommand.d.ts +34 -17
  18. package/dist-types/ts3.4/commands/ListCatalogItemsCommand.d.ts +37 -17
  19. package/dist-types/ts3.4/commands/ListOrdersCommand.d.ts +34 -17
  20. package/dist-types/ts3.4/commands/ListOutpostsCommand.d.ts +34 -17
  21. package/dist-types/ts3.4/commands/ListSitesCommand.d.ts +34 -17
  22. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  23. package/dist-types/ts3.4/commands/StartConnectionCommand.d.ts +37 -17
  24. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  25. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  26. package/dist-types/ts3.4/commands/UpdateOutpostCommand.d.ts +34 -17
  27. package/dist-types/ts3.4/commands/UpdateSiteAddressCommand.d.ts +37 -17
  28. package/dist-types/ts3.4/commands/UpdateSiteCommand.d.ts +34 -17
  29. package/dist-types/ts3.4/commands/UpdateSiteRackPhysicalPropertiesCommand.d.ts +41 -17
  30. package/dist-types/ts3.4/commands/index.d.ts +26 -26
  31. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  32. package/dist-types/ts3.4/index.d.ts +6 -6
  33. package/dist-types/ts3.4/models/OutpostsServiceException.d.ts +8 -6
  34. package/dist-types/ts3.4/models/index.d.ts +1 -1
  35. package/dist-types/ts3.4/models/models_0.d.ts +954 -897
  36. package/dist-types/ts3.4/pagination/GetOutpostInstanceTypesPaginator.d.ts +11 -4
  37. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  38. package/dist-types/ts3.4/pagination/ListAssetsPaginator.d.ts +11 -4
  39. package/dist-types/ts3.4/pagination/ListCatalogItemsPaginator.d.ts +11 -4
  40. package/dist-types/ts3.4/pagination/ListOrdersPaginator.d.ts +11 -4
  41. package/dist-types/ts3.4/pagination/ListOutpostsPaginator.d.ts +11 -4
  42. package/dist-types/ts3.4/pagination/ListSitesPaginator.d.ts +11 -4
  43. package/dist-types/ts3.4/pagination/index.d.ts +7 -7
  44. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +317 -80
  45. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  46. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  47. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  48. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  49. package/package.json +34 -34
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { GetOutpostInstanceTypesCommandInput, GetOutpostInstanceTypesCommandOutput } from "../commands/GetOutpostInstanceTypesCommand";
3
- import { OutpostsPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateGetOutpostInstanceTypes(config: OutpostsPaginationConfiguration, input: GetOutpostInstanceTypesCommandInput, ...additionalArguments: any): Paginator<GetOutpostInstanceTypesCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ GetOutpostInstanceTypesCommandInput,
4
+ GetOutpostInstanceTypesCommandOutput,
5
+ } from "../commands/GetOutpostInstanceTypesCommand";
6
+ import { OutpostsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateGetOutpostInstanceTypes(
8
+ config: OutpostsPaginationConfiguration,
9
+ input: GetOutpostInstanceTypesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<GetOutpostInstanceTypesCommandOutput>;
@@ -1,6 +1,7 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { Outposts } from "../Outposts";
3
- import { OutpostsClient } from "../OutpostsClient";
4
- export interface OutpostsPaginationConfiguration extends PaginationConfiguration {
5
- client: Outposts | OutpostsClient;
6
- }
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { Outposts } from "../Outposts";
3
+ import { OutpostsClient } from "../OutpostsClient";
4
+ export interface OutpostsPaginationConfiguration
5
+ extends PaginationConfiguration {
6
+ client: Outposts | OutpostsClient;
7
+ }
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListAssetsCommandInput, ListAssetsCommandOutput } from "../commands/ListAssetsCommand";
3
- import { OutpostsPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListAssets(config: OutpostsPaginationConfiguration, input: ListAssetsCommandInput, ...additionalArguments: any): Paginator<ListAssetsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListAssetsCommandInput,
4
+ ListAssetsCommandOutput,
5
+ } from "../commands/ListAssetsCommand";
6
+ import { OutpostsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListAssets(
8
+ config: OutpostsPaginationConfiguration,
9
+ input: ListAssetsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListAssetsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListCatalogItemsCommandInput, ListCatalogItemsCommandOutput } from "../commands/ListCatalogItemsCommand";
3
- import { OutpostsPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListCatalogItems(config: OutpostsPaginationConfiguration, input: ListCatalogItemsCommandInput, ...additionalArguments: any): Paginator<ListCatalogItemsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListCatalogItemsCommandInput,
4
+ ListCatalogItemsCommandOutput,
5
+ } from "../commands/ListCatalogItemsCommand";
6
+ import { OutpostsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListCatalogItems(
8
+ config: OutpostsPaginationConfiguration,
9
+ input: ListCatalogItemsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListCatalogItemsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListOrdersCommandInput, ListOrdersCommandOutput } from "../commands/ListOrdersCommand";
3
- import { OutpostsPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListOrders(config: OutpostsPaginationConfiguration, input: ListOrdersCommandInput, ...additionalArguments: any): Paginator<ListOrdersCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListOrdersCommandInput,
4
+ ListOrdersCommandOutput,
5
+ } from "../commands/ListOrdersCommand";
6
+ import { OutpostsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListOrders(
8
+ config: OutpostsPaginationConfiguration,
9
+ input: ListOrdersCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListOrdersCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListOutpostsCommandInput, ListOutpostsCommandOutput } from "../commands/ListOutpostsCommand";
3
- import { OutpostsPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListOutposts(config: OutpostsPaginationConfiguration, input: ListOutpostsCommandInput, ...additionalArguments: any): Paginator<ListOutpostsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListOutpostsCommandInput,
4
+ ListOutpostsCommandOutput,
5
+ } from "../commands/ListOutpostsCommand";
6
+ import { OutpostsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListOutposts(
8
+ config: OutpostsPaginationConfiguration,
9
+ input: ListOutpostsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListOutpostsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListSitesCommandInput, ListSitesCommandOutput } from "../commands/ListSitesCommand";
3
- import { OutpostsPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListSites(config: OutpostsPaginationConfiguration, input: ListSitesCommandInput, ...additionalArguments: any): Paginator<ListSitesCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListSitesCommandInput,
4
+ ListSitesCommandOutput,
5
+ } from "../commands/ListSitesCommand";
6
+ import { OutpostsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListSites(
8
+ config: OutpostsPaginationConfiguration,
9
+ input: ListSitesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListSitesCommandOutput>;
@@ -1,7 +1,7 @@
1
- export * from "./GetOutpostInstanceTypesPaginator";
2
- export * from "./Interfaces";
3
- export * from "./ListAssetsPaginator";
4
- export * from "./ListCatalogItemsPaginator";
5
- export * from "./ListOrdersPaginator";
6
- export * from "./ListOutpostsPaginator";
7
- export * from "./ListSitesPaginator";
1
+ export * from "./GetOutpostInstanceTypesPaginator";
2
+ export * from "./Interfaces";
3
+ export * from "./ListAssetsPaginator";
4
+ export * from "./ListCatalogItemsPaginator";
5
+ export * from "./ListOrdersPaginator";
6
+ export * from "./ListOutpostsPaginator";
7
+ export * from "./ListSitesPaginator";
@@ -1,80 +1,317 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { CancelOrderCommandInput, CancelOrderCommandOutput } from "../commands/CancelOrderCommand";
4
- import { CreateOrderCommandInput, CreateOrderCommandOutput } from "../commands/CreateOrderCommand";
5
- import { CreateOutpostCommandInput, CreateOutpostCommandOutput } from "../commands/CreateOutpostCommand";
6
- import { CreateSiteCommandInput, CreateSiteCommandOutput } from "../commands/CreateSiteCommand";
7
- import { DeleteOutpostCommandInput, DeleteOutpostCommandOutput } from "../commands/DeleteOutpostCommand";
8
- import { DeleteSiteCommandInput, DeleteSiteCommandOutput } from "../commands/DeleteSiteCommand";
9
- import { GetCatalogItemCommandInput, GetCatalogItemCommandOutput } from "../commands/GetCatalogItemCommand";
10
- import { GetConnectionCommandInput, GetConnectionCommandOutput } from "../commands/GetConnectionCommand";
11
- import { GetOrderCommandInput, GetOrderCommandOutput } from "../commands/GetOrderCommand";
12
- import { GetOutpostCommandInput, GetOutpostCommandOutput } from "../commands/GetOutpostCommand";
13
- import { GetOutpostInstanceTypesCommandInput, GetOutpostInstanceTypesCommandOutput } from "../commands/GetOutpostInstanceTypesCommand";
14
- import { GetSiteAddressCommandInput, GetSiteAddressCommandOutput } from "../commands/GetSiteAddressCommand";
15
- import { GetSiteCommandInput, GetSiteCommandOutput } from "../commands/GetSiteCommand";
16
- import { ListAssetsCommandInput, ListAssetsCommandOutput } from "../commands/ListAssetsCommand";
17
- import { ListCatalogItemsCommandInput, ListCatalogItemsCommandOutput } from "../commands/ListCatalogItemsCommand";
18
- import { ListOrdersCommandInput, ListOrdersCommandOutput } from "../commands/ListOrdersCommand";
19
- import { ListOutpostsCommandInput, ListOutpostsCommandOutput } from "../commands/ListOutpostsCommand";
20
- import { ListSitesCommandInput, ListSitesCommandOutput } from "../commands/ListSitesCommand";
21
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
22
- import { StartConnectionCommandInput, StartConnectionCommandOutput } from "../commands/StartConnectionCommand";
23
- import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
24
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
25
- import { UpdateOutpostCommandInput, UpdateOutpostCommandOutput } from "../commands/UpdateOutpostCommand";
26
- import { UpdateSiteAddressCommandInput, UpdateSiteAddressCommandOutput } from "../commands/UpdateSiteAddressCommand";
27
- import { UpdateSiteCommandInput, UpdateSiteCommandOutput } from "../commands/UpdateSiteCommand";
28
- import { UpdateSiteRackPhysicalPropertiesCommandInput, UpdateSiteRackPhysicalPropertiesCommandOutput } from "../commands/UpdateSiteRackPhysicalPropertiesCommand";
29
- export declare const serializeAws_restJson1CancelOrderCommand: (input: CancelOrderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
- export declare const serializeAws_restJson1CreateOrderCommand: (input: CreateOrderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
- export declare const serializeAws_restJson1CreateOutpostCommand: (input: CreateOutpostCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
- export declare const serializeAws_restJson1CreateSiteCommand: (input: CreateSiteCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
- export declare const serializeAws_restJson1DeleteOutpostCommand: (input: DeleteOutpostCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
- export declare const serializeAws_restJson1DeleteSiteCommand: (input: DeleteSiteCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
- export declare const serializeAws_restJson1GetCatalogItemCommand: (input: GetCatalogItemCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
- export declare const serializeAws_restJson1GetConnectionCommand: (input: GetConnectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
- export declare const serializeAws_restJson1GetOrderCommand: (input: GetOrderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
- export declare const serializeAws_restJson1GetOutpostCommand: (input: GetOutpostCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
- export declare const serializeAws_restJson1GetOutpostInstanceTypesCommand: (input: GetOutpostInstanceTypesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
- export declare const serializeAws_restJson1GetSiteCommand: (input: GetSiteCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
- export declare const serializeAws_restJson1GetSiteAddressCommand: (input: GetSiteAddressCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
- export declare const serializeAws_restJson1ListAssetsCommand: (input: ListAssetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
- export declare const serializeAws_restJson1ListCatalogItemsCommand: (input: ListCatalogItemsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
44
- export declare const serializeAws_restJson1ListOrdersCommand: (input: ListOrdersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
- export declare const serializeAws_restJson1ListOutpostsCommand: (input: ListOutpostsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
- export declare const serializeAws_restJson1ListSitesCommand: (input: ListSitesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
- export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
- export declare const serializeAws_restJson1StartConnectionCommand: (input: StartConnectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
- export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
- export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
- export declare const serializeAws_restJson1UpdateOutpostCommand: (input: UpdateOutpostCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
52
- export declare const serializeAws_restJson1UpdateSiteCommand: (input: UpdateSiteCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
53
- export declare const serializeAws_restJson1UpdateSiteAddressCommand: (input: UpdateSiteAddressCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
54
- export declare const serializeAws_restJson1UpdateSiteRackPhysicalPropertiesCommand: (input: UpdateSiteRackPhysicalPropertiesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
55
- export declare const deserializeAws_restJson1CancelOrderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelOrderCommandOutput>;
56
- export declare const deserializeAws_restJson1CreateOrderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateOrderCommandOutput>;
57
- export declare const deserializeAws_restJson1CreateOutpostCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateOutpostCommandOutput>;
58
- export declare const deserializeAws_restJson1CreateSiteCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateSiteCommandOutput>;
59
- export declare const deserializeAws_restJson1DeleteOutpostCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteOutpostCommandOutput>;
60
- export declare const deserializeAws_restJson1DeleteSiteCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSiteCommandOutput>;
61
- export declare const deserializeAws_restJson1GetCatalogItemCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCatalogItemCommandOutput>;
62
- export declare const deserializeAws_restJson1GetConnectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetConnectionCommandOutput>;
63
- export declare const deserializeAws_restJson1GetOrderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetOrderCommandOutput>;
64
- export declare const deserializeAws_restJson1GetOutpostCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetOutpostCommandOutput>;
65
- export declare const deserializeAws_restJson1GetOutpostInstanceTypesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetOutpostInstanceTypesCommandOutput>;
66
- export declare const deserializeAws_restJson1GetSiteCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSiteCommandOutput>;
67
- export declare const deserializeAws_restJson1GetSiteAddressCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSiteAddressCommandOutput>;
68
- export declare const deserializeAws_restJson1ListAssetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAssetsCommandOutput>;
69
- export declare const deserializeAws_restJson1ListCatalogItemsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCatalogItemsCommandOutput>;
70
- export declare const deserializeAws_restJson1ListOrdersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListOrdersCommandOutput>;
71
- export declare const deserializeAws_restJson1ListOutpostsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListOutpostsCommandOutput>;
72
- export declare const deserializeAws_restJson1ListSitesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSitesCommandOutput>;
73
- export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
74
- export declare const deserializeAws_restJson1StartConnectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartConnectionCommandOutput>;
75
- export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
76
- export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
77
- export declare const deserializeAws_restJson1UpdateOutpostCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateOutpostCommandOutput>;
78
- export declare const deserializeAws_restJson1UpdateSiteCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateSiteCommandOutput>;
79
- export declare const deserializeAws_restJson1UpdateSiteAddressCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateSiteAddressCommandOutput>;
80
- export declare const deserializeAws_restJson1UpdateSiteRackPhysicalPropertiesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateSiteRackPhysicalPropertiesCommandOutput>;
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@aws-sdk/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
6
+ import {
7
+ CancelOrderCommandInput,
8
+ CancelOrderCommandOutput,
9
+ } from "../commands/CancelOrderCommand";
10
+ import {
11
+ CreateOrderCommandInput,
12
+ CreateOrderCommandOutput,
13
+ } from "../commands/CreateOrderCommand";
14
+ import {
15
+ CreateOutpostCommandInput,
16
+ CreateOutpostCommandOutput,
17
+ } from "../commands/CreateOutpostCommand";
18
+ import {
19
+ CreateSiteCommandInput,
20
+ CreateSiteCommandOutput,
21
+ } from "../commands/CreateSiteCommand";
22
+ import {
23
+ DeleteOutpostCommandInput,
24
+ DeleteOutpostCommandOutput,
25
+ } from "../commands/DeleteOutpostCommand";
26
+ import {
27
+ DeleteSiteCommandInput,
28
+ DeleteSiteCommandOutput,
29
+ } from "../commands/DeleteSiteCommand";
30
+ import {
31
+ GetCatalogItemCommandInput,
32
+ GetCatalogItemCommandOutput,
33
+ } from "../commands/GetCatalogItemCommand";
34
+ import {
35
+ GetConnectionCommandInput,
36
+ GetConnectionCommandOutput,
37
+ } from "../commands/GetConnectionCommand";
38
+ import {
39
+ GetOrderCommandInput,
40
+ GetOrderCommandOutput,
41
+ } from "../commands/GetOrderCommand";
42
+ import {
43
+ GetOutpostCommandInput,
44
+ GetOutpostCommandOutput,
45
+ } from "../commands/GetOutpostCommand";
46
+ import {
47
+ GetOutpostInstanceTypesCommandInput,
48
+ GetOutpostInstanceTypesCommandOutput,
49
+ } from "../commands/GetOutpostInstanceTypesCommand";
50
+ import {
51
+ GetSiteAddressCommandInput,
52
+ GetSiteAddressCommandOutput,
53
+ } from "../commands/GetSiteAddressCommand";
54
+ import {
55
+ GetSiteCommandInput,
56
+ GetSiteCommandOutput,
57
+ } from "../commands/GetSiteCommand";
58
+ import {
59
+ ListAssetsCommandInput,
60
+ ListAssetsCommandOutput,
61
+ } from "../commands/ListAssetsCommand";
62
+ import {
63
+ ListCatalogItemsCommandInput,
64
+ ListCatalogItemsCommandOutput,
65
+ } from "../commands/ListCatalogItemsCommand";
66
+ import {
67
+ ListOrdersCommandInput,
68
+ ListOrdersCommandOutput,
69
+ } from "../commands/ListOrdersCommand";
70
+ import {
71
+ ListOutpostsCommandInput,
72
+ ListOutpostsCommandOutput,
73
+ } from "../commands/ListOutpostsCommand";
74
+ import {
75
+ ListSitesCommandInput,
76
+ ListSitesCommandOutput,
77
+ } from "../commands/ListSitesCommand";
78
+ import {
79
+ ListTagsForResourceCommandInput,
80
+ ListTagsForResourceCommandOutput,
81
+ } from "../commands/ListTagsForResourceCommand";
82
+ import {
83
+ StartConnectionCommandInput,
84
+ StartConnectionCommandOutput,
85
+ } from "../commands/StartConnectionCommand";
86
+ import {
87
+ TagResourceCommandInput,
88
+ TagResourceCommandOutput,
89
+ } from "../commands/TagResourceCommand";
90
+ import {
91
+ UntagResourceCommandInput,
92
+ UntagResourceCommandOutput,
93
+ } from "../commands/UntagResourceCommand";
94
+ import {
95
+ UpdateOutpostCommandInput,
96
+ UpdateOutpostCommandOutput,
97
+ } from "../commands/UpdateOutpostCommand";
98
+ import {
99
+ UpdateSiteAddressCommandInput,
100
+ UpdateSiteAddressCommandOutput,
101
+ } from "../commands/UpdateSiteAddressCommand";
102
+ import {
103
+ UpdateSiteCommandInput,
104
+ UpdateSiteCommandOutput,
105
+ } from "../commands/UpdateSiteCommand";
106
+ import {
107
+ UpdateSiteRackPhysicalPropertiesCommandInput,
108
+ UpdateSiteRackPhysicalPropertiesCommandOutput,
109
+ } from "../commands/UpdateSiteRackPhysicalPropertiesCommand";
110
+ export declare const serializeAws_restJson1CancelOrderCommand: (
111
+ input: CancelOrderCommandInput,
112
+ context: __SerdeContext
113
+ ) => Promise<__HttpRequest>;
114
+ export declare const serializeAws_restJson1CreateOrderCommand: (
115
+ input: CreateOrderCommandInput,
116
+ context: __SerdeContext
117
+ ) => Promise<__HttpRequest>;
118
+ export declare const serializeAws_restJson1CreateOutpostCommand: (
119
+ input: CreateOutpostCommandInput,
120
+ context: __SerdeContext
121
+ ) => Promise<__HttpRequest>;
122
+ export declare const serializeAws_restJson1CreateSiteCommand: (
123
+ input: CreateSiteCommandInput,
124
+ context: __SerdeContext
125
+ ) => Promise<__HttpRequest>;
126
+ export declare const serializeAws_restJson1DeleteOutpostCommand: (
127
+ input: DeleteOutpostCommandInput,
128
+ context: __SerdeContext
129
+ ) => Promise<__HttpRequest>;
130
+ export declare const serializeAws_restJson1DeleteSiteCommand: (
131
+ input: DeleteSiteCommandInput,
132
+ context: __SerdeContext
133
+ ) => Promise<__HttpRequest>;
134
+ export declare const serializeAws_restJson1GetCatalogItemCommand: (
135
+ input: GetCatalogItemCommandInput,
136
+ context: __SerdeContext
137
+ ) => Promise<__HttpRequest>;
138
+ export declare const serializeAws_restJson1GetConnectionCommand: (
139
+ input: GetConnectionCommandInput,
140
+ context: __SerdeContext
141
+ ) => Promise<__HttpRequest>;
142
+ export declare const serializeAws_restJson1GetOrderCommand: (
143
+ input: GetOrderCommandInput,
144
+ context: __SerdeContext
145
+ ) => Promise<__HttpRequest>;
146
+ export declare const serializeAws_restJson1GetOutpostCommand: (
147
+ input: GetOutpostCommandInput,
148
+ context: __SerdeContext
149
+ ) => Promise<__HttpRequest>;
150
+ export declare const serializeAws_restJson1GetOutpostInstanceTypesCommand: (
151
+ input: GetOutpostInstanceTypesCommandInput,
152
+ context: __SerdeContext
153
+ ) => Promise<__HttpRequest>;
154
+ export declare const serializeAws_restJson1GetSiteCommand: (
155
+ input: GetSiteCommandInput,
156
+ context: __SerdeContext
157
+ ) => Promise<__HttpRequest>;
158
+ export declare const serializeAws_restJson1GetSiteAddressCommand: (
159
+ input: GetSiteAddressCommandInput,
160
+ context: __SerdeContext
161
+ ) => Promise<__HttpRequest>;
162
+ export declare const serializeAws_restJson1ListAssetsCommand: (
163
+ input: ListAssetsCommandInput,
164
+ context: __SerdeContext
165
+ ) => Promise<__HttpRequest>;
166
+ export declare const serializeAws_restJson1ListCatalogItemsCommand: (
167
+ input: ListCatalogItemsCommandInput,
168
+ context: __SerdeContext
169
+ ) => Promise<__HttpRequest>;
170
+ export declare const serializeAws_restJson1ListOrdersCommand: (
171
+ input: ListOrdersCommandInput,
172
+ context: __SerdeContext
173
+ ) => Promise<__HttpRequest>;
174
+ export declare const serializeAws_restJson1ListOutpostsCommand: (
175
+ input: ListOutpostsCommandInput,
176
+ context: __SerdeContext
177
+ ) => Promise<__HttpRequest>;
178
+ export declare const serializeAws_restJson1ListSitesCommand: (
179
+ input: ListSitesCommandInput,
180
+ context: __SerdeContext
181
+ ) => Promise<__HttpRequest>;
182
+ export declare const serializeAws_restJson1ListTagsForResourceCommand: (
183
+ input: ListTagsForResourceCommandInput,
184
+ context: __SerdeContext
185
+ ) => Promise<__HttpRequest>;
186
+ export declare const serializeAws_restJson1StartConnectionCommand: (
187
+ input: StartConnectionCommandInput,
188
+ context: __SerdeContext
189
+ ) => Promise<__HttpRequest>;
190
+ export declare const serializeAws_restJson1TagResourceCommand: (
191
+ input: TagResourceCommandInput,
192
+ context: __SerdeContext
193
+ ) => Promise<__HttpRequest>;
194
+ export declare const serializeAws_restJson1UntagResourceCommand: (
195
+ input: UntagResourceCommandInput,
196
+ context: __SerdeContext
197
+ ) => Promise<__HttpRequest>;
198
+ export declare const serializeAws_restJson1UpdateOutpostCommand: (
199
+ input: UpdateOutpostCommandInput,
200
+ context: __SerdeContext
201
+ ) => Promise<__HttpRequest>;
202
+ export declare const serializeAws_restJson1UpdateSiteCommand: (
203
+ input: UpdateSiteCommandInput,
204
+ context: __SerdeContext
205
+ ) => Promise<__HttpRequest>;
206
+ export declare const serializeAws_restJson1UpdateSiteAddressCommand: (
207
+ input: UpdateSiteAddressCommandInput,
208
+ context: __SerdeContext
209
+ ) => Promise<__HttpRequest>;
210
+ export declare const serializeAws_restJson1UpdateSiteRackPhysicalPropertiesCommand: (
211
+ input: UpdateSiteRackPhysicalPropertiesCommandInput,
212
+ context: __SerdeContext
213
+ ) => Promise<__HttpRequest>;
214
+ export declare const deserializeAws_restJson1CancelOrderCommand: (
215
+ output: __HttpResponse,
216
+ context: __SerdeContext
217
+ ) => Promise<CancelOrderCommandOutput>;
218
+ export declare const deserializeAws_restJson1CreateOrderCommand: (
219
+ output: __HttpResponse,
220
+ context: __SerdeContext
221
+ ) => Promise<CreateOrderCommandOutput>;
222
+ export declare const deserializeAws_restJson1CreateOutpostCommand: (
223
+ output: __HttpResponse,
224
+ context: __SerdeContext
225
+ ) => Promise<CreateOutpostCommandOutput>;
226
+ export declare const deserializeAws_restJson1CreateSiteCommand: (
227
+ output: __HttpResponse,
228
+ context: __SerdeContext
229
+ ) => Promise<CreateSiteCommandOutput>;
230
+ export declare const deserializeAws_restJson1DeleteOutpostCommand: (
231
+ output: __HttpResponse,
232
+ context: __SerdeContext
233
+ ) => Promise<DeleteOutpostCommandOutput>;
234
+ export declare const deserializeAws_restJson1DeleteSiteCommand: (
235
+ output: __HttpResponse,
236
+ context: __SerdeContext
237
+ ) => Promise<DeleteSiteCommandOutput>;
238
+ export declare const deserializeAws_restJson1GetCatalogItemCommand: (
239
+ output: __HttpResponse,
240
+ context: __SerdeContext
241
+ ) => Promise<GetCatalogItemCommandOutput>;
242
+ export declare const deserializeAws_restJson1GetConnectionCommand: (
243
+ output: __HttpResponse,
244
+ context: __SerdeContext
245
+ ) => Promise<GetConnectionCommandOutput>;
246
+ export declare const deserializeAws_restJson1GetOrderCommand: (
247
+ output: __HttpResponse,
248
+ context: __SerdeContext
249
+ ) => Promise<GetOrderCommandOutput>;
250
+ export declare const deserializeAws_restJson1GetOutpostCommand: (
251
+ output: __HttpResponse,
252
+ context: __SerdeContext
253
+ ) => Promise<GetOutpostCommandOutput>;
254
+ export declare const deserializeAws_restJson1GetOutpostInstanceTypesCommand: (
255
+ output: __HttpResponse,
256
+ context: __SerdeContext
257
+ ) => Promise<GetOutpostInstanceTypesCommandOutput>;
258
+ export declare const deserializeAws_restJson1GetSiteCommand: (
259
+ output: __HttpResponse,
260
+ context: __SerdeContext
261
+ ) => Promise<GetSiteCommandOutput>;
262
+ export declare const deserializeAws_restJson1GetSiteAddressCommand: (
263
+ output: __HttpResponse,
264
+ context: __SerdeContext
265
+ ) => Promise<GetSiteAddressCommandOutput>;
266
+ export declare const deserializeAws_restJson1ListAssetsCommand: (
267
+ output: __HttpResponse,
268
+ context: __SerdeContext
269
+ ) => Promise<ListAssetsCommandOutput>;
270
+ export declare const deserializeAws_restJson1ListCatalogItemsCommand: (
271
+ output: __HttpResponse,
272
+ context: __SerdeContext
273
+ ) => Promise<ListCatalogItemsCommandOutput>;
274
+ export declare const deserializeAws_restJson1ListOrdersCommand: (
275
+ output: __HttpResponse,
276
+ context: __SerdeContext
277
+ ) => Promise<ListOrdersCommandOutput>;
278
+ export declare const deserializeAws_restJson1ListOutpostsCommand: (
279
+ output: __HttpResponse,
280
+ context: __SerdeContext
281
+ ) => Promise<ListOutpostsCommandOutput>;
282
+ export declare const deserializeAws_restJson1ListSitesCommand: (
283
+ output: __HttpResponse,
284
+ context: __SerdeContext
285
+ ) => Promise<ListSitesCommandOutput>;
286
+ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
287
+ output: __HttpResponse,
288
+ context: __SerdeContext
289
+ ) => Promise<ListTagsForResourceCommandOutput>;
290
+ export declare const deserializeAws_restJson1StartConnectionCommand: (
291
+ output: __HttpResponse,
292
+ context: __SerdeContext
293
+ ) => Promise<StartConnectionCommandOutput>;
294
+ export declare const deserializeAws_restJson1TagResourceCommand: (
295
+ output: __HttpResponse,
296
+ context: __SerdeContext
297
+ ) => Promise<TagResourceCommandOutput>;
298
+ export declare const deserializeAws_restJson1UntagResourceCommand: (
299
+ output: __HttpResponse,
300
+ context: __SerdeContext
301
+ ) => Promise<UntagResourceCommandOutput>;
302
+ export declare const deserializeAws_restJson1UpdateOutpostCommand: (
303
+ output: __HttpResponse,
304
+ context: __SerdeContext
305
+ ) => Promise<UpdateOutpostCommandOutput>;
306
+ export declare const deserializeAws_restJson1UpdateSiteCommand: (
307
+ output: __HttpResponse,
308
+ context: __SerdeContext
309
+ ) => Promise<UpdateSiteCommandOutput>;
310
+ export declare const deserializeAws_restJson1UpdateSiteAddressCommand: (
311
+ output: __HttpResponse,
312
+ context: __SerdeContext
313
+ ) => Promise<UpdateSiteAddressCommandOutput>;
314
+ export declare const deserializeAws_restJson1UpdateSiteRackPhysicalPropertiesCommand: (
315
+ output: __HttpResponse,
316
+ context: __SerdeContext
317
+ ) => Promise<UpdateSiteRackPhysicalPropertiesCommandOutput>;