@aws-sdk/client-greengrassv2 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/GreengrassV2.d.ts +30 -0
- package/dist-types/GreengrassV2Client.d.ts +24 -4
- package/dist-types/commands/AssociateServiceRoleToAccountCommand.d.ts +16 -0
- package/dist-types/commands/BatchAssociateClientDeviceWithCoreDeviceCommand.d.ts +16 -0
- package/dist-types/commands/BatchDisassociateClientDeviceFromCoreDeviceCommand.d.ts +16 -0
- package/dist-types/commands/CancelDeploymentCommand.d.ts +16 -0
- package/dist-types/commands/CreateComponentVersionCommand.d.ts +16 -0
- package/dist-types/commands/CreateDeploymentCommand.d.ts +16 -0
- package/dist-types/commands/DeleteComponentCommand.d.ts +16 -0
- package/dist-types/commands/DeleteCoreDeviceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDeploymentCommand.d.ts +16 -0
- package/dist-types/commands/DescribeComponentCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateServiceRoleFromAccountCommand.d.ts +16 -0
- package/dist-types/commands/GetComponentCommand.d.ts +16 -0
- package/dist-types/commands/GetComponentVersionArtifactCommand.d.ts +16 -0
- package/dist-types/commands/GetConnectivityInfoCommand.d.ts +16 -0
- package/dist-types/commands/GetCoreDeviceCommand.d.ts +16 -0
- package/dist-types/commands/GetDeploymentCommand.d.ts +16 -0
- package/dist-types/commands/GetServiceRoleForAccountCommand.d.ts +16 -0
- package/dist-types/commands/ListClientDevicesAssociatedWithCoreDeviceCommand.d.ts +16 -0
- package/dist-types/commands/ListComponentVersionsCommand.d.ts +16 -0
- package/dist-types/commands/ListComponentsCommand.d.ts +16 -0
- package/dist-types/commands/ListCoreDevicesCommand.d.ts +16 -0
- package/dist-types/commands/ListDeploymentsCommand.d.ts +16 -0
- package/dist-types/commands/ListEffectiveDeploymentsCommand.d.ts +16 -0
- package/dist-types/commands/ListInstalledComponentsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ResolveComponentCandidatesCommand.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/UpdateConnectivityInfoCommand.d.ts +16 -0
- package/dist-types/models/GreengrassV2ServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +274 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListClientDevicesAssociatedWithCoreDevicePaginator.d.ts +3 -0
- package/dist-types/pagination/ListComponentVersionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListComponentsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListCoreDevicesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListDeploymentsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListEffectiveDeploymentsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListInstalledComponentsPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client";
|
|
5
5
|
import { ListComponentVersionsRequest, ListComponentVersionsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListComponentVersionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListComponentVersionsCommandInput extends ListComponentVersionsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListComponentVersionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListComponentVersionsCommandOutput extends ListComponentVersionsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a paginated list of all versions for a component. Greater versions are listed first.</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 ListComponentVersionsCommandOutput extends ListComponentVersion
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListComponentVersionsCommandInput - {@link ListComponentVersionsCommandInput}
|
|
34
|
+
* @returns {@link ListComponentVersionsCommandOutput}
|
|
28
35
|
* @see {@link ListComponentVersionsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListComponentVersionsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface ListComponentVersionsCommandOutput extends ListComponentVersion
|
|
|
51
58
|
export declare class ListComponentVersionsCommand extends $Command<ListComponentVersionsCommandInput, ListComponentVersionsCommandOutput, GreengrassV2ClientResolvedConfig> {
|
|
52
59
|
readonly input: ListComponentVersionsCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: ListComponentVersionsCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GreengrassV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListComponentVersionsCommandInput, ListComponentVersionsCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client";
|
|
5
5
|
import { ListComponentsRequest, ListComponentsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListComponentsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListComponentsCommandInput extends ListComponentsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListComponentsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListComponentsCommandOutput extends ListComponentsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a paginated list of component summaries. This list includes components that you
|
|
18
23
|
* have permission to view.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListComponentsCommandOutput extends ListComponentsResponse, __M
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListComponentsCommandInput - {@link ListComponentsCommandInput}
|
|
35
|
+
* @returns {@link ListComponentsCommandOutput}
|
|
29
36
|
* @see {@link ListComponentsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListComponentsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface ListComponentsCommandOutput extends ListComponentsResponse, __M
|
|
|
52
59
|
export declare class ListComponentsCommand extends $Command<ListComponentsCommandInput, ListComponentsCommandOutput, GreengrassV2ClientResolvedConfig> {
|
|
53
60
|
readonly input: ListComponentsCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: ListComponentsCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GreengrassV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListComponentsCommandInput, ListComponentsCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client";
|
|
5
5
|
import { ListCoreDevicesRequest, ListCoreDevicesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListCoreDevicesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListCoreDevicesCommandInput extends ListCoreDevicesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListCoreDevicesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListCoreDevicesCommandOutput extends ListCoreDevicesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a paginated list of Greengrass core devices.</p>
|
|
18
23
|
* <note>
|
|
19
24
|
* <p>IoT Greengrass relies on individual devices to send status updates to the Amazon Web Services Cloud. If the IoT Greengrass Core
|
|
@@ -52,6 +57,8 @@ export interface ListCoreDevicesCommandOutput extends ListCoreDevicesResponse, _
|
|
|
52
57
|
* const response = await client.send(command);
|
|
53
58
|
* ```
|
|
54
59
|
*
|
|
60
|
+
* @param ListCoreDevicesCommandInput - {@link ListCoreDevicesCommandInput}
|
|
61
|
+
* @returns {@link ListCoreDevicesCommandOutput}
|
|
55
62
|
* @see {@link ListCoreDevicesCommandInput} for command's `input` shape.
|
|
56
63
|
* @see {@link ListCoreDevicesCommandOutput} for command's `response` shape.
|
|
57
64
|
* @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
|
|
@@ -75,11 +82,20 @@ export interface ListCoreDevicesCommandOutput extends ListCoreDevicesResponse, _
|
|
|
75
82
|
export declare class ListCoreDevicesCommand extends $Command<ListCoreDevicesCommandInput, ListCoreDevicesCommandOutput, GreengrassV2ClientResolvedConfig> {
|
|
76
83
|
readonly input: ListCoreDevicesCommandInput;
|
|
77
84
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
85
|
+
/**
|
|
86
|
+
* @public
|
|
87
|
+
*/
|
|
78
88
|
constructor(input: ListCoreDevicesCommandInput);
|
|
79
89
|
/**
|
|
80
90
|
* @internal
|
|
81
91
|
*/
|
|
82
92
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GreengrassV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCoreDevicesCommandInput, ListCoreDevicesCommandOutput>;
|
|
93
|
+
/**
|
|
94
|
+
* @internal
|
|
95
|
+
*/
|
|
83
96
|
private serialize;
|
|
97
|
+
/**
|
|
98
|
+
* @internal
|
|
99
|
+
*/
|
|
84
100
|
private deserialize;
|
|
85
101
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client";
|
|
5
5
|
import { ListDeploymentsRequest, ListDeploymentsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListDeploymentsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListDeploymentsCommandInput extends ListDeploymentsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListDeploymentsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListDeploymentsCommandOutput extends ListDeploymentsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a paginated list of deployments.</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 ListDeploymentsCommandOutput extends ListDeploymentsResponse, _
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListDeploymentsCommandInput - {@link ListDeploymentsCommandInput}
|
|
34
|
+
* @returns {@link ListDeploymentsCommandOutput}
|
|
28
35
|
* @see {@link ListDeploymentsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListDeploymentsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
|
|
@@ -48,11 +55,20 @@ export interface ListDeploymentsCommandOutput extends ListDeploymentsResponse, _
|
|
|
48
55
|
export declare class ListDeploymentsCommand extends $Command<ListDeploymentsCommandInput, ListDeploymentsCommandOutput, GreengrassV2ClientResolvedConfig> {
|
|
49
56
|
readonly input: ListDeploymentsCommandInput;
|
|
50
57
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
51
61
|
constructor(input: ListDeploymentsCommandInput);
|
|
52
62
|
/**
|
|
53
63
|
* @internal
|
|
54
64
|
*/
|
|
55
65
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GreengrassV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDeploymentsCommandInput, ListDeploymentsCommandOutput>;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
56
69
|
private serialize;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
57
73
|
private deserialize;
|
|
58
74
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client";
|
|
5
5
|
import { ListEffectiveDeploymentsRequest, ListEffectiveDeploymentsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListEffectiveDeploymentsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListEffectiveDeploymentsCommandInput extends ListEffectiveDeploymentsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListEffectiveDeploymentsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListEffectiveDeploymentsCommandOutput extends ListEffectiveDeploymentsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a paginated list of deployment jobs that IoT Greengrass sends to Greengrass core
|
|
18
23
|
* devices.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListEffectiveDeploymentsCommandOutput extends ListEffectiveDepl
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListEffectiveDeploymentsCommandInput - {@link ListEffectiveDeploymentsCommandInput}
|
|
35
|
+
* @returns {@link ListEffectiveDeploymentsCommandOutput}
|
|
29
36
|
* @see {@link ListEffectiveDeploymentsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListEffectiveDeploymentsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface ListEffectiveDeploymentsCommandOutput extends ListEffectiveDepl
|
|
|
52
59
|
export declare class ListEffectiveDeploymentsCommand extends $Command<ListEffectiveDeploymentsCommandInput, ListEffectiveDeploymentsCommandOutput, GreengrassV2ClientResolvedConfig> {
|
|
53
60
|
readonly input: ListEffectiveDeploymentsCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: ListEffectiveDeploymentsCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GreengrassV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListEffectiveDeploymentsCommandInput, ListEffectiveDeploymentsCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client";
|
|
5
5
|
import { ListInstalledComponentsRequest, ListInstalledComponentsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListInstalledComponentsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListInstalledComponentsCommandInput extends ListInstalledComponentsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListInstalledComponentsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListInstalledComponentsCommandOutput extends ListInstalledComponentsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a paginated list of the components that a Greengrass core device runs. By default,
|
|
18
23
|
* this list doesn't include components that are deployed as dependencies of other components. To
|
|
19
24
|
* include dependencies in the response, set the <code>topologyFilter</code> parameter to
|
|
@@ -54,6 +59,8 @@ export interface ListInstalledComponentsCommandOutput extends ListInstalledCompo
|
|
|
54
59
|
* const response = await client.send(command);
|
|
55
60
|
* ```
|
|
56
61
|
*
|
|
62
|
+
* @param ListInstalledComponentsCommandInput - {@link ListInstalledComponentsCommandInput}
|
|
63
|
+
* @returns {@link ListInstalledComponentsCommandOutput}
|
|
57
64
|
* @see {@link ListInstalledComponentsCommandInput} for command's `input` shape.
|
|
58
65
|
* @see {@link ListInstalledComponentsCommandOutput} for command's `response` shape.
|
|
59
66
|
* @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
|
|
@@ -80,11 +87,20 @@ export interface ListInstalledComponentsCommandOutput extends ListInstalledCompo
|
|
|
80
87
|
export declare class ListInstalledComponentsCommand extends $Command<ListInstalledComponentsCommandInput, ListInstalledComponentsCommandOutput, GreengrassV2ClientResolvedConfig> {
|
|
81
88
|
readonly input: ListInstalledComponentsCommandInput;
|
|
82
89
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
90
|
+
/**
|
|
91
|
+
* @public
|
|
92
|
+
*/
|
|
83
93
|
constructor(input: ListInstalledComponentsCommandInput);
|
|
84
94
|
/**
|
|
85
95
|
* @internal
|
|
86
96
|
*/
|
|
87
97
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GreengrassV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListInstalledComponentsCommandInput, ListInstalledComponentsCommandOutput>;
|
|
98
|
+
/**
|
|
99
|
+
* @internal
|
|
100
|
+
*/
|
|
88
101
|
private serialize;
|
|
102
|
+
/**
|
|
103
|
+
* @internal
|
|
104
|
+
*/
|
|
89
105
|
private deserialize;
|
|
90
106
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client";
|
|
5
5
|
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
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>Retrieves the list of tags for an IoT Greengrass 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 GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
44
51
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, GreengrassV2ClientResolvedConfig> {
|
|
45
52
|
readonly input: ListTagsForResourceCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: ListTagsForResourceCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GreengrassV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client";
|
|
5
5
|
import { ResolveComponentCandidatesRequest, ResolveComponentCandidatesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ResolveComponentCandidatesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ResolveComponentCandidatesCommandInput extends ResolveComponentCandidatesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ResolveComponentCandidatesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ResolveComponentCandidatesCommandOutput extends ResolveComponentCandidatesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a list of components that meet the component, version, and platform requirements
|
|
18
23
|
* of a deployment. Greengrass core devices call this operation when they receive a deployment to
|
|
19
24
|
* identify the components to install.</p>
|
|
@@ -39,6 +44,8 @@ export interface ResolveComponentCandidatesCommandOutput extends ResolveComponen
|
|
|
39
44
|
* const response = await client.send(command);
|
|
40
45
|
* ```
|
|
41
46
|
*
|
|
47
|
+
* @param ResolveComponentCandidatesCommandInput - {@link ResolveComponentCandidatesCommandInput}
|
|
48
|
+
* @returns {@link ResolveComponentCandidatesCommandOutput}
|
|
42
49
|
* @see {@link ResolveComponentCandidatesCommandInput} for command's `input` shape.
|
|
43
50
|
* @see {@link ResolveComponentCandidatesCommandOutput} for command's `response` shape.
|
|
44
51
|
* @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
|
|
@@ -69,11 +76,20 @@ export interface ResolveComponentCandidatesCommandOutput extends ResolveComponen
|
|
|
69
76
|
export declare class ResolveComponentCandidatesCommand extends $Command<ResolveComponentCandidatesCommandInput, ResolveComponentCandidatesCommandOutput, GreengrassV2ClientResolvedConfig> {
|
|
70
77
|
readonly input: ResolveComponentCandidatesCommandInput;
|
|
71
78
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
72
82
|
constructor(input: ResolveComponentCandidatesCommandInput);
|
|
73
83
|
/**
|
|
74
84
|
* @internal
|
|
75
85
|
*/
|
|
76
86
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GreengrassV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ResolveComponentCandidatesCommandInput, ResolveComponentCandidatesCommandOutput>;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
77
90
|
private serialize;
|
|
91
|
+
/**
|
|
92
|
+
* @internal
|
|
93
|
+
*/
|
|
78
94
|
private deserialize;
|
|
79
95
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client";
|
|
5
5
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link TagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link TagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Adds tags to an IoT Greengrass resource. If a tag already exists for the resource, this operation
|
|
18
23
|
* updates the tag's value.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
35
|
+
* @returns {@link TagResourceCommandOutput}
|
|
29
36
|
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
|
|
@@ -45,11 +52,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
45
52
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, GreengrassV2ClientResolvedConfig> {
|
|
46
53
|
readonly input: TagResourceCommandInput;
|
|
47
54
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
55
|
+
/**
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
48
58
|
constructor(input: TagResourceCommandInput);
|
|
49
59
|
/**
|
|
50
60
|
* @internal
|
|
51
61
|
*/
|
|
52
62
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GreengrassV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
53
66
|
private serialize;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
54
70
|
private deserialize;
|
|
55
71
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client";
|
|
5
5
|
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UntagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UntagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes a tag from an IoT Greengrass 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 UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
34
|
+
* @returns {@link UntagResourceCommandOutput}
|
|
28
35
|
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
44
51
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, GreengrassV2ClientResolvedConfig> {
|
|
45
52
|
readonly input: UntagResourceCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: UntagResourceCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GreengrassV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client";
|
|
5
5
|
import { UpdateConnectivityInfoRequest, UpdateConnectivityInfoResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateConnectivityInfoCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateConnectivityInfoCommandInput extends UpdateConnectivityInfoRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateConnectivityInfoCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateConnectivityInfoCommandOutput extends UpdateConnectivityInfoResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates connectivity information for a Greengrass core device.</p>
|
|
18
23
|
* <p>Connectivity information includes endpoints and ports where client devices
|
|
19
24
|
* can connect to an MQTT broker on the core device. When a client device
|
|
@@ -31,6 +36,8 @@ export interface UpdateConnectivityInfoCommandOutput extends UpdateConnectivityI
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param UpdateConnectivityInfoCommandInput - {@link UpdateConnectivityInfoCommandInput}
|
|
40
|
+
* @returns {@link UpdateConnectivityInfoCommandOutput}
|
|
34
41
|
* @see {@link UpdateConnectivityInfoCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link UpdateConnectivityInfoCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface UpdateConnectivityInfoCommandOutput extends UpdateConnectivityI
|
|
|
47
54
|
export declare class UpdateConnectivityInfoCommand extends $Command<UpdateConnectivityInfoCommandInput, UpdateConnectivityInfoCommandOutput, GreengrassV2ClientResolvedConfig> {
|
|
48
55
|
readonly input: UpdateConnectivityInfoCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: UpdateConnectivityInfoCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GreengrassV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateConnectivityInfoCommandInput, UpdateConnectivityInfoCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from GreengrassV2 service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class GreengrassV2ServiceException extends __ServiceException {
|