@@ -857,6 +857,11 @@ import {
857
857
ListPrincipalThingsCommandInput ,
858
858
ListPrincipalThingsCommandOutput ,
859
859
} from "./commands/ListPrincipalThingsCommand" ;
860
+ import {
861
+ ListPrincipalThingsV2Command ,
862
+ ListPrincipalThingsV2CommandInput ,
863
+ ListPrincipalThingsV2CommandOutput ,
864
+ } from "./commands/ListPrincipalThingsV2Command" ;
860
865
import {
861
866
ListProvisioningTemplatesCommand ,
862
867
ListProvisioningTemplatesCommandInput ,
@@ -928,6 +933,11 @@ import {
928
933
ListThingPrincipalsCommandInput ,
929
934
ListThingPrincipalsCommandOutput ,
930
935
} from "./commands/ListThingPrincipalsCommand" ;
936
+ import {
937
+ ListThingPrincipalsV2Command ,
938
+ ListThingPrincipalsV2CommandInput ,
939
+ ListThingPrincipalsV2CommandOutput ,
940
+ } from "./commands/ListThingPrincipalsV2Command" ;
931
941
import {
932
942
ListThingRegistrationTaskReportsCommand ,
933
943
ListThingRegistrationTaskReportsCommandInput ,
@@ -1218,6 +1228,11 @@ import {
1218
1228
UpdateThingGroupsForThingCommandInput ,
1219
1229
UpdateThingGroupsForThingCommandOutput ,
1220
1230
} from "./commands/UpdateThingGroupsForThingCommand" ;
1231
+ import {
1232
+ UpdateThingTypeCommand ,
1233
+ UpdateThingTypeCommandInput ,
1234
+ UpdateThingTypeCommandOutput ,
1235
+ } from "./commands/UpdateThingTypeCommand" ;
1221
1236
import {
1222
1237
UpdateTopicRuleDestinationCommand ,
1223
1238
UpdateTopicRuleDestinationCommandInput ,
@@ -1410,6 +1425,7 @@ const commands = {
1410
1425
ListPolicyVersionsCommand,
1411
1426
ListPrincipalPoliciesCommand,
1412
1427
ListPrincipalThingsCommand,
1428
+ ListPrincipalThingsV2Command,
1413
1429
ListProvisioningTemplatesCommand,
1414
1430
ListProvisioningTemplateVersionsCommand,
1415
1431
ListRelatedResourcesForAuditFindingCommand,
@@ -1425,6 +1441,7 @@ const commands = {
1425
1441
ListThingGroupsCommand,
1426
1442
ListThingGroupsForThingCommand,
1427
1443
ListThingPrincipalsCommand,
1444
+ ListThingPrincipalsV2Command,
1428
1445
ListThingRegistrationTaskReportsCommand,
1429
1446
ListThingRegistrationTasksCommand,
1430
1447
ListThingsCommand,
@@ -1487,6 +1504,7 @@ const commands = {
1487
1504
UpdateThingCommand,
1488
1505
UpdateThingGroupCommand,
1489
1506
UpdateThingGroupsForThingCommand,
1507
+ UpdateThingTypeCommand,
1490
1508
UpdateTopicRuleDestinationCommand,
1491
1509
ValidateSecurityProfileBehaviorsCommand,
1492
1510
} ;
@@ -4364,6 +4382,23 @@ export interface IoT {
4364
4382
cb : ( err : any , data ?: ListPrincipalThingsCommandOutput ) => void
4365
4383
) : void ;
4366
4384
4385
+ /**
4386
+ * @see {@link ListPrincipalThingsV2Command }
4387
+ */
4388
+ listPrincipalThingsV2 (
4389
+ args : ListPrincipalThingsV2CommandInput ,
4390
+ options ?: __HttpHandlerOptions
4391
+ ) : Promise < ListPrincipalThingsV2CommandOutput > ;
4392
+ listPrincipalThingsV2 (
4393
+ args : ListPrincipalThingsV2CommandInput ,
4394
+ cb : ( err : any , data ?: ListPrincipalThingsV2CommandOutput ) => void
4395
+ ) : void ;
4396
+ listPrincipalThingsV2 (
4397
+ args : ListPrincipalThingsV2CommandInput ,
4398
+ options : __HttpHandlerOptions ,
4399
+ cb : ( err : any , data ?: ListPrincipalThingsV2CommandOutput ) => void
4400
+ ) : void ;
4401
+
4367
4402
/**
4368
4403
* @see {@link ListProvisioningTemplatesCommand }
4369
4404
*/
@@ -4613,6 +4648,23 @@ export interface IoT {
4613
4648
cb : ( err : any , data ?: ListThingPrincipalsCommandOutput ) => void
4614
4649
) : void ;
4615
4650
4651
+ /**
4652
+ * @see {@link ListThingPrincipalsV2Command }
4653
+ */
4654
+ listThingPrincipalsV2 (
4655
+ args : ListThingPrincipalsV2CommandInput ,
4656
+ options ?: __HttpHandlerOptions
4657
+ ) : Promise < ListThingPrincipalsV2CommandOutput > ;
4658
+ listThingPrincipalsV2 (
4659
+ args : ListThingPrincipalsV2CommandInput ,
4660
+ cb : ( err : any , data ?: ListThingPrincipalsV2CommandOutput ) => void
4661
+ ) : void ;
4662
+ listThingPrincipalsV2 (
4663
+ args : ListThingPrincipalsV2CommandInput ,
4664
+ options : __HttpHandlerOptions ,
4665
+ cb : ( err : any , data ?: ListThingPrincipalsV2CommandOutput ) => void
4666
+ ) : void ;
4667
+
4616
4668
/**
4617
4669
* @see {@link ListThingRegistrationTaskReportsCommand }
4618
4670
*/
@@ -5615,6 +5667,20 @@ export interface IoT {
5615
5667
cb : ( err : any , data ?: UpdateThingGroupsForThingCommandOutput ) => void
5616
5668
) : void ;
5617
5669
5670
+ /**
5671
+ * @see {@link UpdateThingTypeCommand }
5672
+ */
5673
+ updateThingType (
5674
+ args : UpdateThingTypeCommandInput ,
5675
+ options ?: __HttpHandlerOptions
5676
+ ) : Promise < UpdateThingTypeCommandOutput > ;
5677
+ updateThingType ( args : UpdateThingTypeCommandInput , cb : ( err : any , data ?: UpdateThingTypeCommandOutput ) => void ) : void ;
5678
+ updateThingType (
5679
+ args : UpdateThingTypeCommandInput ,
5680
+ options : __HttpHandlerOptions ,
5681
+ cb : ( err : any , data ?: UpdateThingTypeCommandOutput ) => void
5682
+ ) : void ;
5683
+
5618
5684
/**
5619
5685
* @see {@link UpdateTopicRuleDestinationCommand }
5620
5686
*/
0 commit comments