@aws-sdk/client-iot-managed-integrations 3.1068.0 → 3.1069.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-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/dist-cjs/endpoint/bdd.js +2 -5
- package/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/dist-cjs/index.js +306 -326
- package/dist-cjs/models/IoTManagedIntegrationsServiceException.js +4 -8
- package/dist-cjs/models/errors.js +25 -40
- package/dist-cjs/runtimeConfig.browser.js +22 -26
- package/dist-cjs/runtimeConfig.js +30 -34
- package/dist-cjs/runtimeConfig.native.js +4 -7
- package/dist-cjs/runtimeConfig.shared.js +20 -24
- package/dist-cjs/schemas/schemas_0.js +604 -395
- package/package.json +8 -8
package/dist-cjs/index.js
CHANGED
|
@@ -1,18 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
1
|
+
var __exportStar = (m, e) => { Object.assign(e, m); };
|
|
2
|
+
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
|
+
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
+
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
|
+
exports.$Command = Command;
|
|
6
|
+
exports.__Client = Client;
|
|
7
|
+
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
+
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
+
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
+
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
+
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
+
const { resolveHttpAuthSchemeConfig, defaultIoTManagedIntegrationsHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
|
|
13
|
+
const { getRuntimeConfig } = require("./runtimeConfig");
|
|
14
|
+
const { CreateAccountAssociation$, CreateCloudConnector$, CreateConnectorDestination$, CreateCredentialLocker$, CreateDestination$, CreateEventLogConfiguration$, CreateManagedThing$, CreateNotificationConfiguration$, CreateOtaTask$, CreateOtaTaskConfiguration$, CreateProvisioningProfile$, DeleteAccountAssociation$, DeleteCloudConnector$, DeleteConnectorDestination$, DeleteCredentialLocker$, DeleteDestination$, DeleteEventLogConfiguration$, DeleteManagedThing$, DeleteNotificationConfiguration$, DeleteOtaTask$, DeleteOtaTaskConfiguration$, DeleteProvisioningProfile$, DeregisterAccountAssociation$, GetAccountAssociation$, GetCloudConnector$, GetConnectorDestination$, GetCredentialLocker$, GetCustomEndpoint$, GetDefaultEncryptionConfiguration$, GetDestination$, GetDeviceDiscovery$, GetEventLogConfiguration$, GetHubConfiguration$, GetManagedThingCapabilities$, GetManagedThingCertificate$, GetManagedThing$, GetManagedThingConnectivityData$, GetManagedThingMetaData$, GetManagedThingState$, GetNotificationConfiguration$, GetOtaTask$, GetOtaTaskConfiguration$, GetProvisioningProfile$, GetRuntimeLogConfiguration$, GetSchemaVersion$, ListAccountAssociations$, ListCloudConnectors$, ListConnectorDestinations$, ListCredentialLockers$, ListDestinations$, ListDeviceDiscoveries$, ListDiscoveredDevices$, ListEventLogConfigurations$, ListManagedThingAccountAssociations$, ListManagedThingSchemas$, ListManagedThings$, ListNotificationConfigurations$, ListOtaTaskConfigurations$, ListOtaTaskExecutions$, ListOtaTasks$, ListProvisioningProfiles$, ListSchemaVersions$, ListTagsForResource$, PutDefaultEncryptionConfiguration$, PutHubConfiguration$, PutRuntimeLogConfiguration$, RegisterAccountAssociation$, RegisterCustomEndpoint$, ResetRuntimeLogConfiguration$, SendConnectorEvent$, SendManagedThingCommand$, StartAccountAssociationRefresh$, StartDeviceDiscovery$, TagResource$, UntagResource$, UpdateAccountAssociation$, UpdateCloudConnector$, UpdateConnectorDestination$, UpdateDestination$, UpdateEventLogConfiguration$, UpdateManagedThing$, UpdateNotificationConfiguration$, UpdateOtaTask$ } = require("./schemas/schemas_0");
|
|
15
|
+
__exportStar(require("./schemas/schemas_0"), exports);
|
|
16
|
+
__exportStar(require("./models/errors"), exports);
|
|
17
|
+
const { IoTManagedIntegrationsServiceException } = require("./models/IoTManagedIntegrationsServiceException");
|
|
18
|
+
exports.IoTManagedIntegrationsServiceException = IoTManagedIntegrationsServiceException;
|
|
16
19
|
|
|
17
20
|
const resolveClientEndpointParameters = (options) => {
|
|
18
21
|
return Object.assign(options, {
|
|
@@ -66,1075 +69,1075 @@ const resolveHttpAuthRuntimeConfig = (config) => {
|
|
|
66
69
|
};
|
|
67
70
|
|
|
68
71
|
const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
69
|
-
const extensionConfiguration = Object.assign(
|
|
72
|
+
const extensionConfiguration = Object.assign(getAwsRegionExtensionConfiguration(runtimeConfig), getDefaultExtensionConfiguration(runtimeConfig), getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
|
|
70
73
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
71
|
-
return Object.assign(runtimeConfig,
|
|
74
|
+
return Object.assign(runtimeConfig, resolveAwsRegionExtensionConfiguration(extensionConfiguration), resolveDefaultRuntimeConfig(extensionConfiguration), resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
|
|
72
75
|
};
|
|
73
76
|
|
|
74
|
-
class IoTManagedIntegrationsClient extends
|
|
77
|
+
class IoTManagedIntegrationsClient extends Client {
|
|
75
78
|
config;
|
|
76
79
|
constructor(...[configuration]) {
|
|
77
|
-
const _config_0 =
|
|
80
|
+
const _config_0 = getRuntimeConfig(configuration || {});
|
|
78
81
|
super(_config_0);
|
|
79
82
|
this.initConfig = _config_0;
|
|
80
83
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
81
|
-
const _config_2 =
|
|
82
|
-
const _config_3 =
|
|
83
|
-
const _config_4 =
|
|
84
|
-
const _config_5 =
|
|
85
|
-
const _config_6 =
|
|
86
|
-
const _config_7 =
|
|
84
|
+
const _config_2 = resolveUserAgentConfig(_config_1);
|
|
85
|
+
const _config_3 = resolveRetryConfig(_config_2);
|
|
86
|
+
const _config_4 = resolveRegionConfig(_config_3);
|
|
87
|
+
const _config_5 = resolveHostHeaderConfig(_config_4);
|
|
88
|
+
const _config_6 = resolveEndpointConfig(_config_5);
|
|
89
|
+
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
|
|
87
90
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
88
91
|
this.config = _config_8;
|
|
89
|
-
this.middlewareStack.use(
|
|
90
|
-
this.middlewareStack.use(
|
|
91
|
-
this.middlewareStack.use(
|
|
92
|
-
this.middlewareStack.use(
|
|
93
|
-
this.middlewareStack.use(
|
|
94
|
-
this.middlewareStack.use(
|
|
95
|
-
this.middlewareStack.use(
|
|
96
|
-
this.middlewareStack.use(
|
|
97
|
-
httpAuthSchemeParametersProvider:
|
|
98
|
-
identityProviderConfigProvider: async (config) => new
|
|
92
|
+
this.middlewareStack.use(getSchemaSerdePlugin(this.config));
|
|
93
|
+
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
94
|
+
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
95
|
+
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
96
|
+
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
97
|
+
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
98
|
+
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
99
|
+
this.middlewareStack.use(getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
|
|
100
|
+
httpAuthSchemeParametersProvider: defaultIoTManagedIntegrationsHttpAuthSchemeParametersProvider,
|
|
101
|
+
identityProviderConfigProvider: async (config) => new DefaultIdentityProviderConfig({
|
|
99
102
|
"aws.auth#sigv4": config.credentials,
|
|
100
103
|
}),
|
|
101
104
|
}));
|
|
102
|
-
this.middlewareStack.use(
|
|
105
|
+
this.middlewareStack.use(getHttpSigningPlugin(this.config));
|
|
103
106
|
}
|
|
104
107
|
destroy() {
|
|
105
108
|
super.destroy();
|
|
106
109
|
}
|
|
107
110
|
}
|
|
108
111
|
|
|
109
|
-
class CreateAccountAssociationCommand extends
|
|
112
|
+
class CreateAccountAssociationCommand extends Command
|
|
110
113
|
.classBuilder()
|
|
111
114
|
.ep(commonParams)
|
|
112
115
|
.m(function (Command, cs, config, o) {
|
|
113
|
-
return [
|
|
116
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
114
117
|
})
|
|
115
118
|
.s("IotManagedIntegrations", "CreateAccountAssociation", {})
|
|
116
119
|
.n("IoTManagedIntegrationsClient", "CreateAccountAssociationCommand")
|
|
117
|
-
.sc(
|
|
120
|
+
.sc(CreateAccountAssociation$)
|
|
118
121
|
.build() {
|
|
119
122
|
}
|
|
120
123
|
|
|
121
|
-
class CreateCloudConnectorCommand extends
|
|
124
|
+
class CreateCloudConnectorCommand extends Command
|
|
122
125
|
.classBuilder()
|
|
123
126
|
.ep(commonParams)
|
|
124
127
|
.m(function (Command, cs, config, o) {
|
|
125
|
-
return [
|
|
128
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
126
129
|
})
|
|
127
130
|
.s("IotManagedIntegrations", "CreateCloudConnector", {})
|
|
128
131
|
.n("IoTManagedIntegrationsClient", "CreateCloudConnectorCommand")
|
|
129
|
-
.sc(
|
|
132
|
+
.sc(CreateCloudConnector$)
|
|
130
133
|
.build() {
|
|
131
134
|
}
|
|
132
135
|
|
|
133
|
-
class CreateConnectorDestinationCommand extends
|
|
136
|
+
class CreateConnectorDestinationCommand extends Command
|
|
134
137
|
.classBuilder()
|
|
135
138
|
.ep(commonParams)
|
|
136
139
|
.m(function (Command, cs, config, o) {
|
|
137
|
-
return [
|
|
140
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
138
141
|
})
|
|
139
142
|
.s("IotManagedIntegrations", "CreateConnectorDestination", {})
|
|
140
143
|
.n("IoTManagedIntegrationsClient", "CreateConnectorDestinationCommand")
|
|
141
|
-
.sc(
|
|
144
|
+
.sc(CreateConnectorDestination$)
|
|
142
145
|
.build() {
|
|
143
146
|
}
|
|
144
147
|
|
|
145
|
-
class CreateCredentialLockerCommand extends
|
|
148
|
+
class CreateCredentialLockerCommand extends Command
|
|
146
149
|
.classBuilder()
|
|
147
150
|
.ep(commonParams)
|
|
148
151
|
.m(function (Command, cs, config, o) {
|
|
149
|
-
return [
|
|
152
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
150
153
|
})
|
|
151
154
|
.s("IotManagedIntegrations", "CreateCredentialLocker", {})
|
|
152
155
|
.n("IoTManagedIntegrationsClient", "CreateCredentialLockerCommand")
|
|
153
|
-
.sc(
|
|
156
|
+
.sc(CreateCredentialLocker$)
|
|
154
157
|
.build() {
|
|
155
158
|
}
|
|
156
159
|
|
|
157
|
-
class CreateDestinationCommand extends
|
|
160
|
+
class CreateDestinationCommand extends Command
|
|
158
161
|
.classBuilder()
|
|
159
162
|
.ep(commonParams)
|
|
160
163
|
.m(function (Command, cs, config, o) {
|
|
161
|
-
return [
|
|
164
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
162
165
|
})
|
|
163
166
|
.s("IotManagedIntegrations", "CreateDestination", {})
|
|
164
167
|
.n("IoTManagedIntegrationsClient", "CreateDestinationCommand")
|
|
165
|
-
.sc(
|
|
168
|
+
.sc(CreateDestination$)
|
|
166
169
|
.build() {
|
|
167
170
|
}
|
|
168
171
|
|
|
169
|
-
class CreateEventLogConfigurationCommand extends
|
|
172
|
+
class CreateEventLogConfigurationCommand extends Command
|
|
170
173
|
.classBuilder()
|
|
171
174
|
.ep(commonParams)
|
|
172
175
|
.m(function (Command, cs, config, o) {
|
|
173
|
-
return [
|
|
176
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
174
177
|
})
|
|
175
178
|
.s("IotManagedIntegrations", "CreateEventLogConfiguration", {})
|
|
176
179
|
.n("IoTManagedIntegrationsClient", "CreateEventLogConfigurationCommand")
|
|
177
|
-
.sc(
|
|
180
|
+
.sc(CreateEventLogConfiguration$)
|
|
178
181
|
.build() {
|
|
179
182
|
}
|
|
180
183
|
|
|
181
|
-
class CreateManagedThingCommand extends
|
|
184
|
+
class CreateManagedThingCommand extends Command
|
|
182
185
|
.classBuilder()
|
|
183
186
|
.ep(commonParams)
|
|
184
187
|
.m(function (Command, cs, config, o) {
|
|
185
|
-
return [
|
|
188
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
186
189
|
})
|
|
187
190
|
.s("IotManagedIntegrations", "CreateManagedThing", {})
|
|
188
191
|
.n("IoTManagedIntegrationsClient", "CreateManagedThingCommand")
|
|
189
|
-
.sc(
|
|
192
|
+
.sc(CreateManagedThing$)
|
|
190
193
|
.build() {
|
|
191
194
|
}
|
|
192
195
|
|
|
193
|
-
class CreateNotificationConfigurationCommand extends
|
|
196
|
+
class CreateNotificationConfigurationCommand extends Command
|
|
194
197
|
.classBuilder()
|
|
195
198
|
.ep(commonParams)
|
|
196
199
|
.m(function (Command, cs, config, o) {
|
|
197
|
-
return [
|
|
200
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
198
201
|
})
|
|
199
202
|
.s("IotManagedIntegrations", "CreateNotificationConfiguration", {})
|
|
200
203
|
.n("IoTManagedIntegrationsClient", "CreateNotificationConfigurationCommand")
|
|
201
|
-
.sc(
|
|
204
|
+
.sc(CreateNotificationConfiguration$)
|
|
202
205
|
.build() {
|
|
203
206
|
}
|
|
204
207
|
|
|
205
|
-
class CreateOtaTaskCommand extends
|
|
208
|
+
class CreateOtaTaskCommand extends Command
|
|
206
209
|
.classBuilder()
|
|
207
210
|
.ep(commonParams)
|
|
208
211
|
.m(function (Command, cs, config, o) {
|
|
209
|
-
return [
|
|
212
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
210
213
|
})
|
|
211
214
|
.s("IotManagedIntegrations", "CreateOtaTask", {})
|
|
212
215
|
.n("IoTManagedIntegrationsClient", "CreateOtaTaskCommand")
|
|
213
|
-
.sc(
|
|
216
|
+
.sc(CreateOtaTask$)
|
|
214
217
|
.build() {
|
|
215
218
|
}
|
|
216
219
|
|
|
217
|
-
class CreateOtaTaskConfigurationCommand extends
|
|
220
|
+
class CreateOtaTaskConfigurationCommand extends Command
|
|
218
221
|
.classBuilder()
|
|
219
222
|
.ep(commonParams)
|
|
220
223
|
.m(function (Command, cs, config, o) {
|
|
221
|
-
return [
|
|
224
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
222
225
|
})
|
|
223
226
|
.s("IotManagedIntegrations", "CreateOtaTaskConfiguration", {})
|
|
224
227
|
.n("IoTManagedIntegrationsClient", "CreateOtaTaskConfigurationCommand")
|
|
225
|
-
.sc(
|
|
228
|
+
.sc(CreateOtaTaskConfiguration$)
|
|
226
229
|
.build() {
|
|
227
230
|
}
|
|
228
231
|
|
|
229
|
-
class CreateProvisioningProfileCommand extends
|
|
232
|
+
class CreateProvisioningProfileCommand extends Command
|
|
230
233
|
.classBuilder()
|
|
231
234
|
.ep(commonParams)
|
|
232
235
|
.m(function (Command, cs, config, o) {
|
|
233
|
-
return [
|
|
236
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
234
237
|
})
|
|
235
238
|
.s("IotManagedIntegrations", "CreateProvisioningProfile", {})
|
|
236
239
|
.n("IoTManagedIntegrationsClient", "CreateProvisioningProfileCommand")
|
|
237
|
-
.sc(
|
|
240
|
+
.sc(CreateProvisioningProfile$)
|
|
238
241
|
.build() {
|
|
239
242
|
}
|
|
240
243
|
|
|
241
|
-
class DeleteAccountAssociationCommand extends
|
|
244
|
+
class DeleteAccountAssociationCommand extends Command
|
|
242
245
|
.classBuilder()
|
|
243
246
|
.ep(commonParams)
|
|
244
247
|
.m(function (Command, cs, config, o) {
|
|
245
|
-
return [
|
|
248
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
246
249
|
})
|
|
247
250
|
.s("IotManagedIntegrations", "DeleteAccountAssociation", {})
|
|
248
251
|
.n("IoTManagedIntegrationsClient", "DeleteAccountAssociationCommand")
|
|
249
|
-
.sc(
|
|
252
|
+
.sc(DeleteAccountAssociation$)
|
|
250
253
|
.build() {
|
|
251
254
|
}
|
|
252
255
|
|
|
253
|
-
class DeleteCloudConnectorCommand extends
|
|
256
|
+
class DeleteCloudConnectorCommand extends Command
|
|
254
257
|
.classBuilder()
|
|
255
258
|
.ep(commonParams)
|
|
256
259
|
.m(function (Command, cs, config, o) {
|
|
257
|
-
return [
|
|
260
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
258
261
|
})
|
|
259
262
|
.s("IotManagedIntegrations", "DeleteCloudConnector", {})
|
|
260
263
|
.n("IoTManagedIntegrationsClient", "DeleteCloudConnectorCommand")
|
|
261
|
-
.sc(
|
|
264
|
+
.sc(DeleteCloudConnector$)
|
|
262
265
|
.build() {
|
|
263
266
|
}
|
|
264
267
|
|
|
265
|
-
class DeleteConnectorDestinationCommand extends
|
|
268
|
+
class DeleteConnectorDestinationCommand extends Command
|
|
266
269
|
.classBuilder()
|
|
267
270
|
.ep(commonParams)
|
|
268
271
|
.m(function (Command, cs, config, o) {
|
|
269
|
-
return [
|
|
272
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
270
273
|
})
|
|
271
274
|
.s("IotManagedIntegrations", "DeleteConnectorDestination", {})
|
|
272
275
|
.n("IoTManagedIntegrationsClient", "DeleteConnectorDestinationCommand")
|
|
273
|
-
.sc(
|
|
276
|
+
.sc(DeleteConnectorDestination$)
|
|
274
277
|
.build() {
|
|
275
278
|
}
|
|
276
279
|
|
|
277
|
-
class DeleteCredentialLockerCommand extends
|
|
280
|
+
class DeleteCredentialLockerCommand extends Command
|
|
278
281
|
.classBuilder()
|
|
279
282
|
.ep(commonParams)
|
|
280
283
|
.m(function (Command, cs, config, o) {
|
|
281
|
-
return [
|
|
284
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
282
285
|
})
|
|
283
286
|
.s("IotManagedIntegrations", "DeleteCredentialLocker", {})
|
|
284
287
|
.n("IoTManagedIntegrationsClient", "DeleteCredentialLockerCommand")
|
|
285
|
-
.sc(
|
|
288
|
+
.sc(DeleteCredentialLocker$)
|
|
286
289
|
.build() {
|
|
287
290
|
}
|
|
288
291
|
|
|
289
|
-
class DeleteDestinationCommand extends
|
|
292
|
+
class DeleteDestinationCommand extends Command
|
|
290
293
|
.classBuilder()
|
|
291
294
|
.ep(commonParams)
|
|
292
295
|
.m(function (Command, cs, config, o) {
|
|
293
|
-
return [
|
|
296
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
294
297
|
})
|
|
295
298
|
.s("IotManagedIntegrations", "DeleteDestination", {})
|
|
296
299
|
.n("IoTManagedIntegrationsClient", "DeleteDestinationCommand")
|
|
297
|
-
.sc(
|
|
300
|
+
.sc(DeleteDestination$)
|
|
298
301
|
.build() {
|
|
299
302
|
}
|
|
300
303
|
|
|
301
|
-
class DeleteEventLogConfigurationCommand extends
|
|
304
|
+
class DeleteEventLogConfigurationCommand extends Command
|
|
302
305
|
.classBuilder()
|
|
303
306
|
.ep(commonParams)
|
|
304
307
|
.m(function (Command, cs, config, o) {
|
|
305
|
-
return [
|
|
308
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
306
309
|
})
|
|
307
310
|
.s("IotManagedIntegrations", "DeleteEventLogConfiguration", {})
|
|
308
311
|
.n("IoTManagedIntegrationsClient", "DeleteEventLogConfigurationCommand")
|
|
309
|
-
.sc(
|
|
312
|
+
.sc(DeleteEventLogConfiguration$)
|
|
310
313
|
.build() {
|
|
311
314
|
}
|
|
312
315
|
|
|
313
|
-
class DeleteManagedThingCommand extends
|
|
316
|
+
class DeleteManagedThingCommand extends Command
|
|
314
317
|
.classBuilder()
|
|
315
318
|
.ep(commonParams)
|
|
316
319
|
.m(function (Command, cs, config, o) {
|
|
317
|
-
return [
|
|
320
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
318
321
|
})
|
|
319
322
|
.s("IotManagedIntegrations", "DeleteManagedThing", {})
|
|
320
323
|
.n("IoTManagedIntegrationsClient", "DeleteManagedThingCommand")
|
|
321
|
-
.sc(
|
|
324
|
+
.sc(DeleteManagedThing$)
|
|
322
325
|
.build() {
|
|
323
326
|
}
|
|
324
327
|
|
|
325
|
-
class DeleteNotificationConfigurationCommand extends
|
|
328
|
+
class DeleteNotificationConfigurationCommand extends Command
|
|
326
329
|
.classBuilder()
|
|
327
330
|
.ep(commonParams)
|
|
328
331
|
.m(function (Command, cs, config, o) {
|
|
329
|
-
return [
|
|
332
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
330
333
|
})
|
|
331
334
|
.s("IotManagedIntegrations", "DeleteNotificationConfiguration", {})
|
|
332
335
|
.n("IoTManagedIntegrationsClient", "DeleteNotificationConfigurationCommand")
|
|
333
|
-
.sc(
|
|
336
|
+
.sc(DeleteNotificationConfiguration$)
|
|
334
337
|
.build() {
|
|
335
338
|
}
|
|
336
339
|
|
|
337
|
-
class DeleteOtaTaskCommand extends
|
|
340
|
+
class DeleteOtaTaskCommand extends Command
|
|
338
341
|
.classBuilder()
|
|
339
342
|
.ep(commonParams)
|
|
340
343
|
.m(function (Command, cs, config, o) {
|
|
341
|
-
return [
|
|
344
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
342
345
|
})
|
|
343
346
|
.s("IotManagedIntegrations", "DeleteOtaTask", {})
|
|
344
347
|
.n("IoTManagedIntegrationsClient", "DeleteOtaTaskCommand")
|
|
345
|
-
.sc(
|
|
348
|
+
.sc(DeleteOtaTask$)
|
|
346
349
|
.build() {
|
|
347
350
|
}
|
|
348
351
|
|
|
349
|
-
class DeleteOtaTaskConfigurationCommand extends
|
|
352
|
+
class DeleteOtaTaskConfigurationCommand extends Command
|
|
350
353
|
.classBuilder()
|
|
351
354
|
.ep(commonParams)
|
|
352
355
|
.m(function (Command, cs, config, o) {
|
|
353
|
-
return [
|
|
356
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
354
357
|
})
|
|
355
358
|
.s("IotManagedIntegrations", "DeleteOtaTaskConfiguration", {})
|
|
356
359
|
.n("IoTManagedIntegrationsClient", "DeleteOtaTaskConfigurationCommand")
|
|
357
|
-
.sc(
|
|
360
|
+
.sc(DeleteOtaTaskConfiguration$)
|
|
358
361
|
.build() {
|
|
359
362
|
}
|
|
360
363
|
|
|
361
|
-
class DeleteProvisioningProfileCommand extends
|
|
364
|
+
class DeleteProvisioningProfileCommand extends Command
|
|
362
365
|
.classBuilder()
|
|
363
366
|
.ep(commonParams)
|
|
364
367
|
.m(function (Command, cs, config, o) {
|
|
365
|
-
return [
|
|
368
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
366
369
|
})
|
|
367
370
|
.s("IotManagedIntegrations", "DeleteProvisioningProfile", {})
|
|
368
371
|
.n("IoTManagedIntegrationsClient", "DeleteProvisioningProfileCommand")
|
|
369
|
-
.sc(
|
|
372
|
+
.sc(DeleteProvisioningProfile$)
|
|
370
373
|
.build() {
|
|
371
374
|
}
|
|
372
375
|
|
|
373
|
-
class DeregisterAccountAssociationCommand extends
|
|
376
|
+
class DeregisterAccountAssociationCommand extends Command
|
|
374
377
|
.classBuilder()
|
|
375
378
|
.ep(commonParams)
|
|
376
379
|
.m(function (Command, cs, config, o) {
|
|
377
|
-
return [
|
|
380
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
378
381
|
})
|
|
379
382
|
.s("IotManagedIntegrations", "DeregisterAccountAssociation", {})
|
|
380
383
|
.n("IoTManagedIntegrationsClient", "DeregisterAccountAssociationCommand")
|
|
381
|
-
.sc(
|
|
384
|
+
.sc(DeregisterAccountAssociation$)
|
|
382
385
|
.build() {
|
|
383
386
|
}
|
|
384
387
|
|
|
385
|
-
class GetAccountAssociationCommand extends
|
|
388
|
+
class GetAccountAssociationCommand extends Command
|
|
386
389
|
.classBuilder()
|
|
387
390
|
.ep(commonParams)
|
|
388
391
|
.m(function (Command, cs, config, o) {
|
|
389
|
-
return [
|
|
392
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
390
393
|
})
|
|
391
394
|
.s("IotManagedIntegrations", "GetAccountAssociation", {})
|
|
392
395
|
.n("IoTManagedIntegrationsClient", "GetAccountAssociationCommand")
|
|
393
|
-
.sc(
|
|
396
|
+
.sc(GetAccountAssociation$)
|
|
394
397
|
.build() {
|
|
395
398
|
}
|
|
396
399
|
|
|
397
|
-
class GetCloudConnectorCommand extends
|
|
400
|
+
class GetCloudConnectorCommand extends Command
|
|
398
401
|
.classBuilder()
|
|
399
402
|
.ep(commonParams)
|
|
400
403
|
.m(function (Command, cs, config, o) {
|
|
401
|
-
return [
|
|
404
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
402
405
|
})
|
|
403
406
|
.s("IotManagedIntegrations", "GetCloudConnector", {})
|
|
404
407
|
.n("IoTManagedIntegrationsClient", "GetCloudConnectorCommand")
|
|
405
|
-
.sc(
|
|
408
|
+
.sc(GetCloudConnector$)
|
|
406
409
|
.build() {
|
|
407
410
|
}
|
|
408
411
|
|
|
409
|
-
class GetConnectorDestinationCommand extends
|
|
412
|
+
class GetConnectorDestinationCommand extends Command
|
|
410
413
|
.classBuilder()
|
|
411
414
|
.ep(commonParams)
|
|
412
415
|
.m(function (Command, cs, config, o) {
|
|
413
|
-
return [
|
|
416
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
414
417
|
})
|
|
415
418
|
.s("IotManagedIntegrations", "GetConnectorDestination", {})
|
|
416
419
|
.n("IoTManagedIntegrationsClient", "GetConnectorDestinationCommand")
|
|
417
|
-
.sc(
|
|
420
|
+
.sc(GetConnectorDestination$)
|
|
418
421
|
.build() {
|
|
419
422
|
}
|
|
420
423
|
|
|
421
|
-
class GetCredentialLockerCommand extends
|
|
424
|
+
class GetCredentialLockerCommand extends Command
|
|
422
425
|
.classBuilder()
|
|
423
426
|
.ep(commonParams)
|
|
424
427
|
.m(function (Command, cs, config, o) {
|
|
425
|
-
return [
|
|
428
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
426
429
|
})
|
|
427
430
|
.s("IotManagedIntegrations", "GetCredentialLocker", {})
|
|
428
431
|
.n("IoTManagedIntegrationsClient", "GetCredentialLockerCommand")
|
|
429
|
-
.sc(
|
|
432
|
+
.sc(GetCredentialLocker$)
|
|
430
433
|
.build() {
|
|
431
434
|
}
|
|
432
435
|
|
|
433
|
-
class GetCustomEndpointCommand extends
|
|
436
|
+
class GetCustomEndpointCommand extends Command
|
|
434
437
|
.classBuilder()
|
|
435
438
|
.ep(commonParams)
|
|
436
439
|
.m(function (Command, cs, config, o) {
|
|
437
|
-
return [
|
|
440
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
438
441
|
})
|
|
439
442
|
.s("IotManagedIntegrations", "GetCustomEndpoint", {})
|
|
440
443
|
.n("IoTManagedIntegrationsClient", "GetCustomEndpointCommand")
|
|
441
|
-
.sc(
|
|
444
|
+
.sc(GetCustomEndpoint$)
|
|
442
445
|
.build() {
|
|
443
446
|
}
|
|
444
447
|
|
|
445
|
-
class GetDefaultEncryptionConfigurationCommand extends
|
|
448
|
+
class GetDefaultEncryptionConfigurationCommand extends Command
|
|
446
449
|
.classBuilder()
|
|
447
450
|
.ep(commonParams)
|
|
448
451
|
.m(function (Command, cs, config, o) {
|
|
449
|
-
return [
|
|
452
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
450
453
|
})
|
|
451
454
|
.s("IotManagedIntegrations", "GetDefaultEncryptionConfiguration", {})
|
|
452
455
|
.n("IoTManagedIntegrationsClient", "GetDefaultEncryptionConfigurationCommand")
|
|
453
|
-
.sc(
|
|
456
|
+
.sc(GetDefaultEncryptionConfiguration$)
|
|
454
457
|
.build() {
|
|
455
458
|
}
|
|
456
459
|
|
|
457
|
-
class GetDestinationCommand extends
|
|
460
|
+
class GetDestinationCommand extends Command
|
|
458
461
|
.classBuilder()
|
|
459
462
|
.ep(commonParams)
|
|
460
463
|
.m(function (Command, cs, config, o) {
|
|
461
|
-
return [
|
|
464
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
462
465
|
})
|
|
463
466
|
.s("IotManagedIntegrations", "GetDestination", {})
|
|
464
467
|
.n("IoTManagedIntegrationsClient", "GetDestinationCommand")
|
|
465
|
-
.sc(
|
|
468
|
+
.sc(GetDestination$)
|
|
466
469
|
.build() {
|
|
467
470
|
}
|
|
468
471
|
|
|
469
|
-
class GetDeviceDiscoveryCommand extends
|
|
472
|
+
class GetDeviceDiscoveryCommand extends Command
|
|
470
473
|
.classBuilder()
|
|
471
474
|
.ep(commonParams)
|
|
472
475
|
.m(function (Command, cs, config, o) {
|
|
473
|
-
return [
|
|
476
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
474
477
|
})
|
|
475
478
|
.s("IotManagedIntegrations", "GetDeviceDiscovery", {})
|
|
476
479
|
.n("IoTManagedIntegrationsClient", "GetDeviceDiscoveryCommand")
|
|
477
|
-
.sc(
|
|
480
|
+
.sc(GetDeviceDiscovery$)
|
|
478
481
|
.build() {
|
|
479
482
|
}
|
|
480
483
|
|
|
481
|
-
class GetEventLogConfigurationCommand extends
|
|
484
|
+
class GetEventLogConfigurationCommand extends Command
|
|
482
485
|
.classBuilder()
|
|
483
486
|
.ep(commonParams)
|
|
484
487
|
.m(function (Command, cs, config, o) {
|
|
485
|
-
return [
|
|
488
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
486
489
|
})
|
|
487
490
|
.s("IotManagedIntegrations", "GetEventLogConfiguration", {})
|
|
488
491
|
.n("IoTManagedIntegrationsClient", "GetEventLogConfigurationCommand")
|
|
489
|
-
.sc(
|
|
492
|
+
.sc(GetEventLogConfiguration$)
|
|
490
493
|
.build() {
|
|
491
494
|
}
|
|
492
495
|
|
|
493
|
-
class GetHubConfigurationCommand extends
|
|
496
|
+
class GetHubConfigurationCommand extends Command
|
|
494
497
|
.classBuilder()
|
|
495
498
|
.ep(commonParams)
|
|
496
499
|
.m(function (Command, cs, config, o) {
|
|
497
|
-
return [
|
|
500
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
498
501
|
})
|
|
499
502
|
.s("IotManagedIntegrations", "GetHubConfiguration", {})
|
|
500
503
|
.n("IoTManagedIntegrationsClient", "GetHubConfigurationCommand")
|
|
501
|
-
.sc(
|
|
504
|
+
.sc(GetHubConfiguration$)
|
|
502
505
|
.build() {
|
|
503
506
|
}
|
|
504
507
|
|
|
505
|
-
class GetManagedThingCapabilitiesCommand extends
|
|
508
|
+
class GetManagedThingCapabilitiesCommand extends Command
|
|
506
509
|
.classBuilder()
|
|
507
510
|
.ep(commonParams)
|
|
508
511
|
.m(function (Command, cs, config, o) {
|
|
509
|
-
return [
|
|
512
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
510
513
|
})
|
|
511
514
|
.s("IotManagedIntegrations", "GetManagedThingCapabilities", {})
|
|
512
515
|
.n("IoTManagedIntegrationsClient", "GetManagedThingCapabilitiesCommand")
|
|
513
|
-
.sc(
|
|
516
|
+
.sc(GetManagedThingCapabilities$)
|
|
514
517
|
.build() {
|
|
515
518
|
}
|
|
516
519
|
|
|
517
|
-
class GetManagedThingCertificateCommand extends
|
|
520
|
+
class GetManagedThingCertificateCommand extends Command
|
|
518
521
|
.classBuilder()
|
|
519
522
|
.ep(commonParams)
|
|
520
523
|
.m(function (Command, cs, config, o) {
|
|
521
|
-
return [
|
|
524
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
522
525
|
})
|
|
523
526
|
.s("IotManagedIntegrations", "GetManagedThingCertificate", {})
|
|
524
527
|
.n("IoTManagedIntegrationsClient", "GetManagedThingCertificateCommand")
|
|
525
|
-
.sc(
|
|
528
|
+
.sc(GetManagedThingCertificate$)
|
|
526
529
|
.build() {
|
|
527
530
|
}
|
|
528
531
|
|
|
529
|
-
class GetManagedThingCommand extends
|
|
532
|
+
class GetManagedThingCommand extends Command
|
|
530
533
|
.classBuilder()
|
|
531
534
|
.ep(commonParams)
|
|
532
535
|
.m(function (Command, cs, config, o) {
|
|
533
|
-
return [
|
|
536
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
534
537
|
})
|
|
535
538
|
.s("IotManagedIntegrations", "GetManagedThing", {})
|
|
536
539
|
.n("IoTManagedIntegrationsClient", "GetManagedThingCommand")
|
|
537
|
-
.sc(
|
|
540
|
+
.sc(GetManagedThing$)
|
|
538
541
|
.build() {
|
|
539
542
|
}
|
|
540
543
|
|
|
541
|
-
class GetManagedThingConnectivityDataCommand extends
|
|
544
|
+
class GetManagedThingConnectivityDataCommand extends Command
|
|
542
545
|
.classBuilder()
|
|
543
546
|
.ep(commonParams)
|
|
544
547
|
.m(function (Command, cs, config, o) {
|
|
545
|
-
return [
|
|
548
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
546
549
|
})
|
|
547
550
|
.s("IotManagedIntegrations", "GetManagedThingConnectivityData", {})
|
|
548
551
|
.n("IoTManagedIntegrationsClient", "GetManagedThingConnectivityDataCommand")
|
|
549
|
-
.sc(
|
|
552
|
+
.sc(GetManagedThingConnectivityData$)
|
|
550
553
|
.build() {
|
|
551
554
|
}
|
|
552
555
|
|
|
553
|
-
class GetManagedThingMetaDataCommand extends
|
|
556
|
+
class GetManagedThingMetaDataCommand extends Command
|
|
554
557
|
.classBuilder()
|
|
555
558
|
.ep(commonParams)
|
|
556
559
|
.m(function (Command, cs, config, o) {
|
|
557
|
-
return [
|
|
560
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
558
561
|
})
|
|
559
562
|
.s("IotManagedIntegrations", "GetManagedThingMetaData", {})
|
|
560
563
|
.n("IoTManagedIntegrationsClient", "GetManagedThingMetaDataCommand")
|
|
561
|
-
.sc(
|
|
564
|
+
.sc(GetManagedThingMetaData$)
|
|
562
565
|
.build() {
|
|
563
566
|
}
|
|
564
567
|
|
|
565
|
-
class GetManagedThingStateCommand extends
|
|
568
|
+
class GetManagedThingStateCommand extends Command
|
|
566
569
|
.classBuilder()
|
|
567
570
|
.ep(commonParams)
|
|
568
571
|
.m(function (Command, cs, config, o) {
|
|
569
|
-
return [
|
|
572
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
570
573
|
})
|
|
571
574
|
.s("IotManagedIntegrations", "GetManagedThingState", {})
|
|
572
575
|
.n("IoTManagedIntegrationsClient", "GetManagedThingStateCommand")
|
|
573
|
-
.sc(
|
|
576
|
+
.sc(GetManagedThingState$)
|
|
574
577
|
.build() {
|
|
575
578
|
}
|
|
576
579
|
|
|
577
|
-
class GetNotificationConfigurationCommand extends
|
|
580
|
+
class GetNotificationConfigurationCommand extends Command
|
|
578
581
|
.classBuilder()
|
|
579
582
|
.ep(commonParams)
|
|
580
583
|
.m(function (Command, cs, config, o) {
|
|
581
|
-
return [
|
|
584
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
582
585
|
})
|
|
583
586
|
.s("IotManagedIntegrations", "GetNotificationConfiguration", {})
|
|
584
587
|
.n("IoTManagedIntegrationsClient", "GetNotificationConfigurationCommand")
|
|
585
|
-
.sc(
|
|
588
|
+
.sc(GetNotificationConfiguration$)
|
|
586
589
|
.build() {
|
|
587
590
|
}
|
|
588
591
|
|
|
589
|
-
class GetOtaTaskCommand extends
|
|
592
|
+
class GetOtaTaskCommand extends Command
|
|
590
593
|
.classBuilder()
|
|
591
594
|
.ep(commonParams)
|
|
592
595
|
.m(function (Command, cs, config, o) {
|
|
593
|
-
return [
|
|
596
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
594
597
|
})
|
|
595
598
|
.s("IotManagedIntegrations", "GetOtaTask", {})
|
|
596
599
|
.n("IoTManagedIntegrationsClient", "GetOtaTaskCommand")
|
|
597
|
-
.sc(
|
|
600
|
+
.sc(GetOtaTask$)
|
|
598
601
|
.build() {
|
|
599
602
|
}
|
|
600
603
|
|
|
601
|
-
class GetOtaTaskConfigurationCommand extends
|
|
604
|
+
class GetOtaTaskConfigurationCommand extends Command
|
|
602
605
|
.classBuilder()
|
|
603
606
|
.ep(commonParams)
|
|
604
607
|
.m(function (Command, cs, config, o) {
|
|
605
|
-
return [
|
|
608
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
606
609
|
})
|
|
607
610
|
.s("IotManagedIntegrations", "GetOtaTaskConfiguration", {})
|
|
608
611
|
.n("IoTManagedIntegrationsClient", "GetOtaTaskConfigurationCommand")
|
|
609
|
-
.sc(
|
|
612
|
+
.sc(GetOtaTaskConfiguration$)
|
|
610
613
|
.build() {
|
|
611
614
|
}
|
|
612
615
|
|
|
613
|
-
class GetProvisioningProfileCommand extends
|
|
616
|
+
class GetProvisioningProfileCommand extends Command
|
|
614
617
|
.classBuilder()
|
|
615
618
|
.ep(commonParams)
|
|
616
619
|
.m(function (Command, cs, config, o) {
|
|
617
|
-
return [
|
|
620
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
618
621
|
})
|
|
619
622
|
.s("IotManagedIntegrations", "GetProvisioningProfile", {})
|
|
620
623
|
.n("IoTManagedIntegrationsClient", "GetProvisioningProfileCommand")
|
|
621
|
-
.sc(
|
|
624
|
+
.sc(GetProvisioningProfile$)
|
|
622
625
|
.build() {
|
|
623
626
|
}
|
|
624
627
|
|
|
625
|
-
class GetRuntimeLogConfigurationCommand extends
|
|
628
|
+
class GetRuntimeLogConfigurationCommand extends Command
|
|
626
629
|
.classBuilder()
|
|
627
630
|
.ep(commonParams)
|
|
628
631
|
.m(function (Command, cs, config, o) {
|
|
629
|
-
return [
|
|
632
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
630
633
|
})
|
|
631
634
|
.s("IotManagedIntegrations", "GetRuntimeLogConfiguration", {})
|
|
632
635
|
.n("IoTManagedIntegrationsClient", "GetRuntimeLogConfigurationCommand")
|
|
633
|
-
.sc(
|
|
636
|
+
.sc(GetRuntimeLogConfiguration$)
|
|
634
637
|
.build() {
|
|
635
638
|
}
|
|
636
639
|
|
|
637
|
-
class GetSchemaVersionCommand extends
|
|
640
|
+
class GetSchemaVersionCommand extends Command
|
|
638
641
|
.classBuilder()
|
|
639
642
|
.ep(commonParams)
|
|
640
643
|
.m(function (Command, cs, config, o) {
|
|
641
|
-
return [
|
|
644
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
642
645
|
})
|
|
643
646
|
.s("IotManagedIntegrations", "GetSchemaVersion", {})
|
|
644
647
|
.n("IoTManagedIntegrationsClient", "GetSchemaVersionCommand")
|
|
645
|
-
.sc(
|
|
648
|
+
.sc(GetSchemaVersion$)
|
|
646
649
|
.build() {
|
|
647
650
|
}
|
|
648
651
|
|
|
649
|
-
class ListAccountAssociationsCommand extends
|
|
652
|
+
class ListAccountAssociationsCommand extends Command
|
|
650
653
|
.classBuilder()
|
|
651
654
|
.ep(commonParams)
|
|
652
655
|
.m(function (Command, cs, config, o) {
|
|
653
|
-
return [
|
|
656
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
654
657
|
})
|
|
655
658
|
.s("IotManagedIntegrations", "ListAccountAssociations", {})
|
|
656
659
|
.n("IoTManagedIntegrationsClient", "ListAccountAssociationsCommand")
|
|
657
|
-
.sc(
|
|
660
|
+
.sc(ListAccountAssociations$)
|
|
658
661
|
.build() {
|
|
659
662
|
}
|
|
660
663
|
|
|
661
|
-
class ListCloudConnectorsCommand extends
|
|
664
|
+
class ListCloudConnectorsCommand extends Command
|
|
662
665
|
.classBuilder()
|
|
663
666
|
.ep(commonParams)
|
|
664
667
|
.m(function (Command, cs, config, o) {
|
|
665
|
-
return [
|
|
668
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
666
669
|
})
|
|
667
670
|
.s("IotManagedIntegrations", "ListCloudConnectors", {})
|
|
668
671
|
.n("IoTManagedIntegrationsClient", "ListCloudConnectorsCommand")
|
|
669
|
-
.sc(
|
|
672
|
+
.sc(ListCloudConnectors$)
|
|
670
673
|
.build() {
|
|
671
674
|
}
|
|
672
675
|
|
|
673
|
-
class ListConnectorDestinationsCommand extends
|
|
676
|
+
class ListConnectorDestinationsCommand extends Command
|
|
674
677
|
.classBuilder()
|
|
675
678
|
.ep(commonParams)
|
|
676
679
|
.m(function (Command, cs, config, o) {
|
|
677
|
-
return [
|
|
680
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
678
681
|
})
|
|
679
682
|
.s("IotManagedIntegrations", "ListConnectorDestinations", {})
|
|
680
683
|
.n("IoTManagedIntegrationsClient", "ListConnectorDestinationsCommand")
|
|
681
|
-
.sc(
|
|
684
|
+
.sc(ListConnectorDestinations$)
|
|
682
685
|
.build() {
|
|
683
686
|
}
|
|
684
687
|
|
|
685
|
-
class ListCredentialLockersCommand extends
|
|
688
|
+
class ListCredentialLockersCommand extends Command
|
|
686
689
|
.classBuilder()
|
|
687
690
|
.ep(commonParams)
|
|
688
691
|
.m(function (Command, cs, config, o) {
|
|
689
|
-
return [
|
|
692
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
690
693
|
})
|
|
691
694
|
.s("IotManagedIntegrations", "ListCredentialLockers", {})
|
|
692
695
|
.n("IoTManagedIntegrationsClient", "ListCredentialLockersCommand")
|
|
693
|
-
.sc(
|
|
696
|
+
.sc(ListCredentialLockers$)
|
|
694
697
|
.build() {
|
|
695
698
|
}
|
|
696
699
|
|
|
697
|
-
class ListDestinationsCommand extends
|
|
700
|
+
class ListDestinationsCommand extends Command
|
|
698
701
|
.classBuilder()
|
|
699
702
|
.ep(commonParams)
|
|
700
703
|
.m(function (Command, cs, config, o) {
|
|
701
|
-
return [
|
|
704
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
702
705
|
})
|
|
703
706
|
.s("IotManagedIntegrations", "ListDestinations", {})
|
|
704
707
|
.n("IoTManagedIntegrationsClient", "ListDestinationsCommand")
|
|
705
|
-
.sc(
|
|
708
|
+
.sc(ListDestinations$)
|
|
706
709
|
.build() {
|
|
707
710
|
}
|
|
708
711
|
|
|
709
|
-
class ListDeviceDiscoveriesCommand extends
|
|
712
|
+
class ListDeviceDiscoveriesCommand extends Command
|
|
710
713
|
.classBuilder()
|
|
711
714
|
.ep(commonParams)
|
|
712
715
|
.m(function (Command, cs, config, o) {
|
|
713
|
-
return [
|
|
716
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
714
717
|
})
|
|
715
718
|
.s("IotManagedIntegrations", "ListDeviceDiscoveries", {})
|
|
716
719
|
.n("IoTManagedIntegrationsClient", "ListDeviceDiscoveriesCommand")
|
|
717
|
-
.sc(
|
|
720
|
+
.sc(ListDeviceDiscoveries$)
|
|
718
721
|
.build() {
|
|
719
722
|
}
|
|
720
723
|
|
|
721
|
-
class ListDiscoveredDevicesCommand extends
|
|
724
|
+
class ListDiscoveredDevicesCommand extends Command
|
|
722
725
|
.classBuilder()
|
|
723
726
|
.ep(commonParams)
|
|
724
727
|
.m(function (Command, cs, config, o) {
|
|
725
|
-
return [
|
|
728
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
726
729
|
})
|
|
727
730
|
.s("IotManagedIntegrations", "ListDiscoveredDevices", {})
|
|
728
731
|
.n("IoTManagedIntegrationsClient", "ListDiscoveredDevicesCommand")
|
|
729
|
-
.sc(
|
|
732
|
+
.sc(ListDiscoveredDevices$)
|
|
730
733
|
.build() {
|
|
731
734
|
}
|
|
732
735
|
|
|
733
|
-
class ListEventLogConfigurationsCommand extends
|
|
736
|
+
class ListEventLogConfigurationsCommand extends Command
|
|
734
737
|
.classBuilder()
|
|
735
738
|
.ep(commonParams)
|
|
736
739
|
.m(function (Command, cs, config, o) {
|
|
737
|
-
return [
|
|
740
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
738
741
|
})
|
|
739
742
|
.s("IotManagedIntegrations", "ListEventLogConfigurations", {})
|
|
740
743
|
.n("IoTManagedIntegrationsClient", "ListEventLogConfigurationsCommand")
|
|
741
|
-
.sc(
|
|
744
|
+
.sc(ListEventLogConfigurations$)
|
|
742
745
|
.build() {
|
|
743
746
|
}
|
|
744
747
|
|
|
745
|
-
class ListManagedThingAccountAssociationsCommand extends
|
|
748
|
+
class ListManagedThingAccountAssociationsCommand extends Command
|
|
746
749
|
.classBuilder()
|
|
747
750
|
.ep(commonParams)
|
|
748
751
|
.m(function (Command, cs, config, o) {
|
|
749
|
-
return [
|
|
752
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
750
753
|
})
|
|
751
754
|
.s("IotManagedIntegrations", "ListManagedThingAccountAssociations", {})
|
|
752
755
|
.n("IoTManagedIntegrationsClient", "ListManagedThingAccountAssociationsCommand")
|
|
753
|
-
.sc(
|
|
756
|
+
.sc(ListManagedThingAccountAssociations$)
|
|
754
757
|
.build() {
|
|
755
758
|
}
|
|
756
759
|
|
|
757
|
-
class ListManagedThingSchemasCommand extends
|
|
760
|
+
class ListManagedThingSchemasCommand extends Command
|
|
758
761
|
.classBuilder()
|
|
759
762
|
.ep(commonParams)
|
|
760
763
|
.m(function (Command, cs, config, o) {
|
|
761
|
-
return [
|
|
764
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
762
765
|
})
|
|
763
766
|
.s("IotManagedIntegrations", "ListManagedThingSchemas", {})
|
|
764
767
|
.n("IoTManagedIntegrationsClient", "ListManagedThingSchemasCommand")
|
|
765
|
-
.sc(
|
|
768
|
+
.sc(ListManagedThingSchemas$)
|
|
766
769
|
.build() {
|
|
767
770
|
}
|
|
768
771
|
|
|
769
|
-
class ListManagedThingsCommand extends
|
|
772
|
+
class ListManagedThingsCommand extends Command
|
|
770
773
|
.classBuilder()
|
|
771
774
|
.ep(commonParams)
|
|
772
775
|
.m(function (Command, cs, config, o) {
|
|
773
|
-
return [
|
|
776
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
774
777
|
})
|
|
775
778
|
.s("IotManagedIntegrations", "ListManagedThings", {})
|
|
776
779
|
.n("IoTManagedIntegrationsClient", "ListManagedThingsCommand")
|
|
777
|
-
.sc(
|
|
780
|
+
.sc(ListManagedThings$)
|
|
778
781
|
.build() {
|
|
779
782
|
}
|
|
780
783
|
|
|
781
|
-
class ListNotificationConfigurationsCommand extends
|
|
784
|
+
class ListNotificationConfigurationsCommand extends Command
|
|
782
785
|
.classBuilder()
|
|
783
786
|
.ep(commonParams)
|
|
784
787
|
.m(function (Command, cs, config, o) {
|
|
785
|
-
return [
|
|
788
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
786
789
|
})
|
|
787
790
|
.s("IotManagedIntegrations", "ListNotificationConfigurations", {})
|
|
788
791
|
.n("IoTManagedIntegrationsClient", "ListNotificationConfigurationsCommand")
|
|
789
|
-
.sc(
|
|
792
|
+
.sc(ListNotificationConfigurations$)
|
|
790
793
|
.build() {
|
|
791
794
|
}
|
|
792
795
|
|
|
793
|
-
class ListOtaTaskConfigurationsCommand extends
|
|
796
|
+
class ListOtaTaskConfigurationsCommand extends Command
|
|
794
797
|
.classBuilder()
|
|
795
798
|
.ep(commonParams)
|
|
796
799
|
.m(function (Command, cs, config, o) {
|
|
797
|
-
return [
|
|
800
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
798
801
|
})
|
|
799
802
|
.s("IotManagedIntegrations", "ListOtaTaskConfigurations", {})
|
|
800
803
|
.n("IoTManagedIntegrationsClient", "ListOtaTaskConfigurationsCommand")
|
|
801
|
-
.sc(
|
|
804
|
+
.sc(ListOtaTaskConfigurations$)
|
|
802
805
|
.build() {
|
|
803
806
|
}
|
|
804
807
|
|
|
805
|
-
class ListOtaTaskExecutionsCommand extends
|
|
808
|
+
class ListOtaTaskExecutionsCommand extends Command
|
|
806
809
|
.classBuilder()
|
|
807
810
|
.ep(commonParams)
|
|
808
811
|
.m(function (Command, cs, config, o) {
|
|
809
|
-
return [
|
|
812
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
810
813
|
})
|
|
811
814
|
.s("IotManagedIntegrations", "ListOtaTaskExecutions", {})
|
|
812
815
|
.n("IoTManagedIntegrationsClient", "ListOtaTaskExecutionsCommand")
|
|
813
|
-
.sc(
|
|
816
|
+
.sc(ListOtaTaskExecutions$)
|
|
814
817
|
.build() {
|
|
815
818
|
}
|
|
816
819
|
|
|
817
|
-
class ListOtaTasksCommand extends
|
|
820
|
+
class ListOtaTasksCommand extends Command
|
|
818
821
|
.classBuilder()
|
|
819
822
|
.ep(commonParams)
|
|
820
823
|
.m(function (Command, cs, config, o) {
|
|
821
|
-
return [
|
|
824
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
822
825
|
})
|
|
823
826
|
.s("IotManagedIntegrations", "ListOtaTasks", {})
|
|
824
827
|
.n("IoTManagedIntegrationsClient", "ListOtaTasksCommand")
|
|
825
|
-
.sc(
|
|
828
|
+
.sc(ListOtaTasks$)
|
|
826
829
|
.build() {
|
|
827
830
|
}
|
|
828
831
|
|
|
829
|
-
class ListProvisioningProfilesCommand extends
|
|
832
|
+
class ListProvisioningProfilesCommand extends Command
|
|
830
833
|
.classBuilder()
|
|
831
834
|
.ep(commonParams)
|
|
832
835
|
.m(function (Command, cs, config, o) {
|
|
833
|
-
return [
|
|
836
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
834
837
|
})
|
|
835
838
|
.s("IotManagedIntegrations", "ListProvisioningProfiles", {})
|
|
836
839
|
.n("IoTManagedIntegrationsClient", "ListProvisioningProfilesCommand")
|
|
837
|
-
.sc(
|
|
840
|
+
.sc(ListProvisioningProfiles$)
|
|
838
841
|
.build() {
|
|
839
842
|
}
|
|
840
843
|
|
|
841
|
-
class ListSchemaVersionsCommand extends
|
|
844
|
+
class ListSchemaVersionsCommand extends Command
|
|
842
845
|
.classBuilder()
|
|
843
846
|
.ep(commonParams)
|
|
844
847
|
.m(function (Command, cs, config, o) {
|
|
845
|
-
return [
|
|
848
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
846
849
|
})
|
|
847
850
|
.s("IotManagedIntegrations", "ListSchemaVersions", {})
|
|
848
851
|
.n("IoTManagedIntegrationsClient", "ListSchemaVersionsCommand")
|
|
849
|
-
.sc(
|
|
852
|
+
.sc(ListSchemaVersions$)
|
|
850
853
|
.build() {
|
|
851
854
|
}
|
|
852
855
|
|
|
853
|
-
class ListTagsForResourceCommand extends
|
|
856
|
+
class ListTagsForResourceCommand extends Command
|
|
854
857
|
.classBuilder()
|
|
855
858
|
.ep(commonParams)
|
|
856
859
|
.m(function (Command, cs, config, o) {
|
|
857
|
-
return [
|
|
860
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
858
861
|
})
|
|
859
862
|
.s("IotManagedIntegrations", "ListTagsForResource", {})
|
|
860
863
|
.n("IoTManagedIntegrationsClient", "ListTagsForResourceCommand")
|
|
861
|
-
.sc(
|
|
864
|
+
.sc(ListTagsForResource$)
|
|
862
865
|
.build() {
|
|
863
866
|
}
|
|
864
867
|
|
|
865
|
-
class PutDefaultEncryptionConfigurationCommand extends
|
|
868
|
+
class PutDefaultEncryptionConfigurationCommand extends Command
|
|
866
869
|
.classBuilder()
|
|
867
870
|
.ep(commonParams)
|
|
868
871
|
.m(function (Command, cs, config, o) {
|
|
869
|
-
return [
|
|
872
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
870
873
|
})
|
|
871
874
|
.s("IotManagedIntegrations", "PutDefaultEncryptionConfiguration", {})
|
|
872
875
|
.n("IoTManagedIntegrationsClient", "PutDefaultEncryptionConfigurationCommand")
|
|
873
|
-
.sc(
|
|
876
|
+
.sc(PutDefaultEncryptionConfiguration$)
|
|
874
877
|
.build() {
|
|
875
878
|
}
|
|
876
879
|
|
|
877
|
-
class PutHubConfigurationCommand extends
|
|
880
|
+
class PutHubConfigurationCommand extends Command
|
|
878
881
|
.classBuilder()
|
|
879
882
|
.ep(commonParams)
|
|
880
883
|
.m(function (Command, cs, config, o) {
|
|
881
|
-
return [
|
|
884
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
882
885
|
})
|
|
883
886
|
.s("IotManagedIntegrations", "PutHubConfiguration", {})
|
|
884
887
|
.n("IoTManagedIntegrationsClient", "PutHubConfigurationCommand")
|
|
885
|
-
.sc(
|
|
888
|
+
.sc(PutHubConfiguration$)
|
|
886
889
|
.build() {
|
|
887
890
|
}
|
|
888
891
|
|
|
889
|
-
class PutRuntimeLogConfigurationCommand extends
|
|
892
|
+
class PutRuntimeLogConfigurationCommand extends Command
|
|
890
893
|
.classBuilder()
|
|
891
894
|
.ep(commonParams)
|
|
892
895
|
.m(function (Command, cs, config, o) {
|
|
893
|
-
return [
|
|
896
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
894
897
|
})
|
|
895
898
|
.s("IotManagedIntegrations", "PutRuntimeLogConfiguration", {})
|
|
896
899
|
.n("IoTManagedIntegrationsClient", "PutRuntimeLogConfigurationCommand")
|
|
897
|
-
.sc(
|
|
900
|
+
.sc(PutRuntimeLogConfiguration$)
|
|
898
901
|
.build() {
|
|
899
902
|
}
|
|
900
903
|
|
|
901
|
-
class RegisterAccountAssociationCommand extends
|
|
904
|
+
class RegisterAccountAssociationCommand extends Command
|
|
902
905
|
.classBuilder()
|
|
903
906
|
.ep(commonParams)
|
|
904
907
|
.m(function (Command, cs, config, o) {
|
|
905
|
-
return [
|
|
908
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
906
909
|
})
|
|
907
910
|
.s("IotManagedIntegrations", "RegisterAccountAssociation", {})
|
|
908
911
|
.n("IoTManagedIntegrationsClient", "RegisterAccountAssociationCommand")
|
|
909
|
-
.sc(
|
|
912
|
+
.sc(RegisterAccountAssociation$)
|
|
910
913
|
.build() {
|
|
911
914
|
}
|
|
912
915
|
|
|
913
|
-
class RegisterCustomEndpointCommand extends
|
|
916
|
+
class RegisterCustomEndpointCommand extends Command
|
|
914
917
|
.classBuilder()
|
|
915
918
|
.ep(commonParams)
|
|
916
919
|
.m(function (Command, cs, config, o) {
|
|
917
|
-
return [
|
|
920
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
918
921
|
})
|
|
919
922
|
.s("IotManagedIntegrations", "RegisterCustomEndpoint", {})
|
|
920
923
|
.n("IoTManagedIntegrationsClient", "RegisterCustomEndpointCommand")
|
|
921
|
-
.sc(
|
|
924
|
+
.sc(RegisterCustomEndpoint$)
|
|
922
925
|
.build() {
|
|
923
926
|
}
|
|
924
927
|
|
|
925
|
-
class ResetRuntimeLogConfigurationCommand extends
|
|
928
|
+
class ResetRuntimeLogConfigurationCommand extends Command
|
|
926
929
|
.classBuilder()
|
|
927
930
|
.ep(commonParams)
|
|
928
931
|
.m(function (Command, cs, config, o) {
|
|
929
|
-
return [
|
|
932
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
930
933
|
})
|
|
931
934
|
.s("IotManagedIntegrations", "ResetRuntimeLogConfiguration", {})
|
|
932
935
|
.n("IoTManagedIntegrationsClient", "ResetRuntimeLogConfigurationCommand")
|
|
933
|
-
.sc(
|
|
936
|
+
.sc(ResetRuntimeLogConfiguration$)
|
|
934
937
|
.build() {
|
|
935
938
|
}
|
|
936
939
|
|
|
937
|
-
class SendConnectorEventCommand extends
|
|
940
|
+
class SendConnectorEventCommand extends Command
|
|
938
941
|
.classBuilder()
|
|
939
942
|
.ep(commonParams)
|
|
940
943
|
.m(function (Command, cs, config, o) {
|
|
941
|
-
return [
|
|
944
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
942
945
|
})
|
|
943
946
|
.s("IotManagedIntegrations", "SendConnectorEvent", {})
|
|
944
947
|
.n("IoTManagedIntegrationsClient", "SendConnectorEventCommand")
|
|
945
|
-
.sc(
|
|
948
|
+
.sc(SendConnectorEvent$)
|
|
946
949
|
.build() {
|
|
947
950
|
}
|
|
948
951
|
|
|
949
|
-
class SendManagedThingCommandCommand extends
|
|
952
|
+
class SendManagedThingCommandCommand extends Command
|
|
950
953
|
.classBuilder()
|
|
951
954
|
.ep(commonParams)
|
|
952
955
|
.m(function (Command, cs, config, o) {
|
|
953
|
-
return [
|
|
956
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
954
957
|
})
|
|
955
958
|
.s("IotManagedIntegrations", "SendManagedThingCommand", {})
|
|
956
959
|
.n("IoTManagedIntegrationsClient", "SendManagedThingCommandCommand")
|
|
957
|
-
.sc(
|
|
960
|
+
.sc(SendManagedThingCommand$)
|
|
958
961
|
.build() {
|
|
959
962
|
}
|
|
960
963
|
|
|
961
|
-
class StartAccountAssociationRefreshCommand extends
|
|
964
|
+
class StartAccountAssociationRefreshCommand extends Command
|
|
962
965
|
.classBuilder()
|
|
963
966
|
.ep(commonParams)
|
|
964
967
|
.m(function (Command, cs, config, o) {
|
|
965
|
-
return [
|
|
968
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
966
969
|
})
|
|
967
970
|
.s("IotManagedIntegrations", "StartAccountAssociationRefresh", {})
|
|
968
971
|
.n("IoTManagedIntegrationsClient", "StartAccountAssociationRefreshCommand")
|
|
969
|
-
.sc(
|
|
972
|
+
.sc(StartAccountAssociationRefresh$)
|
|
970
973
|
.build() {
|
|
971
974
|
}
|
|
972
975
|
|
|
973
|
-
class StartDeviceDiscoveryCommand extends
|
|
976
|
+
class StartDeviceDiscoveryCommand extends Command
|
|
974
977
|
.classBuilder()
|
|
975
978
|
.ep(commonParams)
|
|
976
979
|
.m(function (Command, cs, config, o) {
|
|
977
|
-
return [
|
|
980
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
978
981
|
})
|
|
979
982
|
.s("IotManagedIntegrations", "StartDeviceDiscovery", {})
|
|
980
983
|
.n("IoTManagedIntegrationsClient", "StartDeviceDiscoveryCommand")
|
|
981
|
-
.sc(
|
|
984
|
+
.sc(StartDeviceDiscovery$)
|
|
982
985
|
.build() {
|
|
983
986
|
}
|
|
984
987
|
|
|
985
|
-
class TagResourceCommand extends
|
|
988
|
+
class TagResourceCommand extends Command
|
|
986
989
|
.classBuilder()
|
|
987
990
|
.ep(commonParams)
|
|
988
991
|
.m(function (Command, cs, config, o) {
|
|
989
|
-
return [
|
|
992
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
990
993
|
})
|
|
991
994
|
.s("IotManagedIntegrations", "TagResource", {})
|
|
992
995
|
.n("IoTManagedIntegrationsClient", "TagResourceCommand")
|
|
993
|
-
.sc(
|
|
996
|
+
.sc(TagResource$)
|
|
994
997
|
.build() {
|
|
995
998
|
}
|
|
996
999
|
|
|
997
|
-
class UntagResourceCommand extends
|
|
1000
|
+
class UntagResourceCommand extends Command
|
|
998
1001
|
.classBuilder()
|
|
999
1002
|
.ep(commonParams)
|
|
1000
1003
|
.m(function (Command, cs, config, o) {
|
|
1001
|
-
return [
|
|
1004
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1002
1005
|
})
|
|
1003
1006
|
.s("IotManagedIntegrations", "UntagResource", {})
|
|
1004
1007
|
.n("IoTManagedIntegrationsClient", "UntagResourceCommand")
|
|
1005
|
-
.sc(
|
|
1008
|
+
.sc(UntagResource$)
|
|
1006
1009
|
.build() {
|
|
1007
1010
|
}
|
|
1008
1011
|
|
|
1009
|
-
class UpdateAccountAssociationCommand extends
|
|
1012
|
+
class UpdateAccountAssociationCommand extends Command
|
|
1010
1013
|
.classBuilder()
|
|
1011
1014
|
.ep(commonParams)
|
|
1012
1015
|
.m(function (Command, cs, config, o) {
|
|
1013
|
-
return [
|
|
1016
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1014
1017
|
})
|
|
1015
1018
|
.s("IotManagedIntegrations", "UpdateAccountAssociation", {})
|
|
1016
1019
|
.n("IoTManagedIntegrationsClient", "UpdateAccountAssociationCommand")
|
|
1017
|
-
.sc(
|
|
1020
|
+
.sc(UpdateAccountAssociation$)
|
|
1018
1021
|
.build() {
|
|
1019
1022
|
}
|
|
1020
1023
|
|
|
1021
|
-
class UpdateCloudConnectorCommand extends
|
|
1024
|
+
class UpdateCloudConnectorCommand extends Command
|
|
1022
1025
|
.classBuilder()
|
|
1023
1026
|
.ep(commonParams)
|
|
1024
1027
|
.m(function (Command, cs, config, o) {
|
|
1025
|
-
return [
|
|
1028
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1026
1029
|
})
|
|
1027
1030
|
.s("IotManagedIntegrations", "UpdateCloudConnector", {})
|
|
1028
1031
|
.n("IoTManagedIntegrationsClient", "UpdateCloudConnectorCommand")
|
|
1029
|
-
.sc(
|
|
1032
|
+
.sc(UpdateCloudConnector$)
|
|
1030
1033
|
.build() {
|
|
1031
1034
|
}
|
|
1032
1035
|
|
|
1033
|
-
class UpdateConnectorDestinationCommand extends
|
|
1036
|
+
class UpdateConnectorDestinationCommand extends Command
|
|
1034
1037
|
.classBuilder()
|
|
1035
1038
|
.ep(commonParams)
|
|
1036
1039
|
.m(function (Command, cs, config, o) {
|
|
1037
|
-
return [
|
|
1040
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1038
1041
|
})
|
|
1039
1042
|
.s("IotManagedIntegrations", "UpdateConnectorDestination", {})
|
|
1040
1043
|
.n("IoTManagedIntegrationsClient", "UpdateConnectorDestinationCommand")
|
|
1041
|
-
.sc(
|
|
1044
|
+
.sc(UpdateConnectorDestination$)
|
|
1042
1045
|
.build() {
|
|
1043
1046
|
}
|
|
1044
1047
|
|
|
1045
|
-
class UpdateDestinationCommand extends
|
|
1048
|
+
class UpdateDestinationCommand extends Command
|
|
1046
1049
|
.classBuilder()
|
|
1047
1050
|
.ep(commonParams)
|
|
1048
1051
|
.m(function (Command, cs, config, o) {
|
|
1049
|
-
return [
|
|
1052
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1050
1053
|
})
|
|
1051
1054
|
.s("IotManagedIntegrations", "UpdateDestination", {})
|
|
1052
1055
|
.n("IoTManagedIntegrationsClient", "UpdateDestinationCommand")
|
|
1053
|
-
.sc(
|
|
1056
|
+
.sc(UpdateDestination$)
|
|
1054
1057
|
.build() {
|
|
1055
1058
|
}
|
|
1056
1059
|
|
|
1057
|
-
class UpdateEventLogConfigurationCommand extends
|
|
1060
|
+
class UpdateEventLogConfigurationCommand extends Command
|
|
1058
1061
|
.classBuilder()
|
|
1059
1062
|
.ep(commonParams)
|
|
1060
1063
|
.m(function (Command, cs, config, o) {
|
|
1061
|
-
return [
|
|
1064
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1062
1065
|
})
|
|
1063
1066
|
.s("IotManagedIntegrations", "UpdateEventLogConfiguration", {})
|
|
1064
1067
|
.n("IoTManagedIntegrationsClient", "UpdateEventLogConfigurationCommand")
|
|
1065
|
-
.sc(
|
|
1068
|
+
.sc(UpdateEventLogConfiguration$)
|
|
1066
1069
|
.build() {
|
|
1067
1070
|
}
|
|
1068
1071
|
|
|
1069
|
-
class UpdateManagedThingCommand extends
|
|
1072
|
+
class UpdateManagedThingCommand extends Command
|
|
1070
1073
|
.classBuilder()
|
|
1071
1074
|
.ep(commonParams)
|
|
1072
1075
|
.m(function (Command, cs, config, o) {
|
|
1073
|
-
return [
|
|
1076
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1074
1077
|
})
|
|
1075
1078
|
.s("IotManagedIntegrations", "UpdateManagedThing", {})
|
|
1076
1079
|
.n("IoTManagedIntegrationsClient", "UpdateManagedThingCommand")
|
|
1077
|
-
.sc(
|
|
1080
|
+
.sc(UpdateManagedThing$)
|
|
1078
1081
|
.build() {
|
|
1079
1082
|
}
|
|
1080
1083
|
|
|
1081
|
-
class UpdateNotificationConfigurationCommand extends
|
|
1084
|
+
class UpdateNotificationConfigurationCommand extends Command
|
|
1082
1085
|
.classBuilder()
|
|
1083
1086
|
.ep(commonParams)
|
|
1084
1087
|
.m(function (Command, cs, config, o) {
|
|
1085
|
-
return [
|
|
1088
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1086
1089
|
})
|
|
1087
1090
|
.s("IotManagedIntegrations", "UpdateNotificationConfiguration", {})
|
|
1088
1091
|
.n("IoTManagedIntegrationsClient", "UpdateNotificationConfigurationCommand")
|
|
1089
|
-
.sc(
|
|
1092
|
+
.sc(UpdateNotificationConfiguration$)
|
|
1090
1093
|
.build() {
|
|
1091
1094
|
}
|
|
1092
1095
|
|
|
1093
|
-
class UpdateOtaTaskCommand extends
|
|
1096
|
+
class UpdateOtaTaskCommand extends Command
|
|
1094
1097
|
.classBuilder()
|
|
1095
1098
|
.ep(commonParams)
|
|
1096
1099
|
.m(function (Command, cs, config, o) {
|
|
1097
|
-
return [
|
|
1100
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1098
1101
|
})
|
|
1099
1102
|
.s("IotManagedIntegrations", "UpdateOtaTask", {})
|
|
1100
1103
|
.n("IoTManagedIntegrationsClient", "UpdateOtaTaskCommand")
|
|
1101
|
-
.sc(
|
|
1104
|
+
.sc(UpdateOtaTask$)
|
|
1102
1105
|
.build() {
|
|
1103
1106
|
}
|
|
1104
1107
|
|
|
1105
|
-
const paginateListAccountAssociations =
|
|
1108
|
+
const paginateListAccountAssociations = createPaginator(IoTManagedIntegrationsClient, ListAccountAssociationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1106
1109
|
|
|
1107
|
-
const paginateListCloudConnectors =
|
|
1110
|
+
const paginateListCloudConnectors = createPaginator(IoTManagedIntegrationsClient, ListCloudConnectorsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1108
1111
|
|
|
1109
|
-
const paginateListConnectorDestinations =
|
|
1112
|
+
const paginateListConnectorDestinations = createPaginator(IoTManagedIntegrationsClient, ListConnectorDestinationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1110
1113
|
|
|
1111
|
-
const paginateListCredentialLockers =
|
|
1114
|
+
const paginateListCredentialLockers = createPaginator(IoTManagedIntegrationsClient, ListCredentialLockersCommand, "NextToken", "NextToken", "MaxResults");
|
|
1112
1115
|
|
|
1113
|
-
const paginateListDestinations =
|
|
1116
|
+
const paginateListDestinations = createPaginator(IoTManagedIntegrationsClient, ListDestinationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1114
1117
|
|
|
1115
|
-
const paginateListDeviceDiscoveries =
|
|
1118
|
+
const paginateListDeviceDiscoveries = createPaginator(IoTManagedIntegrationsClient, ListDeviceDiscoveriesCommand, "NextToken", "NextToken", "MaxResults");
|
|
1116
1119
|
|
|
1117
|
-
const paginateListDiscoveredDevices =
|
|
1120
|
+
const paginateListDiscoveredDevices = createPaginator(IoTManagedIntegrationsClient, ListDiscoveredDevicesCommand, "NextToken", "NextToken", "MaxResults");
|
|
1118
1121
|
|
|
1119
|
-
const paginateListEventLogConfigurations =
|
|
1122
|
+
const paginateListEventLogConfigurations = createPaginator(IoTManagedIntegrationsClient, ListEventLogConfigurationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1120
1123
|
|
|
1121
|
-
const paginateListManagedThingAccountAssociations =
|
|
1124
|
+
const paginateListManagedThingAccountAssociations = createPaginator(IoTManagedIntegrationsClient, ListManagedThingAccountAssociationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1122
1125
|
|
|
1123
|
-
const paginateListManagedThingSchemas =
|
|
1126
|
+
const paginateListManagedThingSchemas = createPaginator(IoTManagedIntegrationsClient, ListManagedThingSchemasCommand, "NextToken", "NextToken", "MaxResults");
|
|
1124
1127
|
|
|
1125
|
-
const paginateListManagedThings =
|
|
1128
|
+
const paginateListManagedThings = createPaginator(IoTManagedIntegrationsClient, ListManagedThingsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1126
1129
|
|
|
1127
|
-
const paginateListNotificationConfigurations =
|
|
1130
|
+
const paginateListNotificationConfigurations = createPaginator(IoTManagedIntegrationsClient, ListNotificationConfigurationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1128
1131
|
|
|
1129
|
-
const paginateListOtaTaskConfigurations =
|
|
1132
|
+
const paginateListOtaTaskConfigurations = createPaginator(IoTManagedIntegrationsClient, ListOtaTaskConfigurationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1130
1133
|
|
|
1131
|
-
const paginateListOtaTaskExecutions =
|
|
1134
|
+
const paginateListOtaTaskExecutions = createPaginator(IoTManagedIntegrationsClient, ListOtaTaskExecutionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1132
1135
|
|
|
1133
|
-
const paginateListOtaTasks =
|
|
1136
|
+
const paginateListOtaTasks = createPaginator(IoTManagedIntegrationsClient, ListOtaTasksCommand, "NextToken", "NextToken", "MaxResults");
|
|
1134
1137
|
|
|
1135
|
-
const paginateListProvisioningProfiles =
|
|
1138
|
+
const paginateListProvisioningProfiles = createPaginator(IoTManagedIntegrationsClient, ListProvisioningProfilesCommand, "NextToken", "NextToken", "MaxResults");
|
|
1136
1139
|
|
|
1137
|
-
const paginateListSchemaVersions =
|
|
1140
|
+
const paginateListSchemaVersions = createPaginator(IoTManagedIntegrationsClient, ListSchemaVersionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1138
1141
|
|
|
1139
1142
|
const commands = {
|
|
1140
1143
|
CreateAccountAssociationCommand,
|
|
@@ -1242,7 +1245,7 @@ const paginators = {
|
|
|
1242
1245
|
};
|
|
1243
1246
|
class IoTManagedIntegrations extends IoTManagedIntegrationsClient {
|
|
1244
1247
|
}
|
|
1245
|
-
|
|
1248
|
+
createAggregatedClient(commands, IoTManagedIntegrations, { paginators });
|
|
1246
1249
|
|
|
1247
1250
|
const AbortCriteriaAction = {
|
|
1248
1251
|
CANCEL: "CANCEL",
|
|
@@ -1445,9 +1448,6 @@ const OtaTaskExecutionStatus = {
|
|
|
1445
1448
|
TIMED_OUT: "TIMED_OUT",
|
|
1446
1449
|
};
|
|
1447
1450
|
|
|
1448
|
-
exports.$Command = client.Command;
|
|
1449
|
-
exports.__Client = client.Client;
|
|
1450
|
-
exports.IoTManagedIntegrationsServiceException = IoTManagedIntegrationsServiceException.IoTManagedIntegrationsServiceException;
|
|
1451
1451
|
exports.AbortCriteriaAction = AbortCriteriaAction;
|
|
1452
1452
|
exports.AbortCriteriaFailureType = AbortCriteriaFailureType;
|
|
1453
1453
|
exports.AssociationState = AssociationState;
|
|
@@ -1586,23 +1586,3 @@ exports.paginateListOtaTaskExecutions = paginateListOtaTaskExecutions;
|
|
|
1586
1586
|
exports.paginateListOtaTasks = paginateListOtaTasks;
|
|
1587
1587
|
exports.paginateListProvisioningProfiles = paginateListProvisioningProfiles;
|
|
1588
1588
|
exports.paginateListSchemaVersions = paginateListSchemaVersions;
|
|
1589
|
-
Object.prototype.hasOwnProperty.call(schemas_0, '__proto__') &&
|
|
1590
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
1591
|
-
Object.defineProperty(exports, '__proto__', {
|
|
1592
|
-
enumerable: true,
|
|
1593
|
-
value: schemas_0['__proto__']
|
|
1594
|
-
});
|
|
1595
|
-
|
|
1596
|
-
Object.keys(schemas_0).forEach(function (k) {
|
|
1597
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = schemas_0[k];
|
|
1598
|
-
});
|
|
1599
|
-
Object.prototype.hasOwnProperty.call(errors, '__proto__') &&
|
|
1600
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
1601
|
-
Object.defineProperty(exports, '__proto__', {
|
|
1602
|
-
enumerable: true,
|
|
1603
|
-
value: errors['__proto__']
|
|
1604
|
-
});
|
|
1605
|
-
|
|
1606
|
-
Object.keys(errors).forEach(function (k) {
|
|
1607
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = errors[k];
|
|
1608
|
-
});
|