@aws-sdk/client-outposts 3.169.0 → 3.171.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 +16 -0
- package/dist-types/ts3.4/Outposts.d.ts +446 -135
- package/dist-types/ts3.4/OutpostsClient.d.ts +260 -99
- package/dist-types/ts3.4/commands/CancelOrderCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateOrderCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateOutpostCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateSiteCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteOutpostCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteSiteCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetCatalogItemCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetConnectionCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetOrderCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetOutpostCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetOutpostInstanceTypesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetSiteAddressCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetSiteCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/ListAssetsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListCatalogItemsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListOrdersCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListOutpostsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListSitesCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/StartConnectionCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateOutpostCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateSiteAddressCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateSiteCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateSiteRackPhysicalPropertiesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/index.d.ts +26 -26
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/OutpostsServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +708 -897
- package/dist-types/ts3.4/pagination/GetOutpostInstanceTypesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListAssetsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListCatalogItemsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListOrdersPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListOutpostsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListSitesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +7 -7
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +317 -80
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
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
|
|
5
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
import {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
import {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
import {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
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>;
|