@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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/Outposts.d.ts +472 -135
- package/dist-types/ts3.4/OutpostsClient.d.ts +285 -99
- package/dist-types/ts3.4/commands/CancelOrderCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateOrderCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateOutpostCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateSiteCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteOutpostCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteSiteCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetCatalogItemCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetConnectionCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetOrderCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetOutpostCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetOutpostInstanceTypesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetSiteAddressCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetSiteCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListAssetsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListCatalogItemsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListOrdersCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListOutpostsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListSitesCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/StartConnectionCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateOutpostCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateSiteAddressCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateSiteCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateSiteRackPhysicalPropertiesCommand.d.ts +41 -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 +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +954 -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 +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { DeleteSiteInput, DeleteSiteOutput } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
OutpostsClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../OutpostsClient";
|
|
14
|
+
export interface DeleteSiteCommandInput extends DeleteSiteInput {}
|
|
15
|
+
export interface DeleteSiteCommandOutput
|
|
16
|
+
extends DeleteSiteOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class DeleteSiteCommand extends $Command<
|
|
20
|
+
DeleteSiteCommandInput,
|
|
21
|
+
DeleteSiteCommandOutput,
|
|
22
|
+
OutpostsClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteSiteCommandInput;
|
|
25
|
+
constructor(input: DeleteSiteCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: OutpostsClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<DeleteSiteCommandInput, DeleteSiteCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { GetCatalogItemInput, GetCatalogItemOutput } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
OutpostsClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../OutpostsClient";
|
|
14
|
+
export interface GetCatalogItemCommandInput extends GetCatalogItemInput {}
|
|
15
|
+
export interface GetCatalogItemCommandOutput
|
|
16
|
+
extends GetCatalogItemOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class GetCatalogItemCommand extends $Command<
|
|
20
|
+
GetCatalogItemCommandInput,
|
|
21
|
+
GetCatalogItemCommandOutput,
|
|
22
|
+
OutpostsClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: GetCatalogItemCommandInput;
|
|
25
|
+
constructor(input: GetCatalogItemCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: OutpostsClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<GetCatalogItemCommandInput, GetCatalogItemCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
GetConnectionRequest,
|
|
10
|
+
GetConnectionResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
OutpostsClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../OutpostsClient";
|
|
17
|
+
export interface GetConnectionCommandInput extends GetConnectionRequest {}
|
|
18
|
+
export interface GetConnectionCommandOutput
|
|
19
|
+
extends GetConnectionResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class GetConnectionCommand extends $Command<
|
|
23
|
+
GetConnectionCommandInput,
|
|
24
|
+
GetConnectionCommandOutput,
|
|
25
|
+
OutpostsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetConnectionCommandInput;
|
|
28
|
+
constructor(input: GetConnectionCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: OutpostsClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<GetConnectionCommandInput, GetConnectionCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { GetOrderInput, GetOrderOutput } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
OutpostsClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../OutpostsClient";
|
|
14
|
+
export interface GetOrderCommandInput extends GetOrderInput {}
|
|
15
|
+
export interface GetOrderCommandOutput
|
|
16
|
+
extends GetOrderOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class GetOrderCommand extends $Command<
|
|
20
|
+
GetOrderCommandInput,
|
|
21
|
+
GetOrderCommandOutput,
|
|
22
|
+
OutpostsClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: GetOrderCommandInput;
|
|
25
|
+
constructor(input: GetOrderCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: OutpostsClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<GetOrderCommandInput, GetOrderCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { GetOutpostInput, GetOutpostOutput } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
OutpostsClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../OutpostsClient";
|
|
14
|
+
export interface GetOutpostCommandInput extends GetOutpostInput {}
|
|
15
|
+
export interface GetOutpostCommandOutput
|
|
16
|
+
extends GetOutpostOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class GetOutpostCommand extends $Command<
|
|
20
|
+
GetOutpostCommandInput,
|
|
21
|
+
GetOutpostCommandOutput,
|
|
22
|
+
OutpostsClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: GetOutpostCommandInput;
|
|
25
|
+
constructor(input: GetOutpostCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: OutpostsClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<GetOutpostCommandInput, GetOutpostCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
GetOutpostInstanceTypesInput,
|
|
10
|
+
GetOutpostInstanceTypesOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
OutpostsClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../OutpostsClient";
|
|
17
|
+
export interface GetOutpostInstanceTypesCommandInput
|
|
18
|
+
extends GetOutpostInstanceTypesInput {}
|
|
19
|
+
export interface GetOutpostInstanceTypesCommandOutput
|
|
20
|
+
extends GetOutpostInstanceTypesOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetOutpostInstanceTypesCommand extends $Command<
|
|
24
|
+
GetOutpostInstanceTypesCommandInput,
|
|
25
|
+
GetOutpostInstanceTypesCommandOutput,
|
|
26
|
+
OutpostsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetOutpostInstanceTypesCommandInput;
|
|
29
|
+
constructor(input: GetOutpostInstanceTypesCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: OutpostsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
GetOutpostInstanceTypesCommandInput,
|
|
37
|
+
GetOutpostInstanceTypesCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { GetSiteAddressInput, GetSiteAddressOutput } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
OutpostsClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../OutpostsClient";
|
|
14
|
+
export interface GetSiteAddressCommandInput extends GetSiteAddressInput {}
|
|
15
|
+
export interface GetSiteAddressCommandOutput
|
|
16
|
+
extends GetSiteAddressOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class GetSiteAddressCommand extends $Command<
|
|
20
|
+
GetSiteAddressCommandInput,
|
|
21
|
+
GetSiteAddressCommandOutput,
|
|
22
|
+
OutpostsClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: GetSiteAddressCommandInput;
|
|
25
|
+
constructor(input: GetSiteAddressCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: OutpostsClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<GetSiteAddressCommandInput, GetSiteAddressCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { GetSiteInput, GetSiteOutput } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
OutpostsClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../OutpostsClient";
|
|
14
|
+
export interface GetSiteCommandInput extends GetSiteInput {}
|
|
15
|
+
export interface GetSiteCommandOutput extends GetSiteOutput, __MetadataBearer {}
|
|
16
|
+
|
|
17
|
+
export declare class GetSiteCommand extends $Command<
|
|
18
|
+
GetSiteCommandInput,
|
|
19
|
+
GetSiteCommandOutput,
|
|
20
|
+
OutpostsClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: GetSiteCommandInput;
|
|
23
|
+
constructor(input: GetSiteCommandInput);
|
|
24
|
+
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: OutpostsClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<GetSiteCommandInput, GetSiteCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { ListAssetsInput, ListAssetsOutput } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
OutpostsClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../OutpostsClient";
|
|
14
|
+
export interface ListAssetsCommandInput extends ListAssetsInput {}
|
|
15
|
+
export interface ListAssetsCommandOutput
|
|
16
|
+
extends ListAssetsOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class ListAssetsCommand extends $Command<
|
|
20
|
+
ListAssetsCommandInput,
|
|
21
|
+
ListAssetsCommandOutput,
|
|
22
|
+
OutpostsClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListAssetsCommandInput;
|
|
25
|
+
constructor(input: ListAssetsCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: OutpostsClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListAssetsCommandInput, ListAssetsCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ListCatalogItemsInput,
|
|
10
|
+
ListCatalogItemsOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
OutpostsClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../OutpostsClient";
|
|
17
|
+
export interface ListCatalogItemsCommandInput extends ListCatalogItemsInput {}
|
|
18
|
+
export interface ListCatalogItemsCommandOutput
|
|
19
|
+
extends ListCatalogItemsOutput,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class ListCatalogItemsCommand extends $Command<
|
|
23
|
+
ListCatalogItemsCommandInput,
|
|
24
|
+
ListCatalogItemsCommandOutput,
|
|
25
|
+
OutpostsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListCatalogItemsCommandInput;
|
|
28
|
+
constructor(input: ListCatalogItemsCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: OutpostsClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<ListCatalogItemsCommandInput, ListCatalogItemsCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { ListOrdersInput, ListOrdersOutput } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
OutpostsClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../OutpostsClient";
|
|
14
|
+
export interface ListOrdersCommandInput extends ListOrdersInput {}
|
|
15
|
+
export interface ListOrdersCommandOutput
|
|
16
|
+
extends ListOrdersOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class ListOrdersCommand extends $Command<
|
|
20
|
+
ListOrdersCommandInput,
|
|
21
|
+
ListOrdersCommandOutput,
|
|
22
|
+
OutpostsClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListOrdersCommandInput;
|
|
25
|
+
constructor(input: ListOrdersCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: OutpostsClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListOrdersCommandInput, ListOrdersCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { ListOutpostsInput, ListOutpostsOutput } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
OutpostsClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../OutpostsClient";
|
|
14
|
+
export interface ListOutpostsCommandInput extends ListOutpostsInput {}
|
|
15
|
+
export interface ListOutpostsCommandOutput
|
|
16
|
+
extends ListOutpostsOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class ListOutpostsCommand extends $Command<
|
|
20
|
+
ListOutpostsCommandInput,
|
|
21
|
+
ListOutpostsCommandOutput,
|
|
22
|
+
OutpostsClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListOutpostsCommandInput;
|
|
25
|
+
constructor(input: ListOutpostsCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: OutpostsClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListOutpostsCommandInput, ListOutpostsCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|