@@ -204,6 +204,11 @@ import {
204204 CreateTriggerCommandInput ,
205205 CreateTriggerCommandOutput ,
206206} from "./commands/CreateTriggerCommand" ;
207+ import {
208+ CreateUsageProfileCommand ,
209+ CreateUsageProfileCommandInput ,
210+ CreateUsageProfileCommandOutput ,
211+ } from "./commands/CreateUsageProfileCommand" ;
207212import {
208213 CreateUserDefinedFunctionCommand ,
209214 CreateUserDefinedFunctionCommandInput ,
@@ -326,6 +331,11 @@ import {
326331 DeleteTriggerCommandInput ,
327332 DeleteTriggerCommandOutput ,
328333} from "./commands/DeleteTriggerCommand" ;
334+ import {
335+ DeleteUsageProfileCommand ,
336+ DeleteUsageProfileCommandInput ,
337+ DeleteUsageProfileCommandOutput ,
338+ } from "./commands/DeleteUsageProfileCommand" ;
329339import {
330340 DeleteUserDefinedFunctionCommand ,
331341 DeleteUserDefinedFunctionCommandInput ,
@@ -578,6 +588,11 @@ import {
578588 GetUnfilteredTableMetadataCommandInput ,
579589 GetUnfilteredTableMetadataCommandOutput ,
580590} from "./commands/GetUnfilteredTableMetadataCommand" ;
591+ import {
592+ GetUsageProfileCommand ,
593+ GetUsageProfileCommandInput ,
594+ GetUsageProfileCommandOutput ,
595+ } from "./commands/GetUsageProfileCommand" ;
581596import {
582597 GetUserDefinedFunctionCommand ,
583598 GetUserDefinedFunctionCommandInput ,
@@ -692,6 +707,11 @@ import {
692707 ListTriggersCommandInput ,
693708 ListTriggersCommandOutput ,
694709} from "./commands/ListTriggersCommand" ;
710+ import {
711+ ListUsageProfilesCommand ,
712+ ListUsageProfilesCommandInput ,
713+ ListUsageProfilesCommandOutput ,
714+ } from "./commands/ListUsageProfilesCommand" ;
695715import {
696716 ListWorkflowsCommand ,
697717 ListWorkflowsCommandInput ,
@@ -929,6 +949,11 @@ import {
929949 UpdateTriggerCommandInput ,
930950 UpdateTriggerCommandOutput ,
931951} from "./commands/UpdateTriggerCommand" ;
952+ import {
953+ UpdateUsageProfileCommand ,
954+ UpdateUsageProfileCommandInput ,
955+ UpdateUsageProfileCommandOutput ,
956+ } from "./commands/UpdateUsageProfileCommand" ;
932957import {
933958 UpdateUserDefinedFunctionCommand ,
934959 UpdateUserDefinedFunctionCommandInput ,
@@ -984,6 +1009,7 @@ const commands = {
9841009 CreateTableCommand,
9851010 CreateTableOptimizerCommand,
9861011 CreateTriggerCommand,
1012+ CreateUsageProfileCommand,
9871013 CreateUserDefinedFunctionCommand,
9881014 CreateWorkflowCommand,
9891015 DeleteBlueprintCommand,
@@ -1010,6 +1036,7 @@ const commands = {
10101036 DeleteTableOptimizerCommand,
10111037 DeleteTableVersionCommand,
10121038 DeleteTriggerCommand,
1039+ DeleteUsageProfileCommand,
10131040 DeleteUserDefinedFunctionCommand,
10141041 DeleteWorkflowCommand,
10151042 GetBlueprintCommand,
@@ -1074,6 +1101,7 @@ const commands = {
10741101 GetUnfilteredPartitionMetadataCommand,
10751102 GetUnfilteredPartitionsMetadataCommand,
10761103 GetUnfilteredTableMetadataCommand,
1104+ GetUsageProfileCommand,
10771105 GetUserDefinedFunctionCommand,
10781106 GetUserDefinedFunctionsCommand,
10791107 GetWorkflowCommand,
@@ -1100,6 +1128,7 @@ const commands = {
11001128 ListStatementsCommand,
11011129 ListTableOptimizerRunsCommand,
11021130 ListTriggersCommand,
1131+ ListUsageProfilesCommand,
11031132 ListWorkflowsCommand,
11041133 PutDataCatalogEncryptionSettingsCommand,
11051134 PutResourcePolicyCommand,
@@ -1153,6 +1182,7 @@ const commands = {
11531182 UpdateTableCommand,
11541183 UpdateTableOptimizerCommand,
11551184 UpdateTriggerCommand,
1185+ UpdateUsageProfileCommand,
11561186 UpdateUserDefinedFunctionCommand,
11571187 UpdateWorkflowCommand,
11581188} ;
@@ -1805,6 +1835,23 @@ export interface Glue {
18051835 cb : ( err : any , data ?: CreateTriggerCommandOutput ) => void
18061836 ) : void ;
18071837
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+
18081855 /**
18091856 * @see {@link CreateUserDefinedFunctionCommand }
18101857 */
@@ -2197,6 +2244,23 @@ export interface Glue {
21972244 cb : ( err : any , data ?: DeleteTriggerCommandOutput ) => void
21982245 ) : void ;
21992246
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+
22002264 /**
22012265 * @see {@link DeleteUserDefinedFunctionCommand }
22022266 */
@@ -3115,6 +3179,20 @@ export interface Glue {
31153179 cb : ( err : any , data ?: GetUnfilteredTableMetadataCommandOutput ) => void
31163180 ) : void ;
31173181
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+
31183196 /**
31193197 * @see {@link GetUserDefinedFunctionCommand }
31203198 */
@@ -3516,6 +3594,24 @@ export interface Glue {
35163594 cb : ( err : any , data ?: ListTriggersCommandOutput ) => void
35173595 ) : void ;
35183596
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+
35193615 /**
35203616 * @see {@link ListWorkflowsCommand }
35213617 */
@@ -4312,6 +4408,23 @@ export interface Glue {
43124408 cb : ( err : any , data ?: UpdateTriggerCommandOutput ) => void
43134409 ) : void ;
43144410
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+
43154428 /**
43164429 * @see {@link UpdateUserDefinedFunctionCommand }
43174430 */
0 commit comments