@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,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DeleteSiteInput, DeleteSiteOutput } from "../models/models_0";
4
- import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
5
- export interface DeleteSiteCommandInput extends DeleteSiteInput {
6
- }
7
- export interface DeleteSiteCommandOutput extends DeleteSiteOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteSiteCommand extends $Command<DeleteSiteCommandInput, DeleteSiteCommandOutput, OutpostsClientResolvedConfig> {
11
- readonly input: DeleteSiteCommandInput;
12
- constructor(input: DeleteSiteCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSiteCommandInput, DeleteSiteCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GetCatalogItemInput, GetCatalogItemOutput } from "../models/models_0";
4
- import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
5
- export interface GetCatalogItemCommandInput extends GetCatalogItemInput {
6
- }
7
- export interface GetCatalogItemCommandOutput extends GetCatalogItemOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class GetCatalogItemCommand extends $Command<GetCatalogItemCommandInput, GetCatalogItemCommandOutput, OutpostsClientResolvedConfig> {
11
- readonly input: GetCatalogItemCommandInput;
12
- constructor(input: GetCatalogItemCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetCatalogItemCommandInput, GetCatalogItemCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GetConnectionRequest, GetConnectionResponse } from "../models/models_0";
4
- import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
5
- export interface GetConnectionCommandInput extends GetConnectionRequest {
6
- }
7
- export interface GetConnectionCommandOutput extends GetConnectionResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetConnectionCommand extends $Command<GetConnectionCommandInput, GetConnectionCommandOutput, OutpostsClientResolvedConfig> {
11
- readonly input: GetConnectionCommandInput;
12
- constructor(input: GetConnectionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetConnectionCommandInput, GetConnectionCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GetOrderInput, GetOrderOutput } from "../models/models_0";
4
- import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
5
- export interface GetOrderCommandInput extends GetOrderInput {
6
- }
7
- export interface GetOrderCommandOutput extends GetOrderOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class GetOrderCommand extends $Command<GetOrderCommandInput, GetOrderCommandOutput, OutpostsClientResolvedConfig> {
11
- readonly input: GetOrderCommandInput;
12
- constructor(input: GetOrderCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetOrderCommandInput, GetOrderCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GetOutpostInput, GetOutpostOutput } from "../models/models_0";
4
- import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
5
- export interface GetOutpostCommandInput extends GetOutpostInput {
6
- }
7
- export interface GetOutpostCommandOutput extends GetOutpostOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class GetOutpostCommand extends $Command<GetOutpostCommandInput, GetOutpostCommandOutput, OutpostsClientResolvedConfig> {
11
- readonly input: GetOutpostCommandInput;
12
- constructor(input: GetOutpostCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetOutpostCommandInput, GetOutpostCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GetOutpostInstanceTypesInput, GetOutpostInstanceTypesOutput } from "../models/models_0";
4
- import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
5
- export interface GetOutpostInstanceTypesCommandInput extends GetOutpostInstanceTypesInput {
6
- }
7
- export interface GetOutpostInstanceTypesCommandOutput extends GetOutpostInstanceTypesOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class GetOutpostInstanceTypesCommand extends $Command<GetOutpostInstanceTypesCommandInput, GetOutpostInstanceTypesCommandOutput, OutpostsClientResolvedConfig> {
11
- readonly input: GetOutpostInstanceTypesCommandInput;
12
- constructor(input: GetOutpostInstanceTypesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetOutpostInstanceTypesCommandInput, GetOutpostInstanceTypesCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GetSiteAddressInput, GetSiteAddressOutput } from "../models/models_0";
4
- import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
5
- export interface GetSiteAddressCommandInput extends GetSiteAddressInput {
6
- }
7
- export interface GetSiteAddressCommandOutput extends GetSiteAddressOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class GetSiteAddressCommand extends $Command<GetSiteAddressCommandInput, GetSiteAddressCommandOutput, OutpostsClientResolvedConfig> {
11
- readonly input: GetSiteAddressCommandInput;
12
- constructor(input: GetSiteAddressCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSiteAddressCommandInput, GetSiteAddressCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GetSiteInput, GetSiteOutput } from "../models/models_0";
4
- import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
5
- export interface GetSiteCommandInput extends GetSiteInput {
6
- }
7
- export interface GetSiteCommandOutput extends GetSiteOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class GetSiteCommand extends $Command<GetSiteCommandInput, GetSiteCommandOutput, OutpostsClientResolvedConfig> {
11
- readonly input: GetSiteCommandInput;
12
- constructor(input: GetSiteCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSiteCommandInput, GetSiteCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ListAssetsInput, ListAssetsOutput } from "../models/models_0";
4
- import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
5
- export interface ListAssetsCommandInput extends ListAssetsInput {
6
- }
7
- export interface ListAssetsCommandOutput extends ListAssetsOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class ListAssetsCommand extends $Command<ListAssetsCommandInput, ListAssetsCommandOutput, OutpostsClientResolvedConfig> {
11
- readonly input: ListAssetsCommandInput;
12
- constructor(input: ListAssetsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAssetsCommandInput, ListAssetsCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ListCatalogItemsInput, ListCatalogItemsOutput } from "../models/models_0";
4
- import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
5
- export interface ListCatalogItemsCommandInput extends ListCatalogItemsInput {
6
- }
7
- export interface ListCatalogItemsCommandOutput extends ListCatalogItemsOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class ListCatalogItemsCommand extends $Command<ListCatalogItemsCommandInput, ListCatalogItemsCommandOutput, OutpostsClientResolvedConfig> {
11
- readonly input: ListCatalogItemsCommandInput;
12
- constructor(input: ListCatalogItemsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCatalogItemsCommandInput, ListCatalogItemsCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ListOrdersInput, ListOrdersOutput } from "../models/models_0";
4
- import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
5
- export interface ListOrdersCommandInput extends ListOrdersInput {
6
- }
7
- export interface ListOrdersCommandOutput extends ListOrdersOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class ListOrdersCommand extends $Command<ListOrdersCommandInput, ListOrdersCommandOutput, OutpostsClientResolvedConfig> {
11
- readonly input: ListOrdersCommandInput;
12
- constructor(input: ListOrdersCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListOrdersCommandInput, ListOrdersCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ListOutpostsInput, ListOutpostsOutput } from "../models/models_0";
4
- import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
5
- export interface ListOutpostsCommandInput extends ListOutpostsInput {
6
- }
7
- export interface ListOutpostsCommandOutput extends ListOutpostsOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class ListOutpostsCommand extends $Command<ListOutpostsCommandInput, ListOutpostsCommandOutput, OutpostsClientResolvedConfig> {
11
- readonly input: ListOutpostsCommandInput;
12
- constructor(input: ListOutpostsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListOutpostsCommandInput, ListOutpostsCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+ }