@aws-sdk/client-glue 3.598.0 → 3.600.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +40 -0
- package/dist-cjs/index.js +260 -0
- package/dist-es/Glue.js +10 -0
- package/dist-es/commands/CreateUsageProfileCommand.js +24 -0
- package/dist-es/commands/DeleteUsageProfileCommand.js +24 -0
- package/dist-es/commands/GetUsageProfileCommand.js +24 -0
- package/dist-es/commands/ListUsageProfilesCommand.js +24 -0
- package/dist-es/commands/UpdateUsageProfileCommand.js +24 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_1.js +13 -0
- package/dist-es/pagination/ListUsageProfilesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +142 -1
- package/dist-types/Glue.d.ts +36 -0
- package/dist-types/GlueClient.d.ts +7 -2
- package/dist-types/commands/BatchGetJobsCommand.d.ts +1 -0
- package/dist-types/commands/BatchGetWorkflowsCommand.d.ts +2 -0
- package/dist-types/commands/CreateSessionCommand.d.ts +1 -0
- package/dist-types/commands/CreateUsageProfileCommand.d.ts +104 -0
- package/dist-types/commands/DeleteUsageProfileCommand.d.ts +70 -0
- package/dist-types/commands/GetJobCommand.d.ts +1 -0
- package/dist-types/commands/GetJobRunCommand.d.ts +2 -1
- package/dist-types/commands/GetJobRunsCommand.d.ts +1 -0
- package/dist-types/commands/GetJobsCommand.d.ts +1 -0
- package/dist-types/commands/GetRegistryCommand.d.ts +1 -1
- package/dist-types/commands/GetResourcePoliciesCommand.d.ts +1 -1
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +1 -1
- package/dist-types/commands/GetSessionCommand.d.ts +1 -0
- package/dist-types/commands/GetUsageProfileCommand.d.ts +100 -0
- package/dist-types/commands/GetWorkflowCommand.d.ts +2 -0
- package/dist-types/commands/GetWorkflowRunCommand.d.ts +2 -1
- package/dist-types/commands/GetWorkflowRunsCommand.d.ts +1 -0
- package/dist-types/commands/ListSessionsCommand.d.ts +1 -0
- package/dist-types/commands/ListUsageProfilesCommand.d.ts +81 -0
- package/dist-types/commands/UpdateUsageProfileCommand.d.ts +101 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +5 -0
- package/dist-types/models/models_1.d.ts +114 -139
- package/dist-types/models/models_2.d.ts +271 -1
- package/dist-types/pagination/ListUsageProfilesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +45 -0
- package/dist-types/ts3.4/Glue.d.ts +86 -0
- package/dist-types/ts3.4/GlueClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateUsageProfileCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/DeleteUsageProfileCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/GetRegistryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetResourcePoliciesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetUsageProfileCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListUsageProfilesCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/UpdateUsageProfileCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/dist-types/ts3.4/models/models_1.d.ts +32 -34
- package/dist-types/ts3.4/models/models_2.d.ts +68 -0
- package/dist-types/ts3.4/pagination/ListUsageProfilesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +60 -0
- package/package.json +4 -4
|
@@ -49,6 +49,7 @@ import { CreateSessionCommandInput, CreateSessionCommandOutput } from "./command
|
|
|
49
49
|
import { CreateTableCommandInput, CreateTableCommandOutput } from "./commands/CreateTableCommand";
|
|
50
50
|
import { CreateTableOptimizerCommandInput, CreateTableOptimizerCommandOutput } from "./commands/CreateTableOptimizerCommand";
|
|
51
51
|
import { CreateTriggerCommandInput, CreateTriggerCommandOutput } from "./commands/CreateTriggerCommand";
|
|
52
|
+
import { CreateUsageProfileCommandInput, CreateUsageProfileCommandOutput } from "./commands/CreateUsageProfileCommand";
|
|
52
53
|
import { CreateUserDefinedFunctionCommandInput, CreateUserDefinedFunctionCommandOutput } from "./commands/CreateUserDefinedFunctionCommand";
|
|
53
54
|
import { CreateWorkflowCommandInput, CreateWorkflowCommandOutput } from "./commands/CreateWorkflowCommand";
|
|
54
55
|
import { DeleteBlueprintCommandInput, DeleteBlueprintCommandOutput } from "./commands/DeleteBlueprintCommand";
|
|
@@ -75,6 +76,7 @@ import { DeleteTableCommandInput, DeleteTableCommandOutput } from "./commands/De
|
|
|
75
76
|
import { DeleteTableOptimizerCommandInput, DeleteTableOptimizerCommandOutput } from "./commands/DeleteTableOptimizerCommand";
|
|
76
77
|
import { DeleteTableVersionCommandInput, DeleteTableVersionCommandOutput } from "./commands/DeleteTableVersionCommand";
|
|
77
78
|
import { DeleteTriggerCommandInput, DeleteTriggerCommandOutput } from "./commands/DeleteTriggerCommand";
|
|
79
|
+
import { DeleteUsageProfileCommandInput, DeleteUsageProfileCommandOutput } from "./commands/DeleteUsageProfileCommand";
|
|
78
80
|
import { DeleteUserDefinedFunctionCommandInput, DeleteUserDefinedFunctionCommandOutput } from "./commands/DeleteUserDefinedFunctionCommand";
|
|
79
81
|
import { DeleteWorkflowCommandInput, DeleteWorkflowCommandOutput } from "./commands/DeleteWorkflowCommand";
|
|
80
82
|
import { GetBlueprintCommandInput, GetBlueprintCommandOutput } from "./commands/GetBlueprintCommand";
|
|
@@ -139,6 +141,7 @@ import { GetTriggersCommandInput, GetTriggersCommandOutput } from "./commands/Ge
|
|
|
139
141
|
import { GetUnfilteredPartitionMetadataCommandInput, GetUnfilteredPartitionMetadataCommandOutput } from "./commands/GetUnfilteredPartitionMetadataCommand";
|
|
140
142
|
import { GetUnfilteredPartitionsMetadataCommandInput, GetUnfilteredPartitionsMetadataCommandOutput } from "./commands/GetUnfilteredPartitionsMetadataCommand";
|
|
141
143
|
import { GetUnfilteredTableMetadataCommandInput, GetUnfilteredTableMetadataCommandOutput } from "./commands/GetUnfilteredTableMetadataCommand";
|
|
144
|
+
import { GetUsageProfileCommandInput, GetUsageProfileCommandOutput } from "./commands/GetUsageProfileCommand";
|
|
142
145
|
import { GetUserDefinedFunctionCommandInput, GetUserDefinedFunctionCommandOutput } from "./commands/GetUserDefinedFunctionCommand";
|
|
143
146
|
import { GetUserDefinedFunctionsCommandInput, GetUserDefinedFunctionsCommandOutput } from "./commands/GetUserDefinedFunctionsCommand";
|
|
144
147
|
import { GetWorkflowCommandInput, GetWorkflowCommandOutput } from "./commands/GetWorkflowCommand";
|
|
@@ -165,6 +168,7 @@ import { ListSessionsCommandInput, ListSessionsCommandOutput } from "./commands/
|
|
|
165
168
|
import { ListStatementsCommandInput, ListStatementsCommandOutput } from "./commands/ListStatementsCommand";
|
|
166
169
|
import { ListTableOptimizerRunsCommandInput, ListTableOptimizerRunsCommandOutput } from "./commands/ListTableOptimizerRunsCommand";
|
|
167
170
|
import { ListTriggersCommandInput, ListTriggersCommandOutput } from "./commands/ListTriggersCommand";
|
|
171
|
+
import { ListUsageProfilesCommandInput, ListUsageProfilesCommandOutput } from "./commands/ListUsageProfilesCommand";
|
|
168
172
|
import { ListWorkflowsCommandInput, ListWorkflowsCommandOutput } from "./commands/ListWorkflowsCommand";
|
|
169
173
|
import { PutDataCatalogEncryptionSettingsCommandInput, PutDataCatalogEncryptionSettingsCommandOutput } from "./commands/PutDataCatalogEncryptionSettingsCommand";
|
|
170
174
|
import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "./commands/PutResourcePolicyCommand";
|
|
@@ -218,6 +222,7 @@ import { UpdateSourceControlFromJobCommandInput, UpdateSourceControlFromJobComma
|
|
|
218
222
|
import { UpdateTableCommandInput, UpdateTableCommandOutput } from "./commands/UpdateTableCommand";
|
|
219
223
|
import { UpdateTableOptimizerCommandInput, UpdateTableOptimizerCommandOutput } from "./commands/UpdateTableOptimizerCommand";
|
|
220
224
|
import { UpdateTriggerCommandInput, UpdateTriggerCommandOutput } from "./commands/UpdateTriggerCommand";
|
|
225
|
+
import { UpdateUsageProfileCommandInput, UpdateUsageProfileCommandOutput } from "./commands/UpdateUsageProfileCommand";
|
|
221
226
|
import { UpdateUserDefinedFunctionCommandInput, UpdateUserDefinedFunctionCommandOutput } from "./commands/UpdateUserDefinedFunctionCommand";
|
|
222
227
|
import { UpdateWorkflowCommandInput, UpdateWorkflowCommandOutput } from "./commands/UpdateWorkflowCommand";
|
|
223
228
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
@@ -226,11 +231,11 @@ export { __Client };
|
|
|
226
231
|
/**
|
|
227
232
|
* @public
|
|
228
233
|
*/
|
|
229
|
-
export type ServiceInputTypes = BatchCreatePartitionCommandInput | BatchDeleteConnectionCommandInput | BatchDeletePartitionCommandInput | BatchDeleteTableCommandInput | BatchDeleteTableVersionCommandInput | BatchGetBlueprintsCommandInput | BatchGetCrawlersCommandInput | BatchGetCustomEntityTypesCommandInput | BatchGetDataQualityResultCommandInput | BatchGetDevEndpointsCommandInput | BatchGetJobsCommandInput | BatchGetPartitionCommandInput | BatchGetTableOptimizerCommandInput | BatchGetTriggersCommandInput | BatchGetWorkflowsCommandInput | BatchStopJobRunCommandInput | BatchUpdatePartitionCommandInput | CancelDataQualityRuleRecommendationRunCommandInput | CancelDataQualityRulesetEvaluationRunCommandInput | CancelMLTaskRunCommandInput | CancelStatementCommandInput | CheckSchemaVersionValidityCommandInput | CreateBlueprintCommandInput | CreateClassifierCommandInput | CreateConnectionCommandInput | CreateCrawlerCommandInput | CreateCustomEntityTypeCommandInput | CreateDataQualityRulesetCommandInput | CreateDatabaseCommandInput | CreateDevEndpointCommandInput | CreateJobCommandInput | CreateMLTransformCommandInput | CreatePartitionCommandInput | CreatePartitionIndexCommandInput | CreateRegistryCommandInput | CreateSchemaCommandInput | CreateScriptCommandInput | CreateSecurityConfigurationCommandInput | CreateSessionCommandInput | CreateTableCommandInput | CreateTableOptimizerCommandInput | CreateTriggerCommandInput | CreateUserDefinedFunctionCommandInput | CreateWorkflowCommandInput | DeleteBlueprintCommandInput | DeleteClassifierCommandInput | DeleteColumnStatisticsForPartitionCommandInput | DeleteColumnStatisticsForTableCommandInput | DeleteConnectionCommandInput | DeleteCrawlerCommandInput | DeleteCustomEntityTypeCommandInput | DeleteDataQualityRulesetCommandInput | DeleteDatabaseCommandInput | DeleteDevEndpointCommandInput | DeleteJobCommandInput | DeleteMLTransformCommandInput | DeletePartitionCommandInput | DeletePartitionIndexCommandInput | DeleteRegistryCommandInput | DeleteResourcePolicyCommandInput | DeleteSchemaCommandInput | DeleteSchemaVersionsCommandInput | DeleteSecurityConfigurationCommandInput | DeleteSessionCommandInput | DeleteTableCommandInput | DeleteTableOptimizerCommandInput | DeleteTableVersionCommandInput | DeleteTriggerCommandInput | DeleteUserDefinedFunctionCommandInput | DeleteWorkflowCommandInput | GetBlueprintCommandInput | GetBlueprintRunCommandInput | GetBlueprintRunsCommandInput | GetCatalogImportStatusCommandInput | GetClassifierCommandInput | GetClassifiersCommandInput | GetColumnStatisticsForPartitionCommandInput | GetColumnStatisticsForTableCommandInput | GetColumnStatisticsTaskRunCommandInput | GetColumnStatisticsTaskRunsCommandInput | GetConnectionCommandInput | GetConnectionsCommandInput | GetCrawlerCommandInput | GetCrawlerMetricsCommandInput | GetCrawlersCommandInput | GetCustomEntityTypeCommandInput | GetDataCatalogEncryptionSettingsCommandInput | GetDataQualityResultCommandInput | GetDataQualityRuleRecommendationRunCommandInput | GetDataQualityRulesetCommandInput | GetDataQualityRulesetEvaluationRunCommandInput | GetDatabaseCommandInput | GetDatabasesCommandInput | GetDataflowGraphCommandInput | GetDevEndpointCommandInput | GetDevEndpointsCommandInput | GetJobBookmarkCommandInput | GetJobCommandInput | GetJobRunCommandInput | GetJobRunsCommandInput | GetJobsCommandInput | GetMLTaskRunCommandInput | GetMLTaskRunsCommandInput | GetMLTransformCommandInput | GetMLTransformsCommandInput | GetMappingCommandInput | GetPartitionCommandInput | GetPartitionIndexesCommandInput | GetPartitionsCommandInput | GetPlanCommandInput | GetRegistryCommandInput | GetResourcePoliciesCommandInput | GetResourcePolicyCommandInput | GetSchemaByDefinitionCommandInput | GetSchemaCommandInput | GetSchemaVersionCommandInput | GetSchemaVersionsDiffCommandInput | GetSecurityConfigurationCommandInput | GetSecurityConfigurationsCommandInput | GetSessionCommandInput | GetStatementCommandInput | GetTableCommandInput | GetTableOptimizerCommandInput | GetTableVersionCommandInput | GetTableVersionsCommandInput | GetTablesCommandInput | GetTagsCommandInput | GetTriggerCommandInput | GetTriggersCommandInput | GetUnfilteredPartitionMetadataCommandInput | GetUnfilteredPartitionsMetadataCommandInput | GetUnfilteredTableMetadataCommandInput | GetUserDefinedFunctionCommandInput | GetUserDefinedFunctionsCommandInput | GetWorkflowCommandInput | GetWorkflowRunCommandInput | GetWorkflowRunPropertiesCommandInput | GetWorkflowRunsCommandInput | ImportCatalogToGlueCommandInput | ListBlueprintsCommandInput | ListColumnStatisticsTaskRunsCommandInput | ListCrawlersCommandInput | ListCrawlsCommandInput | ListCustomEntityTypesCommandInput | ListDataQualityResultsCommandInput | ListDataQualityRuleRecommendationRunsCommandInput | ListDataQualityRulesetEvaluationRunsCommandInput | ListDataQualityRulesetsCommandInput | ListDevEndpointsCommandInput | ListJobsCommandInput | ListMLTransformsCommandInput | ListRegistriesCommandInput | ListSchemaVersionsCommandInput | ListSchemasCommandInput | ListSessionsCommandInput | ListStatementsCommandInput | ListTableOptimizerRunsCommandInput | ListTriggersCommandInput | ListWorkflowsCommandInput | PutDataCatalogEncryptionSettingsCommandInput | PutResourcePolicyCommandInput | PutSchemaVersionMetadataCommandInput | PutWorkflowRunPropertiesCommandInput | QuerySchemaVersionMetadataCommandInput | RegisterSchemaVersionCommandInput | RemoveSchemaVersionMetadataCommandInput | ResetJobBookmarkCommandInput | ResumeWorkflowRunCommandInput | RunStatementCommandInput | SearchTablesCommandInput | StartBlueprintRunCommandInput | StartColumnStatisticsTaskRunCommandInput | StartCrawlerCommandInput | StartCrawlerScheduleCommandInput | StartDataQualityRuleRecommendationRunCommandInput | StartDataQualityRulesetEvaluationRunCommandInput | StartExportLabelsTaskRunCommandInput | StartImportLabelsTaskRunCommandInput | StartJobRunCommandInput | StartMLEvaluationTaskRunCommandInput | StartMLLabelingSetGenerationTaskRunCommandInput | StartTriggerCommandInput | StartWorkflowRunCommandInput | StopColumnStatisticsTaskRunCommandInput | StopCrawlerCommandInput | StopCrawlerScheduleCommandInput | StopSessionCommandInput | StopTriggerCommandInput | StopWorkflowRunCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateBlueprintCommandInput | UpdateClassifierCommandInput | UpdateColumnStatisticsForPartitionCommandInput | UpdateColumnStatisticsForTableCommandInput | UpdateConnectionCommandInput | UpdateCrawlerCommandInput | UpdateCrawlerScheduleCommandInput | UpdateDataQualityRulesetCommandInput | UpdateDatabaseCommandInput | UpdateDevEndpointCommandInput | UpdateJobCommandInput | UpdateJobFromSourceControlCommandInput | UpdateMLTransformCommandInput | UpdatePartitionCommandInput | UpdateRegistryCommandInput | UpdateSchemaCommandInput | UpdateSourceControlFromJobCommandInput | UpdateTableCommandInput | UpdateTableOptimizerCommandInput | UpdateTriggerCommandInput | UpdateUserDefinedFunctionCommandInput | UpdateWorkflowCommandInput;
|
|
234
|
+
export type ServiceInputTypes = BatchCreatePartitionCommandInput | BatchDeleteConnectionCommandInput | BatchDeletePartitionCommandInput | BatchDeleteTableCommandInput | BatchDeleteTableVersionCommandInput | BatchGetBlueprintsCommandInput | BatchGetCrawlersCommandInput | BatchGetCustomEntityTypesCommandInput | BatchGetDataQualityResultCommandInput | BatchGetDevEndpointsCommandInput | BatchGetJobsCommandInput | BatchGetPartitionCommandInput | BatchGetTableOptimizerCommandInput | BatchGetTriggersCommandInput | BatchGetWorkflowsCommandInput | BatchStopJobRunCommandInput | BatchUpdatePartitionCommandInput | CancelDataQualityRuleRecommendationRunCommandInput | CancelDataQualityRulesetEvaluationRunCommandInput | CancelMLTaskRunCommandInput | CancelStatementCommandInput | CheckSchemaVersionValidityCommandInput | CreateBlueprintCommandInput | CreateClassifierCommandInput | CreateConnectionCommandInput | CreateCrawlerCommandInput | CreateCustomEntityTypeCommandInput | CreateDataQualityRulesetCommandInput | CreateDatabaseCommandInput | CreateDevEndpointCommandInput | CreateJobCommandInput | CreateMLTransformCommandInput | CreatePartitionCommandInput | CreatePartitionIndexCommandInput | CreateRegistryCommandInput | CreateSchemaCommandInput | CreateScriptCommandInput | CreateSecurityConfigurationCommandInput | CreateSessionCommandInput | CreateTableCommandInput | CreateTableOptimizerCommandInput | CreateTriggerCommandInput | CreateUsageProfileCommandInput | CreateUserDefinedFunctionCommandInput | CreateWorkflowCommandInput | DeleteBlueprintCommandInput | DeleteClassifierCommandInput | DeleteColumnStatisticsForPartitionCommandInput | DeleteColumnStatisticsForTableCommandInput | DeleteConnectionCommandInput | DeleteCrawlerCommandInput | DeleteCustomEntityTypeCommandInput | DeleteDataQualityRulesetCommandInput | DeleteDatabaseCommandInput | DeleteDevEndpointCommandInput | DeleteJobCommandInput | DeleteMLTransformCommandInput | DeletePartitionCommandInput | DeletePartitionIndexCommandInput | DeleteRegistryCommandInput | DeleteResourcePolicyCommandInput | DeleteSchemaCommandInput | DeleteSchemaVersionsCommandInput | DeleteSecurityConfigurationCommandInput | DeleteSessionCommandInput | DeleteTableCommandInput | DeleteTableOptimizerCommandInput | DeleteTableVersionCommandInput | DeleteTriggerCommandInput | DeleteUsageProfileCommandInput | DeleteUserDefinedFunctionCommandInput | DeleteWorkflowCommandInput | GetBlueprintCommandInput | GetBlueprintRunCommandInput | GetBlueprintRunsCommandInput | GetCatalogImportStatusCommandInput | GetClassifierCommandInput | GetClassifiersCommandInput | GetColumnStatisticsForPartitionCommandInput | GetColumnStatisticsForTableCommandInput | GetColumnStatisticsTaskRunCommandInput | GetColumnStatisticsTaskRunsCommandInput | GetConnectionCommandInput | GetConnectionsCommandInput | GetCrawlerCommandInput | GetCrawlerMetricsCommandInput | GetCrawlersCommandInput | GetCustomEntityTypeCommandInput | GetDataCatalogEncryptionSettingsCommandInput | GetDataQualityResultCommandInput | GetDataQualityRuleRecommendationRunCommandInput | GetDataQualityRulesetCommandInput | GetDataQualityRulesetEvaluationRunCommandInput | GetDatabaseCommandInput | GetDatabasesCommandInput | GetDataflowGraphCommandInput | GetDevEndpointCommandInput | GetDevEndpointsCommandInput | GetJobBookmarkCommandInput | GetJobCommandInput | GetJobRunCommandInput | GetJobRunsCommandInput | GetJobsCommandInput | GetMLTaskRunCommandInput | GetMLTaskRunsCommandInput | GetMLTransformCommandInput | GetMLTransformsCommandInput | GetMappingCommandInput | GetPartitionCommandInput | GetPartitionIndexesCommandInput | GetPartitionsCommandInput | GetPlanCommandInput | GetRegistryCommandInput | GetResourcePoliciesCommandInput | GetResourcePolicyCommandInput | GetSchemaByDefinitionCommandInput | GetSchemaCommandInput | GetSchemaVersionCommandInput | GetSchemaVersionsDiffCommandInput | GetSecurityConfigurationCommandInput | GetSecurityConfigurationsCommandInput | GetSessionCommandInput | GetStatementCommandInput | GetTableCommandInput | GetTableOptimizerCommandInput | GetTableVersionCommandInput | GetTableVersionsCommandInput | GetTablesCommandInput | GetTagsCommandInput | GetTriggerCommandInput | GetTriggersCommandInput | GetUnfilteredPartitionMetadataCommandInput | GetUnfilteredPartitionsMetadataCommandInput | GetUnfilteredTableMetadataCommandInput | GetUsageProfileCommandInput | GetUserDefinedFunctionCommandInput | GetUserDefinedFunctionsCommandInput | GetWorkflowCommandInput | GetWorkflowRunCommandInput | GetWorkflowRunPropertiesCommandInput | GetWorkflowRunsCommandInput | ImportCatalogToGlueCommandInput | ListBlueprintsCommandInput | ListColumnStatisticsTaskRunsCommandInput | ListCrawlersCommandInput | ListCrawlsCommandInput | ListCustomEntityTypesCommandInput | ListDataQualityResultsCommandInput | ListDataQualityRuleRecommendationRunsCommandInput | ListDataQualityRulesetEvaluationRunsCommandInput | ListDataQualityRulesetsCommandInput | ListDevEndpointsCommandInput | ListJobsCommandInput | ListMLTransformsCommandInput | ListRegistriesCommandInput | ListSchemaVersionsCommandInput | ListSchemasCommandInput | ListSessionsCommandInput | ListStatementsCommandInput | ListTableOptimizerRunsCommandInput | ListTriggersCommandInput | ListUsageProfilesCommandInput | ListWorkflowsCommandInput | PutDataCatalogEncryptionSettingsCommandInput | PutResourcePolicyCommandInput | PutSchemaVersionMetadataCommandInput | PutWorkflowRunPropertiesCommandInput | QuerySchemaVersionMetadataCommandInput | RegisterSchemaVersionCommandInput | RemoveSchemaVersionMetadataCommandInput | ResetJobBookmarkCommandInput | ResumeWorkflowRunCommandInput | RunStatementCommandInput | SearchTablesCommandInput | StartBlueprintRunCommandInput | StartColumnStatisticsTaskRunCommandInput | StartCrawlerCommandInput | StartCrawlerScheduleCommandInput | StartDataQualityRuleRecommendationRunCommandInput | StartDataQualityRulesetEvaluationRunCommandInput | StartExportLabelsTaskRunCommandInput | StartImportLabelsTaskRunCommandInput | StartJobRunCommandInput | StartMLEvaluationTaskRunCommandInput | StartMLLabelingSetGenerationTaskRunCommandInput | StartTriggerCommandInput | StartWorkflowRunCommandInput | StopColumnStatisticsTaskRunCommandInput | StopCrawlerCommandInput | StopCrawlerScheduleCommandInput | StopSessionCommandInput | StopTriggerCommandInput | StopWorkflowRunCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateBlueprintCommandInput | UpdateClassifierCommandInput | UpdateColumnStatisticsForPartitionCommandInput | UpdateColumnStatisticsForTableCommandInput | UpdateConnectionCommandInput | UpdateCrawlerCommandInput | UpdateCrawlerScheduleCommandInput | UpdateDataQualityRulesetCommandInput | UpdateDatabaseCommandInput | UpdateDevEndpointCommandInput | UpdateJobCommandInput | UpdateJobFromSourceControlCommandInput | UpdateMLTransformCommandInput | UpdatePartitionCommandInput | UpdateRegistryCommandInput | UpdateSchemaCommandInput | UpdateSourceControlFromJobCommandInput | UpdateTableCommandInput | UpdateTableOptimizerCommandInput | UpdateTriggerCommandInput | UpdateUsageProfileCommandInput | UpdateUserDefinedFunctionCommandInput | UpdateWorkflowCommandInput;
|
|
230
235
|
/**
|
|
231
236
|
* @public
|
|
232
237
|
*/
|
|
233
|
-
export type ServiceOutputTypes = BatchCreatePartitionCommandOutput | BatchDeleteConnectionCommandOutput | BatchDeletePartitionCommandOutput | BatchDeleteTableCommandOutput | BatchDeleteTableVersionCommandOutput | BatchGetBlueprintsCommandOutput | BatchGetCrawlersCommandOutput | BatchGetCustomEntityTypesCommandOutput | BatchGetDataQualityResultCommandOutput | BatchGetDevEndpointsCommandOutput | BatchGetJobsCommandOutput | BatchGetPartitionCommandOutput | BatchGetTableOptimizerCommandOutput | BatchGetTriggersCommandOutput | BatchGetWorkflowsCommandOutput | BatchStopJobRunCommandOutput | BatchUpdatePartitionCommandOutput | CancelDataQualityRuleRecommendationRunCommandOutput | CancelDataQualityRulesetEvaluationRunCommandOutput | CancelMLTaskRunCommandOutput | CancelStatementCommandOutput | CheckSchemaVersionValidityCommandOutput | CreateBlueprintCommandOutput | CreateClassifierCommandOutput | CreateConnectionCommandOutput | CreateCrawlerCommandOutput | CreateCustomEntityTypeCommandOutput | CreateDataQualityRulesetCommandOutput | CreateDatabaseCommandOutput | CreateDevEndpointCommandOutput | CreateJobCommandOutput | CreateMLTransformCommandOutput | CreatePartitionCommandOutput | CreatePartitionIndexCommandOutput | CreateRegistryCommandOutput | CreateSchemaCommandOutput | CreateScriptCommandOutput | CreateSecurityConfigurationCommandOutput | CreateSessionCommandOutput | CreateTableCommandOutput | CreateTableOptimizerCommandOutput | CreateTriggerCommandOutput | CreateUserDefinedFunctionCommandOutput | CreateWorkflowCommandOutput | DeleteBlueprintCommandOutput | DeleteClassifierCommandOutput | DeleteColumnStatisticsForPartitionCommandOutput | DeleteColumnStatisticsForTableCommandOutput | DeleteConnectionCommandOutput | DeleteCrawlerCommandOutput | DeleteCustomEntityTypeCommandOutput | DeleteDataQualityRulesetCommandOutput | DeleteDatabaseCommandOutput | DeleteDevEndpointCommandOutput | DeleteJobCommandOutput | DeleteMLTransformCommandOutput | DeletePartitionCommandOutput | DeletePartitionIndexCommandOutput | DeleteRegistryCommandOutput | DeleteResourcePolicyCommandOutput | DeleteSchemaCommandOutput | DeleteSchemaVersionsCommandOutput | DeleteSecurityConfigurationCommandOutput | DeleteSessionCommandOutput | DeleteTableCommandOutput | DeleteTableOptimizerCommandOutput | DeleteTableVersionCommandOutput | DeleteTriggerCommandOutput | DeleteUserDefinedFunctionCommandOutput | DeleteWorkflowCommandOutput | GetBlueprintCommandOutput | GetBlueprintRunCommandOutput | GetBlueprintRunsCommandOutput | GetCatalogImportStatusCommandOutput | GetClassifierCommandOutput | GetClassifiersCommandOutput | GetColumnStatisticsForPartitionCommandOutput | GetColumnStatisticsForTableCommandOutput | GetColumnStatisticsTaskRunCommandOutput | GetColumnStatisticsTaskRunsCommandOutput | GetConnectionCommandOutput | GetConnectionsCommandOutput | GetCrawlerCommandOutput | GetCrawlerMetricsCommandOutput | GetCrawlersCommandOutput | GetCustomEntityTypeCommandOutput | GetDataCatalogEncryptionSettingsCommandOutput | GetDataQualityResultCommandOutput | GetDataQualityRuleRecommendationRunCommandOutput | GetDataQualityRulesetCommandOutput | GetDataQualityRulesetEvaluationRunCommandOutput | GetDatabaseCommandOutput | GetDatabasesCommandOutput | GetDataflowGraphCommandOutput | GetDevEndpointCommandOutput | GetDevEndpointsCommandOutput | GetJobBookmarkCommandOutput | GetJobCommandOutput | GetJobRunCommandOutput | GetJobRunsCommandOutput | GetJobsCommandOutput | GetMLTaskRunCommandOutput | GetMLTaskRunsCommandOutput | GetMLTransformCommandOutput | GetMLTransformsCommandOutput | GetMappingCommandOutput | GetPartitionCommandOutput | GetPartitionIndexesCommandOutput | GetPartitionsCommandOutput | GetPlanCommandOutput | GetRegistryCommandOutput | GetResourcePoliciesCommandOutput | GetResourcePolicyCommandOutput | GetSchemaByDefinitionCommandOutput | GetSchemaCommandOutput | GetSchemaVersionCommandOutput | GetSchemaVersionsDiffCommandOutput | GetSecurityConfigurationCommandOutput | GetSecurityConfigurationsCommandOutput | GetSessionCommandOutput | GetStatementCommandOutput | GetTableCommandOutput | GetTableOptimizerCommandOutput | GetTableVersionCommandOutput | GetTableVersionsCommandOutput | GetTablesCommandOutput | GetTagsCommandOutput | GetTriggerCommandOutput | GetTriggersCommandOutput | GetUnfilteredPartitionMetadataCommandOutput | GetUnfilteredPartitionsMetadataCommandOutput | GetUnfilteredTableMetadataCommandOutput | GetUserDefinedFunctionCommandOutput | GetUserDefinedFunctionsCommandOutput | GetWorkflowCommandOutput | GetWorkflowRunCommandOutput | GetWorkflowRunPropertiesCommandOutput | GetWorkflowRunsCommandOutput | ImportCatalogToGlueCommandOutput | ListBlueprintsCommandOutput | ListColumnStatisticsTaskRunsCommandOutput | ListCrawlersCommandOutput | ListCrawlsCommandOutput | ListCustomEntityTypesCommandOutput | ListDataQualityResultsCommandOutput | ListDataQualityRuleRecommendationRunsCommandOutput | ListDataQualityRulesetEvaluationRunsCommandOutput | ListDataQualityRulesetsCommandOutput | ListDevEndpointsCommandOutput | ListJobsCommandOutput | ListMLTransformsCommandOutput | ListRegistriesCommandOutput | ListSchemaVersionsCommandOutput | ListSchemasCommandOutput | ListSessionsCommandOutput | ListStatementsCommandOutput | ListTableOptimizerRunsCommandOutput | ListTriggersCommandOutput | ListWorkflowsCommandOutput | PutDataCatalogEncryptionSettingsCommandOutput | PutResourcePolicyCommandOutput | PutSchemaVersionMetadataCommandOutput | PutWorkflowRunPropertiesCommandOutput | QuerySchemaVersionMetadataCommandOutput | RegisterSchemaVersionCommandOutput | RemoveSchemaVersionMetadataCommandOutput | ResetJobBookmarkCommandOutput | ResumeWorkflowRunCommandOutput | RunStatementCommandOutput | SearchTablesCommandOutput | StartBlueprintRunCommandOutput | StartColumnStatisticsTaskRunCommandOutput | StartCrawlerCommandOutput | StartCrawlerScheduleCommandOutput | StartDataQualityRuleRecommendationRunCommandOutput | StartDataQualityRulesetEvaluationRunCommandOutput | StartExportLabelsTaskRunCommandOutput | StartImportLabelsTaskRunCommandOutput | StartJobRunCommandOutput | StartMLEvaluationTaskRunCommandOutput | StartMLLabelingSetGenerationTaskRunCommandOutput | StartTriggerCommandOutput | StartWorkflowRunCommandOutput | StopColumnStatisticsTaskRunCommandOutput | StopCrawlerCommandOutput | StopCrawlerScheduleCommandOutput | StopSessionCommandOutput | StopTriggerCommandOutput | StopWorkflowRunCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateBlueprintCommandOutput | UpdateClassifierCommandOutput | UpdateColumnStatisticsForPartitionCommandOutput | UpdateColumnStatisticsForTableCommandOutput | UpdateConnectionCommandOutput | UpdateCrawlerCommandOutput | UpdateCrawlerScheduleCommandOutput | UpdateDataQualityRulesetCommandOutput | UpdateDatabaseCommandOutput | UpdateDevEndpointCommandOutput | UpdateJobCommandOutput | UpdateJobFromSourceControlCommandOutput | UpdateMLTransformCommandOutput | UpdatePartitionCommandOutput | UpdateRegistryCommandOutput | UpdateSchemaCommandOutput | UpdateSourceControlFromJobCommandOutput | UpdateTableCommandOutput | UpdateTableOptimizerCommandOutput | UpdateTriggerCommandOutput | UpdateUserDefinedFunctionCommandOutput | UpdateWorkflowCommandOutput;
|
|
238
|
+
export type ServiceOutputTypes = BatchCreatePartitionCommandOutput | BatchDeleteConnectionCommandOutput | BatchDeletePartitionCommandOutput | BatchDeleteTableCommandOutput | BatchDeleteTableVersionCommandOutput | BatchGetBlueprintsCommandOutput | BatchGetCrawlersCommandOutput | BatchGetCustomEntityTypesCommandOutput | BatchGetDataQualityResultCommandOutput | BatchGetDevEndpointsCommandOutput | BatchGetJobsCommandOutput | BatchGetPartitionCommandOutput | BatchGetTableOptimizerCommandOutput | BatchGetTriggersCommandOutput | BatchGetWorkflowsCommandOutput | BatchStopJobRunCommandOutput | BatchUpdatePartitionCommandOutput | CancelDataQualityRuleRecommendationRunCommandOutput | CancelDataQualityRulesetEvaluationRunCommandOutput | CancelMLTaskRunCommandOutput | CancelStatementCommandOutput | CheckSchemaVersionValidityCommandOutput | CreateBlueprintCommandOutput | CreateClassifierCommandOutput | CreateConnectionCommandOutput | CreateCrawlerCommandOutput | CreateCustomEntityTypeCommandOutput | CreateDataQualityRulesetCommandOutput | CreateDatabaseCommandOutput | CreateDevEndpointCommandOutput | CreateJobCommandOutput | CreateMLTransformCommandOutput | CreatePartitionCommandOutput | CreatePartitionIndexCommandOutput | CreateRegistryCommandOutput | CreateSchemaCommandOutput | CreateScriptCommandOutput | CreateSecurityConfigurationCommandOutput | CreateSessionCommandOutput | CreateTableCommandOutput | CreateTableOptimizerCommandOutput | CreateTriggerCommandOutput | CreateUsageProfileCommandOutput | CreateUserDefinedFunctionCommandOutput | CreateWorkflowCommandOutput | DeleteBlueprintCommandOutput | DeleteClassifierCommandOutput | DeleteColumnStatisticsForPartitionCommandOutput | DeleteColumnStatisticsForTableCommandOutput | DeleteConnectionCommandOutput | DeleteCrawlerCommandOutput | DeleteCustomEntityTypeCommandOutput | DeleteDataQualityRulesetCommandOutput | DeleteDatabaseCommandOutput | DeleteDevEndpointCommandOutput | DeleteJobCommandOutput | DeleteMLTransformCommandOutput | DeletePartitionCommandOutput | DeletePartitionIndexCommandOutput | DeleteRegistryCommandOutput | DeleteResourcePolicyCommandOutput | DeleteSchemaCommandOutput | DeleteSchemaVersionsCommandOutput | DeleteSecurityConfigurationCommandOutput | DeleteSessionCommandOutput | DeleteTableCommandOutput | DeleteTableOptimizerCommandOutput | DeleteTableVersionCommandOutput | DeleteTriggerCommandOutput | DeleteUsageProfileCommandOutput | DeleteUserDefinedFunctionCommandOutput | DeleteWorkflowCommandOutput | GetBlueprintCommandOutput | GetBlueprintRunCommandOutput | GetBlueprintRunsCommandOutput | GetCatalogImportStatusCommandOutput | GetClassifierCommandOutput | GetClassifiersCommandOutput | GetColumnStatisticsForPartitionCommandOutput | GetColumnStatisticsForTableCommandOutput | GetColumnStatisticsTaskRunCommandOutput | GetColumnStatisticsTaskRunsCommandOutput | GetConnectionCommandOutput | GetConnectionsCommandOutput | GetCrawlerCommandOutput | GetCrawlerMetricsCommandOutput | GetCrawlersCommandOutput | GetCustomEntityTypeCommandOutput | GetDataCatalogEncryptionSettingsCommandOutput | GetDataQualityResultCommandOutput | GetDataQualityRuleRecommendationRunCommandOutput | GetDataQualityRulesetCommandOutput | GetDataQualityRulesetEvaluationRunCommandOutput | GetDatabaseCommandOutput | GetDatabasesCommandOutput | GetDataflowGraphCommandOutput | GetDevEndpointCommandOutput | GetDevEndpointsCommandOutput | GetJobBookmarkCommandOutput | GetJobCommandOutput | GetJobRunCommandOutput | GetJobRunsCommandOutput | GetJobsCommandOutput | GetMLTaskRunCommandOutput | GetMLTaskRunsCommandOutput | GetMLTransformCommandOutput | GetMLTransformsCommandOutput | GetMappingCommandOutput | GetPartitionCommandOutput | GetPartitionIndexesCommandOutput | GetPartitionsCommandOutput | GetPlanCommandOutput | GetRegistryCommandOutput | GetResourcePoliciesCommandOutput | GetResourcePolicyCommandOutput | GetSchemaByDefinitionCommandOutput | GetSchemaCommandOutput | GetSchemaVersionCommandOutput | GetSchemaVersionsDiffCommandOutput | GetSecurityConfigurationCommandOutput | GetSecurityConfigurationsCommandOutput | GetSessionCommandOutput | GetStatementCommandOutput | GetTableCommandOutput | GetTableOptimizerCommandOutput | GetTableVersionCommandOutput | GetTableVersionsCommandOutput | GetTablesCommandOutput | GetTagsCommandOutput | GetTriggerCommandOutput | GetTriggersCommandOutput | GetUnfilteredPartitionMetadataCommandOutput | GetUnfilteredPartitionsMetadataCommandOutput | GetUnfilteredTableMetadataCommandOutput | GetUsageProfileCommandOutput | GetUserDefinedFunctionCommandOutput | GetUserDefinedFunctionsCommandOutput | GetWorkflowCommandOutput | GetWorkflowRunCommandOutput | GetWorkflowRunPropertiesCommandOutput | GetWorkflowRunsCommandOutput | ImportCatalogToGlueCommandOutput | ListBlueprintsCommandOutput | ListColumnStatisticsTaskRunsCommandOutput | ListCrawlersCommandOutput | ListCrawlsCommandOutput | ListCustomEntityTypesCommandOutput | ListDataQualityResultsCommandOutput | ListDataQualityRuleRecommendationRunsCommandOutput | ListDataQualityRulesetEvaluationRunsCommandOutput | ListDataQualityRulesetsCommandOutput | ListDevEndpointsCommandOutput | ListJobsCommandOutput | ListMLTransformsCommandOutput | ListRegistriesCommandOutput | ListSchemaVersionsCommandOutput | ListSchemasCommandOutput | ListSessionsCommandOutput | ListStatementsCommandOutput | ListTableOptimizerRunsCommandOutput | ListTriggersCommandOutput | ListUsageProfilesCommandOutput | ListWorkflowsCommandOutput | PutDataCatalogEncryptionSettingsCommandOutput | PutResourcePolicyCommandOutput | PutSchemaVersionMetadataCommandOutput | PutWorkflowRunPropertiesCommandOutput | QuerySchemaVersionMetadataCommandOutput | RegisterSchemaVersionCommandOutput | RemoveSchemaVersionMetadataCommandOutput | ResetJobBookmarkCommandOutput | ResumeWorkflowRunCommandOutput | RunStatementCommandOutput | SearchTablesCommandOutput | StartBlueprintRunCommandOutput | StartColumnStatisticsTaskRunCommandOutput | StartCrawlerCommandOutput | StartCrawlerScheduleCommandOutput | StartDataQualityRuleRecommendationRunCommandOutput | StartDataQualityRulesetEvaluationRunCommandOutput | StartExportLabelsTaskRunCommandOutput | StartImportLabelsTaskRunCommandOutput | StartJobRunCommandOutput | StartMLEvaluationTaskRunCommandOutput | StartMLLabelingSetGenerationTaskRunCommandOutput | StartTriggerCommandOutput | StartWorkflowRunCommandOutput | StopColumnStatisticsTaskRunCommandOutput | StopCrawlerCommandOutput | StopCrawlerScheduleCommandOutput | StopSessionCommandOutput | StopTriggerCommandOutput | StopWorkflowRunCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateBlueprintCommandOutput | UpdateClassifierCommandOutput | UpdateColumnStatisticsForPartitionCommandOutput | UpdateColumnStatisticsForTableCommandOutput | UpdateConnectionCommandOutput | UpdateCrawlerCommandOutput | UpdateCrawlerScheduleCommandOutput | UpdateDataQualityRulesetCommandOutput | UpdateDatabaseCommandOutput | UpdateDevEndpointCommandOutput | UpdateJobCommandOutput | UpdateJobFromSourceControlCommandOutput | UpdateMLTransformCommandOutput | UpdatePartitionCommandOutput | UpdateRegistryCommandOutput | UpdateSchemaCommandOutput | UpdateSourceControlFromJobCommandOutput | UpdateTableCommandOutput | UpdateTableOptimizerCommandOutput | UpdateTriggerCommandOutput | UpdateUsageProfileCommandOutput | UpdateUserDefinedFunctionCommandOutput | UpdateWorkflowCommandOutput;
|
|
234
239
|
/**
|
|
235
240
|
* @public
|
|
236
241
|
*/
|
|
@@ -158,6 +158,7 @@ declare const BatchGetWorkflowsCommand_base: {
|
|
|
158
158
|
* // DPUSeconds: Number("double"),
|
|
159
159
|
* // ExecutionClass: "FLEX" || "STANDARD",
|
|
160
160
|
* // MaintenanceWindow: "STRING_VALUE",
|
|
161
|
+
* // ProfileName: "STRING_VALUE",
|
|
161
162
|
* // },
|
|
162
163
|
* // ],
|
|
163
164
|
* // },
|
|
@@ -268,6 +269,7 @@ declare const BatchGetWorkflowsCommand_base: {
|
|
|
268
269
|
* // DPUSeconds: Number("double"),
|
|
269
270
|
* // ExecutionClass: "FLEX" || "STANDARD",
|
|
270
271
|
* // MaintenanceWindow: "STRING_VALUE",
|
|
272
|
+
* // ProfileName: "STRING_VALUE",
|
|
271
273
|
* // },
|
|
272
274
|
* // ],
|
|
273
275
|
* // },
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
|
|
4
|
+
import { CreateUsageProfileRequest, CreateUsageProfileResponse } from "../models/models_1";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link CreateUsageProfileCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CreateUsageProfileCommandInput extends CreateUsageProfileRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CreateUsageProfileCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateUsageProfileCommandOutput extends CreateUsageProfileResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const CreateUsageProfileCommand_base: {
|
|
25
|
+
new (input: CreateUsageProfileCommandInput): import("@smithy/smithy-client").CommandImpl<CreateUsageProfileCommandInput, CreateUsageProfileCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: CreateUsageProfileCommandInput): import("@smithy/smithy-client").CommandImpl<CreateUsageProfileCommandInput, CreateUsageProfileCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Creates an Glue usage profile.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { GlueClient, CreateUsageProfileCommand } from "@aws-sdk/client-glue"; // ES Modules import
|
|
35
|
+
* // const { GlueClient, CreateUsageProfileCommand } = require("@aws-sdk/client-glue"); // CommonJS import
|
|
36
|
+
* const client = new GlueClient(config);
|
|
37
|
+
* const input = { // CreateUsageProfileRequest
|
|
38
|
+
* Name: "STRING_VALUE", // required
|
|
39
|
+
* Description: "STRING_VALUE",
|
|
40
|
+
* Configuration: { // ProfileConfiguration
|
|
41
|
+
* SessionConfiguration: { // ConfigurationMap
|
|
42
|
+
* "<keys>": { // ConfigurationObject
|
|
43
|
+
* DefaultValue: "STRING_VALUE",
|
|
44
|
+
* AllowedValues: [ // AllowedValuesStringList
|
|
45
|
+
* "STRING_VALUE",
|
|
46
|
+
* ],
|
|
47
|
+
* MinValue: "STRING_VALUE",
|
|
48
|
+
* MaxValue: "STRING_VALUE",
|
|
49
|
+
* },
|
|
50
|
+
* },
|
|
51
|
+
* JobConfiguration: {
|
|
52
|
+
* "<keys>": {
|
|
53
|
+
* DefaultValue: "STRING_VALUE",
|
|
54
|
+
* AllowedValues: [
|
|
55
|
+
* "STRING_VALUE",
|
|
56
|
+
* ],
|
|
57
|
+
* MinValue: "STRING_VALUE",
|
|
58
|
+
* MaxValue: "STRING_VALUE",
|
|
59
|
+
* },
|
|
60
|
+
* },
|
|
61
|
+
* },
|
|
62
|
+
* Tags: { // TagsMap
|
|
63
|
+
* "<keys>": "STRING_VALUE",
|
|
64
|
+
* },
|
|
65
|
+
* };
|
|
66
|
+
* const command = new CreateUsageProfileCommand(input);
|
|
67
|
+
* const response = await client.send(command);
|
|
68
|
+
* // { // CreateUsageProfileResponse
|
|
69
|
+
* // Name: "STRING_VALUE",
|
|
70
|
+
* // };
|
|
71
|
+
*
|
|
72
|
+
* ```
|
|
73
|
+
*
|
|
74
|
+
* @param CreateUsageProfileCommandInput - {@link CreateUsageProfileCommandInput}
|
|
75
|
+
* @returns {@link CreateUsageProfileCommandOutput}
|
|
76
|
+
* @see {@link CreateUsageProfileCommandInput} for command's `input` shape.
|
|
77
|
+
* @see {@link CreateUsageProfileCommandOutput} for command's `response` shape.
|
|
78
|
+
* @see {@link GlueClientResolvedConfig | config} for GlueClient's `config` shape.
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link AlreadyExistsException} (client fault)
|
|
81
|
+
* <p>A resource to be created or added already exists.</p>
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
84
|
+
* <p>An internal service error occurred.</p>
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link InvalidInputException} (client fault)
|
|
87
|
+
* <p>The input provided was not valid.</p>
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link OperationNotSupportedException} (client fault)
|
|
90
|
+
* <p>The operation is not available in the region.</p>
|
|
91
|
+
*
|
|
92
|
+
* @throws {@link OperationTimeoutException} (client fault)
|
|
93
|
+
* <p>The operation timed out.</p>
|
|
94
|
+
*
|
|
95
|
+
* @throws {@link ResourceNumberLimitExceededException} (client fault)
|
|
96
|
+
* <p>A resource numerical limit was exceeded.</p>
|
|
97
|
+
*
|
|
98
|
+
* @throws {@link GlueServiceException}
|
|
99
|
+
* <p>Base exception class for all service exceptions from Glue service.</p>
|
|
100
|
+
*
|
|
101
|
+
* @public
|
|
102
|
+
*/
|
|
103
|
+
export declare class CreateUsageProfileCommand extends CreateUsageProfileCommand_base {
|
|
104
|
+
}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
|
|
4
|
+
import { DeleteUsageProfileRequest, DeleteUsageProfileResponse } from "../models/models_1";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DeleteUsageProfileCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteUsageProfileCommandInput extends DeleteUsageProfileRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteUsageProfileCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteUsageProfileCommandOutput extends DeleteUsageProfileResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DeleteUsageProfileCommand_base: {
|
|
25
|
+
new (input: DeleteUsageProfileCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteUsageProfileCommandInput, DeleteUsageProfileCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: DeleteUsageProfileCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteUsageProfileCommandInput, DeleteUsageProfileCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Deletes the Glue specified usage profile.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { GlueClient, DeleteUsageProfileCommand } from "@aws-sdk/client-glue"; // ES Modules import
|
|
35
|
+
* // const { GlueClient, DeleteUsageProfileCommand } = require("@aws-sdk/client-glue"); // CommonJS import
|
|
36
|
+
* const client = new GlueClient(config);
|
|
37
|
+
* const input = { // DeleteUsageProfileRequest
|
|
38
|
+
* Name: "STRING_VALUE", // required
|
|
39
|
+
* };
|
|
40
|
+
* const command = new DeleteUsageProfileCommand(input);
|
|
41
|
+
* const response = await client.send(command);
|
|
42
|
+
* // {};
|
|
43
|
+
*
|
|
44
|
+
* ```
|
|
45
|
+
*
|
|
46
|
+
* @param DeleteUsageProfileCommandInput - {@link DeleteUsageProfileCommandInput}
|
|
47
|
+
* @returns {@link DeleteUsageProfileCommandOutput}
|
|
48
|
+
* @see {@link DeleteUsageProfileCommandInput} for command's `input` shape.
|
|
49
|
+
* @see {@link DeleteUsageProfileCommandOutput} for command's `response` shape.
|
|
50
|
+
* @see {@link GlueClientResolvedConfig | config} for GlueClient's `config` shape.
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
53
|
+
* <p>An internal service error occurred.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link InvalidInputException} (client fault)
|
|
56
|
+
* <p>The input provided was not valid.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link OperationNotSupportedException} (client fault)
|
|
59
|
+
* <p>The operation is not available in the region.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link OperationTimeoutException} (client fault)
|
|
62
|
+
* <p>The operation timed out.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link GlueServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from Glue service.</p>
|
|
66
|
+
*
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
69
|
+
export declare class DeleteUsageProfileCommand extends DeleteUsageProfileCommand_base {
|
|
70
|
+
}
|
|
@@ -27,7 +27,7 @@ declare const GetJobRunCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Retrieves the metadata for a given job run.</p>
|
|
30
|
+
* <p>Retrieves the metadata for a given job run. Job run history is accessible for 90 days for your workflow and job run.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -78,6 +78,7 @@ declare const GetJobRunCommand_base: {
|
|
|
78
78
|
* // DPUSeconds: Number("double"),
|
|
79
79
|
* // ExecutionClass: "FLEX" || "STANDARD",
|
|
80
80
|
* // MaintenanceWindow: "STRING_VALUE",
|
|
81
|
+
* // ProfileName: "STRING_VALUE",
|
|
81
82
|
* // },
|
|
82
83
|
* // };
|
|
83
84
|
*
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
|
|
4
|
-
import { GetRegistryInput, GetRegistryResponse } from "../models/
|
|
4
|
+
import { GetRegistryInput, GetRegistryResponse } from "../models/models_2";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
|
|
4
|
-
import { GetResourcePoliciesRequest, GetResourcePoliciesResponse } from "../models/
|
|
4
|
+
import { GetResourcePoliciesRequest, GetResourcePoliciesResponse } from "../models/models_2";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
|
|
4
|
-
import { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/
|
|
4
|
+
import { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_2";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
|
|
4
|
+
import { GetUsageProfileRequest, GetUsageProfileResponse } from "../models/models_2";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link GetUsageProfileCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetUsageProfileCommandInput extends GetUsageProfileRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link GetUsageProfileCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetUsageProfileCommandOutput extends GetUsageProfileResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const GetUsageProfileCommand_base: {
|
|
25
|
+
new (input: GetUsageProfileCommandInput): import("@smithy/smithy-client").CommandImpl<GetUsageProfileCommandInput, GetUsageProfileCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: GetUsageProfileCommandInput): import("@smithy/smithy-client").CommandImpl<GetUsageProfileCommandInput, GetUsageProfileCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Retrieves information about the specified Glue usage profile.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { GlueClient, GetUsageProfileCommand } from "@aws-sdk/client-glue"; // ES Modules import
|
|
35
|
+
* // const { GlueClient, GetUsageProfileCommand } = require("@aws-sdk/client-glue"); // CommonJS import
|
|
36
|
+
* const client = new GlueClient(config);
|
|
37
|
+
* const input = { // GetUsageProfileRequest
|
|
38
|
+
* Name: "STRING_VALUE", // required
|
|
39
|
+
* };
|
|
40
|
+
* const command = new GetUsageProfileCommand(input);
|
|
41
|
+
* const response = await client.send(command);
|
|
42
|
+
* // { // GetUsageProfileResponse
|
|
43
|
+
* // Name: "STRING_VALUE",
|
|
44
|
+
* // Description: "STRING_VALUE",
|
|
45
|
+
* // Configuration: { // ProfileConfiguration
|
|
46
|
+
* // SessionConfiguration: { // ConfigurationMap
|
|
47
|
+
* // "<keys>": { // ConfigurationObject
|
|
48
|
+
* // DefaultValue: "STRING_VALUE",
|
|
49
|
+
* // AllowedValues: [ // AllowedValuesStringList
|
|
50
|
+
* // "STRING_VALUE",
|
|
51
|
+
* // ],
|
|
52
|
+
* // MinValue: "STRING_VALUE",
|
|
53
|
+
* // MaxValue: "STRING_VALUE",
|
|
54
|
+
* // },
|
|
55
|
+
* // },
|
|
56
|
+
* // JobConfiguration: {
|
|
57
|
+
* // "<keys>": {
|
|
58
|
+
* // DefaultValue: "STRING_VALUE",
|
|
59
|
+
* // AllowedValues: [
|
|
60
|
+
* // "STRING_VALUE",
|
|
61
|
+
* // ],
|
|
62
|
+
* // MinValue: "STRING_VALUE",
|
|
63
|
+
* // MaxValue: "STRING_VALUE",
|
|
64
|
+
* // },
|
|
65
|
+
* // },
|
|
66
|
+
* // },
|
|
67
|
+
* // CreatedOn: new Date("TIMESTAMP"),
|
|
68
|
+
* // LastModifiedOn: new Date("TIMESTAMP"),
|
|
69
|
+
* // };
|
|
70
|
+
*
|
|
71
|
+
* ```
|
|
72
|
+
*
|
|
73
|
+
* @param GetUsageProfileCommandInput - {@link GetUsageProfileCommandInput}
|
|
74
|
+
* @returns {@link GetUsageProfileCommandOutput}
|
|
75
|
+
* @see {@link GetUsageProfileCommandInput} for command's `input` shape.
|
|
76
|
+
* @see {@link GetUsageProfileCommandOutput} for command's `response` shape.
|
|
77
|
+
* @see {@link GlueClientResolvedConfig | config} for GlueClient's `config` shape.
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link EntityNotFoundException} (client fault)
|
|
80
|
+
* <p>A specified entity does not exist</p>
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
83
|
+
* <p>An internal service error occurred.</p>
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link InvalidInputException} (client fault)
|
|
86
|
+
* <p>The input provided was not valid.</p>
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link OperationNotSupportedException} (client fault)
|
|
89
|
+
* <p>The operation is not available in the region.</p>
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link OperationTimeoutException} (client fault)
|
|
92
|
+
* <p>The operation timed out.</p>
|
|
93
|
+
*
|
|
94
|
+
* @throws {@link GlueServiceException}
|
|
95
|
+
* <p>Base exception class for all service exceptions from Glue service.</p>
|
|
96
|
+
*
|
|
97
|
+
* @public
|
|
98
|
+
*/
|
|
99
|
+
export declare class GetUsageProfileCommand extends GetUsageProfileCommand_base {
|
|
100
|
+
}
|
|
@@ -155,6 +155,7 @@ declare const GetWorkflowCommand_base: {
|
|
|
155
155
|
* // DPUSeconds: Number("double"),
|
|
156
156
|
* // ExecutionClass: "FLEX" || "STANDARD",
|
|
157
157
|
* // MaintenanceWindow: "STRING_VALUE",
|
|
158
|
+
* // ProfileName: "STRING_VALUE",
|
|
158
159
|
* // },
|
|
159
160
|
* // ],
|
|
160
161
|
* // },
|
|
@@ -265,6 +266,7 @@ declare const GetWorkflowCommand_base: {
|
|
|
265
266
|
* // DPUSeconds: Number("double"),
|
|
266
267
|
* // ExecutionClass: "FLEX" || "STANDARD",
|
|
267
268
|
* // MaintenanceWindow: "STRING_VALUE",
|
|
269
|
+
* // ProfileName: "STRING_VALUE",
|
|
268
270
|
* // },
|
|
269
271
|
* // ],
|
|
270
272
|
* // },
|
|
@@ -27,7 +27,7 @@ declare const GetWorkflowRunCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Retrieves the metadata for a given workflow run.
|
|
30
|
+
* <p>Retrieves the metadata for a given workflow run. Job run history is accessible for 90 days for your workflow and job run.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -148,6 +148,7 @@ declare const GetWorkflowRunCommand_base: {
|
|
|
148
148
|
* // DPUSeconds: Number("double"),
|
|
149
149
|
* // ExecutionClass: "FLEX" || "STANDARD",
|
|
150
150
|
* // MaintenanceWindow: "STRING_VALUE",
|
|
151
|
+
* // ProfileName: "STRING_VALUE",
|
|
151
152
|
* // },
|
|
152
153
|
* // ],
|
|
153
154
|
* // },
|