@aws-sdk/client-greengrassv2 3.45.0 → 3.47.2
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 +45 -0
- package/README.md +7 -7
- package/dist-cjs/GreengrassV2.js +75 -0
- package/dist-cjs/commands/AssociateServiceRoleToAccountCommand.js +36 -0
- package/dist-cjs/commands/DisassociateServiceRoleFromAccountCommand.js +36 -0
- package/dist-cjs/commands/GetConnectivityInfoCommand.js +36 -0
- package/dist-cjs/commands/GetServiceRoleForAccountCommand.js +36 -0
- package/dist-cjs/commands/UpdateConnectivityInfoCommand.js +36 -0
- package/dist-cjs/commands/index.js +5 -0
- package/dist-cjs/models/models_0.js +75 -57
- package/dist-cjs/protocols/Aws_restJson1.js +435 -1
- package/dist-cjs/runtimeConfig.browser.js +7 -2
- package/dist-cjs/runtimeConfig.js +9 -3
- package/dist-es/GreengrassV2.js +75 -0
- package/dist-es/commands/AssociateServiceRoleToAccountCommand.js +39 -0
- package/dist-es/commands/DisassociateServiceRoleFromAccountCommand.js +39 -0
- package/dist-es/commands/GetConnectivityInfoCommand.js +39 -0
- package/dist-es/commands/GetServiceRoleForAccountCommand.js +39 -0
- package/dist-es/commands/UpdateConnectivityInfoCommand.js +39 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +52 -40
- package/dist-es/protocols/Aws_restJson1.js +519 -0
- package/dist-es/runtimeConfig.browser.js +12 -3
- package/dist-es/runtimeConfig.js +13 -6
- package/dist-types/GreengrassV2.d.ts +59 -2
- package/dist-types/GreengrassV2Client.d.ts +12 -3
- package/dist-types/commands/AssociateServiceRoleToAccountCommand.d.ts +39 -0
- package/dist-types/commands/BatchAssociateClientDeviceWithCoreDeviceCommand.d.ts +1 -1
- package/dist-types/commands/BatchDisassociateClientDeviceFromCoreDeviceCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateServiceRoleFromAccountCommand.d.ts +38 -0
- package/dist-types/commands/GetConnectivityInfoCommand.d.ts +41 -0
- package/dist-types/commands/GetServiceRoleForAccountCommand.d.ts +38 -0
- package/dist-types/commands/UpdateConnectivityInfoCommand.d.ts +41 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +215 -99
- package/dist-types/protocols/Aws_restJson1.d.ts +15 -0
- package/dist-types/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/runtimeConfig.d.ts +4 -3
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/GreengrassV2.d.ts +25 -0
- package/dist-types/ts3.4/GreengrassV2Client.d.ts +10 -3
- package/dist-types/ts3.4/commands/AssociateServiceRoleToAccountCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DisassociateServiceRoleFromAccountCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetConnectivityInfoCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetServiceRoleForAccountCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateConnectivityInfoCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +129 -62
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +15 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +39 -46
|
@@ -7,12 +7,6 @@ export interface AccessDeniedException extends __SmithyException, $MetadataBeare
|
|
|
7
7
|
$fault: "client";
|
|
8
8
|
message: string | undefined;
|
|
9
9
|
}
|
|
10
|
-
export declare namespace AccessDeniedException {
|
|
11
|
-
/**
|
|
12
|
-
* @internal
|
|
13
|
-
*/
|
|
14
|
-
const filterSensitiveLog: (obj: AccessDeniedException) => any;
|
|
15
|
-
}
|
|
16
10
|
/**
|
|
17
11
|
* <p>Contains a request to associate a client device with a core device. The <a href="https://docs.aws.amazon.com/greengrass/v2/APIReference/API_BatchAssociateClientDeviceWithCoreDevice.html">BatchAssociateClientDeviceWithCoreDevice</a> operation consumes a list of these
|
|
18
12
|
* requests.</p>
|
|
@@ -74,34 +68,31 @@ export declare namespace AssociatedClientDevice {
|
|
|
74
68
|
*/
|
|
75
69
|
const filterSensitiveLog: (obj: AssociatedClientDevice) => any;
|
|
76
70
|
}
|
|
77
|
-
export interface
|
|
78
|
-
/**
|
|
79
|
-
* <p>The list of client devices to associate.</p>
|
|
80
|
-
*/
|
|
81
|
-
entries?: AssociateClientDeviceWithCoreDeviceEntry[];
|
|
71
|
+
export interface AssociateServiceRoleToAccountRequest {
|
|
82
72
|
/**
|
|
83
|
-
* <p>The
|
|
73
|
+
* <p>The Amazon Resource Name (ARN) of the service role to associate with IoT Greengrass for your
|
|
74
|
+
* Amazon Web Services account in this Amazon Web Services Region.</p>
|
|
84
75
|
*/
|
|
85
|
-
|
|
76
|
+
roleArn: string | undefined;
|
|
86
77
|
}
|
|
87
|
-
export declare namespace
|
|
78
|
+
export declare namespace AssociateServiceRoleToAccountRequest {
|
|
88
79
|
/**
|
|
89
80
|
* @internal
|
|
90
81
|
*/
|
|
91
|
-
const filterSensitiveLog: (obj:
|
|
82
|
+
const filterSensitiveLog: (obj: AssociateServiceRoleToAccountRequest) => any;
|
|
92
83
|
}
|
|
93
|
-
export interface
|
|
84
|
+
export interface AssociateServiceRoleToAccountResponse {
|
|
94
85
|
/**
|
|
95
|
-
* <p>The
|
|
96
|
-
*
|
|
86
|
+
* <p>The time when the service role was associated with IoT Greengrass for your Amazon Web Services account in this
|
|
87
|
+
* Amazon Web Services Region.</p>
|
|
97
88
|
*/
|
|
98
|
-
|
|
89
|
+
associatedAt?: string;
|
|
99
90
|
}
|
|
100
|
-
export declare namespace
|
|
91
|
+
export declare namespace AssociateServiceRoleToAccountResponse {
|
|
101
92
|
/**
|
|
102
93
|
* @internal
|
|
103
94
|
*/
|
|
104
|
-
const filterSensitiveLog: (obj:
|
|
95
|
+
const filterSensitiveLog: (obj: AssociateServiceRoleToAccountResponse) => any;
|
|
105
96
|
}
|
|
106
97
|
/**
|
|
107
98
|
* <p>IoT Greengrass can't process your request right now. Try again later.</p>
|
|
@@ -115,61 +106,6 @@ export interface InternalServerException extends __SmithyException, $MetadataBea
|
|
|
115
106
|
*/
|
|
116
107
|
retryAfterSeconds?: number;
|
|
117
108
|
}
|
|
118
|
-
export declare namespace InternalServerException {
|
|
119
|
-
/**
|
|
120
|
-
* @internal
|
|
121
|
-
*/
|
|
122
|
-
const filterSensitiveLog: (obj: InternalServerException) => any;
|
|
123
|
-
}
|
|
124
|
-
/**
|
|
125
|
-
* <p>The requested resource can't be found.</p>
|
|
126
|
-
*/
|
|
127
|
-
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
128
|
-
name: "ResourceNotFoundException";
|
|
129
|
-
$fault: "client";
|
|
130
|
-
message: string | undefined;
|
|
131
|
-
/**
|
|
132
|
-
* <p>The ID of the resource that isn't found.</p>
|
|
133
|
-
*/
|
|
134
|
-
resourceId: string | undefined;
|
|
135
|
-
/**
|
|
136
|
-
* <p>The type of the resource that isn't found.</p>
|
|
137
|
-
*/
|
|
138
|
-
resourceType: string | undefined;
|
|
139
|
-
}
|
|
140
|
-
export declare namespace ResourceNotFoundException {
|
|
141
|
-
/**
|
|
142
|
-
* @internal
|
|
143
|
-
*/
|
|
144
|
-
const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
|
|
145
|
-
}
|
|
146
|
-
/**
|
|
147
|
-
* <p>Your request exceeded a request rate quota. For example, you might have exceeded the
|
|
148
|
-
* amount of times that you can retrieve device or deployment status per second.</p>
|
|
149
|
-
*/
|
|
150
|
-
export interface ThrottlingException extends __SmithyException, $MetadataBearer {
|
|
151
|
-
name: "ThrottlingException";
|
|
152
|
-
$fault: "client";
|
|
153
|
-
message: string | undefined;
|
|
154
|
-
/**
|
|
155
|
-
* <p>The code for the quota in <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/intro.html">Service Quotas</a>.</p>
|
|
156
|
-
*/
|
|
157
|
-
quotaCode?: string;
|
|
158
|
-
/**
|
|
159
|
-
* <p>The code for the service in <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/intro.html">Service Quotas</a>.</p>
|
|
160
|
-
*/
|
|
161
|
-
serviceCode?: string;
|
|
162
|
-
/**
|
|
163
|
-
* <p>The amount of time to wait before you retry the request.</p>
|
|
164
|
-
*/
|
|
165
|
-
retryAfterSeconds?: number;
|
|
166
|
-
}
|
|
167
|
-
export declare namespace ThrottlingException {
|
|
168
|
-
/**
|
|
169
|
-
* @internal
|
|
170
|
-
*/
|
|
171
|
-
const filterSensitiveLog: (obj: ThrottlingException) => any;
|
|
172
|
-
}
|
|
173
109
|
/**
|
|
174
110
|
* <p>Contains information about a validation exception field.</p>
|
|
175
111
|
*/
|
|
@@ -212,11 +148,71 @@ export interface ValidationException extends __SmithyException, $MetadataBearer
|
|
|
212
148
|
*/
|
|
213
149
|
fields?: ValidationExceptionField[];
|
|
214
150
|
}
|
|
215
|
-
export
|
|
151
|
+
export interface BatchAssociateClientDeviceWithCoreDeviceRequest {
|
|
152
|
+
/**
|
|
153
|
+
* <p>The list of client devices to associate.</p>
|
|
154
|
+
*/
|
|
155
|
+
entries?: AssociateClientDeviceWithCoreDeviceEntry[];
|
|
156
|
+
/**
|
|
157
|
+
* <p>The name of the core device. This is also the name of the IoT thing.</p>
|
|
158
|
+
*/
|
|
159
|
+
coreDeviceThingName: string | undefined;
|
|
160
|
+
}
|
|
161
|
+
export declare namespace BatchAssociateClientDeviceWithCoreDeviceRequest {
|
|
162
|
+
/**
|
|
163
|
+
* @internal
|
|
164
|
+
*/
|
|
165
|
+
const filterSensitiveLog: (obj: BatchAssociateClientDeviceWithCoreDeviceRequest) => any;
|
|
166
|
+
}
|
|
167
|
+
export interface BatchAssociateClientDeviceWithCoreDeviceResponse {
|
|
168
|
+
/**
|
|
169
|
+
* <p>The list of any errors for the entries in the request. Each error entry contains the name
|
|
170
|
+
* of the IoT thing that failed to associate.</p>
|
|
171
|
+
*/
|
|
172
|
+
errorEntries?: AssociateClientDeviceWithCoreDeviceErrorEntry[];
|
|
173
|
+
}
|
|
174
|
+
export declare namespace BatchAssociateClientDeviceWithCoreDeviceResponse {
|
|
216
175
|
/**
|
|
217
176
|
* @internal
|
|
218
177
|
*/
|
|
219
|
-
const filterSensitiveLog: (obj:
|
|
178
|
+
const filterSensitiveLog: (obj: BatchAssociateClientDeviceWithCoreDeviceResponse) => any;
|
|
179
|
+
}
|
|
180
|
+
/**
|
|
181
|
+
* <p>The requested resource can't be found.</p>
|
|
182
|
+
*/
|
|
183
|
+
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
184
|
+
name: "ResourceNotFoundException";
|
|
185
|
+
$fault: "client";
|
|
186
|
+
message: string | undefined;
|
|
187
|
+
/**
|
|
188
|
+
* <p>The ID of the resource that isn't found.</p>
|
|
189
|
+
*/
|
|
190
|
+
resourceId: string | undefined;
|
|
191
|
+
/**
|
|
192
|
+
* <p>The type of the resource that isn't found.</p>
|
|
193
|
+
*/
|
|
194
|
+
resourceType: string | undefined;
|
|
195
|
+
}
|
|
196
|
+
/**
|
|
197
|
+
* <p>Your request exceeded a request rate quota. For example, you might have exceeded the
|
|
198
|
+
* amount of times that you can retrieve device or deployment status per second.</p>
|
|
199
|
+
*/
|
|
200
|
+
export interface ThrottlingException extends __SmithyException, $MetadataBearer {
|
|
201
|
+
name: "ThrottlingException";
|
|
202
|
+
$fault: "client";
|
|
203
|
+
message: string | undefined;
|
|
204
|
+
/**
|
|
205
|
+
* <p>The code for the quota in <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/intro.html">Service Quotas</a>.</p>
|
|
206
|
+
*/
|
|
207
|
+
quotaCode?: string;
|
|
208
|
+
/**
|
|
209
|
+
* <p>The code for the service in <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/intro.html">Service Quotas</a>.</p>
|
|
210
|
+
*/
|
|
211
|
+
serviceCode?: string;
|
|
212
|
+
/**
|
|
213
|
+
* <p>The amount of time to wait before you retry the request.</p>
|
|
214
|
+
*/
|
|
215
|
+
retryAfterSeconds?: number;
|
|
220
216
|
}
|
|
221
217
|
/**
|
|
222
218
|
* <p>Contains a request to disassociate a client device from a core device. The <a href="https://docs.aws.amazon.com/greengrass/v2/APIReference/API_BatchDisassociateClientDeviceWithCoreDevice.html">BatchDisassociateClientDeviceWithCoreDevice</a> operation consumes a list of these
|
|
@@ -277,8 +273,8 @@ export declare namespace DisassociateClientDeviceFromCoreDeviceErrorEntry {
|
|
|
277
273
|
}
|
|
278
274
|
export interface BatchDisassociateClientDeviceFromCoreDeviceResponse {
|
|
279
275
|
/**
|
|
280
|
-
* <p>The list of errors
|
|
281
|
-
*
|
|
276
|
+
* <p>The list of any errors for the entries in the request. Each error entry contains the name
|
|
277
|
+
* of the IoT thing that failed to disassociate.</p>
|
|
282
278
|
*/
|
|
283
279
|
errorEntries?: DisassociateClientDeviceFromCoreDeviceErrorEntry[];
|
|
284
280
|
}
|
|
@@ -329,12 +325,6 @@ export interface ConflictException extends __SmithyException, $MetadataBearer {
|
|
|
329
325
|
*/
|
|
330
326
|
resourceType: string | undefined;
|
|
331
327
|
}
|
|
332
|
-
export declare namespace ConflictException {
|
|
333
|
-
/**
|
|
334
|
-
* @internal
|
|
335
|
-
*/
|
|
336
|
-
const filterSensitiveLog: (obj: ConflictException) => any;
|
|
337
|
-
}
|
|
338
328
|
export declare enum CloudComponentState {
|
|
339
329
|
DEPLOYABLE = "DEPLOYABLE",
|
|
340
330
|
DEPRECATED = "DEPRECATED",
|
|
@@ -676,6 +666,36 @@ export declare enum ComponentVisibilityScope {
|
|
|
676
666
|
PRIVATE = "PRIVATE",
|
|
677
667
|
PUBLIC = "PUBLIC"
|
|
678
668
|
}
|
|
669
|
+
/**
|
|
670
|
+
* <p>Contains information about an endpoint and port where client devices can connect to an
|
|
671
|
+
* MQTT broker on a Greengrass core device.</p>
|
|
672
|
+
*/
|
|
673
|
+
export interface ConnectivityInfo {
|
|
674
|
+
/**
|
|
675
|
+
* <p>An ID for the connectivity information.</p>
|
|
676
|
+
*/
|
|
677
|
+
id?: string;
|
|
678
|
+
/**
|
|
679
|
+
* <p>The IP address or DNS address where client devices can connect to an MQTT broker on the
|
|
680
|
+
* Greengrass core device.</p>
|
|
681
|
+
*/
|
|
682
|
+
hostAddress?: string;
|
|
683
|
+
/**
|
|
684
|
+
* <p>The port where the MQTT broker operates on the core device. This port is typically 8883,
|
|
685
|
+
* which is the default port for the MQTT broker component that runs on core devices.</p>
|
|
686
|
+
*/
|
|
687
|
+
portNumber?: number;
|
|
688
|
+
/**
|
|
689
|
+
* <p>Additional metadata to provide to client devices that connect to this core device.</p>
|
|
690
|
+
*/
|
|
691
|
+
metadata?: string;
|
|
692
|
+
}
|
|
693
|
+
export declare namespace ConnectivityInfo {
|
|
694
|
+
/**
|
|
695
|
+
* @internal
|
|
696
|
+
*/
|
|
697
|
+
const filterSensitiveLog: (obj: ConnectivityInfo) => any;
|
|
698
|
+
}
|
|
679
699
|
export declare enum CoreDeviceStatus {
|
|
680
700
|
HEALTHY = "HEALTHY",
|
|
681
701
|
UNHEALTHY = "UNHEALTHY"
|
|
@@ -690,7 +710,8 @@ export interface CoreDevice {
|
|
|
690
710
|
*/
|
|
691
711
|
coreDeviceThingName?: string;
|
|
692
712
|
/**
|
|
693
|
-
* <p>The status of the core device. Core devices can have the following
|
|
713
|
+
* <p>The status of the core device. Core devices can have the following
|
|
714
|
+
* statuses:</p>
|
|
694
715
|
* <ul>
|
|
695
716
|
* <li>
|
|
696
717
|
* <p>
|
|
@@ -1080,12 +1101,6 @@ export interface RequestAlreadyInProgressException extends __SmithyException, $M
|
|
|
1080
1101
|
$fault: "client";
|
|
1081
1102
|
message: string | undefined;
|
|
1082
1103
|
}
|
|
1083
|
-
export declare namespace RequestAlreadyInProgressException {
|
|
1084
|
-
/**
|
|
1085
|
-
* @internal
|
|
1086
|
-
*/
|
|
1087
|
-
const filterSensitiveLog: (obj: RequestAlreadyInProgressException) => any;
|
|
1088
|
-
}
|
|
1089
1104
|
/**
|
|
1090
1105
|
* <p>Your request exceeds a service quota. For example, you might have the maximum number of
|
|
1091
1106
|
* components that you can create.</p>
|
|
@@ -1111,12 +1126,6 @@ export interface ServiceQuotaExceededException extends __SmithyException, $Metad
|
|
|
1111
1126
|
*/
|
|
1112
1127
|
serviceCode: string | undefined;
|
|
1113
1128
|
}
|
|
1114
|
-
export declare namespace ServiceQuotaExceededException {
|
|
1115
|
-
/**
|
|
1116
|
-
* @internal
|
|
1117
|
-
*/
|
|
1118
|
-
const filterSensitiveLog: (obj: ServiceQuotaExceededException) => any;
|
|
1119
|
-
}
|
|
1120
1129
|
export declare enum DeploymentComponentUpdatePolicyAction {
|
|
1121
1130
|
NOTIFY_COMPONENTS = "NOTIFY_COMPONENTS",
|
|
1122
1131
|
SKIP_NOTIFY_COMPONENTS = "SKIP_NOTIFY_COMPONENTS"
|
|
@@ -1605,6 +1614,27 @@ export declare namespace DescribeComponentResponse {
|
|
|
1605
1614
|
*/
|
|
1606
1615
|
const filterSensitiveLog: (obj: DescribeComponentResponse) => any;
|
|
1607
1616
|
}
|
|
1617
|
+
export interface DisassociateServiceRoleFromAccountRequest {
|
|
1618
|
+
}
|
|
1619
|
+
export declare namespace DisassociateServiceRoleFromAccountRequest {
|
|
1620
|
+
/**
|
|
1621
|
+
* @internal
|
|
1622
|
+
*/
|
|
1623
|
+
const filterSensitiveLog: (obj: DisassociateServiceRoleFromAccountRequest) => any;
|
|
1624
|
+
}
|
|
1625
|
+
export interface DisassociateServiceRoleFromAccountResponse {
|
|
1626
|
+
/**
|
|
1627
|
+
* <p>The time when the service role was disassociated from IoT Greengrass for your Amazon Web Services account in this
|
|
1628
|
+
* Amazon Web Services Region.</p>
|
|
1629
|
+
*/
|
|
1630
|
+
disassociatedAt?: string;
|
|
1631
|
+
}
|
|
1632
|
+
export declare namespace DisassociateServiceRoleFromAccountResponse {
|
|
1633
|
+
/**
|
|
1634
|
+
* @internal
|
|
1635
|
+
*/
|
|
1636
|
+
const filterSensitiveLog: (obj: DisassociateServiceRoleFromAccountResponse) => any;
|
|
1637
|
+
}
|
|
1608
1638
|
export declare enum EffectiveDeploymentExecutionStatus {
|
|
1609
1639
|
CANCELED = "CANCELED",
|
|
1610
1640
|
COMPLETED = "COMPLETED",
|
|
@@ -1743,6 +1773,34 @@ export declare namespace GetComponentVersionArtifactResponse {
|
|
|
1743
1773
|
*/
|
|
1744
1774
|
const filterSensitiveLog: (obj: GetComponentVersionArtifactResponse) => any;
|
|
1745
1775
|
}
|
|
1776
|
+
export interface GetConnectivityInfoRequest {
|
|
1777
|
+
/**
|
|
1778
|
+
* <p>The name of the core device. This is also the name of the IoT thing.</p>
|
|
1779
|
+
*/
|
|
1780
|
+
thingName: string | undefined;
|
|
1781
|
+
}
|
|
1782
|
+
export declare namespace GetConnectivityInfoRequest {
|
|
1783
|
+
/**
|
|
1784
|
+
* @internal
|
|
1785
|
+
*/
|
|
1786
|
+
const filterSensitiveLog: (obj: GetConnectivityInfoRequest) => any;
|
|
1787
|
+
}
|
|
1788
|
+
export interface GetConnectivityInfoResponse {
|
|
1789
|
+
/**
|
|
1790
|
+
* <p>The connectivity information for the core device.</p>
|
|
1791
|
+
*/
|
|
1792
|
+
connectivityInfo?: ConnectivityInfo[];
|
|
1793
|
+
/**
|
|
1794
|
+
* <p>A message about the connectivity information request.</p>
|
|
1795
|
+
*/
|
|
1796
|
+
message?: string;
|
|
1797
|
+
}
|
|
1798
|
+
export declare namespace GetConnectivityInfoResponse {
|
|
1799
|
+
/**
|
|
1800
|
+
* @internal
|
|
1801
|
+
*/
|
|
1802
|
+
const filterSensitiveLog: (obj: GetConnectivityInfoResponse) => any;
|
|
1803
|
+
}
|
|
1746
1804
|
export interface GetCoreDeviceRequest {
|
|
1747
1805
|
/**
|
|
1748
1806
|
* <p>The name of the core device. This is also the name of the IoT thing.</p>
|
|
@@ -1891,6 +1949,32 @@ export declare namespace GetDeploymentResponse {
|
|
|
1891
1949
|
*/
|
|
1892
1950
|
const filterSensitiveLog: (obj: GetDeploymentResponse) => any;
|
|
1893
1951
|
}
|
|
1952
|
+
export interface GetServiceRoleForAccountRequest {
|
|
1953
|
+
}
|
|
1954
|
+
export declare namespace GetServiceRoleForAccountRequest {
|
|
1955
|
+
/**
|
|
1956
|
+
* @internal
|
|
1957
|
+
*/
|
|
1958
|
+
const filterSensitiveLog: (obj: GetServiceRoleForAccountRequest) => any;
|
|
1959
|
+
}
|
|
1960
|
+
export interface GetServiceRoleForAccountResponse {
|
|
1961
|
+
/**
|
|
1962
|
+
* <p>The time when the service role was associated with IoT Greengrass for your Amazon Web Services account in this
|
|
1963
|
+
* Amazon Web Services Region.</p>
|
|
1964
|
+
*/
|
|
1965
|
+
associatedAt?: string;
|
|
1966
|
+
/**
|
|
1967
|
+
* <p>The ARN of the service role that is associated with IoT Greengrass for your Amazon Web Services account in this
|
|
1968
|
+
* Amazon Web Services Region.</p>
|
|
1969
|
+
*/
|
|
1970
|
+
roleArn?: string;
|
|
1971
|
+
}
|
|
1972
|
+
export declare namespace GetServiceRoleForAccountResponse {
|
|
1973
|
+
/**
|
|
1974
|
+
* @internal
|
|
1975
|
+
*/
|
|
1976
|
+
const filterSensitiveLog: (obj: GetServiceRoleForAccountResponse) => any;
|
|
1977
|
+
}
|
|
1894
1978
|
export interface ListClientDevicesAssociatedWithCoreDeviceRequest {
|
|
1895
1979
|
/**
|
|
1896
1980
|
* <p>The name of the core device. This is also the name of the IoT thing.</p>
|
|
@@ -2357,3 +2441,35 @@ export declare namespace UntagResourceResponse {
|
|
|
2357
2441
|
*/
|
|
2358
2442
|
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
2359
2443
|
}
|
|
2444
|
+
export interface UpdateConnectivityInfoRequest {
|
|
2445
|
+
/**
|
|
2446
|
+
* <p>The name of the core device. This is also the name of the IoT thing.</p>
|
|
2447
|
+
*/
|
|
2448
|
+
thingName: string | undefined;
|
|
2449
|
+
/**
|
|
2450
|
+
* <p>The connectivity information for the core device.</p>
|
|
2451
|
+
*/
|
|
2452
|
+
connectivityInfo: ConnectivityInfo[] | undefined;
|
|
2453
|
+
}
|
|
2454
|
+
export declare namespace UpdateConnectivityInfoRequest {
|
|
2455
|
+
/**
|
|
2456
|
+
* @internal
|
|
2457
|
+
*/
|
|
2458
|
+
const filterSensitiveLog: (obj: UpdateConnectivityInfoRequest) => any;
|
|
2459
|
+
}
|
|
2460
|
+
export interface UpdateConnectivityInfoResponse {
|
|
2461
|
+
/**
|
|
2462
|
+
* <p>The new version of the connectivity information for the core device.</p>
|
|
2463
|
+
*/
|
|
2464
|
+
version?: string;
|
|
2465
|
+
/**
|
|
2466
|
+
* <p>A message about the connectivity information update request.</p>
|
|
2467
|
+
*/
|
|
2468
|
+
message?: string;
|
|
2469
|
+
}
|
|
2470
|
+
export declare namespace UpdateConnectivityInfoResponse {
|
|
2471
|
+
/**
|
|
2472
|
+
* @internal
|
|
2473
|
+
*/
|
|
2474
|
+
const filterSensitiveLog: (obj: UpdateConnectivityInfoResponse) => any;
|
|
2475
|
+
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
|
+
import { AssociateServiceRoleToAccountCommandInput, AssociateServiceRoleToAccountCommandOutput } from "../commands/AssociateServiceRoleToAccountCommand";
|
|
3
4
|
import { BatchAssociateClientDeviceWithCoreDeviceCommandInput, BatchAssociateClientDeviceWithCoreDeviceCommandOutput } from "../commands/BatchAssociateClientDeviceWithCoreDeviceCommand";
|
|
4
5
|
import { BatchDisassociateClientDeviceFromCoreDeviceCommandInput, BatchDisassociateClientDeviceFromCoreDeviceCommandOutput } from "../commands/BatchDisassociateClientDeviceFromCoreDeviceCommand";
|
|
5
6
|
import { CancelDeploymentCommandInput, CancelDeploymentCommandOutput } from "../commands/CancelDeploymentCommand";
|
|
@@ -8,10 +9,13 @@ import { CreateDeploymentCommandInput, CreateDeploymentCommandOutput } from "../
|
|
|
8
9
|
import { DeleteComponentCommandInput, DeleteComponentCommandOutput } from "../commands/DeleteComponentCommand";
|
|
9
10
|
import { DeleteCoreDeviceCommandInput, DeleteCoreDeviceCommandOutput } from "../commands/DeleteCoreDeviceCommand";
|
|
10
11
|
import { DescribeComponentCommandInput, DescribeComponentCommandOutput } from "../commands/DescribeComponentCommand";
|
|
12
|
+
import { DisassociateServiceRoleFromAccountCommandInput, DisassociateServiceRoleFromAccountCommandOutput } from "../commands/DisassociateServiceRoleFromAccountCommand";
|
|
11
13
|
import { GetComponentCommandInput, GetComponentCommandOutput } from "../commands/GetComponentCommand";
|
|
12
14
|
import { GetComponentVersionArtifactCommandInput, GetComponentVersionArtifactCommandOutput } from "../commands/GetComponentVersionArtifactCommand";
|
|
15
|
+
import { GetConnectivityInfoCommandInput, GetConnectivityInfoCommandOutput } from "../commands/GetConnectivityInfoCommand";
|
|
13
16
|
import { GetCoreDeviceCommandInput, GetCoreDeviceCommandOutput } from "../commands/GetCoreDeviceCommand";
|
|
14
17
|
import { GetDeploymentCommandInput, GetDeploymentCommandOutput } from "../commands/GetDeploymentCommand";
|
|
18
|
+
import { GetServiceRoleForAccountCommandInput, GetServiceRoleForAccountCommandOutput } from "../commands/GetServiceRoleForAccountCommand";
|
|
15
19
|
import { ListClientDevicesAssociatedWithCoreDeviceCommandInput, ListClientDevicesAssociatedWithCoreDeviceCommandOutput } from "../commands/ListClientDevicesAssociatedWithCoreDeviceCommand";
|
|
16
20
|
import { ListComponentsCommandInput, ListComponentsCommandOutput } from "../commands/ListComponentsCommand";
|
|
17
21
|
import { ListComponentVersionsCommandInput, ListComponentVersionsCommandOutput } from "../commands/ListComponentVersionsCommand";
|
|
@@ -23,6 +27,8 @@ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } fro
|
|
|
23
27
|
import { ResolveComponentCandidatesCommandInput, ResolveComponentCandidatesCommandOutput } from "../commands/ResolveComponentCandidatesCommand";
|
|
24
28
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
25
29
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
30
|
+
import { UpdateConnectivityInfoCommandInput, UpdateConnectivityInfoCommandOutput } from "../commands/UpdateConnectivityInfoCommand";
|
|
31
|
+
export declare const serializeAws_restJson1AssociateServiceRoleToAccountCommand: (input: AssociateServiceRoleToAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
26
32
|
export declare const serializeAws_restJson1BatchAssociateClientDeviceWithCoreDeviceCommand: (input: BatchAssociateClientDeviceWithCoreDeviceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
27
33
|
export declare const serializeAws_restJson1BatchDisassociateClientDeviceFromCoreDeviceCommand: (input: BatchDisassociateClientDeviceFromCoreDeviceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
28
34
|
export declare const serializeAws_restJson1CancelDeploymentCommand: (input: CancelDeploymentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -31,10 +37,13 @@ export declare const serializeAws_restJson1CreateDeploymentCommand: (input: Crea
|
|
|
31
37
|
export declare const serializeAws_restJson1DeleteComponentCommand: (input: DeleteComponentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
32
38
|
export declare const serializeAws_restJson1DeleteCoreDeviceCommand: (input: DeleteCoreDeviceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
33
39
|
export declare const serializeAws_restJson1DescribeComponentCommand: (input: DescribeComponentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
|
+
export declare const serializeAws_restJson1DisassociateServiceRoleFromAccountCommand: (input: DisassociateServiceRoleFromAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
41
|
export declare const serializeAws_restJson1GetComponentCommand: (input: GetComponentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
42
|
export declare const serializeAws_restJson1GetComponentVersionArtifactCommand: (input: GetComponentVersionArtifactCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
|
+
export declare const serializeAws_restJson1GetConnectivityInfoCommand: (input: GetConnectivityInfoCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
36
44
|
export declare const serializeAws_restJson1GetCoreDeviceCommand: (input: GetCoreDeviceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
37
45
|
export declare const serializeAws_restJson1GetDeploymentCommand: (input: GetDeploymentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
|
+
export declare const serializeAws_restJson1GetServiceRoleForAccountCommand: (input: GetServiceRoleForAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
47
|
export declare const serializeAws_restJson1ListClientDevicesAssociatedWithCoreDeviceCommand: (input: ListClientDevicesAssociatedWithCoreDeviceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
39
48
|
export declare const serializeAws_restJson1ListComponentsCommand: (input: ListComponentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
49
|
export declare const serializeAws_restJson1ListComponentVersionsCommand: (input: ListComponentVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -46,6 +55,8 @@ export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: L
|
|
|
46
55
|
export declare const serializeAws_restJson1ResolveComponentCandidatesCommand: (input: ResolveComponentCandidatesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
56
|
export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
48
57
|
export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
58
|
+
export declare const serializeAws_restJson1UpdateConnectivityInfoCommand: (input: UpdateConnectivityInfoCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
59
|
+
export declare const deserializeAws_restJson1AssociateServiceRoleToAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateServiceRoleToAccountCommandOutput>;
|
|
49
60
|
export declare const deserializeAws_restJson1BatchAssociateClientDeviceWithCoreDeviceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchAssociateClientDeviceWithCoreDeviceCommandOutput>;
|
|
50
61
|
export declare const deserializeAws_restJson1BatchDisassociateClientDeviceFromCoreDeviceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchDisassociateClientDeviceFromCoreDeviceCommandOutput>;
|
|
51
62
|
export declare const deserializeAws_restJson1CancelDeploymentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelDeploymentCommandOutput>;
|
|
@@ -54,10 +65,13 @@ export declare const deserializeAws_restJson1CreateDeploymentCommand: (output: _
|
|
|
54
65
|
export declare const deserializeAws_restJson1DeleteComponentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteComponentCommandOutput>;
|
|
55
66
|
export declare const deserializeAws_restJson1DeleteCoreDeviceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteCoreDeviceCommandOutput>;
|
|
56
67
|
export declare const deserializeAws_restJson1DescribeComponentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeComponentCommandOutput>;
|
|
68
|
+
export declare const deserializeAws_restJson1DisassociateServiceRoleFromAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateServiceRoleFromAccountCommandOutput>;
|
|
57
69
|
export declare const deserializeAws_restJson1GetComponentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetComponentCommandOutput>;
|
|
58
70
|
export declare const deserializeAws_restJson1GetComponentVersionArtifactCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetComponentVersionArtifactCommandOutput>;
|
|
71
|
+
export declare const deserializeAws_restJson1GetConnectivityInfoCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetConnectivityInfoCommandOutput>;
|
|
59
72
|
export declare const deserializeAws_restJson1GetCoreDeviceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCoreDeviceCommandOutput>;
|
|
60
73
|
export declare const deserializeAws_restJson1GetDeploymentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDeploymentCommandOutput>;
|
|
74
|
+
export declare const deserializeAws_restJson1GetServiceRoleForAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetServiceRoleForAccountCommandOutput>;
|
|
61
75
|
export declare const deserializeAws_restJson1ListClientDevicesAssociatedWithCoreDeviceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListClientDevicesAssociatedWithCoreDeviceCommandOutput>;
|
|
62
76
|
export declare const deserializeAws_restJson1ListComponentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListComponentsCommandOutput>;
|
|
63
77
|
export declare const deserializeAws_restJson1ListComponentVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListComponentVersionsCommandOutput>;
|
|
@@ -69,3 +83,4 @@ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output
|
|
|
69
83
|
export declare const deserializeAws_restJson1ResolveComponentCandidatesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ResolveComponentCandidatesCommandOutput>;
|
|
70
84
|
export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
71
85
|
export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
86
|
+
export declare const deserializeAws_restJson1UpdateConnectivityInfoCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateConnectivityInfoCommandOutput>;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
2
|
import { GreengrassV2ClientConfig } from "./GreengrassV2Client";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: GreengrassV2ClientConfig) => {
|
|
7
7
|
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
8
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
11
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
@@ -12,7 +13,7 @@ export declare const getRuntimeConfig: (config: GreengrassV2ClientConfig) => {
|
|
|
12
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
13
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
14
15
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
15
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
16
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
16
17
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
18
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
19
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -1,18 +1,19 @@
|
|
|
1
|
-
import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
2
|
import { GreengrassV2ClientConfig } from "./GreengrassV2Client";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: GreengrassV2ClientConfig) => {
|
|
7
7
|
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
8
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
11
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
11
|
-
credentialDefaultProvider: import("@aws-sdk/
|
|
12
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
12
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
13
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
14
15
|
region: string | import("@aws-sdk/types").Provider<string>;
|
|
15
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
16
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
16
17
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
18
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
19
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -25,6 +25,7 @@ export declare const getRuntimeConfig: (config: GreengrassV2ClientConfig) => {
|
|
|
25
25
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
26
|
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
27
27
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
28
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
28
29
|
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
30
|
tls?: boolean | undefined;
|
|
30
31
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { AssociateServiceRoleToAccountCommandInput, AssociateServiceRoleToAccountCommandOutput } from "./commands/AssociateServiceRoleToAccountCommand";
|
|
2
3
|
import { BatchAssociateClientDeviceWithCoreDeviceCommandInput, BatchAssociateClientDeviceWithCoreDeviceCommandOutput } from "./commands/BatchAssociateClientDeviceWithCoreDeviceCommand";
|
|
3
4
|
import { BatchDisassociateClientDeviceFromCoreDeviceCommandInput, BatchDisassociateClientDeviceFromCoreDeviceCommandOutput } from "./commands/BatchDisassociateClientDeviceFromCoreDeviceCommand";
|
|
4
5
|
import { CancelDeploymentCommandInput, CancelDeploymentCommandOutput } from "./commands/CancelDeploymentCommand";
|
|
@@ -7,10 +8,13 @@ import { CreateDeploymentCommandInput, CreateDeploymentCommandOutput } from "./c
|
|
|
7
8
|
import { DeleteComponentCommandInput, DeleteComponentCommandOutput } from "./commands/DeleteComponentCommand";
|
|
8
9
|
import { DeleteCoreDeviceCommandInput, DeleteCoreDeviceCommandOutput } from "./commands/DeleteCoreDeviceCommand";
|
|
9
10
|
import { DescribeComponentCommandInput, DescribeComponentCommandOutput } from "./commands/DescribeComponentCommand";
|
|
11
|
+
import { DisassociateServiceRoleFromAccountCommandInput, DisassociateServiceRoleFromAccountCommandOutput } from "./commands/DisassociateServiceRoleFromAccountCommand";
|
|
10
12
|
import { GetComponentCommandInput, GetComponentCommandOutput } from "./commands/GetComponentCommand";
|
|
11
13
|
import { GetComponentVersionArtifactCommandInput, GetComponentVersionArtifactCommandOutput } from "./commands/GetComponentVersionArtifactCommand";
|
|
14
|
+
import { GetConnectivityInfoCommandInput, GetConnectivityInfoCommandOutput } from "./commands/GetConnectivityInfoCommand";
|
|
12
15
|
import { GetCoreDeviceCommandInput, GetCoreDeviceCommandOutput } from "./commands/GetCoreDeviceCommand";
|
|
13
16
|
import { GetDeploymentCommandInput, GetDeploymentCommandOutput } from "./commands/GetDeploymentCommand";
|
|
17
|
+
import { GetServiceRoleForAccountCommandInput, GetServiceRoleForAccountCommandOutput } from "./commands/GetServiceRoleForAccountCommand";
|
|
14
18
|
import { ListClientDevicesAssociatedWithCoreDeviceCommandInput, ListClientDevicesAssociatedWithCoreDeviceCommandOutput } from "./commands/ListClientDevicesAssociatedWithCoreDeviceCommand";
|
|
15
19
|
import { ListComponentsCommandInput, ListComponentsCommandOutput } from "./commands/ListComponentsCommand";
|
|
16
20
|
import { ListComponentVersionsCommandInput, ListComponentVersionsCommandOutput } from "./commands/ListComponentVersionsCommand";
|
|
@@ -22,10 +26,15 @@ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } fro
|
|
|
22
26
|
import { ResolveComponentCandidatesCommandInput, ResolveComponentCandidatesCommandOutput } from "./commands/ResolveComponentCandidatesCommand";
|
|
23
27
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
24
28
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
29
|
+
import { UpdateConnectivityInfoCommandInput, UpdateConnectivityInfoCommandOutput } from "./commands/UpdateConnectivityInfoCommand";
|
|
25
30
|
import { GreengrassV2Client } from "./GreengrassV2Client";
|
|
26
31
|
|
|
27
32
|
export declare class GreengrassV2 extends GreengrassV2Client {
|
|
28
33
|
|
|
34
|
+
associateServiceRoleToAccount(args: AssociateServiceRoleToAccountCommandInput, options?: __HttpHandlerOptions): Promise<AssociateServiceRoleToAccountCommandOutput>;
|
|
35
|
+
associateServiceRoleToAccount(args: AssociateServiceRoleToAccountCommandInput, cb: (err: any, data?: AssociateServiceRoleToAccountCommandOutput) => void): void;
|
|
36
|
+
associateServiceRoleToAccount(args: AssociateServiceRoleToAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateServiceRoleToAccountCommandOutput) => void): void;
|
|
37
|
+
|
|
29
38
|
batchAssociateClientDeviceWithCoreDevice(args: BatchAssociateClientDeviceWithCoreDeviceCommandInput, options?: __HttpHandlerOptions): Promise<BatchAssociateClientDeviceWithCoreDeviceCommandOutput>;
|
|
30
39
|
batchAssociateClientDeviceWithCoreDevice(args: BatchAssociateClientDeviceWithCoreDeviceCommandInput, cb: (err: any, data?: BatchAssociateClientDeviceWithCoreDeviceCommandOutput) => void): void;
|
|
31
40
|
batchAssociateClientDeviceWithCoreDevice(args: BatchAssociateClientDeviceWithCoreDeviceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchAssociateClientDeviceWithCoreDeviceCommandOutput) => void): void;
|
|
@@ -58,6 +67,10 @@ export declare class GreengrassV2 extends GreengrassV2Client {
|
|
|
58
67
|
describeComponent(args: DescribeComponentCommandInput, cb: (err: any, data?: DescribeComponentCommandOutput) => void): void;
|
|
59
68
|
describeComponent(args: DescribeComponentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeComponentCommandOutput) => void): void;
|
|
60
69
|
|
|
70
|
+
disassociateServiceRoleFromAccount(args: DisassociateServiceRoleFromAccountCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateServiceRoleFromAccountCommandOutput>;
|
|
71
|
+
disassociateServiceRoleFromAccount(args: DisassociateServiceRoleFromAccountCommandInput, cb: (err: any, data?: DisassociateServiceRoleFromAccountCommandOutput) => void): void;
|
|
72
|
+
disassociateServiceRoleFromAccount(args: DisassociateServiceRoleFromAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateServiceRoleFromAccountCommandOutput) => void): void;
|
|
73
|
+
|
|
61
74
|
getComponent(args: GetComponentCommandInput, options?: __HttpHandlerOptions): Promise<GetComponentCommandOutput>;
|
|
62
75
|
getComponent(args: GetComponentCommandInput, cb: (err: any, data?: GetComponentCommandOutput) => void): void;
|
|
63
76
|
getComponent(args: GetComponentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetComponentCommandOutput) => void): void;
|
|
@@ -66,6 +79,10 @@ export declare class GreengrassV2 extends GreengrassV2Client {
|
|
|
66
79
|
getComponentVersionArtifact(args: GetComponentVersionArtifactCommandInput, cb: (err: any, data?: GetComponentVersionArtifactCommandOutput) => void): void;
|
|
67
80
|
getComponentVersionArtifact(args: GetComponentVersionArtifactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetComponentVersionArtifactCommandOutput) => void): void;
|
|
68
81
|
|
|
82
|
+
getConnectivityInfo(args: GetConnectivityInfoCommandInput, options?: __HttpHandlerOptions): Promise<GetConnectivityInfoCommandOutput>;
|
|
83
|
+
getConnectivityInfo(args: GetConnectivityInfoCommandInput, cb: (err: any, data?: GetConnectivityInfoCommandOutput) => void): void;
|
|
84
|
+
getConnectivityInfo(args: GetConnectivityInfoCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetConnectivityInfoCommandOutput) => void): void;
|
|
85
|
+
|
|
69
86
|
getCoreDevice(args: GetCoreDeviceCommandInput, options?: __HttpHandlerOptions): Promise<GetCoreDeviceCommandOutput>;
|
|
70
87
|
getCoreDevice(args: GetCoreDeviceCommandInput, cb: (err: any, data?: GetCoreDeviceCommandOutput) => void): void;
|
|
71
88
|
getCoreDevice(args: GetCoreDeviceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCoreDeviceCommandOutput) => void): void;
|
|
@@ -74,6 +91,10 @@ export declare class GreengrassV2 extends GreengrassV2Client {
|
|
|
74
91
|
getDeployment(args: GetDeploymentCommandInput, cb: (err: any, data?: GetDeploymentCommandOutput) => void): void;
|
|
75
92
|
getDeployment(args: GetDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDeploymentCommandOutput) => void): void;
|
|
76
93
|
|
|
94
|
+
getServiceRoleForAccount(args: GetServiceRoleForAccountCommandInput, options?: __HttpHandlerOptions): Promise<GetServiceRoleForAccountCommandOutput>;
|
|
95
|
+
getServiceRoleForAccount(args: GetServiceRoleForAccountCommandInput, cb: (err: any, data?: GetServiceRoleForAccountCommandOutput) => void): void;
|
|
96
|
+
getServiceRoleForAccount(args: GetServiceRoleForAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetServiceRoleForAccountCommandOutput) => void): void;
|
|
97
|
+
|
|
77
98
|
listClientDevicesAssociatedWithCoreDevice(args: ListClientDevicesAssociatedWithCoreDeviceCommandInput, options?: __HttpHandlerOptions): Promise<ListClientDevicesAssociatedWithCoreDeviceCommandOutput>;
|
|
78
99
|
listClientDevicesAssociatedWithCoreDevice(args: ListClientDevicesAssociatedWithCoreDeviceCommandInput, cb: (err: any, data?: ListClientDevicesAssociatedWithCoreDeviceCommandOutput) => void): void;
|
|
79
100
|
listClientDevicesAssociatedWithCoreDevice(args: ListClientDevicesAssociatedWithCoreDeviceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListClientDevicesAssociatedWithCoreDeviceCommandOutput) => void): void;
|
|
@@ -117,4 +138,8 @@ export declare class GreengrassV2 extends GreengrassV2Client {
|
|
|
117
138
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
118
139
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
119
140
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
141
|
+
|
|
142
|
+
updateConnectivityInfo(args: UpdateConnectivityInfoCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConnectivityInfoCommandOutput>;
|
|
143
|
+
updateConnectivityInfo(args: UpdateConnectivityInfoCommandInput, cb: (err: any, data?: UpdateConnectivityInfoCommandOutput) => void): void;
|
|
144
|
+
updateConnectivityInfo(args: UpdateConnectivityInfoCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConnectivityInfoCommandOutput) => void): void;
|
|
120
145
|
}
|