@aws-sdk/client-outposts 3.296.0 → 3.297.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/Outposts.d.ts +27 -0
- package/dist-types/OutpostsClient.d.ts +24 -4
- package/dist-types/commands/CancelOrderCommand.d.ts +16 -0
- package/dist-types/commands/CreateOrderCommand.d.ts +16 -0
- package/dist-types/commands/CreateOutpostCommand.d.ts +16 -0
- package/dist-types/commands/CreateSiteCommand.d.ts +16 -0
- package/dist-types/commands/DeleteOutpostCommand.d.ts +16 -0
- package/dist-types/commands/DeleteSiteCommand.d.ts +16 -0
- package/dist-types/commands/GetCatalogItemCommand.d.ts +16 -0
- package/dist-types/commands/GetConnectionCommand.d.ts +16 -0
- package/dist-types/commands/GetOrderCommand.d.ts +16 -0
- package/dist-types/commands/GetOutpostCommand.d.ts +16 -0
- package/dist-types/commands/GetOutpostInstanceTypesCommand.d.ts +16 -0
- package/dist-types/commands/GetSiteAddressCommand.d.ts +16 -0
- package/dist-types/commands/GetSiteCommand.d.ts +16 -0
- package/dist-types/commands/ListAssetsCommand.d.ts +16 -0
- package/dist-types/commands/ListCatalogItemsCommand.d.ts +16 -0
- package/dist-types/commands/ListOrdersCommand.d.ts +16 -0
- package/dist-types/commands/ListOutpostsCommand.d.ts +16 -0
- package/dist-types/commands/ListSitesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/StartConnectionCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateOutpostCommand.d.ts +16 -0
- package/dist-types/commands/UpdateSiteAddressCommand.d.ts +16 -0
- package/dist-types/commands/UpdateSiteCommand.d.ts +16 -0
- package/dist-types/commands/UpdateSiteRackPhysicalPropertiesCommand.d.ts +16 -0
- package/dist-types/models/OutpostsServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +251 -0
- package/dist-types/pagination/GetOutpostInstanceTypesPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListAssetsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListCatalogItemsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListOrdersPaginator.d.ts +3 -0
- package/dist-types/pagination/ListOutpostsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSitesPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetConnectionRequest, GetConnectionResponse } from "../models/models_0";
|
|
5
5
|
import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetConnectionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetConnectionCommandInput extends GetConnectionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetConnectionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetConnectionCommandOutput extends GetConnectionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <note>
|
|
18
23
|
* <p>
|
|
19
24
|
* Amazon Web Services uses this action to install Outpost servers.</p>
|
|
@@ -35,6 +40,8 @@ export interface GetConnectionCommandOutput extends GetConnectionResponse, __Met
|
|
|
35
40
|
* const response = await client.send(command);
|
|
36
41
|
* ```
|
|
37
42
|
*
|
|
43
|
+
* @param GetConnectionCommandInput - {@link GetConnectionCommandInput}
|
|
44
|
+
* @returns {@link GetConnectionCommandOutput}
|
|
38
45
|
* @see {@link GetConnectionCommandInput} for command's `input` shape.
|
|
39
46
|
* @see {@link GetConnectionCommandOutput} for command's `response` shape.
|
|
40
47
|
* @see {@link OutpostsClientResolvedConfig | config} for OutpostsClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface GetConnectionCommandOutput extends GetConnectionResponse, __Met
|
|
|
56
63
|
export declare class GetConnectionCommand extends $Command<GetConnectionCommandInput, GetConnectionCommandOutput, OutpostsClientResolvedConfig> {
|
|
57
64
|
readonly input: GetConnectionCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: GetConnectionCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetConnectionCommandInput, GetConnectionCommandOutput>;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
64
77
|
private serialize;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
65
81
|
private deserialize;
|
|
66
82
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetOrderInput, GetOrderOutput } from "../models/models_0";
|
|
5
5
|
import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetOrderCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetOrderCommandInput extends GetOrderInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetOrderCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetOrderCommandOutput extends GetOrderOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets information about the specified order.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetOrderCommandOutput extends GetOrderOutput, __MetadataBearer
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetOrderCommandInput - {@link GetOrderCommandInput}
|
|
34
|
+
* @returns {@link GetOrderCommandOutput}
|
|
28
35
|
* @see {@link GetOrderCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetOrderCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link OutpostsClientResolvedConfig | config} for OutpostsClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface GetOrderCommandOutput extends GetOrderOutput, __MetadataBearer
|
|
|
43
50
|
export declare class GetOrderCommand extends $Command<GetOrderCommandInput, GetOrderCommandOutput, OutpostsClientResolvedConfig> {
|
|
44
51
|
readonly input: GetOrderCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: GetOrderCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetOrderCommandInput, GetOrderCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetOutpostInput, GetOutpostOutput } from "../models/models_0";
|
|
5
5
|
import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetOutpostCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetOutpostCommandInput extends GetOutpostInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetOutpostCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetOutpostCommandOutput extends GetOutpostOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets information about the specified Outpost.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetOutpostCommandOutput extends GetOutpostOutput, __MetadataBea
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetOutpostCommandInput - {@link GetOutpostCommandInput}
|
|
34
|
+
* @returns {@link GetOutpostCommandOutput}
|
|
28
35
|
* @see {@link GetOutpostCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetOutpostCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link OutpostsClientResolvedConfig | config} for OutpostsClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface GetOutpostCommandOutput extends GetOutpostOutput, __MetadataBea
|
|
|
46
53
|
export declare class GetOutpostCommand extends $Command<GetOutpostCommandInput, GetOutpostCommandOutput, OutpostsClientResolvedConfig> {
|
|
47
54
|
readonly input: GetOutpostCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: GetOutpostCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetOutpostCommandInput, GetOutpostCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetOutpostInstanceTypesInput, GetOutpostInstanceTypesOutput } from "../models/models_0";
|
|
5
5
|
import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetOutpostInstanceTypesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetOutpostInstanceTypesCommandInput extends GetOutpostInstanceTypesInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetOutpostInstanceTypesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetOutpostInstanceTypesCommandOutput extends GetOutpostInstanceTypesOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets the instance types for the specified Outpost.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetOutpostInstanceTypesCommandOutput extends GetOutpostInstance
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetOutpostInstanceTypesCommandInput - {@link GetOutpostInstanceTypesCommandInput}
|
|
34
|
+
* @returns {@link GetOutpostInstanceTypesCommandOutput}
|
|
28
35
|
* @see {@link GetOutpostInstanceTypesCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetOutpostInstanceTypesCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link OutpostsClientResolvedConfig | config} for OutpostsClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface GetOutpostInstanceTypesCommandOutput extends GetOutpostInstance
|
|
|
46
53
|
export declare class GetOutpostInstanceTypesCommand extends $Command<GetOutpostInstanceTypesCommandInput, GetOutpostInstanceTypesCommandOutput, OutpostsClientResolvedConfig> {
|
|
47
54
|
readonly input: GetOutpostInstanceTypesCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: GetOutpostInstanceTypesCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetOutpostInstanceTypesCommandInput, GetOutpostInstanceTypesCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetSiteAddressInput, GetSiteAddressOutput } from "../models/models_0";
|
|
5
5
|
import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetSiteAddressCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetSiteAddressCommandInput extends GetSiteAddressInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetSiteAddressCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetSiteAddressCommandOutput extends GetSiteAddressOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Gets the site address of the specified site. </p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetSiteAddressCommandOutput extends GetSiteAddressOutput, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetSiteAddressCommandInput - {@link GetSiteAddressCommandInput}
|
|
34
|
+
* @returns {@link GetSiteAddressCommandOutput}
|
|
28
35
|
* @see {@link GetSiteAddressCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetSiteAddressCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link OutpostsClientResolvedConfig | config} for OutpostsClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface GetSiteAddressCommandOutput extends GetSiteAddressOutput, __Met
|
|
|
46
53
|
export declare class GetSiteAddressCommand extends $Command<GetSiteAddressCommandInput, GetSiteAddressCommandOutput, OutpostsClientResolvedConfig> {
|
|
47
54
|
readonly input: GetSiteAddressCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: GetSiteAddressCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSiteAddressCommandInput, GetSiteAddressCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetSiteInput, GetSiteOutput } from "../models/models_0";
|
|
5
5
|
import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetSiteCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetSiteCommandInput extends GetSiteInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetSiteCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetSiteCommandOutput extends GetSiteOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets information about the specified Outpost site.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetSiteCommandOutput extends GetSiteOutput, __MetadataBearer {
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetSiteCommandInput - {@link GetSiteCommandInput}
|
|
34
|
+
* @returns {@link GetSiteCommandOutput}
|
|
28
35
|
* @see {@link GetSiteCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetSiteCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link OutpostsClientResolvedConfig | config} for OutpostsClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface GetSiteCommandOutput extends GetSiteOutput, __MetadataBearer {
|
|
|
46
53
|
export declare class GetSiteCommand extends $Command<GetSiteCommandInput, GetSiteCommandOutput, OutpostsClientResolvedConfig> {
|
|
47
54
|
readonly input: GetSiteCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: GetSiteCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSiteCommandInput, GetSiteCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListAssetsInput, ListAssetsOutput } from "../models/models_0";
|
|
5
5
|
import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListAssetsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListAssetsCommandInput extends ListAssetsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListAssetsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListAssetsCommandOutput extends ListAssetsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the hardware assets for the specified Outpost.</p>
|
|
18
23
|
* <p>Use filters to return specific results. If you specify multiple filters, the results include only the resources that match
|
|
19
24
|
* all of the specified filters. For a filter where you can specify multiple values, the results include
|
|
@@ -28,6 +33,8 @@ export interface ListAssetsCommandOutput extends ListAssetsOutput, __MetadataBea
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param ListAssetsCommandInput - {@link ListAssetsCommandInput}
|
|
37
|
+
* @returns {@link ListAssetsCommandOutput}
|
|
31
38
|
* @see {@link ListAssetsCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link ListAssetsCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link OutpostsClientResolvedConfig | config} for OutpostsClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface ListAssetsCommandOutput extends ListAssetsOutput, __MetadataBea
|
|
|
49
56
|
export declare class ListAssetsCommand extends $Command<ListAssetsCommandInput, ListAssetsCommandOutput, OutpostsClientResolvedConfig> {
|
|
50
57
|
readonly input: ListAssetsCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: ListAssetsCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAssetsCommandInput, ListAssetsCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListCatalogItemsInput, ListCatalogItemsOutput } from "../models/models_0";
|
|
5
5
|
import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListCatalogItemsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListCatalogItemsCommandInput extends ListCatalogItemsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListCatalogItemsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListCatalogItemsCommandOutput extends ListCatalogItemsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the items in the catalog.</p>
|
|
18
23
|
* <p>Use filters to return specific results. If you specify multiple filters, the results include only the resources that match
|
|
19
24
|
* all of the specified filters. For a filter where you can specify multiple values, the results include
|
|
@@ -28,6 +33,8 @@ export interface ListCatalogItemsCommandOutput extends ListCatalogItemsOutput, _
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param ListCatalogItemsCommandInput - {@link ListCatalogItemsCommandInput}
|
|
37
|
+
* @returns {@link ListCatalogItemsCommandOutput}
|
|
31
38
|
* @see {@link ListCatalogItemsCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link ListCatalogItemsCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link OutpostsClientResolvedConfig | config} for OutpostsClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface ListCatalogItemsCommandOutput extends ListCatalogItemsOutput, _
|
|
|
46
53
|
export declare class ListCatalogItemsCommand extends $Command<ListCatalogItemsCommandInput, ListCatalogItemsCommandOutput, OutpostsClientResolvedConfig> {
|
|
47
54
|
readonly input: ListCatalogItemsCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: ListCatalogItemsCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCatalogItemsCommandInput, ListCatalogItemsCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListOrdersInput, ListOrdersOutput } from "../models/models_0";
|
|
5
5
|
import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListOrdersCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListOrdersCommandInput extends ListOrdersInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListOrdersCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListOrdersCommandOutput extends ListOrdersOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the Outpost orders for your Amazon Web Services account.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListOrdersCommandOutput extends ListOrdersOutput, __MetadataBea
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListOrdersCommandInput - {@link ListOrdersCommandInput}
|
|
34
|
+
* @returns {@link ListOrdersCommandOutput}
|
|
28
35
|
* @see {@link ListOrdersCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListOrdersCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link OutpostsClientResolvedConfig | config} for OutpostsClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface ListOrdersCommandOutput extends ListOrdersOutput, __MetadataBea
|
|
|
46
53
|
export declare class ListOrdersCommand extends $Command<ListOrdersCommandInput, ListOrdersCommandOutput, OutpostsClientResolvedConfig> {
|
|
47
54
|
readonly input: ListOrdersCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: ListOrdersCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListOrdersCommandInput, ListOrdersCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListOutpostsInput, ListOutpostsOutput } from "../models/models_0";
|
|
5
5
|
import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListOutpostsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListOutpostsCommandInput extends ListOutpostsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListOutpostsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListOutpostsCommandOutput extends ListOutpostsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the Outposts for your Amazon Web Services account.</p>
|
|
18
23
|
* <p>Use filters to return specific results. If you specify multiple filters, the results include only the resources that match
|
|
19
24
|
* all of the specified filters. For a filter where you can specify multiple values, the results include
|
|
@@ -28,6 +33,8 @@ export interface ListOutpostsCommandOutput extends ListOutpostsOutput, __Metadat
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param ListOutpostsCommandInput - {@link ListOutpostsCommandInput}
|
|
37
|
+
* @returns {@link ListOutpostsCommandOutput}
|
|
31
38
|
* @see {@link ListOutpostsCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link ListOutpostsCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link OutpostsClientResolvedConfig | config} for OutpostsClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface ListOutpostsCommandOutput extends ListOutpostsOutput, __Metadat
|
|
|
46
53
|
export declare class ListOutpostsCommand extends $Command<ListOutpostsCommandInput, ListOutpostsCommandOutput, OutpostsClientResolvedConfig> {
|
|
47
54
|
readonly input: ListOutpostsCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: ListOutpostsCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListOutpostsCommandInput, ListOutpostsCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListSitesInput, ListSitesOutput } from "../models/models_0";
|
|
5
5
|
import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListSitesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListSitesCommandInput extends ListSitesInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListSitesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListSitesCommandOutput extends ListSitesOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the Outpost sites for your Amazon Web Services account. Use filters to return specific
|
|
18
23
|
* results.</p>
|
|
19
24
|
* <p>Use filters to return specific results. If you specify multiple filters, the results include only the resources that match
|
|
@@ -29,6 +34,8 @@ export interface ListSitesCommandOutput extends ListSitesOutput, __MetadataBeare
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param ListSitesCommandInput - {@link ListSitesCommandInput}
|
|
38
|
+
* @returns {@link ListSitesCommandOutput}
|
|
32
39
|
* @see {@link ListSitesCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link ListSitesCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link OutpostsClientResolvedConfig | config} for OutpostsClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface ListSitesCommandOutput extends ListSitesOutput, __MetadataBeare
|
|
|
47
54
|
export declare class ListSitesCommand extends $Command<ListSitesCommandInput, ListSitesCommandOutput, OutpostsClientResolvedConfig> {
|
|
48
55
|
readonly input: ListSitesCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: ListSitesCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSitesCommandInput, ListSitesCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
5
5
|
import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTagsForResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTagsForResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the tags for the specified resource.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
34
|
+
* @returns {@link ListTagsForResourceCommandOutput}
|
|
28
35
|
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link OutpostsClientResolvedConfig | config} for OutpostsClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
43
50
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, OutpostsClientResolvedConfig> {
|
|
44
51
|
readonly input: ListTagsForResourceCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: ListTagsForResourceCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { StartConnectionRequest, StartConnectionResponse } from "../models/models_0";
|
|
5
5
|
import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StartConnectionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StartConnectionCommandInput extends StartConnectionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StartConnectionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StartConnectionCommandOutput extends StartConnectionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <note>
|
|
18
23
|
* <p>
|
|
19
24
|
* Amazon Web Services uses this action to install Outpost servers.</p>
|
|
@@ -35,6 +40,8 @@ export interface StartConnectionCommandOutput extends StartConnectionResponse, _
|
|
|
35
40
|
* const response = await client.send(command);
|
|
36
41
|
* ```
|
|
37
42
|
*
|
|
43
|
+
* @param StartConnectionCommandInput - {@link StartConnectionCommandInput}
|
|
44
|
+
* @returns {@link StartConnectionCommandOutput}
|
|
38
45
|
* @see {@link StartConnectionCommandInput} for command's `input` shape.
|
|
39
46
|
* @see {@link StartConnectionCommandOutput} for command's `response` shape.
|
|
40
47
|
* @see {@link OutpostsClientResolvedConfig | config} for OutpostsClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface StartConnectionCommandOutput extends StartConnectionResponse, _
|
|
|
56
63
|
export declare class StartConnectionCommand extends $Command<StartConnectionCommandInput, StartConnectionCommandOutput, OutpostsClientResolvedConfig> {
|
|
57
64
|
readonly input: StartConnectionCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: StartConnectionCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartConnectionCommandInput, StartConnectionCommandOutput>;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
64
77
|
private serialize;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
65
81
|
private deserialize;
|
|
66
82
|
}
|