@@ -98,6 +98,17 @@ import {
98
98
ListMicrosoftTeamsUserIdentitiesCommandInput ,
99
99
ListMicrosoftTeamsUserIdentitiesCommandOutput ,
100
100
} from "./commands/ListMicrosoftTeamsUserIdentitiesCommand" ;
101
+ import {
102
+ ListTagsForResourceCommand ,
103
+ ListTagsForResourceCommandInput ,
104
+ ListTagsForResourceCommandOutput ,
105
+ } from "./commands/ListTagsForResourceCommand" ;
106
+ import { TagResourceCommand , TagResourceCommandInput , TagResourceCommandOutput } from "./commands/TagResourceCommand" ;
107
+ import {
108
+ UntagResourceCommand ,
109
+ UntagResourceCommandInput ,
110
+ UntagResourceCommandOutput ,
111
+ } from "./commands/UntagResourceCommand" ;
101
112
import {
102
113
UpdateAccountPreferencesCommand ,
103
114
UpdateAccountPreferencesCommandInput ,
@@ -139,6 +150,9 @@ const commands = {
139
150
ListMicrosoftTeamsChannelConfigurationsCommand,
140
151
ListMicrosoftTeamsConfiguredTeamsCommand,
141
152
ListMicrosoftTeamsUserIdentitiesCommand,
153
+ ListTagsForResourceCommand,
154
+ TagResourceCommand,
155
+ UntagResourceCommand,
142
156
UpdateAccountPreferencesCommand,
143
157
UpdateChimeWebhookConfigurationCommand,
144
158
UpdateMicrosoftTeamsChannelConfigurationCommand,
@@ -477,6 +491,45 @@ export interface Chatbot {
477
491
cb : ( err : any , data ?: ListMicrosoftTeamsUserIdentitiesCommandOutput ) => void
478
492
) : void ;
479
493
494
+ /**
495
+ * @see {@link ListTagsForResourceCommand }
496
+ */
497
+ listTagsForResource (
498
+ args : ListTagsForResourceCommandInput ,
499
+ options ?: __HttpHandlerOptions
500
+ ) : Promise < ListTagsForResourceCommandOutput > ;
501
+ listTagsForResource (
502
+ args : ListTagsForResourceCommandInput ,
503
+ cb : ( err : any , data ?: ListTagsForResourceCommandOutput ) => void
504
+ ) : void ;
505
+ listTagsForResource (
506
+ args : ListTagsForResourceCommandInput ,
507
+ options : __HttpHandlerOptions ,
508
+ cb : ( err : any , data ?: ListTagsForResourceCommandOutput ) => void
509
+ ) : void ;
510
+
511
+ /**
512
+ * @see {@link TagResourceCommand }
513
+ */
514
+ tagResource ( args : TagResourceCommandInput , options ?: __HttpHandlerOptions ) : Promise < TagResourceCommandOutput > ;
515
+ tagResource ( args : TagResourceCommandInput , cb : ( err : any , data ?: TagResourceCommandOutput ) => void ) : void ;
516
+ tagResource (
517
+ args : TagResourceCommandInput ,
518
+ options : __HttpHandlerOptions ,
519
+ cb : ( err : any , data ?: TagResourceCommandOutput ) => void
520
+ ) : void ;
521
+
522
+ /**
523
+ * @see {@link UntagResourceCommand }
524
+ */
525
+ untagResource ( args : UntagResourceCommandInput , options ?: __HttpHandlerOptions ) : Promise < UntagResourceCommandOutput > ;
526
+ untagResource ( args : UntagResourceCommandInput , cb : ( err : any , data ?: UntagResourceCommandOutput ) => void ) : void ;
527
+ untagResource (
528
+ args : UntagResourceCommandInput ,
529
+ options : __HttpHandlerOptions ,
530
+ cb : ( err : any , data ?: UntagResourceCommandOutput ) => void
531
+ ) : void ;
532
+
480
533
/**
481
534
* @see {@link UpdateAccountPreferencesCommand }
482
535
*/
0 commit comments