@@ -108,6 +108,11 @@ import {
108
108
CreateCertificateProviderCommandInput ,
109
109
CreateCertificateProviderCommandOutput ,
110
110
} from "./commands/CreateCertificateProviderCommand" ;
111
+ import {
112
+ CreateCommandCommand ,
113
+ CreateCommandCommandInput ,
114
+ CreateCommandCommandOutput ,
115
+ } from "./commands/CreateCommandCommand" ;
111
116
import {
112
117
CreateCustomMetricCommand ,
113
118
CreateCustomMetricCommandInput ,
@@ -265,6 +270,16 @@ import {
265
270
DeleteCertificateProviderCommandInput ,
266
271
DeleteCertificateProviderCommandOutput ,
267
272
} from "./commands/DeleteCertificateProviderCommand" ;
273
+ import {
274
+ DeleteCommandCommand ,
275
+ DeleteCommandCommandInput ,
276
+ DeleteCommandCommandOutput ,
277
+ } from "./commands/DeleteCommandCommand" ;
278
+ import {
279
+ DeleteCommandExecutionCommand ,
280
+ DeleteCommandExecutionCommandInput ,
281
+ DeleteCommandExecutionCommandOutput ,
282
+ } from "./commands/DeleteCommandExecutionCommand" ;
268
283
import {
269
284
DeleteCustomMetricCommand ,
270
285
DeleteCustomMetricCommandInput ,
@@ -613,6 +628,12 @@ import {
613
628
GetCardinalityCommandInput ,
614
629
GetCardinalityCommandOutput ,
615
630
} from "./commands/GetCardinalityCommand" ;
631
+ import { GetCommandCommand , GetCommandCommandInput , GetCommandCommandOutput } from "./commands/GetCommandCommand" ;
632
+ import {
633
+ GetCommandExecutionCommand ,
634
+ GetCommandExecutionCommandInput ,
635
+ GetCommandExecutionCommandOutput ,
636
+ } from "./commands/GetCommandExecutionCommand" ;
616
637
import {
617
638
GetEffectivePoliciesCommand ,
618
639
GetEffectivePoliciesCommandInput ,
@@ -750,6 +771,16 @@ import {
750
771
ListCertificatesCommandInput ,
751
772
ListCertificatesCommandOutput ,
752
773
} from "./commands/ListCertificatesCommand" ;
774
+ import {
775
+ ListCommandExecutionsCommand ,
776
+ ListCommandExecutionsCommandInput ,
777
+ ListCommandExecutionsCommandOutput ,
778
+ } from "./commands/ListCommandExecutionsCommand" ;
779
+ import {
780
+ ListCommandsCommand ,
781
+ ListCommandsCommandInput ,
782
+ ListCommandsCommandOutput ,
783
+ } from "./commands/ListCommandsCommand" ;
753
784
import {
754
785
ListCustomMetricsCommand ,
755
786
ListCustomMetricsCommandInput ,
@@ -1136,6 +1167,11 @@ import {
1136
1167
UpdateCertificateProviderCommandInput ,
1137
1168
UpdateCertificateProviderCommandOutput ,
1138
1169
} from "./commands/UpdateCertificateProviderCommand" ;
1170
+ import {
1171
+ UpdateCommandCommand ,
1172
+ UpdateCommandCommandInput ,
1173
+ UpdateCommandCommandOutput ,
1174
+ } from "./commands/UpdateCommandCommand" ;
1139
1175
import {
1140
1176
UpdateCustomMetricCommand ,
1141
1177
UpdateCustomMetricCommandInput ,
@@ -1268,6 +1304,7 @@ const commands = {
1268
1304
CreateBillingGroupCommand,
1269
1305
CreateCertificateFromCsrCommand,
1270
1306
CreateCertificateProviderCommand,
1307
+ CreateCommandCommand,
1271
1308
CreateCustomMetricCommand,
1272
1309
CreateDimensionCommand,
1273
1310
CreateDomainConfigurationCommand,
@@ -1301,6 +1338,8 @@ const commands = {
1301
1338
DeleteCACertificateCommand,
1302
1339
DeleteCertificateCommand,
1303
1340
DeleteCertificateProviderCommand,
1341
+ DeleteCommandCommand,
1342
+ DeleteCommandExecutionCommand,
1304
1343
DeleteCustomMetricCommand,
1305
1344
DeleteDimensionCommand,
1306
1345
DeleteDomainConfigurationCommand,
@@ -1373,6 +1412,8 @@ const commands = {
1373
1412
GetBehaviorModelTrainingSummariesCommand,
1374
1413
GetBucketsAggregationCommand,
1375
1414
GetCardinalityCommand,
1415
+ GetCommandCommand,
1416
+ GetCommandExecutionCommand,
1376
1417
GetEffectivePoliciesCommand,
1377
1418
GetIndexingConfigurationCommand,
1378
1419
GetJobDocumentCommand,
@@ -1402,6 +1443,8 @@ const commands = {
1402
1443
ListCertificateProvidersCommand,
1403
1444
ListCertificatesCommand,
1404
1445
ListCertificatesByCACommand,
1446
+ ListCommandExecutionsCommand,
1447
+ ListCommandsCommand,
1405
1448
ListCustomMetricsCommand,
1406
1449
ListDetectMitigationActionsExecutionsCommand,
1407
1450
ListDetectMitigationActionsTasksCommand,
@@ -1484,6 +1527,7 @@ const commands = {
1484
1527
UpdateCACertificateCommand,
1485
1528
UpdateCertificateCommand,
1486
1529
UpdateCertificateProviderCommand,
1530
+ UpdateCommandCommand,
1487
1531
UpdateCustomMetricCommand,
1488
1532
UpdateDimensionCommand,
1489
1533
UpdateDomainConfigurationCommand,
@@ -1872,6 +1916,17 @@ export interface IoT {
1872
1916
cb : ( err : any , data ?: CreateCertificateProviderCommandOutput ) => void
1873
1917
) : void ;
1874
1918
1919
+ /**
1920
+ * @see {@link CreateCommandCommand }
1921
+ */
1922
+ createCommand ( args : CreateCommandCommandInput , options ?: __HttpHandlerOptions ) : Promise < CreateCommandCommandOutput > ;
1923
+ createCommand ( args : CreateCommandCommandInput , cb : ( err : any , data ?: CreateCommandCommandOutput ) => void ) : void ;
1924
+ createCommand (
1925
+ args : CreateCommandCommandInput ,
1926
+ options : __HttpHandlerOptions ,
1927
+ cb : ( err : any , data ?: CreateCommandCommandOutput ) => void
1928
+ ) : void ;
1929
+
1875
1930
/**
1876
1931
* @see {@link CreateCustomMetricCommand }
1877
1932
*/
@@ -2390,6 +2445,34 @@ export interface IoT {
2390
2445
cb : ( err : any , data ?: DeleteCertificateProviderCommandOutput ) => void
2391
2446
) : void ;
2392
2447
2448
+ /**
2449
+ * @see {@link DeleteCommandCommand }
2450
+ */
2451
+ deleteCommand ( args : DeleteCommandCommandInput , options ?: __HttpHandlerOptions ) : Promise < DeleteCommandCommandOutput > ;
2452
+ deleteCommand ( args : DeleteCommandCommandInput , cb : ( err : any , data ?: DeleteCommandCommandOutput ) => void ) : void ;
2453
+ deleteCommand (
2454
+ args : DeleteCommandCommandInput ,
2455
+ options : __HttpHandlerOptions ,
2456
+ cb : ( err : any , data ?: DeleteCommandCommandOutput ) => void
2457
+ ) : void ;
2458
+
2459
+ /**
2460
+ * @see {@link DeleteCommandExecutionCommand }
2461
+ */
2462
+ deleteCommandExecution (
2463
+ args : DeleteCommandExecutionCommandInput ,
2464
+ options ?: __HttpHandlerOptions
2465
+ ) : Promise < DeleteCommandExecutionCommandOutput > ;
2466
+ deleteCommandExecution (
2467
+ args : DeleteCommandExecutionCommandInput ,
2468
+ cb : ( err : any , data ?: DeleteCommandExecutionCommandOutput ) => void
2469
+ ) : void ;
2470
+ deleteCommandExecution (
2471
+ args : DeleteCommandExecutionCommandInput ,
2472
+ options : __HttpHandlerOptions ,
2473
+ cb : ( err : any , data ?: DeleteCommandExecutionCommandOutput ) => void
2474
+ ) : void ;
2475
+
2393
2476
/**
2394
2477
* @see {@link DeleteCustomMetricCommand }
2395
2478
*/
@@ -3542,6 +3625,34 @@ export interface IoT {
3542
3625
cb : ( err : any , data ?: GetCardinalityCommandOutput ) => void
3543
3626
) : void ;
3544
3627
3628
+ /**
3629
+ * @see {@link GetCommandCommand }
3630
+ */
3631
+ getCommand ( args : GetCommandCommandInput , options ?: __HttpHandlerOptions ) : Promise < GetCommandCommandOutput > ;
3632
+ getCommand ( args : GetCommandCommandInput , cb : ( err : any , data ?: GetCommandCommandOutput ) => void ) : void ;
3633
+ getCommand (
3634
+ args : GetCommandCommandInput ,
3635
+ options : __HttpHandlerOptions ,
3636
+ cb : ( err : any , data ?: GetCommandCommandOutput ) => void
3637
+ ) : void ;
3638
+
3639
+ /**
3640
+ * @see {@link GetCommandExecutionCommand }
3641
+ */
3642
+ getCommandExecution (
3643
+ args : GetCommandExecutionCommandInput ,
3644
+ options ?: __HttpHandlerOptions
3645
+ ) : Promise < GetCommandExecutionCommandOutput > ;
3646
+ getCommandExecution (
3647
+ args : GetCommandExecutionCommandInput ,
3648
+ cb : ( err : any , data ?: GetCommandExecutionCommandOutput ) => void
3649
+ ) : void ;
3650
+ getCommandExecution (
3651
+ args : GetCommandExecutionCommandInput ,
3652
+ options : __HttpHandlerOptions ,
3653
+ cb : ( err : any , data ?: GetCommandExecutionCommandOutput ) => void
3654
+ ) : void ;
3655
+
3545
3656
/**
3546
3657
* @see {@link GetEffectivePoliciesCommand }
3547
3658
*/
@@ -4007,6 +4118,36 @@ export interface IoT {
4007
4118
cb : ( err : any , data ?: ListCertificatesByCACommandOutput ) => void
4008
4119
) : void ;
4009
4120
4121
+ /**
4122
+ * @see {@link ListCommandExecutionsCommand }
4123
+ */
4124
+ listCommandExecutions ( ) : Promise < ListCommandExecutionsCommandOutput > ;
4125
+ listCommandExecutions (
4126
+ args : ListCommandExecutionsCommandInput ,
4127
+ options ?: __HttpHandlerOptions
4128
+ ) : Promise < ListCommandExecutionsCommandOutput > ;
4129
+ listCommandExecutions (
4130
+ args : ListCommandExecutionsCommandInput ,
4131
+ cb : ( err : any , data ?: ListCommandExecutionsCommandOutput ) => void
4132
+ ) : void ;
4133
+ listCommandExecutions (
4134
+ args : ListCommandExecutionsCommandInput ,
4135
+ options : __HttpHandlerOptions ,
4136
+ cb : ( err : any , data ?: ListCommandExecutionsCommandOutput ) => void
4137
+ ) : void ;
4138
+
4139
+ /**
4140
+ * @see {@link ListCommandsCommand }
4141
+ */
4142
+ listCommands ( ) : Promise < ListCommandsCommandOutput > ;
4143
+ listCommands ( args : ListCommandsCommandInput , options ?: __HttpHandlerOptions ) : Promise < ListCommandsCommandOutput > ;
4144
+ listCommands ( args : ListCommandsCommandInput , cb : ( err : any , data ?: ListCommandsCommandOutput ) => void ) : void ;
4145
+ listCommands (
4146
+ args : ListCommandsCommandInput ,
4147
+ options : __HttpHandlerOptions ,
4148
+ cb : ( err : any , data ?: ListCommandsCommandOutput ) => void
4149
+ ) : void ;
4150
+
4010
4151
/**
4011
4152
* @see {@link ListCustomMetricsCommand }
4012
4153
*/
@@ -5353,6 +5494,17 @@ export interface IoT {
5353
5494
cb : ( err : any , data ?: UpdateCertificateProviderCommandOutput ) => void
5354
5495
) : void ;
5355
5496
5497
+ /**
5498
+ * @see {@link UpdateCommandCommand }
5499
+ */
5500
+ updateCommand ( args : UpdateCommandCommandInput , options ?: __HttpHandlerOptions ) : Promise < UpdateCommandCommandOutput > ;
5501
+ updateCommand ( args : UpdateCommandCommandInput , cb : ( err : any , data ?: UpdateCommandCommandOutput ) => void ) : void ;
5502
+ updateCommand (
5503
+ args : UpdateCommandCommandInput ,
5504
+ options : __HttpHandlerOptions ,
5505
+ cb : ( err : any , data ?: UpdateCommandCommandOutput ) => void
5506
+ ) : void ;
5507
+
5356
5508
/**
5357
5509
* @see {@link UpdateCustomMetricCommand }
5358
5510
*/
0 commit comments