@aws-sdk/client-outposts 3.169.0 → 3.171.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/Outposts.d.ts +446 -135
- package/dist-types/ts3.4/OutpostsClient.d.ts +260 -99
- package/dist-types/ts3.4/commands/CancelOrderCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateOrderCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateOutpostCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateSiteCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteOutpostCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteSiteCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetCatalogItemCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetConnectionCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetOrderCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetOutpostCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetOutpostInstanceTypesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetSiteAddressCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetSiteCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/ListAssetsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListCatalogItemsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListOrdersCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListOutpostsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListSitesCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/StartConnectionCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateOutpostCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateSiteAddressCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateSiteCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateSiteRackPhysicalPropertiesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/index.d.ts +26 -26
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/OutpostsServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +708 -897
- package/dist-types/ts3.4/pagination/GetOutpostInstanceTypesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListAssetsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListCatalogItemsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListOrdersPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListOutpostsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListSitesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +7 -7
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +317 -80
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,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 { 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 {
|
|
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
|
+
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 {
|
|
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
|
+
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 {
|
|
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 { 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 {
|
|
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
|
+
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 {
|
|
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 { 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 {
|
|
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
|
+
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 {
|
|
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 { 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 {
|
|
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
|
+
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 {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
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";
|