@@ -204,6 +204,11 @@ import {
204
204
CreateTriggerCommandInput ,
205
205
CreateTriggerCommandOutput ,
206
206
} from "./commands/CreateTriggerCommand" ;
207
+ import {
208
+ CreateUsageProfileCommand ,
209
+ CreateUsageProfileCommandInput ,
210
+ CreateUsageProfileCommandOutput ,
211
+ } from "./commands/CreateUsageProfileCommand" ;
207
212
import {
208
213
CreateUserDefinedFunctionCommand ,
209
214
CreateUserDefinedFunctionCommandInput ,
@@ -326,6 +331,11 @@ import {
326
331
DeleteTriggerCommandInput ,
327
332
DeleteTriggerCommandOutput ,
328
333
} from "./commands/DeleteTriggerCommand" ;
334
+ import {
335
+ DeleteUsageProfileCommand ,
336
+ DeleteUsageProfileCommandInput ,
337
+ DeleteUsageProfileCommandOutput ,
338
+ } from "./commands/DeleteUsageProfileCommand" ;
329
339
import {
330
340
DeleteUserDefinedFunctionCommand ,
331
341
DeleteUserDefinedFunctionCommandInput ,
@@ -578,6 +588,11 @@ import {
578
588
GetUnfilteredTableMetadataCommandInput ,
579
589
GetUnfilteredTableMetadataCommandOutput ,
580
590
} from "./commands/GetUnfilteredTableMetadataCommand" ;
591
+ import {
592
+ GetUsageProfileCommand ,
593
+ GetUsageProfileCommandInput ,
594
+ GetUsageProfileCommandOutput ,
595
+ } from "./commands/GetUsageProfileCommand" ;
581
596
import {
582
597
GetUserDefinedFunctionCommand ,
583
598
GetUserDefinedFunctionCommandInput ,
@@ -692,6 +707,11 @@ import {
692
707
ListTriggersCommandInput ,
693
708
ListTriggersCommandOutput ,
694
709
} from "./commands/ListTriggersCommand" ;
710
+ import {
711
+ ListUsageProfilesCommand ,
712
+ ListUsageProfilesCommandInput ,
713
+ ListUsageProfilesCommandOutput ,
714
+ } from "./commands/ListUsageProfilesCommand" ;
695
715
import {
696
716
ListWorkflowsCommand ,
697
717
ListWorkflowsCommandInput ,
@@ -929,6 +949,11 @@ import {
929
949
UpdateTriggerCommandInput ,
930
950
UpdateTriggerCommandOutput ,
931
951
} from "./commands/UpdateTriggerCommand" ;
952
+ import {
953
+ UpdateUsageProfileCommand ,
954
+ UpdateUsageProfileCommandInput ,
955
+ UpdateUsageProfileCommandOutput ,
956
+ } from "./commands/UpdateUsageProfileCommand" ;
932
957
import {
933
958
UpdateUserDefinedFunctionCommand ,
934
959
UpdateUserDefinedFunctionCommandInput ,
@@ -984,6 +1009,7 @@ const commands = {
984
1009
CreateTableCommand,
985
1010
CreateTableOptimizerCommand,
986
1011
CreateTriggerCommand,
1012
+ CreateUsageProfileCommand,
987
1013
CreateUserDefinedFunctionCommand,
988
1014
CreateWorkflowCommand,
989
1015
DeleteBlueprintCommand,
@@ -1010,6 +1036,7 @@ const commands = {
1010
1036
DeleteTableOptimizerCommand,
1011
1037
DeleteTableVersionCommand,
1012
1038
DeleteTriggerCommand,
1039
+ DeleteUsageProfileCommand,
1013
1040
DeleteUserDefinedFunctionCommand,
1014
1041
DeleteWorkflowCommand,
1015
1042
GetBlueprintCommand,
@@ -1074,6 +1101,7 @@ const commands = {
1074
1101
GetUnfilteredPartitionMetadataCommand,
1075
1102
GetUnfilteredPartitionsMetadataCommand,
1076
1103
GetUnfilteredTableMetadataCommand,
1104
+ GetUsageProfileCommand,
1077
1105
GetUserDefinedFunctionCommand,
1078
1106
GetUserDefinedFunctionsCommand,
1079
1107
GetWorkflowCommand,
@@ -1100,6 +1128,7 @@ const commands = {
1100
1128
ListStatementsCommand,
1101
1129
ListTableOptimizerRunsCommand,
1102
1130
ListTriggersCommand,
1131
+ ListUsageProfilesCommand,
1103
1132
ListWorkflowsCommand,
1104
1133
PutDataCatalogEncryptionSettingsCommand,
1105
1134
PutResourcePolicyCommand,
@@ -1153,6 +1182,7 @@ const commands = {
1153
1182
UpdateTableCommand,
1154
1183
UpdateTableOptimizerCommand,
1155
1184
UpdateTriggerCommand,
1185
+ UpdateUsageProfileCommand,
1156
1186
UpdateUserDefinedFunctionCommand,
1157
1187
UpdateWorkflowCommand,
1158
1188
} ;
@@ -1805,6 +1835,23 @@ export interface Glue {
1805
1835
cb : ( err : any , data ?: CreateTriggerCommandOutput ) => void
1806
1836
) : void ;
1807
1837
1838
+ /**
1839
+ * @see {@link CreateUsageProfileCommand }
1840
+ */
1841
+ createUsageProfile (
1842
+ args : CreateUsageProfileCommandInput ,
1843
+ options ?: __HttpHandlerOptions
1844
+ ) : Promise < CreateUsageProfileCommandOutput > ;
1845
+ createUsageProfile (
1846
+ args : CreateUsageProfileCommandInput ,
1847
+ cb : ( err : any , data ?: CreateUsageProfileCommandOutput ) => void
1848
+ ) : void ;
1849
+ createUsageProfile (
1850
+ args : CreateUsageProfileCommandInput ,
1851
+ options : __HttpHandlerOptions ,
1852
+ cb : ( err : any , data ?: CreateUsageProfileCommandOutput ) => void
1853
+ ) : void ;
1854
+
1808
1855
/**
1809
1856
* @see {@link CreateUserDefinedFunctionCommand }
1810
1857
*/
@@ -2197,6 +2244,23 @@ export interface Glue {
2197
2244
cb : ( err : any , data ?: DeleteTriggerCommandOutput ) => void
2198
2245
) : void ;
2199
2246
2247
+ /**
2248
+ * @see {@link DeleteUsageProfileCommand }
2249
+ */
2250
+ deleteUsageProfile (
2251
+ args : DeleteUsageProfileCommandInput ,
2252
+ options ?: __HttpHandlerOptions
2253
+ ) : Promise < DeleteUsageProfileCommandOutput > ;
2254
+ deleteUsageProfile (
2255
+ args : DeleteUsageProfileCommandInput ,
2256
+ cb : ( err : any , data ?: DeleteUsageProfileCommandOutput ) => void
2257
+ ) : void ;
2258
+ deleteUsageProfile (
2259
+ args : DeleteUsageProfileCommandInput ,
2260
+ options : __HttpHandlerOptions ,
2261
+ cb : ( err : any , data ?: DeleteUsageProfileCommandOutput ) => void
2262
+ ) : void ;
2263
+
2200
2264
/**
2201
2265
* @see {@link DeleteUserDefinedFunctionCommand }
2202
2266
*/
@@ -3115,6 +3179,20 @@ export interface Glue {
3115
3179
cb : ( err : any , data ?: GetUnfilteredTableMetadataCommandOutput ) => void
3116
3180
) : void ;
3117
3181
3182
+ /**
3183
+ * @see {@link GetUsageProfileCommand }
3184
+ */
3185
+ getUsageProfile (
3186
+ args : GetUsageProfileCommandInput ,
3187
+ options ?: __HttpHandlerOptions
3188
+ ) : Promise < GetUsageProfileCommandOutput > ;
3189
+ getUsageProfile ( args : GetUsageProfileCommandInput , cb : ( err : any , data ?: GetUsageProfileCommandOutput ) => void ) : void ;
3190
+ getUsageProfile (
3191
+ args : GetUsageProfileCommandInput ,
3192
+ options : __HttpHandlerOptions ,
3193
+ cb : ( err : any , data ?: GetUsageProfileCommandOutput ) => void
3194
+ ) : void ;
3195
+
3118
3196
/**
3119
3197
* @see {@link GetUserDefinedFunctionCommand }
3120
3198
*/
@@ -3516,6 +3594,24 @@ export interface Glue {
3516
3594
cb : ( err : any , data ?: ListTriggersCommandOutput ) => void
3517
3595
) : void ;
3518
3596
3597
+ /**
3598
+ * @see {@link ListUsageProfilesCommand }
3599
+ */
3600
+ listUsageProfiles ( ) : Promise < ListUsageProfilesCommandOutput > ;
3601
+ listUsageProfiles (
3602
+ args : ListUsageProfilesCommandInput ,
3603
+ options ?: __HttpHandlerOptions
3604
+ ) : Promise < ListUsageProfilesCommandOutput > ;
3605
+ listUsageProfiles (
3606
+ args : ListUsageProfilesCommandInput ,
3607
+ cb : ( err : any , data ?: ListUsageProfilesCommandOutput ) => void
3608
+ ) : void ;
3609
+ listUsageProfiles (
3610
+ args : ListUsageProfilesCommandInput ,
3611
+ options : __HttpHandlerOptions ,
3612
+ cb : ( err : any , data ?: ListUsageProfilesCommandOutput ) => void
3613
+ ) : void ;
3614
+
3519
3615
/**
3520
3616
* @see {@link ListWorkflowsCommand }
3521
3617
*/
@@ -4312,6 +4408,23 @@ export interface Glue {
4312
4408
cb : ( err : any , data ?: UpdateTriggerCommandOutput ) => void
4313
4409
) : void ;
4314
4410
4411
+ /**
4412
+ * @see {@link UpdateUsageProfileCommand }
4413
+ */
4414
+ updateUsageProfile (
4415
+ args : UpdateUsageProfileCommandInput ,
4416
+ options ?: __HttpHandlerOptions
4417
+ ) : Promise < UpdateUsageProfileCommandOutput > ;
4418
+ updateUsageProfile (
4419
+ args : UpdateUsageProfileCommandInput ,
4420
+ cb : ( err : any , data ?: UpdateUsageProfileCommandOutput ) => void
4421
+ ) : void ;
4422
+ updateUsageProfile (
4423
+ args : UpdateUsageProfileCommandInput ,
4424
+ options : __HttpHandlerOptions ,
4425
+ cb : ( err : any , data ?: UpdateUsageProfileCommandOutput ) => void
4426
+ ) : void ;
4427
+
4315
4428
/**
4316
4429
* @see {@link UpdateUserDefinedFunctionCommand }
4317
4430
*/
0 commit comments