@aws-sdk/client-outposts 3.529.1 → 3.535.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/dist-types/Outposts.d.ts +5 -1
- package/dist-types/OutpostsClient.d.ts +1 -1
- package/dist-types/commands/CancelOrderCommand.d.ts +2 -1
- package/dist-types/commands/CreateOrderCommand.d.ts +2 -1
- package/dist-types/commands/CreateOutpostCommand.d.ts +2 -1
- package/dist-types/commands/CreateSiteCommand.d.ts +2 -1
- package/dist-types/commands/DeleteOutpostCommand.d.ts +2 -1
- package/dist-types/commands/DeleteSiteCommand.d.ts +2 -1
- package/dist-types/commands/GetCatalogItemCommand.d.ts +2 -1
- package/dist-types/commands/GetConnectionCommand.d.ts +2 -1
- package/dist-types/commands/GetOrderCommand.d.ts +2 -1
- package/dist-types/commands/GetOutpostCommand.d.ts +2 -1
- package/dist-types/commands/GetOutpostInstanceTypesCommand.d.ts +2 -1
- package/dist-types/commands/GetSiteAddressCommand.d.ts +2 -1
- package/dist-types/commands/GetSiteCommand.d.ts +2 -1
- package/dist-types/commands/ListAssetsCommand.d.ts +2 -1
- package/dist-types/commands/ListCatalogItemsCommand.d.ts +2 -1
- package/dist-types/commands/ListOrdersCommand.d.ts +2 -1
- package/dist-types/commands/ListOutpostsCommand.d.ts +2 -1
- package/dist-types/commands/ListSitesCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/StartConnectionCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateOutpostCommand.d.ts +2 -1
- package/dist-types/commands/UpdateSiteAddressCommand.d.ts +2 -1
- package/dist-types/commands/UpdateSiteCommand.d.ts +2 -1
- package/dist-types/commands/UpdateSiteRackPhysicalPropertiesCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +242 -242
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +2 -2
- package/dist-types/ts3.4/Outposts.d.ts +4 -0
- package/dist-types/ts3.4/commands/CancelOrderCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateOrderCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateOutpostCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateSiteCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteOutpostCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteSiteCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetCatalogItemCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetConnectionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetOrderCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetOutpostCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetOutpostInstanceTypesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetSiteAddressCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetSiteCommand.d.ts +7 -0
- package/dist-types/ts3.4/commands/ListAssetsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListCatalogItemsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListOrdersCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListOutpostsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListSitesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StartConnectionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateOutpostCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateSiteAddressCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateSiteCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateSiteRackPhysicalPropertiesCommand.d.ts +9 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -2
- package/package.json +40 -40
|
@@ -20,9 +20,9 @@ export declare const getRuntimeConfig: (config: OutpostsClientConfig) => {
|
|
|
20
20
|
apiVersion: string;
|
|
21
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
22
|
base64Decoder: import("@smithy/types").Decoder;
|
|
23
|
-
base64Encoder:
|
|
23
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
24
24
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
25
|
-
utf8Encoder:
|
|
25
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
serviceId: string;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -20,9 +20,9 @@ export declare const getRuntimeConfig: (config: OutpostsClientConfig) => {
|
|
|
20
20
|
apiVersion: string;
|
|
21
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
22
|
base64Decoder: import("@smithy/types").Decoder;
|
|
23
|
-
base64Encoder:
|
|
23
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
24
24
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
25
|
-
utf8Encoder:
|
|
25
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
serviceId: string;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -11,9 +11,9 @@ export declare const getRuntimeConfig: (config: OutpostsClientConfig) => {
|
|
|
11
11
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
12
12
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
13
13
|
base64Decoder: import("@smithy/types").Decoder;
|
|
14
|
-
base64Encoder:
|
|
14
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
15
15
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
16
|
-
utf8Encoder:
|
|
16
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
17
17
|
disableHostPrefix: boolean;
|
|
18
18
|
serviceId: string;
|
|
19
19
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -5,7 +5,7 @@ import { OutpostsClientConfig } from "./OutpostsClient";
|
|
|
5
5
|
export declare const getRuntimeConfig: (config: OutpostsClientConfig) => {
|
|
6
6
|
apiVersion: string;
|
|
7
7
|
base64Decoder: import("@smithy/types").Decoder;
|
|
8
|
-
base64Encoder:
|
|
8
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
9
9
|
disableHostPrefix: boolean;
|
|
10
10
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
11
11
|
logger?: import("@smithy/types").Logger | undefined;
|
|
@@ -17,5 +17,5 @@ export declare const getRuntimeConfig: (config: OutpostsClientConfig) => {
|
|
|
17
17
|
serviceId: string;
|
|
18
18
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
19
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
20
|
-
utf8Encoder:
|
|
20
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
21
21
|
};
|
|
@@ -287,6 +287,7 @@ export interface Outposts {
|
|
|
287
287
|
options: __HttpHandlerOptions,
|
|
288
288
|
cb: (err: any, data?: ListAssetsCommandOutput) => void
|
|
289
289
|
): void;
|
|
290
|
+
listCatalogItems(): Promise<ListCatalogItemsCommandOutput>;
|
|
290
291
|
listCatalogItems(
|
|
291
292
|
args: ListCatalogItemsCommandInput,
|
|
292
293
|
options?: __HttpHandlerOptions
|
|
@@ -300,6 +301,7 @@ export interface Outposts {
|
|
|
300
301
|
options: __HttpHandlerOptions,
|
|
301
302
|
cb: (err: any, data?: ListCatalogItemsCommandOutput) => void
|
|
302
303
|
): void;
|
|
304
|
+
listOrders(): Promise<ListOrdersCommandOutput>;
|
|
303
305
|
listOrders(
|
|
304
306
|
args: ListOrdersCommandInput,
|
|
305
307
|
options?: __HttpHandlerOptions
|
|
@@ -313,6 +315,7 @@ export interface Outposts {
|
|
|
313
315
|
options: __HttpHandlerOptions,
|
|
314
316
|
cb: (err: any, data?: ListOrdersCommandOutput) => void
|
|
315
317
|
): void;
|
|
318
|
+
listOutposts(): Promise<ListOutpostsCommandOutput>;
|
|
316
319
|
listOutposts(
|
|
317
320
|
args: ListOutpostsCommandInput,
|
|
318
321
|
options?: __HttpHandlerOptions
|
|
@@ -326,6 +329,7 @@ export interface Outposts {
|
|
|
326
329
|
options: __HttpHandlerOptions,
|
|
327
330
|
cb: (err: any, data?: ListOutpostsCommandOutput) => void
|
|
328
331
|
): void;
|
|
332
|
+
listSites(): Promise<ListSitesCommandOutput>;
|
|
329
333
|
listSites(
|
|
330
334
|
args: ListSitesCommandInput,
|
|
331
335
|
options?: __HttpHandlerOptions
|
|
@@ -21,6 +21,15 @@ declare const CancelOrderCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: CancelOrderCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
CancelOrderCommandInput,
|
|
28
|
+
CancelOrderCommandOutput,
|
|
29
|
+
OutpostsClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class CancelOrderCommand extends CancelOrderCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const CreateOrderCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: CreateOrderCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
CreateOrderCommandInput,
|
|
28
|
+
CreateOrderCommandOutput,
|
|
29
|
+
OutpostsClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class CreateOrderCommand extends CreateOrderCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const CreateOutpostCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: CreateOutpostCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
CreateOutpostCommandInput,
|
|
28
|
+
CreateOutpostCommandOutput,
|
|
29
|
+
OutpostsClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class CreateOutpostCommand extends CreateOutpostCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const CreateSiteCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: CreateSiteCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
CreateSiteCommandInput,
|
|
28
|
+
CreateSiteCommandOutput,
|
|
29
|
+
OutpostsClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class CreateSiteCommand extends CreateSiteCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const DeleteOutpostCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: DeleteOutpostCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
DeleteOutpostCommandInput,
|
|
28
|
+
DeleteOutpostCommandOutput,
|
|
29
|
+
OutpostsClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class DeleteOutpostCommand extends DeleteOutpostCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const DeleteSiteCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: DeleteSiteCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
DeleteSiteCommandInput,
|
|
28
|
+
DeleteSiteCommandOutput,
|
|
29
|
+
OutpostsClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class DeleteSiteCommand extends DeleteSiteCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const GetCatalogItemCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: GetCatalogItemCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
GetCatalogItemCommandInput,
|
|
28
|
+
GetCatalogItemCommandOutput,
|
|
29
|
+
OutpostsClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class GetCatalogItemCommand extends GetCatalogItemCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const GetConnectionCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: GetConnectionCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
GetConnectionCommandInput,
|
|
31
|
+
GetConnectionCommandOutput,
|
|
32
|
+
OutpostsClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class GetConnectionCommand extends GetConnectionCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const GetOrderCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: GetOrderCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
GetOrderCommandInput,
|
|
28
|
+
GetOrderCommandOutput,
|
|
29
|
+
OutpostsClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class GetOrderCommand extends GetOrderCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const GetOutpostCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: GetOutpostCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
GetOutpostCommandInput,
|
|
28
|
+
GetOutpostCommandOutput,
|
|
29
|
+
OutpostsClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class GetOutpostCommand extends GetOutpostCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const GetOutpostInstanceTypesCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: GetOutpostInstanceTypesCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetOutpostInstanceTypesCommandInput,
|
|
32
|
+
GetOutpostInstanceTypesCommandOutput,
|
|
33
|
+
OutpostsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class GetOutpostInstanceTypesCommand extends GetOutpostInstanceTypesCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const GetSiteAddressCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: GetSiteAddressCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
GetSiteAddressCommandInput,
|
|
28
|
+
GetSiteAddressCommandOutput,
|
|
29
|
+
OutpostsClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class GetSiteAddressCommand extends GetSiteAddressCommand_base {}
|
|
@@ -17,6 +17,13 @@ declare const GetSiteCommand_base: {
|
|
|
17
17
|
ServiceInputTypes,
|
|
18
18
|
ServiceOutputTypes
|
|
19
19
|
>;
|
|
20
|
+
new (__0_0: GetSiteCommandInput): import("@smithy/smithy-client").CommandImpl<
|
|
21
|
+
GetSiteCommandInput,
|
|
22
|
+
GetSiteCommandOutput,
|
|
23
|
+
OutpostsClientResolvedConfig,
|
|
24
|
+
ServiceInputTypes,
|
|
25
|
+
ServiceOutputTypes
|
|
26
|
+
>;
|
|
20
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
21
28
|
};
|
|
22
29
|
export declare class GetSiteCommand extends GetSiteCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const ListAssetsCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: ListAssetsCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
ListAssetsCommandInput,
|
|
28
|
+
ListAssetsCommandOutput,
|
|
29
|
+
OutpostsClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class ListAssetsCommand extends ListAssetsCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const ListCatalogItemsCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
...[input]: [] | [ListCatalogItemsCommandInput]
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
ListCatalogItemsCommandInput,
|
|
31
|
+
ListCatalogItemsCommandOutput,
|
|
32
|
+
OutpostsClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class ListCatalogItemsCommand extends ListCatalogItemsCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const ListOrdersCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
...[input]: [] | [ListOrdersCommandInput]
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
ListOrdersCommandInput,
|
|
28
|
+
ListOrdersCommandOutput,
|
|
29
|
+
OutpostsClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class ListOrdersCommand extends ListOrdersCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const ListOutpostsCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
...[input]: [] | [ListOutpostsCommandInput]
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
ListOutpostsCommandInput,
|
|
28
|
+
ListOutpostsCommandOutput,
|
|
29
|
+
OutpostsClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class ListOutpostsCommand extends ListOutpostsCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const ListSitesCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
...[input]: [] | [ListSitesCommandInput]
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
ListSitesCommandInput,
|
|
28
|
+
ListSitesCommandOutput,
|
|
29
|
+
OutpostsClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class ListSitesCommand extends ListSitesCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: ListTagsForResourceCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListTagsForResourceCommandInput,
|
|
32
|
+
ListTagsForResourceCommandOutput,
|
|
33
|
+
OutpostsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const StartConnectionCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: StartConnectionCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
StartConnectionCommandInput,
|
|
31
|
+
StartConnectionCommandOutput,
|
|
32
|
+
OutpostsClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class StartConnectionCommand extends StartConnectionCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const TagResourceCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: TagResourceCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
TagResourceCommandInput,
|
|
28
|
+
TagResourceCommandOutput,
|
|
29
|
+
OutpostsClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class TagResourceCommand extends TagResourceCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const UntagResourceCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: UntagResourceCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
UntagResourceCommandInput,
|
|
31
|
+
UntagResourceCommandOutput,
|
|
32
|
+
OutpostsClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const UpdateOutpostCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: UpdateOutpostCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
UpdateOutpostCommandInput,
|
|
28
|
+
UpdateOutpostCommandOutput,
|
|
29
|
+
OutpostsClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class UpdateOutpostCommand extends UpdateOutpostCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const UpdateSiteAddressCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: UpdateSiteAddressCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
UpdateSiteAddressCommandInput,
|
|
31
|
+
UpdateSiteAddressCommandOutput,
|
|
32
|
+
OutpostsClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class UpdateSiteAddressCommand extends UpdateSiteAddressCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const UpdateSiteCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: UpdateSiteCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
UpdateSiteCommandInput,
|
|
28
|
+
UpdateSiteCommandOutput,
|
|
29
|
+
OutpostsClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class UpdateSiteCommand extends UpdateSiteCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const UpdateSiteRackPhysicalPropertiesCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: UpdateSiteRackPhysicalPropertiesCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
UpdateSiteRackPhysicalPropertiesCommandInput,
|
|
32
|
+
UpdateSiteRackPhysicalPropertiesCommandOutput,
|
|
33
|
+
OutpostsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class UpdateSiteRackPhysicalPropertiesCommand extends UpdateSiteRackPhysicalPropertiesCommand_base {}
|
|
@@ -25,9 +25,9 @@ export declare const getRuntimeConfig: (config: OutpostsClientConfig) => {
|
|
|
25
25
|
apiVersion: string;
|
|
26
26
|
urlParser: import("@smithy/types").UrlParser;
|
|
27
27
|
base64Decoder: import("@smithy/types").Decoder;
|
|
28
|
-
base64Encoder:
|
|
28
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
29
29
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
30
|
-
utf8Encoder:
|
|
30
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
31
31
|
disableHostPrefix: boolean;
|
|
32
32
|
serviceId: string;
|
|
33
33
|
logger: import("@smithy/types").Logger;
|
|
@@ -29,9 +29,9 @@ export declare const getRuntimeConfig: (config: OutpostsClientConfig) => {
|
|
|
29
29
|
apiVersion: string;
|
|
30
30
|
urlParser: import("@smithy/types").UrlParser;
|
|
31
31
|
base64Decoder: import("@smithy/types").Decoder;
|
|
32
|
-
base64Encoder:
|
|
32
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
33
33
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
34
|
-
utf8Encoder:
|
|
34
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
35
35
|
disableHostPrefix: boolean;
|
|
36
36
|
serviceId: string;
|
|
37
37
|
logger: import("@smithy/types").Logger;
|
|
@@ -13,9 +13,9 @@ export declare const getRuntimeConfig: (config: OutpostsClientConfig) => {
|
|
|
13
13
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
14
14
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
15
15
|
base64Decoder: import("@smithy/types").Decoder;
|
|
16
|
-
base64Encoder:
|
|
16
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
17
17
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
18
|
-
utf8Encoder:
|
|
18
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
19
19
|
disableHostPrefix: boolean;
|
|
20
20
|
serviceId: string;
|
|
21
21
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -2,7 +2,7 @@ import { OutpostsClientConfig } from "./OutpostsClient";
|
|
|
2
2
|
export declare const getRuntimeConfig: (config: OutpostsClientConfig) => {
|
|
3
3
|
apiVersion: string;
|
|
4
4
|
base64Decoder: import("@smithy/types").Decoder;
|
|
5
|
-
base64Encoder:
|
|
5
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
6
6
|
disableHostPrefix: boolean;
|
|
7
7
|
endpointProvider: (
|
|
8
8
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
@@ -17,5 +17,5 @@ export declare const getRuntimeConfig: (config: OutpostsClientConfig) => {
|
|
|
17
17
|
serviceId: string;
|
|
18
18
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
19
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
20
|
-
utf8Encoder:
|
|
20
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
21
21
|
};
|