@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.
Files changed (49) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/Outposts.d.ts +446 -135
  3. package/dist-types/ts3.4/OutpostsClient.d.ts +260 -99
  4. package/dist-types/ts3.4/commands/CancelOrderCommand.d.ts +32 -17
  5. package/dist-types/ts3.4/commands/CreateOrderCommand.d.ts +32 -17
  6. package/dist-types/ts3.4/commands/CreateOutpostCommand.d.ts +32 -17
  7. package/dist-types/ts3.4/commands/CreateSiteCommand.d.ts +32 -17
  8. package/dist-types/ts3.4/commands/DeleteOutpostCommand.d.ts +32 -17
  9. package/dist-types/ts3.4/commands/DeleteSiteCommand.d.ts +32 -17
  10. package/dist-types/ts3.4/commands/GetCatalogItemCommand.d.ts +32 -17
  11. package/dist-types/ts3.4/commands/GetConnectionCommand.d.ts +35 -17
  12. package/dist-types/ts3.4/commands/GetOrderCommand.d.ts +32 -17
  13. package/dist-types/ts3.4/commands/GetOutpostCommand.d.ts +32 -17
  14. package/dist-types/ts3.4/commands/GetOutpostInstanceTypesCommand.d.ts +39 -17
  15. package/dist-types/ts3.4/commands/GetSiteAddressCommand.d.ts +32 -17
  16. package/dist-types/ts3.4/commands/GetSiteCommand.d.ts +30 -17
  17. package/dist-types/ts3.4/commands/ListAssetsCommand.d.ts +32 -17
  18. package/dist-types/ts3.4/commands/ListCatalogItemsCommand.d.ts +35 -17
  19. package/dist-types/ts3.4/commands/ListOrdersCommand.d.ts +32 -17
  20. package/dist-types/ts3.4/commands/ListOutpostsCommand.d.ts +32 -17
  21. package/dist-types/ts3.4/commands/ListSitesCommand.d.ts +32 -17
  22. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  23. package/dist-types/ts3.4/commands/StartConnectionCommand.d.ts +35 -17
  24. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  25. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  26. package/dist-types/ts3.4/commands/UpdateOutpostCommand.d.ts +32 -17
  27. package/dist-types/ts3.4/commands/UpdateSiteAddressCommand.d.ts +35 -17
  28. package/dist-types/ts3.4/commands/UpdateSiteCommand.d.ts +32 -17
  29. package/dist-types/ts3.4/commands/UpdateSiteRackPhysicalPropertiesCommand.d.ts +39 -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 +7 -6
  34. package/dist-types/ts3.4/models/index.d.ts +1 -1
  35. package/dist-types/ts3.4/models/models_0.d.ts +708 -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 +65 -38
  46. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  47. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  48. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  49. package/package.json +34 -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 { ListSitesInput, ListSitesOutput } from "../models/models_0";
4
- import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
5
- export interface ListSitesCommandInput extends ListSitesInput {
6
- }
7
- export interface ListSitesCommandOutput extends ListSitesOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class ListSitesCommand extends $Command<ListSitesCommandInput, ListSitesCommandOutput, OutpostsClientResolvedConfig> {
11
- readonly input: ListSitesCommandInput;
12
- constructor(input: ListSitesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSitesCommandInput, ListSitesCommandOutput>;
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 { ListSitesInput, ListSitesOutput } from "../models/models_0";
9
+ import {
10
+ OutpostsClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../OutpostsClient";
14
+ export interface ListSitesCommandInput extends ListSitesInput {}
15
+ export interface ListSitesCommandOutput
16
+ extends ListSitesOutput,
17
+ __MetadataBearer {}
18
+ export declare class ListSitesCommand extends $Command<
19
+ ListSitesCommandInput,
20
+ ListSitesCommandOutput,
21
+ OutpostsClientResolvedConfig
22
+ > {
23
+ readonly input: ListSitesCommandInput;
24
+ constructor(input: ListSitesCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: OutpostsClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<ListSitesCommandInput, ListSitesCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,36 @@
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 { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
4
- import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
5
- export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
6
- }
7
- export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, OutpostsClientResolvedConfig> {
11
- readonly input: ListTagsForResourceCommandInput;
12
- constructor(input: ListTagsForResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
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
+ ListTagsForResourceRequest,
10
+ ListTagsForResourceResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ OutpostsClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../OutpostsClient";
17
+ export interface ListTagsForResourceCommandInput
18
+ extends ListTagsForResourceRequest {}
19
+ export interface ListTagsForResourceCommandOutput
20
+ extends ListTagsForResourceResponse,
21
+ __MetadataBearer {}
22
+ export declare class ListTagsForResourceCommand extends $Command<
23
+ ListTagsForResourceCommandInput,
24
+ ListTagsForResourceCommandOutput,
25
+ OutpostsClientResolvedConfig
26
+ > {
27
+ readonly input: ListTagsForResourceCommandInput;
28
+ constructor(input: ListTagsForResourceCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: OutpostsClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,35 @@
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 { StartConnectionRequest, StartConnectionResponse } from "../models/models_0";
4
- import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
5
- export interface StartConnectionCommandInput extends StartConnectionRequest {
6
- }
7
- export interface StartConnectionCommandOutput extends StartConnectionResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class StartConnectionCommand extends $Command<StartConnectionCommandInput, StartConnectionCommandOutput, OutpostsClientResolvedConfig> {
11
- readonly input: StartConnectionCommandInput;
12
- constructor(input: StartConnectionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartConnectionCommandInput, StartConnectionCommandOutput>;
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
+ StartConnectionRequest,
10
+ StartConnectionResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ OutpostsClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../OutpostsClient";
17
+ export interface StartConnectionCommandInput extends StartConnectionRequest {}
18
+ export interface StartConnectionCommandOutput
19
+ extends StartConnectionResponse,
20
+ __MetadataBearer {}
21
+ export declare class StartConnectionCommand extends $Command<
22
+ StartConnectionCommandInput,
23
+ StartConnectionCommandOutput,
24
+ OutpostsClientResolvedConfig
25
+ > {
26
+ readonly input: StartConnectionCommandInput;
27
+ constructor(input: StartConnectionCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: OutpostsClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<StartConnectionCommandInput, StartConnectionCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
4
- import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
5
- export interface TagResourceCommandInput extends TagResourceRequest {
6
- }
7
- export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, OutpostsClientResolvedConfig> {
11
- readonly input: TagResourceCommandInput;
12
- constructor(input: TagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
9
+ import {
10
+ OutpostsClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../OutpostsClient";
14
+ export interface TagResourceCommandInput extends TagResourceRequest {}
15
+ export interface TagResourceCommandOutput
16
+ extends TagResourceResponse,
17
+ __MetadataBearer {}
18
+ export declare class TagResourceCommand extends $Command<
19
+ TagResourceCommandInput,
20
+ TagResourceCommandOutput,
21
+ OutpostsClientResolvedConfig
22
+ > {
23
+ readonly input: TagResourceCommandInput;
24
+ constructor(input: TagResourceCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: OutpostsClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,35 @@
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 { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
4
- import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
5
- export interface UntagResourceCommandInput extends UntagResourceRequest {
6
- }
7
- export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, OutpostsClientResolvedConfig> {
11
- readonly input: UntagResourceCommandInput;
12
- constructor(input: UntagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
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
+ UntagResourceRequest,
10
+ UntagResourceResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ OutpostsClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../OutpostsClient";
17
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
18
+ export interface UntagResourceCommandOutput
19
+ extends UntagResourceResponse,
20
+ __MetadataBearer {}
21
+ export declare class UntagResourceCommand extends $Command<
22
+ UntagResourceCommandInput,
23
+ UntagResourceCommandOutput,
24
+ OutpostsClientResolvedConfig
25
+ > {
26
+ readonly input: UntagResourceCommandInput;
27
+ constructor(input: UntagResourceCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: OutpostsClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -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 { UpdateOutpostInput, UpdateOutpostOutput } from "../models/models_0";
4
- import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
5
- export interface UpdateOutpostCommandInput extends UpdateOutpostInput {
6
- }
7
- export interface UpdateOutpostCommandOutput extends UpdateOutpostOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateOutpostCommand extends $Command<UpdateOutpostCommandInput, UpdateOutpostCommandOutput, OutpostsClientResolvedConfig> {
11
- readonly input: UpdateOutpostCommandInput;
12
- constructor(input: UpdateOutpostCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateOutpostCommandInput, UpdateOutpostCommandOutput>;
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 { UpdateOutpostInput, UpdateOutpostOutput } from "../models/models_0";
9
+ import {
10
+ OutpostsClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../OutpostsClient";
14
+ export interface UpdateOutpostCommandInput extends UpdateOutpostInput {}
15
+ export interface UpdateOutpostCommandOutput
16
+ extends UpdateOutpostOutput,
17
+ __MetadataBearer {}
18
+ export declare class UpdateOutpostCommand extends $Command<
19
+ UpdateOutpostCommandInput,
20
+ UpdateOutpostCommandOutput,
21
+ OutpostsClientResolvedConfig
22
+ > {
23
+ readonly input: UpdateOutpostCommandInput;
24
+ constructor(input: UpdateOutpostCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: OutpostsClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<UpdateOutpostCommandInput, UpdateOutpostCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,35 @@
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 { UpdateSiteAddressInput, UpdateSiteAddressOutput } from "../models/models_0";
4
- import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
5
- export interface UpdateSiteAddressCommandInput extends UpdateSiteAddressInput {
6
- }
7
- export interface UpdateSiteAddressCommandOutput extends UpdateSiteAddressOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateSiteAddressCommand extends $Command<UpdateSiteAddressCommandInput, UpdateSiteAddressCommandOutput, OutpostsClientResolvedConfig> {
11
- readonly input: UpdateSiteAddressCommandInput;
12
- constructor(input: UpdateSiteAddressCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateSiteAddressCommandInput, UpdateSiteAddressCommandOutput>;
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
+ UpdateSiteAddressInput,
10
+ UpdateSiteAddressOutput,
11
+ } from "../models/models_0";
12
+ import {
13
+ OutpostsClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../OutpostsClient";
17
+ export interface UpdateSiteAddressCommandInput extends UpdateSiteAddressInput {}
18
+ export interface UpdateSiteAddressCommandOutput
19
+ extends UpdateSiteAddressOutput,
20
+ __MetadataBearer {}
21
+ export declare class UpdateSiteAddressCommand extends $Command<
22
+ UpdateSiteAddressCommandInput,
23
+ UpdateSiteAddressCommandOutput,
24
+ OutpostsClientResolvedConfig
25
+ > {
26
+ readonly input: UpdateSiteAddressCommandInput;
27
+ constructor(input: UpdateSiteAddressCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: OutpostsClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<UpdateSiteAddressCommandInput, UpdateSiteAddressCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -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 { UpdateSiteInput, UpdateSiteOutput } from "../models/models_0";
4
- import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
5
- export interface UpdateSiteCommandInput extends UpdateSiteInput {
6
- }
7
- export interface UpdateSiteCommandOutput extends UpdateSiteOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateSiteCommand extends $Command<UpdateSiteCommandInput, UpdateSiteCommandOutput, OutpostsClientResolvedConfig> {
11
- readonly input: UpdateSiteCommandInput;
12
- constructor(input: UpdateSiteCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateSiteCommandInput, UpdateSiteCommandOutput>;
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 { UpdateSiteInput, UpdateSiteOutput } from "../models/models_0";
9
+ import {
10
+ OutpostsClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../OutpostsClient";
14
+ export interface UpdateSiteCommandInput extends UpdateSiteInput {}
15
+ export interface UpdateSiteCommandOutput
16
+ extends UpdateSiteOutput,
17
+ __MetadataBearer {}
18
+ export declare class UpdateSiteCommand extends $Command<
19
+ UpdateSiteCommandInput,
20
+ UpdateSiteCommandOutput,
21
+ OutpostsClientResolvedConfig
22
+ > {
23
+ readonly input: UpdateSiteCommandInput;
24
+ constructor(input: UpdateSiteCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: OutpostsClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<UpdateSiteCommandInput, UpdateSiteCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,39 @@
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 { UpdateSiteRackPhysicalPropertiesInput, UpdateSiteRackPhysicalPropertiesOutput } from "../models/models_0";
4
- import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
5
- export interface UpdateSiteRackPhysicalPropertiesCommandInput extends UpdateSiteRackPhysicalPropertiesInput {
6
- }
7
- export interface UpdateSiteRackPhysicalPropertiesCommandOutput extends UpdateSiteRackPhysicalPropertiesOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateSiteRackPhysicalPropertiesCommand extends $Command<UpdateSiteRackPhysicalPropertiesCommandInput, UpdateSiteRackPhysicalPropertiesCommandOutput, OutpostsClientResolvedConfig> {
11
- readonly input: UpdateSiteRackPhysicalPropertiesCommandInput;
12
- constructor(input: UpdateSiteRackPhysicalPropertiesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateSiteRackPhysicalPropertiesCommandInput, UpdateSiteRackPhysicalPropertiesCommandOutput>;
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
+ UpdateSiteRackPhysicalPropertiesInput,
10
+ UpdateSiteRackPhysicalPropertiesOutput,
11
+ } from "../models/models_0";
12
+ import {
13
+ OutpostsClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../OutpostsClient";
17
+ export interface UpdateSiteRackPhysicalPropertiesCommandInput
18
+ extends UpdateSiteRackPhysicalPropertiesInput {}
19
+ export interface UpdateSiteRackPhysicalPropertiesCommandOutput
20
+ extends UpdateSiteRackPhysicalPropertiesOutput,
21
+ __MetadataBearer {}
22
+ export declare class UpdateSiteRackPhysicalPropertiesCommand extends $Command<
23
+ UpdateSiteRackPhysicalPropertiesCommandInput,
24
+ UpdateSiteRackPhysicalPropertiesCommandOutput,
25
+ OutpostsClientResolvedConfig
26
+ > {
27
+ readonly input: UpdateSiteRackPhysicalPropertiesCommandInput;
28
+ constructor(input: UpdateSiteRackPhysicalPropertiesCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: OutpostsClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ UpdateSiteRackPhysicalPropertiesCommandInput,
35
+ UpdateSiteRackPhysicalPropertiesCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,26 +1,26 @@
1
- export * from "./CancelOrderCommand";
2
- export * from "./CreateOrderCommand";
3
- export * from "./CreateOutpostCommand";
4
- export * from "./CreateSiteCommand";
5
- export * from "./DeleteOutpostCommand";
6
- export * from "./DeleteSiteCommand";
7
- export * from "./GetCatalogItemCommand";
8
- export * from "./GetConnectionCommand";
9
- export * from "./GetOrderCommand";
10
- export * from "./GetOutpostCommand";
11
- export * from "./GetOutpostInstanceTypesCommand";
12
- export * from "./GetSiteAddressCommand";
13
- export * from "./GetSiteCommand";
14
- export * from "./ListAssetsCommand";
15
- export * from "./ListCatalogItemsCommand";
16
- export * from "./ListOrdersCommand";
17
- export * from "./ListOutpostsCommand";
18
- export * from "./ListSitesCommand";
19
- export * from "./ListTagsForResourceCommand";
20
- export * from "./StartConnectionCommand";
21
- export * from "./TagResourceCommand";
22
- export * from "./UntagResourceCommand";
23
- export * from "./UpdateOutpostCommand";
24
- export * from "./UpdateSiteAddressCommand";
25
- export * from "./UpdateSiteCommand";
26
- export * from "./UpdateSiteRackPhysicalPropertiesCommand";
1
+ export * from "./CancelOrderCommand";
2
+ export * from "./CreateOrderCommand";
3
+ export * from "./CreateOutpostCommand";
4
+ export * from "./CreateSiteCommand";
5
+ export * from "./DeleteOutpostCommand";
6
+ export * from "./DeleteSiteCommand";
7
+ export * from "./GetCatalogItemCommand";
8
+ export * from "./GetConnectionCommand";
9
+ export * from "./GetOrderCommand";
10
+ export * from "./GetOutpostCommand";
11
+ export * from "./GetOutpostInstanceTypesCommand";
12
+ export * from "./GetSiteAddressCommand";
13
+ export * from "./GetSiteCommand";
14
+ export * from "./ListAssetsCommand";
15
+ export * from "./ListCatalogItemsCommand";
16
+ export * from "./ListOrdersCommand";
17
+ export * from "./ListOutpostsCommand";
18
+ export * from "./ListSitesCommand";
19
+ export * from "./ListTagsForResourceCommand";
20
+ export * from "./StartConnectionCommand";
21
+ export * from "./TagResourceCommand";
22
+ export * from "./UntagResourceCommand";
23
+ export * from "./UpdateOutpostCommand";
24
+ export * from "./UpdateSiteAddressCommand";
25
+ export * from "./UpdateSiteCommand";
26
+ export * from "./UpdateSiteRackPhysicalPropertiesCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,6 +1,6 @@
1
- export * from "./Outposts";
2
- export * from "./OutpostsClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export { OutpostsServiceException } from "./models/OutpostsServiceException";
1
+ export * from "./Outposts";
2
+ export * from "./OutpostsClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { OutpostsServiceException } from "./models/OutpostsServiceException";
@@ -1,6 +1,7 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class OutpostsServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+ export declare class OutpostsServiceException extends __ServiceException {
6
+ constructor(options: __ServiceExceptionOptions);
7
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";