distilled-aws 0.0.12 → 0.0.15

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.
Files changed (62) hide show
  1. package/lib/client/api.d.ts.map +1 -1
  2. package/lib/client/api.js +14 -3
  3. package/lib/client/api.js.map +1 -1
  4. package/lib/client/response-parser.d.ts.map +1 -1
  5. package/lib/client/response-parser.js +14 -2
  6. package/lib/client/response-parser.js.map +1 -1
  7. package/lib/debug/error-recorder.d.ts +22 -0
  8. package/lib/debug/error-recorder.d.ts.map +1 -0
  9. package/lib/debug/error-recorder.js +106 -0
  10. package/lib/debug/error-recorder.js.map +1 -0
  11. package/lib/patch/discover-errors.js +9 -0
  12. package/lib/patch/discover-errors.js.map +1 -1
  13. package/lib/patch/spec-schema.d.ts +65 -0
  14. package/lib/patch/spec-schema.d.ts.map +1 -1
  15. package/lib/patch/spec-schema.js +31 -0
  16. package/lib/patch/spec-schema.js.map +1 -1
  17. package/lib/services/bedrock-agentcore-control.d.ts +3 -0
  18. package/lib/services/bedrock-agentcore-control.d.ts.map +1 -1
  19. package/lib/services/bedrock-agentcore-control.js +5 -1
  20. package/lib/services/bedrock-agentcore-control.js.map +1 -1
  21. package/lib/services/cloudfront.d.ts +83 -83
  22. package/lib/services/cloudfront.d.ts.map +1 -1
  23. package/lib/services/cloudfront.js +160 -157
  24. package/lib/services/cloudfront.js.map +1 -1
  25. package/lib/services/ec2.d.ts +1544 -919
  26. package/lib/services/ec2.d.ts.map +1 -1
  27. package/lib/services/ec2.js +1321 -622
  28. package/lib/services/ec2.js.map +1 -1
  29. package/lib/services/glue.d.ts +587 -478
  30. package/lib/services/glue.d.ts.map +1 -1
  31. package/lib/services/glue.js +1644 -1509
  32. package/lib/services/glue.js.map +1 -1
  33. package/lib/services/iam.d.ts +6 -1
  34. package/lib/services/iam.d.ts.map +1 -1
  35. package/lib/services/iam.js +3 -1
  36. package/lib/services/iam.js.map +1 -1
  37. package/lib/services/medialive.d.ts +33 -0
  38. package/lib/services/medialive.d.ts.map +1 -1
  39. package/lib/services/medialive.js +11 -0
  40. package/lib/services/medialive.js.map +1 -1
  41. package/lib/services/s3.d.ts +74 -59
  42. package/lib/services/s3.d.ts.map +1 -1
  43. package/lib/services/s3.js +76 -53
  44. package/lib/services/s3.js.map +1 -1
  45. package/lib/services/sqs.d.ts +1 -1
  46. package/lib/services/sqs.d.ts.map +1 -1
  47. package/lib/services/sqs.js +1 -0
  48. package/lib/services/sqs.js.map +1 -1
  49. package/package.json +6 -4
  50. package/src/client/api.ts +22 -2
  51. package/src/client/response-parser.ts +15 -2
  52. package/src/debug/error-recorder.ts +143 -0
  53. package/src/patch/discover-errors.ts +9 -0
  54. package/src/patch/spec-schema.ts +35 -0
  55. package/src/services/bedrock-agentcore-control.ts +7 -1
  56. package/src/services/cloudfront.ts +300 -294
  57. package/src/services/ec2.ts +2884 -1482
  58. package/src/services/glue.ts +3550 -3250
  59. package/src/services/iam.ts +9 -2
  60. package/src/services/medialive.ts +53 -0
  61. package/src/services/s3.ts +159 -108
  62. package/src/services/sqs.ts +2 -0
@@ -754,6 +754,12 @@ export const GetJobsRequest = S.suspend(() => S.Struct({
754
754
  }).pipe(T.all(T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotations({
755
755
  identifier: "GetJobsRequest",
756
756
  });
757
+ export const GetMaterializedViewRefreshTaskRunRequest = S.suspend(() => S.Struct({
758
+ CatalogId: S.String,
759
+ MaterializedViewRefreshTaskRunId: S.String,
760
+ }).pipe(T.all(T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotations({
761
+ identifier: "GetMaterializedViewRefreshTaskRunRequest",
762
+ });
757
763
  export const GetMLTaskRunRequest = S.suspend(() => S.Struct({ TransformId: S.String, TaskRunId: S.String }).pipe(T.all(T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotations({
758
764
  identifier: "GetMLTaskRunRequest",
759
765
  });
@@ -1032,6 +1038,15 @@ export const ListJobsRequest = S.suspend(() => S.Struct({
1032
1038
  }).pipe(T.all(T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotations({
1033
1039
  identifier: "ListJobsRequest",
1034
1040
  });
1041
+ export const ListMaterializedViewRefreshTaskRunsRequest = S.suspend(() => S.Struct({
1042
+ CatalogId: S.String,
1043
+ DatabaseName: S.optional(S.String),
1044
+ TableName: S.optional(S.String),
1045
+ MaxResults: S.optional(S.Number),
1046
+ NextToken: S.optional(S.String),
1047
+ }).pipe(T.all(T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotations({
1048
+ identifier: "ListMaterializedViewRefreshTaskRunsRequest",
1049
+ });
1035
1050
  export const TransformType = S.String;
1036
1051
  export const TransformStatusType = S.String;
1037
1052
  export const SchemaColumn = S.suspend(() => S.Struct({ Name: S.optional(S.String), DataType: S.optional(S.String) })).annotations({ identifier: "SchemaColumn" });
@@ -1287,6 +1302,14 @@ export const StartJobRunRequest = S.suspend(() => S.Struct({
1287
1302
  }).pipe(T.all(T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotations({
1288
1303
  identifier: "StartJobRunRequest",
1289
1304
  });
1305
+ export const StartMaterializedViewRefreshTaskRunRequest = S.suspend(() => S.Struct({
1306
+ CatalogId: S.String,
1307
+ DatabaseName: S.String,
1308
+ TableName: S.String,
1309
+ FullRefresh: S.optional(S.Boolean),
1310
+ }).pipe(T.all(T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotations({
1311
+ identifier: "StartMaterializedViewRefreshTaskRunRequest",
1312
+ });
1290
1313
  export const StartMLEvaluationTaskRunRequest = S.suspend(() => S.Struct({ TransformId: S.String }).pipe(T.all(T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotations({
1291
1314
  identifier: "StartMLEvaluationTaskRunRequest",
1292
1315
  });
@@ -1326,6 +1349,16 @@ export const StopCrawlerScheduleRequest = S.suspend(() => S.Struct({ CrawlerName
1326
1349
  export const StopCrawlerScheduleResponse = S.suspend(() => S.Struct({})).annotations({
1327
1350
  identifier: "StopCrawlerScheduleResponse",
1328
1351
  });
1352
+ export const StopMaterializedViewRefreshTaskRunRequest = S.suspend(() => S.Struct({
1353
+ CatalogId: S.String,
1354
+ DatabaseName: S.String,
1355
+ TableName: S.String,
1356
+ }).pipe(T.all(T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotations({
1357
+ identifier: "StopMaterializedViewRefreshTaskRunRequest",
1358
+ });
1359
+ export const StopMaterializedViewRefreshTaskRunResponse = S.suspend(() => S.Struct({})).annotations({
1360
+ identifier: "StopMaterializedViewRefreshTaskRunResponse",
1361
+ });
1329
1362
  export const StopSessionRequest = S.suspend(() => S.Struct({ Id: S.String, RequestOrigin: S.optional(S.String) }).pipe(T.all(T.Http({ method: "POST", uri: "/" }), svc, auth, proto, ver, rules))).annotations({
1330
1363
  identifier: "StopSessionRequest",
1331
1364
  });
@@ -2743,6 +2776,28 @@ export const IntegrationResourcePropertyFilter = S.suspend(() => S.Struct({
2743
2776
  identifier: "IntegrationResourcePropertyFilter",
2744
2777
  });
2745
2778
  export const IntegrationResourcePropertyFilterList = S.Array(IntegrationResourcePropertyFilter);
2779
+ export const MaterializedViewRefreshState = S.String;
2780
+ export const MaterializedViewRefreshType = S.String;
2781
+ export const MaterializedViewRefreshTaskRun = S.suspend(() => S.Struct({
2782
+ CustomerId: S.optional(S.String),
2783
+ MaterializedViewRefreshTaskRunId: S.optional(S.String),
2784
+ DatabaseName: S.optional(S.String),
2785
+ TableName: S.optional(S.String),
2786
+ CatalogId: S.optional(S.String),
2787
+ Role: S.optional(S.String),
2788
+ Status: S.optional(MaterializedViewRefreshState),
2789
+ CreationTime: S.optional(S.Date.pipe(T.TimestampFormat("epoch-seconds"))),
2790
+ LastUpdated: S.optional(S.Date.pipe(T.TimestampFormat("epoch-seconds"))),
2791
+ StartTime: S.optional(S.Date.pipe(T.TimestampFormat("epoch-seconds"))),
2792
+ EndTime: S.optional(S.Date.pipe(T.TimestampFormat("epoch-seconds"))),
2793
+ ErrorMessage: S.optional(S.String),
2794
+ DPUSeconds: S.optional(S.Number),
2795
+ RefreshType: S.optional(MaterializedViewRefreshType),
2796
+ ProcessedBytes: S.optional(S.Number),
2797
+ })).annotations({
2798
+ identifier: "MaterializedViewRefreshTaskRun",
2799
+ });
2800
+ export const MaterializedViewRefreshTaskRunsList = S.Array(MaterializedViewRefreshTaskRun);
2746
2801
  export const TransformIdList = S.Array(S.String);
2747
2802
  export const SessionIdList = S.Array(S.String);
2748
2803
  export const SessionStatus = S.String;
@@ -4829,6 +4884,12 @@ export const ListJobsResponse = S.suspend(() => S.Struct({
4829
4884
  })).annotations({
4830
4885
  identifier: "ListJobsResponse",
4831
4886
  });
4887
+ export const ListMaterializedViewRefreshTaskRunsResponse = S.suspend(() => S.Struct({
4888
+ MaterializedViewRefreshTaskRuns: S.optional(MaterializedViewRefreshTaskRunsList),
4889
+ NextToken: S.optional(S.String),
4890
+ })).annotations({
4891
+ identifier: "ListMaterializedViewRefreshTaskRunsResponse",
4892
+ });
4832
4893
  export const ListMLTransformsResponse = S.suspend(() => S.Struct({ TransformIds: TransformIdList, NextToken: S.optional(S.String) })).annotations({
4833
4894
  identifier: "ListMLTransformsResponse",
4834
4895
  });
@@ -4970,6 +5031,9 @@ export const StartImportLabelsTaskRunResponse = S.suspend(() => S.Struct({ TaskR
4970
5031
  export const StartJobRunResponse = S.suspend(() => S.Struct({ JobRunId: S.optional(S.String) })).annotations({
4971
5032
  identifier: "StartJobRunResponse",
4972
5033
  });
5034
+ export const StartMaterializedViewRefreshTaskRunResponse = S.suspend(() => S.Struct({ MaterializedViewRefreshTaskRunId: S.optional(S.String) })).annotations({
5035
+ identifier: "StartMaterializedViewRefreshTaskRunResponse",
5036
+ });
4973
5037
  export const StartMLEvaluationTaskRunResponse = S.suspend(() => S.Struct({ TaskRunId: S.optional(S.String) })).annotations({
4974
5038
  identifier: "StartMLEvaluationTaskRunResponse",
4975
5039
  });
@@ -5779,6 +5843,11 @@ export const GetJobBookmarkResponse = S.suspend(() => S.Struct({ JobBookmarkEntr
5779
5843
  export const GetMappingResponse = S.suspend(() => S.Struct({ Mapping: MappingList })).annotations({
5780
5844
  identifier: "GetMappingResponse",
5781
5845
  });
5846
+ export const GetMaterializedViewRefreshTaskRunResponse = S.suspend(() => S.Struct({
5847
+ MaterializedViewRefreshTaskRun: S.optional(MaterializedViewRefreshTaskRun),
5848
+ })).annotations({
5849
+ identifier: "GetMaterializedViewRefreshTaskRunResponse",
5850
+ });
5782
5851
  export const GetMLTransformsRequest = S.suspend(() => S.Struct({
5783
5852
  NextToken: S.optional(S.String),
5784
5853
  MaxResults: S.optional(S.Number),
@@ -6961,6 +7030,11 @@ export class ColumnStatisticsTaskNotRunningException extends S.TaggedError()("Co
6961
7030
  }
6962
7031
  export class CrawlerNotRunningException extends S.TaggedError()("CrawlerNotRunningException", { Message: S.optional(S.String) }) {
6963
7032
  }
7033
+ export class InvalidInputException extends S.TaggedError()("InvalidInputException", {
7034
+ Message: S.optional(S.String),
7035
+ FromFederationSource: S.optional(S.Boolean),
7036
+ }) {
7037
+ }
6964
7038
  export class GlueEncryptionException extends S.TaggedError()("GlueEncryptionException", { Message: S.optional(S.String) }) {
6965
7039
  }
6966
7040
  export class OperationTimeoutException extends S.TaggedError()("OperationTimeoutException", { Message: S.optional(S.String) }) {
@@ -6970,11 +7044,6 @@ export class FederationSourceException extends S.TaggedError()("FederationSource
6970
7044
  Message: S.optional(S.String),
6971
7045
  }) {
6972
7046
  }
6973
- export class InvalidInputException extends S.TaggedError()("InvalidInputException", {
6974
- Message: S.optional(S.String),
6975
- FromFederationSource: S.optional(S.Boolean),
6976
- }) {
6977
- }
6978
7047
  export class IllegalSessionStateException extends S.TaggedError()("IllegalSessionStateException", { Message: S.optional(S.String) }) {
6979
7048
  }
6980
7049
  export class InternalServerException extends S.TaggedError()("InternalServerException", { Message: S.optional(S.String) }).pipe(C.withServerError) {
@@ -6991,12 +7060,22 @@ export class ColumnStatisticsTaskStoppingException extends S.TaggedError()("Colu
6991
7060
  }
6992
7061
  export class CrawlerStoppingException extends S.TaggedError()("CrawlerStoppingException", { Message: S.optional(S.String) }) {
6993
7062
  }
7063
+ export class MaterializedViewRefreshTaskNotRunningException extends S.TaggedError()("MaterializedViewRefreshTaskNotRunningException", { Message: S.optional(S.String) }) {
7064
+ }
6994
7065
  export class IdempotentParameterMismatchException extends S.TaggedError()("IdempotentParameterMismatchException", { Message: S.optional(S.String) }) {
6995
7066
  }
7067
+ export class OperationNotSupportedException extends S.TaggedError()("OperationNotSupportedException", { Message: S.optional(S.String) }) {
7068
+ }
7069
+ export class ThrottlingException extends S.TaggedError()("ThrottlingException", { Message: S.optional(S.String) }) {
7070
+ }
6996
7071
  export class NoScheduleException extends S.TaggedError()("NoScheduleException", { Message: S.optional(S.String) }) {
6997
7072
  }
6998
7073
  export class IllegalWorkflowStateException extends S.TaggedError()("IllegalWorkflowStateException", { Message: S.optional(S.String) }) {
6999
7074
  }
7075
+ export class ResourceNumberLimitExceededException extends S.TaggedError()("ResourceNumberLimitExceededException", { Message: S.optional(S.String) }) {
7076
+ }
7077
+ export class MaterializedViewRefreshTaskRunningException extends S.TaggedError()("MaterializedViewRefreshTaskRunningException", { Message: S.optional(S.String) }) {
7078
+ }
7000
7079
  export class FederatedResourceAlreadyExistsException extends S.TaggedError()("FederatedResourceAlreadyExistsException", {
7001
7080
  Message: S.optional(S.String),
7002
7081
  AssociatedGlueResource: S.optional(S.String),
@@ -7012,35 +7091,89 @@ export class ValidationException extends S.TaggedError()("ValidationException",
7012
7091
  }
7013
7092
  export class ResourceNotFoundException extends S.TaggedError()("ResourceNotFoundException", { Message: S.optional(S.String) }).pipe(C.withBadRequestError) {
7014
7093
  }
7015
- export class ThrottlingException extends S.TaggedError()("ThrottlingException", { Message: S.optional(S.String) }) {
7016
- }
7017
- export class OperationNotSupportedException extends S.TaggedError()("OperationNotSupportedException", { Message: S.optional(S.String) }) {
7018
- }
7019
- export class ResourceNumberLimitExceededException extends S.TaggedError()("ResourceNumberLimitExceededException", { Message: S.optional(S.String) }) {
7094
+ export class MaterializedViewRefreshTaskStoppingException extends S.TaggedError()("MaterializedViewRefreshTaskStoppingException", { Message: S.optional(S.String) }) {
7020
7095
  }
7021
7096
  export class SchedulerRunningException extends S.TaggedError()("SchedulerRunningException", { Message: S.optional(S.String) }) {
7022
7097
  }
7023
7098
  export class ResourceNotReadyException extends S.TaggedError()("ResourceNotReadyException", { Message: S.optional(S.String) }) {
7024
7099
  }
7025
- export class SchedulerNotRunningException extends S.TaggedError()("SchedulerNotRunningException", { Message: S.optional(S.String) }) {
7026
- }
7027
7100
  export class VersionMismatchException extends S.TaggedError()("VersionMismatchException", { Message: S.optional(S.String) }) {
7028
7101
  }
7102
+ export class SchedulerNotRunningException extends S.TaggedError()("SchedulerNotRunningException", { Message: S.optional(S.String) }) {
7103
+ }
7029
7104
  export class MLTransformNotReadyException extends S.TaggedError()("MLTransformNotReadyException", { Message: S.optional(S.String) }) {
7030
7105
  }
7031
7106
  export class IntegrationQuotaExceededFault extends S.TaggedError()("IntegrationQuotaExceededFault", { Message: S.optional(S.String) }).pipe(C.withQuotaError) {
7032
7107
  }
7108
+ export class TargetResourceNotFound extends S.TaggedError()("TargetResourceNotFound", { Message: S.optional(S.String) }).pipe(C.withBadRequestError) {
7109
+ }
7033
7110
  export class PermissionTypeMismatchException extends S.TaggedError()("PermissionTypeMismatchException", { Message: S.optional(S.String) }) {
7034
7111
  }
7035
7112
  export class InvalidStateException extends S.TaggedError()("InvalidStateException", { Message: S.optional(S.String) }) {
7036
7113
  }
7037
7114
  export class InvalidIntegrationStateFault extends S.TaggedError()("InvalidIntegrationStateFault", { Message: S.optional(S.String) }).pipe(C.withBadRequestError) {
7038
7115
  }
7039
- export class TargetResourceNotFound extends S.TaggedError()("TargetResourceNotFound", { Message: S.optional(S.String) }).pipe(C.withBadRequestError) {
7040
- }
7041
7116
  export class KMSKeyNotAccessibleFault extends S.TaggedError()("KMSKeyNotAccessibleFault", { Message: S.optional(S.String) }).pipe(C.withBadRequestError) {
7042
7117
  }
7043
7118
  //# Operations
7119
+ /**
7120
+ * Updates an existing registry which is used to hold a collection of schemas. The updated properties relate to the registry, and do not modify any of the schemas within the registry.
7121
+ */
7122
+ export const updateRegistry = API.make(() => ({
7123
+ input: UpdateRegistryInput,
7124
+ output: UpdateRegistryResponse,
7125
+ errors: [
7126
+ AccessDeniedException,
7127
+ ConcurrentModificationException,
7128
+ EntityNotFoundException,
7129
+ InternalServiceException,
7130
+ InvalidInputException,
7131
+ ],
7132
+ }));
7133
+ /**
7134
+ * Updates the description, compatibility setting, or version checkpoint for a schema set.
7135
+ *
7136
+ * For updating the compatibility setting, the call will not validate compatibility for the entire set of schema versions with the new compatibility setting. If the value for `Compatibility` is provided, the `VersionNumber` (a checkpoint) is also required. The API will validate the checkpoint version number for consistency.
7137
+ *
7138
+ * If the value for the `VersionNumber` (checkpoint) is provided, `Compatibility` is optional and this can be used to set/reset a checkpoint for the schema.
7139
+ *
7140
+ * This update will happen only if the schema is in the AVAILABLE state.
7141
+ */
7142
+ export const updateSchema = API.make(() => ({
7143
+ input: UpdateSchemaInput,
7144
+ output: UpdateSchemaResponse,
7145
+ errors: [
7146
+ AccessDeniedException,
7147
+ ConcurrentModificationException,
7148
+ EntityNotFoundException,
7149
+ InternalServiceException,
7150
+ InvalidInputException,
7151
+ ],
7152
+ }));
7153
+ /**
7154
+ * Annotate all datapoints for a Profile.
7155
+ */
7156
+ export const putDataQualityProfileAnnotation = API.make(() => ({
7157
+ input: PutDataQualityProfileAnnotationRequest,
7158
+ output: PutDataQualityProfileAnnotationResponse,
7159
+ errors: [
7160
+ EntityNotFoundException,
7161
+ InternalServiceException,
7162
+ InvalidInputException,
7163
+ ],
7164
+ }));
7165
+ /**
7166
+ * Validates the supplied schema. This call has no side effects, it simply validates using the supplied schema using `DataFormat` as the format. Since it does not take a schema set name, no compatibility checks are performed.
7167
+ */
7168
+ export const checkSchemaVersionValidity = API.make(() => ({
7169
+ input: CheckSchemaVersionValidityInput,
7170
+ output: CheckSchemaVersionValidityResponse,
7171
+ errors: [
7172
+ AccessDeniedException,
7173
+ InternalServiceException,
7174
+ InvalidInputException,
7175
+ ],
7176
+ }));
7044
7177
  /**
7045
7178
  * Delete the entire registry including schema and all of its versions. To get the status of the delete operation, you can call the `GetRegistry` API after the asynchronous call. Deleting a registry will deactivate all online operations for the registry such as the `UpdateRegistry`, `CreateSchema`, `UpdateSchema`, and `RegisterSchemaVersion` APIs.
7046
7179
  */
@@ -7054,6 +7187,72 @@ export const deleteRegistry = API.make(() => ({
7054
7187
  InvalidInputException,
7055
7188
  ],
7056
7189
  }));
7190
+ /**
7191
+ * Describes the specified registry in detail.
7192
+ */
7193
+ export const getRegistry = API.make(() => ({
7194
+ input: GetRegistryInput,
7195
+ output: GetRegistryResponse,
7196
+ errors: [
7197
+ AccessDeniedException,
7198
+ EntityNotFoundException,
7199
+ InternalServiceException,
7200
+ InvalidInputException,
7201
+ ],
7202
+ }));
7203
+ /**
7204
+ * Describes the specified schema in detail.
7205
+ */
7206
+ export const getSchema = API.make(() => ({
7207
+ input: GetSchemaInput,
7208
+ output: GetSchemaResponse,
7209
+ errors: [
7210
+ AccessDeniedException,
7211
+ EntityNotFoundException,
7212
+ InternalServiceException,
7213
+ InvalidInputException,
7214
+ ],
7215
+ }));
7216
+ /**
7217
+ * Retrieves a schema by the `SchemaDefinition`. The schema definition is sent to the Schema Registry, canonicalized, and hashed. If the hash is matched within the scope of the `SchemaName` or ARN (or the default registry, if none is supplied), that schema’s metadata is returned. Otherwise, a 404 or NotFound error is returned. Schema versions in `Deleted` statuses will not be included in the results.
7218
+ */
7219
+ export const getSchemaByDefinition = API.make(() => ({
7220
+ input: GetSchemaByDefinitionInput,
7221
+ output: GetSchemaByDefinitionResponse,
7222
+ errors: [
7223
+ AccessDeniedException,
7224
+ EntityNotFoundException,
7225
+ InternalServiceException,
7226
+ InvalidInputException,
7227
+ ],
7228
+ }));
7229
+ /**
7230
+ * Fetches the schema version difference in the specified difference type between two stored schema versions in the Schema Registry.
7231
+ *
7232
+ * This API allows you to compare two schema versions between two schema definitions under the same schema.
7233
+ */
7234
+ export const getSchemaVersionsDiff = API.make(() => ({
7235
+ input: GetSchemaVersionsDiffInput,
7236
+ output: GetSchemaVersionsDiffResponse,
7237
+ errors: [
7238
+ AccessDeniedException,
7239
+ EntityNotFoundException,
7240
+ InternalServiceException,
7241
+ InvalidInputException,
7242
+ ],
7243
+ }));
7244
+ /**
7245
+ * Removes a key value pair from the schema version metadata for the specified schema version ID.
7246
+ */
7247
+ export const removeSchemaVersionMetadata = API.make(() => ({
7248
+ input: RemoveSchemaVersionMetadataInput,
7249
+ output: RemoveSchemaVersionMetadataResponse,
7250
+ errors: [
7251
+ AccessDeniedException,
7252
+ EntityNotFoundException,
7253
+ InvalidInputException,
7254
+ ],
7255
+ }));
7057
7256
  /**
7058
7257
  * Deletes the entire schema set, including the schema set and all of its versions. To get the status of the delete operation, you can call `GetSchema` API after the asynchronous call. Deleting a registry will deactivate all online operations for the schema, such as the `GetSchemaByDefinition`, and `RegisterSchemaVersion` APIs.
7059
7258
  */
@@ -7187,6 +7386,19 @@ export const getMapping = API.make(() => ({
7187
7386
  OperationTimeoutException,
7188
7387
  ],
7189
7388
  }));
7389
+ /**
7390
+ * Get the associated metadata/information for a task run, given a task run ID.
7391
+ */
7392
+ export const getMaterializedViewRefreshTaskRun = API.make(() => ({
7393
+ input: GetMaterializedViewRefreshTaskRunRequest,
7394
+ output: GetMaterializedViewRefreshTaskRunResponse,
7395
+ errors: [
7396
+ AccessDeniedException,
7397
+ EntityNotFoundException,
7398
+ InvalidInputException,
7399
+ OperationTimeoutException,
7400
+ ],
7401
+ }));
7190
7402
  /**
7191
7403
  * Gets code to perform a specified mapping.
7192
7404
  */
@@ -7468,6 +7680,35 @@ export const updateTrigger = API.make(() => ({
7468
7680
  OperationTimeoutException,
7469
7681
  ],
7470
7682
  }));
7683
+ /**
7684
+ * Update an Glue usage profile.
7685
+ */
7686
+ export const updateUsageProfile = API.make(() => ({
7687
+ input: UpdateUsageProfileRequest,
7688
+ output: UpdateUsageProfileResponse,
7689
+ errors: [
7690
+ ConcurrentModificationException,
7691
+ EntityNotFoundException,
7692
+ InternalServiceException,
7693
+ InvalidInputException,
7694
+ OperationNotSupportedException,
7695
+ OperationTimeoutException,
7696
+ ],
7697
+ }));
7698
+ /**
7699
+ * Deletes an optimizer and all associated metadata for a table. The optimization will no longer be performed on the table.
7700
+ */
7701
+ export const deleteTableOptimizer = API.make(() => ({
7702
+ input: DeleteTableOptimizerRequest,
7703
+ output: DeleteTableOptimizerResponse,
7704
+ errors: [
7705
+ AccessDeniedException,
7706
+ EntityNotFoundException,
7707
+ InternalServiceException,
7708
+ InvalidInputException,
7709
+ ThrottlingException,
7710
+ ],
7711
+ }));
7471
7712
  /**
7472
7713
  * Stops the execution of the specified workflow run.
7473
7714
  */
@@ -7706,133 +7947,112 @@ export const listCrawlers = API.makePaginated(() => ({
7706
7947
  },
7707
7948
  }));
7708
7949
  /**
7709
- * Removes a classifier from the Data Catalog.
7950
+ * Stops a specified trigger.
7710
7951
  */
7711
- export const deleteClassifier = API.make(() => ({
7712
- input: DeleteClassifierRequest,
7713
- output: DeleteClassifierResponse,
7714
- errors: [EntityNotFoundException, OperationTimeoutException],
7952
+ export const stopTrigger = API.make(() => ({
7953
+ input: StopTriggerRequest,
7954
+ output: StopTriggerResponse,
7955
+ errors: [
7956
+ ConcurrentModificationException,
7957
+ EntityNotFoundException,
7958
+ InternalServiceException,
7959
+ InvalidInputException,
7960
+ OperationTimeoutException,
7961
+ ],
7715
7962
  }));
7716
7963
  /**
7717
- * Deletes a connection from the Data Catalog.
7964
+ * Updates an existing machine learning transform. Call this operation to tune the algorithm parameters to achieve better results.
7965
+ *
7966
+ * After calling this operation, you can call the `StartMLEvaluationTaskRun`
7967
+ * operation to assess how well your new parameters achieved your goals (such as improving the
7968
+ * quality of your machine learning transform, or making it more cost-effective).
7718
7969
  */
7719
- export const deleteConnection = API.make(() => ({
7720
- input: DeleteConnectionRequest,
7721
- output: DeleteConnectionResponse,
7722
- errors: [EntityNotFoundException, OperationTimeoutException],
7723
- }));
7724
- /**
7725
- * Starts a crawl using the specified crawler, regardless
7726
- * of what is scheduled. If the crawler is already running, returns a
7727
- * CrawlerRunningException.
7728
- */
7729
- export const startCrawler = API.make(() => ({
7730
- input: StartCrawlerRequest,
7731
- output: StartCrawlerResponse,
7970
+ export const updateMLTransform = API.make(() => ({
7971
+ input: UpdateMLTransformRequest,
7972
+ output: UpdateMLTransformResponse,
7732
7973
  errors: [
7733
- CrawlerRunningException,
7974
+ AccessDeniedException,
7734
7975
  EntityNotFoundException,
7976
+ InternalServiceException,
7977
+ InvalidInputException,
7735
7978
  OperationTimeoutException,
7736
7979
  ],
7737
7980
  }));
7738
7981
  /**
7739
- * Imports an existing Amazon Athena Data Catalog to Glue.
7740
- */
7741
- export const importCatalogToGlue = API.make(() => ({
7742
- input: ImportCatalogToGlueRequest,
7743
- output: ImportCatalogToGlueResponse,
7744
- errors: [InternalServiceException, OperationTimeoutException],
7745
- }));
7746
- /**
7747
- * Updates an existing catalog's properties in the Glue Data Catalog.
7982
+ * Updates an existing workflow.
7748
7983
  */
7749
- export const updateCatalog = API.make(() => ({
7750
- input: UpdateCatalogRequest,
7751
- output: UpdateCatalogResponse,
7984
+ export const updateWorkflow = API.make(() => ({
7985
+ input: UpdateWorkflowRequest,
7986
+ output: UpdateWorkflowResponse,
7752
7987
  errors: [
7753
- AccessDeniedException,
7754
7988
  ConcurrentModificationException,
7755
7989
  EntityNotFoundException,
7756
- FederationSourceException,
7757
- GlueEncryptionException,
7758
7990
  InternalServiceException,
7759
7991
  InvalidInputException,
7760
7992
  OperationTimeoutException,
7761
7993
  ],
7762
7994
  }));
7763
7995
  /**
7764
- * Removes the specified catalog from the Glue Data Catalog.
7765
- *
7766
- * After completing this operation, you no longer have access to the databases, tables (and all table versions and partitions that might belong to the tables) and the user-defined functions in the deleted catalog. Glue deletes these "orphaned" resources asynchronously in a timely manner, at the discretion of the service.
7767
- *
7768
- * To ensure the immediate deletion of all related resources before calling the `DeleteCatalog` operation, use `DeleteTableVersion` (or `BatchDeleteTableVersion`), `DeletePartition` (or `BatchDeletePartition`), `DeleteTable` (or `BatchDeleteTable`), `DeleteUserDefinedFunction` and `DeleteDatabase` to delete any resources that belong to the catalog.
7996
+ * Cancels a run where a ruleset is being evaluated against a data source.
7769
7997
  */
7770
- export const deleteCatalog = API.make(() => ({
7771
- input: DeleteCatalogRequest,
7772
- output: DeleteCatalogResponse,
7998
+ export const cancelDataQualityRulesetEvaluationRun = API.make(() => ({
7999
+ input: CancelDataQualityRulesetEvaluationRunRequest,
8000
+ output: CancelDataQualityRulesetEvaluationRunResponse,
7773
8001
  errors: [
7774
- AccessDeniedException,
7775
- ConcurrentModificationException,
7776
8002
  EntityNotFoundException,
7777
- FederationSourceException,
7778
- GlueEncryptionException,
7779
8003
  InternalServiceException,
7780
8004
  InvalidInputException,
7781
8005
  OperationTimeoutException,
7782
8006
  ],
7783
8007
  }));
7784
8008
  /**
7785
- * Deletes a workflow.
8009
+ * Removes a classifier from the Data Catalog.
7786
8010
  */
7787
- export const deleteWorkflow = API.make(() => ({
7788
- input: DeleteWorkflowRequest,
7789
- output: DeleteWorkflowResponse,
7790
- errors: [
7791
- ConcurrentModificationException,
7792
- InternalServiceException,
7793
- InvalidInputException,
7794
- OperationTimeoutException,
7795
- ],
8011
+ export const deleteClassifier = API.make(() => ({
8012
+ input: DeleteClassifierRequest,
8013
+ output: DeleteClassifierResponse,
8014
+ errors: [EntityNotFoundException, OperationTimeoutException],
7796
8015
  }));
7797
8016
  /**
7798
- * Retrieves the details of a blueprint.
8017
+ * Deletes settings for a column statistics task.
7799
8018
  */
7800
- export const getBlueprint = API.make(() => ({
7801
- input: GetBlueprintRequest,
7802
- output: GetBlueprintResponse,
8019
+ export const deleteColumnStatisticsTaskSettings = API.make(() => ({
8020
+ input: DeleteColumnStatisticsTaskSettingsRequest,
8021
+ output: DeleteColumnStatisticsTaskSettingsResponse,
7803
8022
  errors: [
7804
8023
  EntityNotFoundException,
7805
- InternalServiceException,
7806
8024
  InvalidInputException,
7807
8025
  OperationTimeoutException,
7808
8026
  ],
7809
8027
  }));
7810
8028
  /**
7811
- * Retrieves the details of blueprint runs for a specified blueprint.
8029
+ * Deletes a connection from the Data Catalog.
7812
8030
  */
7813
- export const getBlueprintRuns = API.makePaginated(() => ({
7814
- input: GetBlueprintRunsRequest,
7815
- output: GetBlueprintRunsResponse,
8031
+ export const deleteConnection = API.make(() => ({
8032
+ input: DeleteConnectionRequest,
8033
+ output: DeleteConnectionResponse,
8034
+ errors: [EntityNotFoundException, OperationTimeoutException],
8035
+ }));
8036
+ /**
8037
+ * Deletes a data quality ruleset.
8038
+ */
8039
+ export const deleteDataQualityRuleset = API.make(() => ({
8040
+ input: DeleteDataQualityRulesetRequest,
8041
+ output: DeleteDataQualityRulesetResponse,
7816
8042
  errors: [
7817
8043
  EntityNotFoundException,
7818
8044
  InternalServiceException,
7819
8045
  InvalidInputException,
7820
8046
  OperationTimeoutException,
7821
8047
  ],
7822
- pagination: {
7823
- inputToken: "NextToken",
7824
- outputToken: "NextToken",
7825
- pageSize: "MaxResults",
7826
- },
7827
8048
  }));
7828
8049
  /**
7829
- * Retrieves the details of a custom pattern by specifying its name.
8050
+ * Deletes a specified development endpoint.
7830
8051
  */
7831
- export const getCustomEntityType = API.make(() => ({
7832
- input: GetCustomEntityTypeRequest,
7833
- output: GetCustomEntityTypeResponse,
8052
+ export const deleteDevEndpoint = API.make(() => ({
8053
+ input: DeleteDevEndpointRequest,
8054
+ output: DeleteDevEndpointResponse,
7834
8055
  errors: [
7835
- AccessDeniedException,
7836
8056
  EntityNotFoundException,
7837
8057
  InternalServiceException,
7838
8058
  InvalidInputException,
@@ -7840,35 +8060,37 @@ export const getCustomEntityType = API.make(() => ({
7840
8060
  ],
7841
8061
  }));
7842
8062
  /**
7843
- * Retrieves the security configuration for a specified catalog.
8063
+ * Deletes a specified partition.
7844
8064
  */
7845
- export const getDataCatalogEncryptionSettings = API.make(() => ({
7846
- input: GetDataCatalogEncryptionSettingsRequest,
7847
- output: GetDataCatalogEncryptionSettingsResponse,
8065
+ export const deletePartition = API.make(() => ({
8066
+ input: DeletePartitionRequest,
8067
+ output: DeletePartitionResponse,
7848
8068
  errors: [
8069
+ EntityNotFoundException,
7849
8070
  InternalServiceException,
7850
8071
  InvalidInputException,
7851
8072
  OperationTimeoutException,
7852
8073
  ],
7853
8074
  }));
7854
8075
  /**
7855
- * Transforms a Python script into a directed acyclic graph (DAG).
8076
+ * Deletes a specified security configuration.
7856
8077
  */
7857
- export const getDataflowGraph = API.make(() => ({
7858
- input: GetDataflowGraphRequest,
7859
- output: GetDataflowGraphResponse,
8078
+ export const deleteSecurityConfiguration = API.make(() => ({
8079
+ input: DeleteSecurityConfigurationRequest,
8080
+ output: DeleteSecurityConfigurationResponse,
7860
8081
  errors: [
8082
+ EntityNotFoundException,
7861
8083
  InternalServiceException,
7862
8084
  InvalidInputException,
7863
8085
  OperationTimeoutException,
7864
8086
  ],
7865
8087
  }));
7866
8088
  /**
7867
- * Retrieve the training status of the model along with more information (CompletedOn, StartedOn, FailureReason).
8089
+ * Deletes a specified version of a table.
7868
8090
  */
7869
- export const getDataQualityModel = API.make(() => ({
7870
- input: GetDataQualityModelRequest,
7871
- output: GetDataQualityModelResponse,
8091
+ export const deleteTableVersion = API.make(() => ({
8092
+ input: DeleteTableVersionRequest,
8093
+ output: DeleteTableVersionResponse,
7872
8094
  errors: [
7873
8095
  EntityNotFoundException,
7874
8096
  InternalServiceException,
@@ -7877,11 +8099,11 @@ export const getDataQualityModel = API.make(() => ({
7877
8099
  ],
7878
8100
  }));
7879
8101
  /**
7880
- * Gets the specified recommendation run that was used to generate rules.
8102
+ * Deletes an existing function definition from the Data Catalog.
7881
8103
  */
7882
- export const getDataQualityRuleRecommendationRun = API.make(() => ({
7883
- input: GetDataQualityRuleRecommendationRunRequest,
7884
- output: GetDataQualityRuleRecommendationRunResponse,
8104
+ export const deleteUserDefinedFunction = API.make(() => ({
8105
+ input: DeleteUserDefinedFunctionRequest,
8106
+ output: DeleteUserDefinedFunctionResponse,
7885
8107
  errors: [
7886
8108
  EntityNotFoundException,
7887
8109
  InternalServiceException,
@@ -7890,41 +8112,38 @@ export const getDataQualityRuleRecommendationRun = API.make(() => ({
7890
8112
  ],
7891
8113
  }));
7892
8114
  /**
7893
- * Returns an existing ruleset by identifier or name.
8115
+ * Starts a column statistics task run schedule.
7894
8116
  */
7895
- export const getDataQualityRuleset = API.make(() => ({
7896
- input: GetDataQualityRulesetRequest,
7897
- output: GetDataQualityRulesetResponse,
8117
+ export const startColumnStatisticsTaskRunSchedule = API.make(() => ({
8118
+ input: StartColumnStatisticsTaskRunScheduleRequest,
8119
+ output: StartColumnStatisticsTaskRunScheduleResponse,
7898
8120
  errors: [
8121
+ AccessDeniedException,
7899
8122
  EntityNotFoundException,
7900
- InternalServiceException,
7901
8123
  InvalidInputException,
7902
8124
  OperationTimeoutException,
7903
8125
  ],
7904
8126
  }));
7905
8127
  /**
7906
- * Retrieves a specific run where a ruleset is evaluated against a data source.
8128
+ * Stops a column statistics task run schedule.
7907
8129
  */
7908
- export const getDataQualityRulesetEvaluationRun = API.make(() => ({
7909
- input: GetDataQualityRulesetEvaluationRunRequest,
7910
- output: GetDataQualityRulesetEvaluationRunResponse,
8130
+ export const stopColumnStatisticsTaskRunSchedule = API.make(() => ({
8131
+ input: StopColumnStatisticsTaskRunScheduleRequest,
8132
+ output: StopColumnStatisticsTaskRunScheduleResponse,
7911
8133
  errors: [
7912
8134
  EntityNotFoundException,
7913
- InternalServiceException,
7914
8135
  InvalidInputException,
7915
8136
  OperationTimeoutException,
7916
8137
  ],
7917
8138
  }));
7918
8139
  /**
7919
- * Retrieves information about a specified development endpoint.
7920
- *
7921
- * When you create a development endpoint in a virtual private cloud (VPC), Glue returns only
7922
- * a private IP address, and the public IP address field is not populated. When you create a
7923
- * non-VPC development endpoint, Glue returns only a public IP address.
8140
+ * Adds tags to a resource. A tag is a label you can assign to an Amazon Web Services resource.
8141
+ * In Glue, you can tag only certain resources. For information about what
8142
+ * resources you can tag, see Amazon Web Services Tags in Glue.
7924
8143
  */
7925
- export const getDevEndpoint = API.make(() => ({
7926
- input: GetDevEndpointRequest,
7927
- output: GetDevEndpointResponse,
8144
+ export const tagResource = API.make(() => ({
8145
+ input: TagResourceRequest,
8146
+ output: TagResourceResponse,
7928
8147
  errors: [
7929
8148
  EntityNotFoundException,
7930
8149
  InternalServiceException,
@@ -7933,100 +8152,88 @@ export const getDevEndpoint = API.make(() => ({
7933
8152
  ],
7934
8153
  }));
7935
8154
  /**
7936
- * Retrieves all the development endpoints in this Amazon Web Services account.
7937
- *
7938
- * When you create a development endpoint in a virtual private cloud (VPC), Glue returns only a private IP address
7939
- * and the public IP address field is not populated. When you create a non-VPC development
7940
- * endpoint, Glue returns only a public IP address.
8155
+ * Removes tags from a resource.
7941
8156
  */
7942
- export const getDevEndpoints = API.makePaginated(() => ({
7943
- input: GetDevEndpointsRequest,
7944
- output: GetDevEndpointsResponse,
8157
+ export const untagResource = API.make(() => ({
8158
+ input: UntagResourceRequest,
8159
+ output: UntagResourceResponse,
7945
8160
  errors: [
7946
8161
  EntityNotFoundException,
7947
8162
  InternalServiceException,
7948
8163
  InvalidInputException,
7949
8164
  OperationTimeoutException,
7950
8165
  ],
7951
- pagination: {
7952
- inputToken: "NextToken",
7953
- outputToken: "NextToken",
7954
- pageSize: "MaxResults",
7955
- },
7956
8166
  }));
7957
8167
  /**
7958
- * Retrieves an existing job definition.
8168
+ * Creates a classifier in the user's account. This can be a `GrokClassifier`, an
8169
+ * `XMLClassifier`, a `JsonClassifier`, or a `CsvClassifier`,
8170
+ * depending on which field of the request is present.
7959
8171
  */
7960
- export const getJob = API.make(() => ({
7961
- input: GetJobRequest,
7962
- output: GetJobResponse,
8172
+ export const createClassifier = API.make(() => ({
8173
+ input: CreateClassifierRequest,
8174
+ output: CreateClassifierResponse,
7963
8175
  errors: [
7964
- EntityNotFoundException,
7965
- InternalServiceException,
8176
+ AlreadyExistsException,
7966
8177
  InvalidInputException,
7967
8178
  OperationTimeoutException,
7968
8179
  ],
7969
8180
  }));
7970
8181
  /**
7971
- * Retrieves metadata for all runs of a given job definition.
7972
- *
7973
- * `GetJobRuns` returns the job runs in chronological order, with the newest jobs returned first.
8182
+ * Creates a new Glue Identity Center configuration to enable integration between Glue and Amazon Web Services IAM
8183
+ * Identity Center for authentication and authorization.
7974
8184
  */
7975
- export const getJobRuns = API.makePaginated(() => ({
7976
- input: GetJobRunsRequest,
7977
- output: GetJobRunsResponse,
8185
+ export const createGlueIdentityCenterConfiguration = API.make(() => ({
8186
+ input: CreateGlueIdentityCenterConfigurationRequest,
8187
+ output: CreateGlueIdentityCenterConfigurationResponse,
7978
8188
  errors: [
7979
- EntityNotFoundException,
8189
+ AccessDeniedException,
8190
+ AlreadyExistsException,
8191
+ ConcurrentModificationException,
7980
8192
  InternalServiceException,
7981
8193
  InvalidInputException,
7982
8194
  OperationTimeoutException,
7983
8195
  ],
7984
- pagination: {
7985
- inputToken: "NextToken",
7986
- outputToken: "NextToken",
7987
- items: "JobRuns",
7988
- pageSize: "MaxResults",
7989
- },
7990
8196
  }));
7991
8197
  /**
7992
- * Retrieves all current job definitions.
8198
+ * Starts a crawl using the specified crawler, regardless
8199
+ * of what is scheduled. If the crawler is already running, returns a
8200
+ * CrawlerRunningException.
7993
8201
  */
7994
- export const getJobs = API.makePaginated(() => ({
7995
- input: GetJobsRequest,
7996
- output: GetJobsResponse,
8202
+ export const startCrawler = API.make(() => ({
8203
+ input: StartCrawlerRequest,
8204
+ output: StartCrawlerResponse,
7997
8205
  errors: [
8206
+ CrawlerRunningException,
7998
8207
  EntityNotFoundException,
7999
- InternalServiceException,
8000
- InvalidInputException,
8001
8208
  OperationTimeoutException,
8002
8209
  ],
8003
- pagination: {
8004
- inputToken: "NextToken",
8005
- outputToken: "NextToken",
8006
- items: "Jobs",
8007
- pageSize: "MaxResults",
8008
- },
8009
8210
  }));
8010
8211
  /**
8011
- * Describes the specified registry in detail.
8212
+ * Deletes the existing Glue Identity Center configuration, removing the integration between Glue and
8213
+ * Amazon Web Services IAM Identity Center.
8012
8214
  */
8013
- export const getRegistry = API.make(() => ({
8014
- input: GetRegistryInput,
8015
- output: GetRegistryResponse,
8215
+ export const deleteGlueIdentityCenterConfiguration = API.make(() => ({
8216
+ input: DeleteGlueIdentityCenterConfigurationRequest,
8217
+ output: DeleteGlueIdentityCenterConfigurationResponse,
8016
8218
  errors: [
8017
8219
  AccessDeniedException,
8220
+ ConcurrentModificationException,
8018
8221
  EntityNotFoundException,
8019
8222
  InternalServiceException,
8020
8223
  InvalidInputException,
8224
+ OperationTimeoutException,
8021
8225
  ],
8022
8226
  }));
8023
8227
  /**
8024
- * Retrieves a specified resource policy.
8228
+ * Retrieves the current Glue Identity Center configuration details, including the associated Identity Center instance and
8229
+ * application information.
8025
8230
  */
8026
- export const getResourcePolicy = API.make(() => ({
8027
- input: GetResourcePolicyRequest,
8028
- output: GetResourcePolicyResponse,
8231
+ export const getGlueIdentityCenterConfiguration = API.make(() => ({
8232
+ input: GetGlueIdentityCenterConfigurationRequest,
8233
+ output: GetGlueIdentityCenterConfigurationResponse,
8029
8234
  errors: [
8235
+ AccessDeniedException,
8236
+ ConcurrentModificationException,
8030
8237
  EntityNotFoundException,
8031
8238
  InternalServiceException,
8032
8239
  InvalidInputException,
@@ -8034,72 +8241,76 @@ export const getResourcePolicy = API.make(() => ({
8034
8241
  ],
8035
8242
  }));
8036
8243
  /**
8037
- * Describes the specified schema in detail.
8244
+ * Updates the existing Glue Identity Center configuration, allowing modification of scopes and permissions for the integration.
8038
8245
  */
8039
- export const getSchema = API.make(() => ({
8040
- input: GetSchemaInput,
8041
- output: GetSchemaResponse,
8246
+ export const updateGlueIdentityCenterConfiguration = API.make(() => ({
8247
+ input: UpdateGlueIdentityCenterConfigurationRequest,
8248
+ output: UpdateGlueIdentityCenterConfigurationResponse,
8042
8249
  errors: [
8043
8250
  AccessDeniedException,
8251
+ ConcurrentModificationException,
8044
8252
  EntityNotFoundException,
8045
8253
  InternalServiceException,
8046
8254
  InvalidInputException,
8255
+ OperationTimeoutException,
8047
8256
  ],
8048
8257
  }));
8049
8258
  /**
8050
- * Retrieves a schema by the `SchemaDefinition`. The schema definition is sent to the Schema Registry, canonicalized, and hashed. If the hash is matched within the scope of the `SchemaName` or ARN (or the default registry, if none is supplied), that schema’s metadata is returned. Otherwise, a 404 or NotFound error is returned. Schema versions in `Deleted` statuses will not be included in the results.
8259
+ * Imports an existing Amazon Athena Data Catalog to Glue.
8051
8260
  */
8052
- export const getSchemaByDefinition = API.make(() => ({
8053
- input: GetSchemaByDefinitionInput,
8054
- output: GetSchemaByDefinitionResponse,
8261
+ export const importCatalogToGlue = API.make(() => ({
8262
+ input: ImportCatalogToGlueRequest,
8263
+ output: ImportCatalogToGlueResponse,
8264
+ errors: [InternalServiceException, OperationTimeoutException],
8265
+ }));
8266
+ /**
8267
+ * Cancels the specified recommendation run that was being used to generate rules.
8268
+ */
8269
+ export const cancelDataQualityRuleRecommendationRun = API.make(() => ({
8270
+ input: CancelDataQualityRuleRecommendationRunRequest,
8271
+ output: CancelDataQualityRuleRecommendationRunResponse,
8055
8272
  errors: [
8056
- AccessDeniedException,
8057
8273
  EntityNotFoundException,
8058
8274
  InternalServiceException,
8059
8275
  InvalidInputException,
8276
+ OperationTimeoutException,
8060
8277
  ],
8061
8278
  }));
8062
8279
  /**
8063
- * Fetches the schema version difference in the specified difference type between two stored schema versions in the Schema Registry.
8064
- *
8065
- * This API allows you to compare two schema versions between two schema definitions under the same schema.
8280
+ * Cancels (stops) a task run. Machine learning task runs are asynchronous tasks that Glue runs on your behalf as part of various machine learning workflows. You can cancel a
8281
+ * machine learning task run at any time by calling `CancelMLTaskRun` with a task
8282
+ * run's parent transform's `TransformID` and the task run's `TaskRunId`.
8066
8283
  */
8067
- export const getSchemaVersionsDiff = API.make(() => ({
8068
- input: GetSchemaVersionsDiffInput,
8069
- output: GetSchemaVersionsDiffResponse,
8284
+ export const cancelMLTaskRun = API.make(() => ({
8285
+ input: CancelMLTaskRunRequest,
8286
+ output: CancelMLTaskRunResponse,
8070
8287
  errors: [
8071
- AccessDeniedException,
8072
8288
  EntityNotFoundException,
8073
8289
  InternalServiceException,
8074
8290
  InvalidInputException,
8291
+ OperationTimeoutException,
8075
8292
  ],
8076
8293
  }));
8077
8294
  /**
8078
- * Retrieves a list of all security configurations.
8295
+ * Deletes an existing blueprint.
8079
8296
  */
8080
- export const getSecurityConfigurations = API.makePaginated(() => ({
8081
- input: GetSecurityConfigurationsRequest,
8082
- output: GetSecurityConfigurationsResponse,
8297
+ export const deleteBlueprint = API.make(() => ({
8298
+ input: DeleteBlueprintRequest,
8299
+ output: DeleteBlueprintResponse,
8083
8300
  errors: [
8084
- EntityNotFoundException,
8085
8301
  InternalServiceException,
8086
8302
  InvalidInputException,
8087
8303
  OperationTimeoutException,
8088
8304
  ],
8089
- pagination: {
8090
- inputToken: "NextToken",
8091
- outputToken: "NextToken",
8092
- items: "SecurityConfigurations",
8093
- pageSize: "MaxResults",
8094
- },
8095
8305
  }));
8096
8306
  /**
8097
- * Retrieves a list of tags associated with a resource.
8307
+ * Deletes a custom pattern by specifying its name.
8098
8308
  */
8099
- export const getTags = API.make(() => ({
8100
- input: GetTagsRequest,
8101
- output: GetTagsResponse,
8309
+ export const deleteCustomEntityType = API.make(() => ({
8310
+ input: DeleteCustomEntityTypeRequest,
8311
+ output: DeleteCustomEntityTypeResponse,
8102
8312
  errors: [
8313
+ AccessDeniedException,
8103
8314
  EntityNotFoundException,
8104
8315
  InternalServiceException,
8105
8316
  InvalidInputException,
@@ -8107,44 +8318,44 @@ export const getTags = API.make(() => ({
8107
8318
  ],
8108
8319
  }));
8109
8320
  /**
8110
- * Retrieves the definition of a trigger.
8321
+ * Deletes a specified job definition. If the job definition
8322
+ * is not found, no exception is thrown.
8111
8323
  */
8112
- export const getTrigger = API.make(() => ({
8113
- input: GetTriggerRequest,
8114
- output: GetTriggerResponse,
8324
+ export const deleteJob = API.make(() => ({
8325
+ input: DeleteJobRequest,
8326
+ output: DeleteJobResponse,
8115
8327
  errors: [
8116
- EntityNotFoundException,
8117
8328
  InternalServiceException,
8118
8329
  InvalidInputException,
8119
8330
  OperationTimeoutException,
8120
8331
  ],
8121
8332
  }));
8122
8333
  /**
8123
- * Gets all the triggers associated with a job.
8334
+ * Deletes an Glue machine learning transform. Machine learning transforms are a special
8335
+ * type of transform that use machine learning to learn the details of the transformation to be
8336
+ * performed by learning from examples provided by humans. These transformations are then saved
8337
+ * by Glue. If you no longer need a transform, you can delete it by calling
8338
+ * `DeleteMLTransforms`. However, any Glue jobs that still reference the deleted
8339
+ * transform will no longer succeed.
8124
8340
  */
8125
- export const getTriggers = API.makePaginated(() => ({
8126
- input: GetTriggersRequest,
8127
- output: GetTriggersResponse,
8341
+ export const deleteMLTransform = API.make(() => ({
8342
+ input: DeleteMLTransformRequest,
8343
+ output: DeleteMLTransformResponse,
8128
8344
  errors: [
8129
8345
  EntityNotFoundException,
8130
8346
  InternalServiceException,
8131
8347
  InvalidInputException,
8132
8348
  OperationTimeoutException,
8133
8349
  ],
8134
- pagination: {
8135
- inputToken: "NextToken",
8136
- outputToken: "NextToken",
8137
- items: "Triggers",
8138
- pageSize: "MaxResults",
8139
- },
8140
8350
  }));
8141
8351
  /**
8142
- * Retrieves resource metadata for a workflow.
8352
+ * Deletes a specified policy.
8143
8353
  */
8144
- export const getWorkflow = API.make(() => ({
8145
- input: GetWorkflowRequest,
8146
- output: GetWorkflowResponse,
8354
+ export const deleteResourcePolicy = API.make(() => ({
8355
+ input: DeleteResourcePolicyRequest,
8356
+ output: DeleteResourcePolicyResponse,
8147
8357
  errors: [
8358
+ ConditionCheckFailureException,
8148
8359
  EntityNotFoundException,
8149
8360
  InternalServiceException,
8150
8361
  InvalidInputException,
@@ -8152,62 +8363,53 @@ export const getWorkflow = API.make(() => ({
8152
8363
  ],
8153
8364
  }));
8154
8365
  /**
8155
- * Retrieves the workflow run properties which were set during the run.
8366
+ * Deletes a specified trigger. If the trigger is not found, no
8367
+ * exception is thrown.
8156
8368
  */
8157
- export const getWorkflowRunProperties = API.make(() => ({
8158
- input: GetWorkflowRunPropertiesRequest,
8159
- output: GetWorkflowRunPropertiesResponse,
8369
+ export const deleteTrigger = API.make(() => ({
8370
+ input: DeleteTriggerRequest,
8371
+ output: DeleteTriggerResponse,
8160
8372
  errors: [
8161
- EntityNotFoundException,
8373
+ ConcurrentModificationException,
8162
8374
  InternalServiceException,
8163
8375
  InvalidInputException,
8164
8376
  OperationTimeoutException,
8165
8377
  ],
8166
8378
  }));
8167
8379
  /**
8168
- * Retrieves metadata for all runs of a given workflow.
8380
+ * Deletes a workflow.
8169
8381
  */
8170
- export const getWorkflowRuns = API.makePaginated(() => ({
8171
- input: GetWorkflowRunsRequest,
8172
- output: GetWorkflowRunsResponse,
8382
+ export const deleteWorkflow = API.make(() => ({
8383
+ input: DeleteWorkflowRequest,
8384
+ output: DeleteWorkflowResponse,
8173
8385
  errors: [
8174
- EntityNotFoundException,
8386
+ ConcurrentModificationException,
8175
8387
  InternalServiceException,
8176
8388
  InvalidInputException,
8177
8389
  OperationTimeoutException,
8178
8390
  ],
8179
- pagination: {
8180
- inputToken: "NextToken",
8181
- outputToken: "NextToken",
8182
- items: "Runs",
8183
- pageSize: "MaxResults",
8184
- },
8185
8391
  }));
8186
8392
  /**
8187
- * Lists all the blueprint names in an account.
8393
+ * Retrieves the details of a blueprint.
8188
8394
  */
8189
- export const listBlueprints = API.makePaginated(() => ({
8190
- input: ListBlueprintsRequest,
8191
- output: ListBlueprintsResponse,
8395
+ export const getBlueprint = API.make(() => ({
8396
+ input: GetBlueprintRequest,
8397
+ output: GetBlueprintResponse,
8192
8398
  errors: [
8399
+ EntityNotFoundException,
8193
8400
  InternalServiceException,
8194
8401
  InvalidInputException,
8195
8402
  OperationTimeoutException,
8196
8403
  ],
8197
- pagination: {
8198
- inputToken: "NextToken",
8199
- outputToken: "NextToken",
8200
- items: "Blueprints",
8201
- pageSize: "MaxResults",
8202
- },
8203
8404
  }));
8204
8405
  /**
8205
- * Lists all the custom patterns that have been created.
8406
+ * Retrieves the details of blueprint runs for a specified blueprint.
8206
8407
  */
8207
- export const listCustomEntityTypes = API.makePaginated(() => ({
8208
- input: ListCustomEntityTypesRequest,
8209
- output: ListCustomEntityTypesResponse,
8408
+ export const getBlueprintRuns = API.makePaginated(() => ({
8409
+ input: GetBlueprintRunsRequest,
8410
+ output: GetBlueprintRunsResponse,
8210
8411
  errors: [
8412
+ EntityNotFoundException,
8211
8413
  InternalServiceException,
8212
8414
  InvalidInputException,
8213
8415
  OperationTimeoutException,
@@ -8219,140 +8421,89 @@ export const listCustomEntityTypes = API.makePaginated(() => ({
8219
8421
  },
8220
8422
  }));
8221
8423
  /**
8222
- * Retrieves the names of all `DevEndpoint` resources in this Amazon Web Services account, or the
8223
- * resources with the specified tag. This operation allows you to see which resources are
8224
- * available in your account, and their names.
8225
- *
8226
- * This operation takes the optional `Tags` field, which you can use as a filter on
8227
- * the response so that tagged resources can be retrieved as a group. If you choose to use tags
8228
- * filtering, only resources with the tag are retrieved.
8424
+ * Retrieves the details of a custom pattern by specifying its name.
8229
8425
  */
8230
- export const listDevEndpoints = API.makePaginated(() => ({
8231
- input: ListDevEndpointsRequest,
8232
- output: ListDevEndpointsResponse,
8426
+ export const getCustomEntityType = API.make(() => ({
8427
+ input: GetCustomEntityTypeRequest,
8428
+ output: GetCustomEntityTypeResponse,
8233
8429
  errors: [
8430
+ AccessDeniedException,
8234
8431
  EntityNotFoundException,
8235
8432
  InternalServiceException,
8236
8433
  InvalidInputException,
8237
8434
  OperationTimeoutException,
8238
8435
  ],
8239
- pagination: {
8240
- inputToken: "NextToken",
8241
- outputToken: "NextToken",
8242
- pageSize: "MaxResults",
8243
- },
8244
8436
  }));
8245
8437
  /**
8246
- * Retrieves the names of all job resources in this Amazon Web Services account, or the resources with the specified tag. This operation allows you to see which resources are available in your account, and their names.
8247
- *
8248
- * This operation takes the optional `Tags` field, which you can use as a filter on
8249
- * the response so that tagged resources can be retrieved as a group. If you choose to use tags
8250
- * filtering, only resources with the tag are retrieved.
8438
+ * Retrieves the security configuration for a specified catalog.
8251
8439
  */
8252
- export const listJobs = API.makePaginated(() => ({
8253
- input: ListJobsRequest,
8254
- output: ListJobsResponse,
8440
+ export const getDataCatalogEncryptionSettings = API.make(() => ({
8441
+ input: GetDataCatalogEncryptionSettingsRequest,
8442
+ output: GetDataCatalogEncryptionSettingsResponse,
8255
8443
  errors: [
8256
- EntityNotFoundException,
8257
8444
  InternalServiceException,
8258
8445
  InvalidInputException,
8259
8446
  OperationTimeoutException,
8260
8447
  ],
8261
- pagination: {
8262
- inputToken: "NextToken",
8263
- outputToken: "NextToken",
8264
- items: "JobNames",
8265
- pageSize: "MaxResults",
8266
- },
8267
8448
  }));
8268
8449
  /**
8269
- * Retrieves a sortable, filterable list of existing Glue machine learning transforms in this Amazon Web Services account,
8270
- * or the resources with the specified tag. This operation takes the optional `Tags` field, which you can use as
8271
- * a filter of the responses so that tagged resources can be retrieved as a group. If you choose to use tag
8272
- * filtering, only resources with the tags are retrieved.
8450
+ * Transforms a Python script into a directed acyclic graph (DAG).
8273
8451
  */
8274
- export const listMLTransforms = API.makePaginated(() => ({
8275
- input: ListMLTransformsRequest,
8276
- output: ListMLTransformsResponse,
8452
+ export const getDataflowGraph = API.make(() => ({
8453
+ input: GetDataflowGraphRequest,
8454
+ output: GetDataflowGraphResponse,
8277
8455
  errors: [
8278
- EntityNotFoundException,
8279
8456
  InternalServiceException,
8280
8457
  InvalidInputException,
8281
8458
  OperationTimeoutException,
8282
8459
  ],
8283
- pagination: {
8284
- inputToken: "NextToken",
8285
- outputToken: "NextToken",
8286
- pageSize: "MaxResults",
8287
- },
8288
8460
  }));
8289
8461
  /**
8290
- * Retrieve a list of sessions.
8462
+ * Retrieve the training status of the model along with more information (CompletedOn, StartedOn, FailureReason).
8291
8463
  */
8292
- export const listSessions = API.makePaginated(() => ({
8293
- input: ListSessionsRequest,
8294
- output: ListSessionsResponse,
8464
+ export const getDataQualityModel = API.make(() => ({
8465
+ input: GetDataQualityModelRequest,
8466
+ output: GetDataQualityModelResponse,
8295
8467
  errors: [
8296
- AccessDeniedException,
8468
+ EntityNotFoundException,
8297
8469
  InternalServiceException,
8298
8470
  InvalidInputException,
8299
8471
  OperationTimeoutException,
8300
8472
  ],
8301
- pagination: {
8302
- inputToken: "NextToken",
8303
- outputToken: "NextToken",
8304
- pageSize: "MaxResults",
8305
- },
8306
8473
  }));
8307
8474
  /**
8308
- * Retrieves the names of all trigger resources in this Amazon Web Services account, or the resources with the specified tag. This operation allows you to see which resources are available in your account, and their names.
8309
- *
8310
- * This operation takes the optional `Tags` field, which you can use as a filter on
8311
- * the response so that tagged resources can be retrieved as a group. If you choose to use tags
8312
- * filtering, only resources with the tag are retrieved.
8475
+ * Gets the specified recommendation run that was used to generate rules.
8313
8476
  */
8314
- export const listTriggers = API.makePaginated(() => ({
8315
- input: ListTriggersRequest,
8316
- output: ListTriggersResponse,
8477
+ export const getDataQualityRuleRecommendationRun = API.make(() => ({
8478
+ input: GetDataQualityRuleRecommendationRunRequest,
8479
+ output: GetDataQualityRuleRecommendationRunResponse,
8317
8480
  errors: [
8318
8481
  EntityNotFoundException,
8319
8482
  InternalServiceException,
8320
8483
  InvalidInputException,
8321
8484
  OperationTimeoutException,
8322
8485
  ],
8323
- pagination: {
8324
- inputToken: "NextToken",
8325
- outputToken: "NextToken",
8326
- items: "TriggerNames",
8327
- pageSize: "MaxResults",
8328
- },
8329
8486
  }));
8330
8487
  /**
8331
- * Lists names of workflows created in the account.
8488
+ * Returns an existing ruleset by identifier or name.
8332
8489
  */
8333
- export const listWorkflows = API.makePaginated(() => ({
8334
- input: ListWorkflowsRequest,
8335
- output: ListWorkflowsResponse,
8490
+ export const getDataQualityRuleset = API.make(() => ({
8491
+ input: GetDataQualityRulesetRequest,
8492
+ output: GetDataQualityRulesetResponse,
8336
8493
  errors: [
8494
+ EntityNotFoundException,
8337
8495
  InternalServiceException,
8338
8496
  InvalidInputException,
8339
8497
  OperationTimeoutException,
8340
8498
  ],
8341
- pagination: {
8342
- inputToken: "NextToken",
8343
- outputToken: "NextToken",
8344
- items: "Workflows",
8345
- pageSize: "MaxResults",
8346
- },
8347
8499
  }));
8348
8500
  /**
8349
- * Sets the Data Catalog resource policy for access control.
8501
+ * Retrieves a specific run where a ruleset is evaluated against a data source.
8350
8502
  */
8351
- export const putResourcePolicy = API.make(() => ({
8352
- input: PutResourcePolicyRequest,
8353
- output: PutResourcePolicyResponse,
8503
+ export const getDataQualityRulesetEvaluationRun = API.make(() => ({
8504
+ input: GetDataQualityRulesetEvaluationRunRequest,
8505
+ output: GetDataQualityRulesetEvaluationRunResponse,
8354
8506
  errors: [
8355
- ConditionCheckFailureException,
8356
8507
  EntityNotFoundException,
8357
8508
  InternalServiceException,
8358
8509
  InvalidInputException,
@@ -8360,52 +8511,50 @@ export const putResourcePolicy = API.make(() => ({
8360
8511
  ],
8361
8512
  }));
8362
8513
  /**
8363
- * Removes a key value pair from the schema version metadata for the specified schema version ID.
8514
+ * Retrieves information about a specified development endpoint.
8515
+ *
8516
+ * When you create a development endpoint in a virtual private cloud (VPC), Glue returns only
8517
+ * a private IP address, and the public IP address field is not populated. When you create a
8518
+ * non-VPC development endpoint, Glue returns only a public IP address.
8364
8519
  */
8365
- export const removeSchemaVersionMetadata = API.make(() => ({
8366
- input: RemoveSchemaVersionMetadataInput,
8367
- output: RemoveSchemaVersionMetadataResponse,
8520
+ export const getDevEndpoint = API.make(() => ({
8521
+ input: GetDevEndpointRequest,
8522
+ output: GetDevEndpointResponse,
8368
8523
  errors: [
8369
- AccessDeniedException,
8370
8524
  EntityNotFoundException,
8525
+ InternalServiceException,
8371
8526
  InvalidInputException,
8527
+ OperationTimeoutException,
8372
8528
  ],
8373
8529
  }));
8374
8530
  /**
8375
- * Resets a bookmark entry.
8376
- *
8377
- * For more information about enabling and using job bookmarks, see:
8378
- *
8379
- * - Tracking processed data using job bookmarks
8380
- *
8381
- * - Job parameters used by Glue
8531
+ * Retrieves all the development endpoints in this Amazon Web Services account.
8382
8532
  *
8383
- * - Job structure
8533
+ * When you create a development endpoint in a virtual private cloud (VPC), Glue returns only a private IP address
8534
+ * and the public IP address field is not populated. When you create a non-VPC development
8535
+ * endpoint, Glue returns only a public IP address.
8384
8536
  */
8385
- export const resetJobBookmark = API.make(() => ({
8386
- input: ResetJobBookmarkRequest,
8387
- output: ResetJobBookmarkResponse,
8537
+ export const getDevEndpoints = API.makePaginated(() => ({
8538
+ input: GetDevEndpointsRequest,
8539
+ output: GetDevEndpointsResponse,
8388
8540
  errors: [
8389
8541
  EntityNotFoundException,
8390
8542
  InternalServiceException,
8391
8543
  InvalidInputException,
8392
8544
  OperationTimeoutException,
8393
8545
  ],
8546
+ pagination: {
8547
+ inputToken: "NextToken",
8548
+ outputToken: "NextToken",
8549
+ pageSize: "MaxResults",
8550
+ },
8394
8551
  }));
8395
8552
  /**
8396
- * Begins an asynchronous task to export all labeled data for a particular transform. This
8397
- * task is the only label-related API call that is not part of the typical active learning
8398
- * workflow. You typically use `StartExportLabelsTaskRun` when you want to work with
8399
- * all of your existing labels at the same time, such as when you want to remove or change labels
8400
- * that were previously submitted as truth. This API operation accepts the
8401
- * `TransformId` whose labels you want to export and an Amazon Simple Storage
8402
- * Service (Amazon S3) path to export the labels to. The operation returns a
8403
- * `TaskRunId`. You can check on the status of your task run by calling the
8404
- * `GetMLTaskRun` API.
8553
+ * Retrieves an existing job definition.
8405
8554
  */
8406
- export const startExportLabelsTaskRun = API.make(() => ({
8407
- input: StartExportLabelsTaskRunRequest,
8408
- output: StartExportLabelsTaskRunResponse,
8555
+ export const getJob = API.make(() => ({
8556
+ input: GetJobRequest,
8557
+ output: GetJobResponse,
8409
8558
  errors: [
8410
8559
  EntityNotFoundException,
8411
8560
  InternalServiceException,
@@ -8414,79 +8563,84 @@ export const startExportLabelsTaskRun = API.make(() => ({
8414
8563
  ],
8415
8564
  }));
8416
8565
  /**
8417
- * Stops a specified trigger.
8566
+ * Retrieves metadata for all runs of a given job definition.
8567
+ *
8568
+ * `GetJobRuns` returns the job runs in chronological order, with the newest jobs returned first.
8418
8569
  */
8419
- export const stopTrigger = API.make(() => ({
8420
- input: StopTriggerRequest,
8421
- output: StopTriggerResponse,
8570
+ export const getJobRuns = API.makePaginated(() => ({
8571
+ input: GetJobRunsRequest,
8572
+ output: GetJobRunsResponse,
8422
8573
  errors: [
8423
- ConcurrentModificationException,
8424
8574
  EntityNotFoundException,
8425
8575
  InternalServiceException,
8426
8576
  InvalidInputException,
8427
8577
  OperationTimeoutException,
8428
8578
  ],
8579
+ pagination: {
8580
+ inputToken: "NextToken",
8581
+ outputToken: "NextToken",
8582
+ items: "JobRuns",
8583
+ pageSize: "MaxResults",
8584
+ },
8429
8585
  }));
8430
8586
  /**
8431
- * Updates an existing machine learning transform. Call this operation to tune the algorithm parameters to achieve better results.
8432
- *
8433
- * After calling this operation, you can call the `StartMLEvaluationTaskRun`
8434
- * operation to assess how well your new parameters achieved your goals (such as improving the
8435
- * quality of your machine learning transform, or making it more cost-effective).
8587
+ * Retrieves all current job definitions.
8436
8588
  */
8437
- export const updateMLTransform = API.make(() => ({
8438
- input: UpdateMLTransformRequest,
8439
- output: UpdateMLTransformResponse,
8589
+ export const getJobs = API.makePaginated(() => ({
8590
+ input: GetJobsRequest,
8591
+ output: GetJobsResponse,
8440
8592
  errors: [
8441
- AccessDeniedException,
8442
8593
  EntityNotFoundException,
8443
8594
  InternalServiceException,
8444
8595
  InvalidInputException,
8445
8596
  OperationTimeoutException,
8446
8597
  ],
8598
+ pagination: {
8599
+ inputToken: "NextToken",
8600
+ outputToken: "NextToken",
8601
+ items: "Jobs",
8602
+ pageSize: "MaxResults",
8603
+ },
8447
8604
  }));
8448
8605
  /**
8449
- * Updates an existing registry which is used to hold a collection of schemas. The updated properties relate to the registry, and do not modify any of the schemas within the registry.
8606
+ * Retrieves a specified resource policy.
8450
8607
  */
8451
- export const updateRegistry = API.make(() => ({
8452
- input: UpdateRegistryInput,
8453
- output: UpdateRegistryResponse,
8608
+ export const getResourcePolicy = API.make(() => ({
8609
+ input: GetResourcePolicyRequest,
8610
+ output: GetResourcePolicyResponse,
8454
8611
  errors: [
8455
- AccessDeniedException,
8456
- ConcurrentModificationException,
8457
8612
  EntityNotFoundException,
8458
8613
  InternalServiceException,
8459
8614
  InvalidInputException,
8615
+ OperationTimeoutException,
8460
8616
  ],
8461
8617
  }));
8462
8618
  /**
8463
- * Updates the description, compatibility setting, or version checkpoint for a schema set.
8464
- *
8465
- * For updating the compatibility setting, the call will not validate compatibility for the entire set of schema versions with the new compatibility setting. If the value for `Compatibility` is provided, the `VersionNumber` (a checkpoint) is also required. The API will validate the checkpoint version number for consistency.
8466
- *
8467
- * If the value for the `VersionNumber` (checkpoint) is provided, `Compatibility` is optional and this can be used to set/reset a checkpoint for the schema.
8468
- *
8469
- * This update will happen only if the schema is in the AVAILABLE state.
8619
+ * Retrieves a list of all security configurations.
8470
8620
  */
8471
- export const updateSchema = API.make(() => ({
8472
- input: UpdateSchemaInput,
8473
- output: UpdateSchemaResponse,
8621
+ export const getSecurityConfigurations = API.makePaginated(() => ({
8622
+ input: GetSecurityConfigurationsRequest,
8623
+ output: GetSecurityConfigurationsResponse,
8474
8624
  errors: [
8475
- AccessDeniedException,
8476
- ConcurrentModificationException,
8477
8625
  EntityNotFoundException,
8478
8626
  InternalServiceException,
8479
8627
  InvalidInputException,
8628
+ OperationTimeoutException,
8480
8629
  ],
8630
+ pagination: {
8631
+ inputToken: "NextToken",
8632
+ outputToken: "NextToken",
8633
+ items: "SecurityConfigurations",
8634
+ pageSize: "MaxResults",
8635
+ },
8481
8636
  }));
8482
8637
  /**
8483
- * Updates an existing workflow.
8638
+ * Retrieves a list of tags associated with a resource.
8484
8639
  */
8485
- export const updateWorkflow = API.make(() => ({
8486
- input: UpdateWorkflowRequest,
8487
- output: UpdateWorkflowResponse,
8640
+ export const getTags = API.make(() => ({
8641
+ input: GetTagsRequest,
8642
+ output: GetTagsResponse,
8488
8643
  errors: [
8489
- ConcurrentModificationException,
8490
8644
  EntityNotFoundException,
8491
8645
  InternalServiceException,
8492
8646
  InvalidInputException,
@@ -8494,11 +8648,11 @@ export const updateWorkflow = API.make(() => ({
8494
8648
  ],
8495
8649
  }));
8496
8650
  /**
8497
- * Cancels a run where a ruleset is being evaluated against a data source.
8651
+ * Retrieves the definition of a trigger.
8498
8652
  */
8499
- export const cancelDataQualityRulesetEvaluationRun = API.make(() => ({
8500
- input: CancelDataQualityRulesetEvaluationRunRequest,
8501
- output: CancelDataQualityRulesetEvaluationRunResponse,
8653
+ export const getTrigger = API.make(() => ({
8654
+ input: GetTriggerRequest,
8655
+ output: GetTriggerResponse,
8502
8656
  errors: [
8503
8657
  EntityNotFoundException,
8504
8658
  InternalServiceException,
@@ -8507,23 +8661,30 @@ export const cancelDataQualityRulesetEvaluationRun = API.make(() => ({
8507
8661
  ],
8508
8662
  }));
8509
8663
  /**
8510
- * Deletes settings for a column statistics task.
8664
+ * Gets all the triggers associated with a job.
8511
8665
  */
8512
- export const deleteColumnStatisticsTaskSettings = API.make(() => ({
8513
- input: DeleteColumnStatisticsTaskSettingsRequest,
8514
- output: DeleteColumnStatisticsTaskSettingsResponse,
8666
+ export const getTriggers = API.makePaginated(() => ({
8667
+ input: GetTriggersRequest,
8668
+ output: GetTriggersResponse,
8515
8669
  errors: [
8516
8670
  EntityNotFoundException,
8671
+ InternalServiceException,
8517
8672
  InvalidInputException,
8518
8673
  OperationTimeoutException,
8519
8674
  ],
8675
+ pagination: {
8676
+ inputToken: "NextToken",
8677
+ outputToken: "NextToken",
8678
+ items: "Triggers",
8679
+ pageSize: "MaxResults",
8680
+ },
8520
8681
  }));
8521
8682
  /**
8522
- * Deletes a data quality ruleset.
8683
+ * Retrieves resource metadata for a workflow.
8523
8684
  */
8524
- export const deleteDataQualityRuleset = API.make(() => ({
8525
- input: DeleteDataQualityRulesetRequest,
8526
- output: DeleteDataQualityRulesetResponse,
8685
+ export const getWorkflow = API.make(() => ({
8686
+ input: GetWorkflowRequest,
8687
+ output: GetWorkflowResponse,
8527
8688
  errors: [
8528
8689
  EntityNotFoundException,
8529
8690
  InternalServiceException,
@@ -8532,11 +8693,11 @@ export const deleteDataQualityRuleset = API.make(() => ({
8532
8693
  ],
8533
8694
  }));
8534
8695
  /**
8535
- * Deletes a specified development endpoint.
8696
+ * Retrieves the workflow run properties which were set during the run.
8536
8697
  */
8537
- export const deleteDevEndpoint = API.make(() => ({
8538
- input: DeleteDevEndpointRequest,
8539
- output: DeleteDevEndpointResponse,
8698
+ export const getWorkflowRunProperties = API.make(() => ({
8699
+ input: GetWorkflowRunPropertiesRequest,
8700
+ output: GetWorkflowRunPropertiesResponse,
8540
8701
  errors: [
8541
8702
  EntityNotFoundException,
8542
8703
  InternalServiceException,
@@ -8545,162 +8706,233 @@ export const deleteDevEndpoint = API.make(() => ({
8545
8706
  ],
8546
8707
  }));
8547
8708
  /**
8548
- * Deletes a specified partition.
8709
+ * Retrieves metadata for all runs of a given workflow.
8549
8710
  */
8550
- export const deletePartition = API.make(() => ({
8551
- input: DeletePartitionRequest,
8552
- output: DeletePartitionResponse,
8711
+ export const getWorkflowRuns = API.makePaginated(() => ({
8712
+ input: GetWorkflowRunsRequest,
8713
+ output: GetWorkflowRunsResponse,
8553
8714
  errors: [
8554
8715
  EntityNotFoundException,
8555
8716
  InternalServiceException,
8556
8717
  InvalidInputException,
8557
8718
  OperationTimeoutException,
8558
8719
  ],
8720
+ pagination: {
8721
+ inputToken: "NextToken",
8722
+ outputToken: "NextToken",
8723
+ items: "Runs",
8724
+ pageSize: "MaxResults",
8725
+ },
8559
8726
  }));
8560
8727
  /**
8561
- * Deletes a specified security configuration.
8728
+ * Lists all the blueprint names in an account.
8562
8729
  */
8563
- export const deleteSecurityConfiguration = API.make(() => ({
8564
- input: DeleteSecurityConfigurationRequest,
8565
- output: DeleteSecurityConfigurationResponse,
8730
+ export const listBlueprints = API.makePaginated(() => ({
8731
+ input: ListBlueprintsRequest,
8732
+ output: ListBlueprintsResponse,
8566
8733
  errors: [
8567
- EntityNotFoundException,
8568
8734
  InternalServiceException,
8569
8735
  InvalidInputException,
8570
8736
  OperationTimeoutException,
8571
8737
  ],
8738
+ pagination: {
8739
+ inputToken: "NextToken",
8740
+ outputToken: "NextToken",
8741
+ items: "Blueprints",
8742
+ pageSize: "MaxResults",
8743
+ },
8572
8744
  }));
8573
8745
  /**
8574
- * Deletes a specified version of a table.
8746
+ * Lists all the custom patterns that have been created.
8575
8747
  */
8576
- export const deleteTableVersion = API.make(() => ({
8577
- input: DeleteTableVersionRequest,
8578
- output: DeleteTableVersionResponse,
8748
+ export const listCustomEntityTypes = API.makePaginated(() => ({
8749
+ input: ListCustomEntityTypesRequest,
8750
+ output: ListCustomEntityTypesResponse,
8579
8751
  errors: [
8580
- EntityNotFoundException,
8581
8752
  InternalServiceException,
8582
8753
  InvalidInputException,
8583
8754
  OperationTimeoutException,
8584
8755
  ],
8756
+ pagination: {
8757
+ inputToken: "NextToken",
8758
+ outputToken: "NextToken",
8759
+ pageSize: "MaxResults",
8760
+ },
8585
8761
  }));
8586
8762
  /**
8587
- * Deletes an existing function definition from the Data Catalog.
8763
+ * Retrieves the names of all `DevEndpoint` resources in this Amazon Web Services account, or the
8764
+ * resources with the specified tag. This operation allows you to see which resources are
8765
+ * available in your account, and their names.
8766
+ *
8767
+ * This operation takes the optional `Tags` field, which you can use as a filter on
8768
+ * the response so that tagged resources can be retrieved as a group. If you choose to use tags
8769
+ * filtering, only resources with the tag are retrieved.
8588
8770
  */
8589
- export const deleteUserDefinedFunction = API.make(() => ({
8590
- input: DeleteUserDefinedFunctionRequest,
8591
- output: DeleteUserDefinedFunctionResponse,
8771
+ export const listDevEndpoints = API.makePaginated(() => ({
8772
+ input: ListDevEndpointsRequest,
8773
+ output: ListDevEndpointsResponse,
8592
8774
  errors: [
8593
8775
  EntityNotFoundException,
8594
8776
  InternalServiceException,
8595
8777
  InvalidInputException,
8596
8778
  OperationTimeoutException,
8597
8779
  ],
8598
- }));
8599
- /**
8600
- * Annotate all datapoints for a Profile.
8780
+ pagination: {
8781
+ inputToken: "NextToken",
8782
+ outputToken: "NextToken",
8783
+ pageSize: "MaxResults",
8784
+ },
8785
+ }));
8786
+ /**
8787
+ * Retrieves the names of all job resources in this Amazon Web Services account, or the resources with the specified tag. This operation allows you to see which resources are available in your account, and their names.
8788
+ *
8789
+ * This operation takes the optional `Tags` field, which you can use as a filter on
8790
+ * the response so that tagged resources can be retrieved as a group. If you choose to use tags
8791
+ * filtering, only resources with the tag are retrieved.
8601
8792
  */
8602
- export const putDataQualityProfileAnnotation = API.make(() => ({
8603
- input: PutDataQualityProfileAnnotationRequest,
8604
- output: PutDataQualityProfileAnnotationResponse,
8793
+ export const listJobs = API.makePaginated(() => ({
8794
+ input: ListJobsRequest,
8795
+ output: ListJobsResponse,
8605
8796
  errors: [
8606
8797
  EntityNotFoundException,
8607
8798
  InternalServiceException,
8608
8799
  InvalidInputException,
8800
+ OperationTimeoutException,
8609
8801
  ],
8802
+ pagination: {
8803
+ inputToken: "NextToken",
8804
+ outputToken: "NextToken",
8805
+ items: "JobNames",
8806
+ pageSize: "MaxResults",
8807
+ },
8610
8808
  }));
8611
8809
  /**
8612
- * Starts a column statistics task run schedule.
8810
+ * List all task runs for a particular account.
8613
8811
  */
8614
- export const startColumnStatisticsTaskRunSchedule = API.make(() => ({
8615
- input: StartColumnStatisticsTaskRunScheduleRequest,
8616
- output: StartColumnStatisticsTaskRunScheduleResponse,
8812
+ export const listMaterializedViewRefreshTaskRuns = API.makePaginated(() => ({
8813
+ input: ListMaterializedViewRefreshTaskRunsRequest,
8814
+ output: ListMaterializedViewRefreshTaskRunsResponse,
8617
8815
  errors: [
8618
8816
  AccessDeniedException,
8619
- EntityNotFoundException,
8620
8817
  InvalidInputException,
8621
8818
  OperationTimeoutException,
8622
8819
  ],
8820
+ pagination: {
8821
+ inputToken: "NextToken",
8822
+ outputToken: "NextToken",
8823
+ items: "MaterializedViewRefreshTaskRuns",
8824
+ pageSize: "MaxResults",
8825
+ },
8623
8826
  }));
8624
8827
  /**
8625
- * Stops a column statistics task run schedule.
8828
+ * Retrieves a sortable, filterable list of existing Glue machine learning transforms in this Amazon Web Services account,
8829
+ * or the resources with the specified tag. This operation takes the optional `Tags` field, which you can use as
8830
+ * a filter of the responses so that tagged resources can be retrieved as a group. If you choose to use tag
8831
+ * filtering, only resources with the tags are retrieved.
8626
8832
  */
8627
- export const stopColumnStatisticsTaskRunSchedule = API.make(() => ({
8628
- input: StopColumnStatisticsTaskRunScheduleRequest,
8629
- output: StopColumnStatisticsTaskRunScheduleResponse,
8833
+ export const listMLTransforms = API.makePaginated(() => ({
8834
+ input: ListMLTransformsRequest,
8835
+ output: ListMLTransformsResponse,
8630
8836
  errors: [
8631
8837
  EntityNotFoundException,
8838
+ InternalServiceException,
8632
8839
  InvalidInputException,
8633
8840
  OperationTimeoutException,
8634
8841
  ],
8842
+ pagination: {
8843
+ inputToken: "NextToken",
8844
+ outputToken: "NextToken",
8845
+ pageSize: "MaxResults",
8846
+ },
8635
8847
  }));
8636
8848
  /**
8637
- * Adds tags to a resource. A tag is a label you can assign to an Amazon Web Services resource.
8638
- * In Glue, you can tag only certain resources. For information about what
8639
- * resources you can tag, see Amazon Web Services Tags in Glue.
8849
+ * Retrieve a list of sessions.
8640
8850
  */
8641
- export const tagResource = API.make(() => ({
8642
- input: TagResourceRequest,
8643
- output: TagResourceResponse,
8851
+ export const listSessions = API.makePaginated(() => ({
8852
+ input: ListSessionsRequest,
8853
+ output: ListSessionsResponse,
8644
8854
  errors: [
8645
- EntityNotFoundException,
8855
+ AccessDeniedException,
8646
8856
  InternalServiceException,
8647
8857
  InvalidInputException,
8648
8858
  OperationTimeoutException,
8649
8859
  ],
8860
+ pagination: {
8861
+ inputToken: "NextToken",
8862
+ outputToken: "NextToken",
8863
+ pageSize: "MaxResults",
8864
+ },
8650
8865
  }));
8651
8866
  /**
8652
- * Removes tags from a resource.
8867
+ * Retrieves the names of all trigger resources in this Amazon Web Services account, or the resources with the specified tag. This operation allows you to see which resources are available in your account, and their names.
8868
+ *
8869
+ * This operation takes the optional `Tags` field, which you can use as a filter on
8870
+ * the response so that tagged resources can be retrieved as a group. If you choose to use tags
8871
+ * filtering, only resources with the tag are retrieved.
8653
8872
  */
8654
- export const untagResource = API.make(() => ({
8655
- input: UntagResourceRequest,
8656
- output: UntagResourceResponse,
8873
+ export const listTriggers = API.makePaginated(() => ({
8874
+ input: ListTriggersRequest,
8875
+ output: ListTriggersResponse,
8657
8876
  errors: [
8658
8877
  EntityNotFoundException,
8659
8878
  InternalServiceException,
8660
8879
  InvalidInputException,
8661
8880
  OperationTimeoutException,
8662
8881
  ],
8882
+ pagination: {
8883
+ inputToken: "NextToken",
8884
+ outputToken: "NextToken",
8885
+ items: "TriggerNames",
8886
+ pageSize: "MaxResults",
8887
+ },
8663
8888
  }));
8664
8889
  /**
8665
- * Creates a classifier in the user's account. This can be a `GrokClassifier`, an
8666
- * `XMLClassifier`, a `JsonClassifier`, or a `CsvClassifier`,
8667
- * depending on which field of the request is present.
8890
+ * Lists names of workflows created in the account.
8668
8891
  */
8669
- export const createClassifier = API.make(() => ({
8670
- input: CreateClassifierRequest,
8671
- output: CreateClassifierResponse,
8892
+ export const listWorkflows = API.makePaginated(() => ({
8893
+ input: ListWorkflowsRequest,
8894
+ output: ListWorkflowsResponse,
8672
8895
  errors: [
8673
- AlreadyExistsException,
8896
+ InternalServiceException,
8674
8897
  InvalidInputException,
8675
8898
  OperationTimeoutException,
8676
8899
  ],
8900
+ pagination: {
8901
+ inputToken: "NextToken",
8902
+ outputToken: "NextToken",
8903
+ items: "Workflows",
8904
+ pageSize: "MaxResults",
8905
+ },
8677
8906
  }));
8678
8907
  /**
8679
- * Creates a new Glue Identity Center configuration to enable integration between Glue and Amazon Web Services IAM
8680
- * Identity Center for authentication and authorization.
8908
+ * Sets the Data Catalog resource policy for access control.
8681
8909
  */
8682
- export const createGlueIdentityCenterConfiguration = API.make(() => ({
8683
- input: CreateGlueIdentityCenterConfigurationRequest,
8684
- output: CreateGlueIdentityCenterConfigurationResponse,
8910
+ export const putResourcePolicy = API.make(() => ({
8911
+ input: PutResourcePolicyRequest,
8912
+ output: PutResourcePolicyResponse,
8685
8913
  errors: [
8686
- AccessDeniedException,
8687
- AlreadyExistsException,
8688
- ConcurrentModificationException,
8914
+ ConditionCheckFailureException,
8915
+ EntityNotFoundException,
8689
8916
  InternalServiceException,
8690
8917
  InvalidInputException,
8691
8918
  OperationTimeoutException,
8692
8919
  ],
8693
8920
  }));
8694
8921
  /**
8695
- * Deletes the existing Glue Identity Center configuration, removing the integration between Glue and
8696
- * Amazon Web Services IAM Identity Center.
8922
+ * Resets a bookmark entry.
8923
+ *
8924
+ * For more information about enabling and using job bookmarks, see:
8925
+ *
8926
+ * - Tracking processed data using job bookmarks
8927
+ *
8928
+ * - Job parameters used by Glue
8929
+ *
8930
+ * - Job structure
8697
8931
  */
8698
- export const deleteGlueIdentityCenterConfiguration = API.make(() => ({
8699
- input: DeleteGlueIdentityCenterConfigurationRequest,
8700
- output: DeleteGlueIdentityCenterConfigurationResponse,
8932
+ export const resetJobBookmark = API.make(() => ({
8933
+ input: ResetJobBookmarkRequest,
8934
+ output: ResetJobBookmarkResponse,
8701
8935
  errors: [
8702
- AccessDeniedException,
8703
- ConcurrentModificationException,
8704
8936
  EntityNotFoundException,
8705
8937
  InternalServiceException,
8706
8938
  InvalidInputException,
@@ -8708,15 +8940,20 @@ export const deleteGlueIdentityCenterConfiguration = API.make(() => ({
8708
8940
  ],
8709
8941
  }));
8710
8942
  /**
8711
- * Retrieves the current Glue Identity Center configuration details, including the associated Identity Center instance and
8712
- * application information.
8943
+ * Begins an asynchronous task to export all labeled data for a particular transform. This
8944
+ * task is the only label-related API call that is not part of the typical active learning
8945
+ * workflow. You typically use `StartExportLabelsTaskRun` when you want to work with
8946
+ * all of your existing labels at the same time, such as when you want to remove or change labels
8947
+ * that were previously submitted as truth. This API operation accepts the
8948
+ * `TransformId` whose labels you want to export and an Amazon Simple Storage
8949
+ * Service (Amazon S3) path to export the labels to. The operation returns a
8950
+ * `TaskRunId`. You can check on the status of your task run by calling the
8951
+ * `GetMLTaskRun` API.
8713
8952
  */
8714
- export const getGlueIdentityCenterConfiguration = API.make(() => ({
8715
- input: GetGlueIdentityCenterConfigurationRequest,
8716
- output: GetGlueIdentityCenterConfigurationResponse,
8953
+ export const startExportLabelsTaskRun = API.make(() => ({
8954
+ input: StartExportLabelsTaskRunRequest,
8955
+ output: StartExportLabelsTaskRunResponse,
8717
8956
  errors: [
8718
- AccessDeniedException,
8719
- ConcurrentModificationException,
8720
8957
  EntityNotFoundException,
8721
8958
  InternalServiceException,
8722
8959
  InvalidInputException,
@@ -8724,14 +8961,12 @@ export const getGlueIdentityCenterConfiguration = API.make(() => ({
8724
8961
  ],
8725
8962
  }));
8726
8963
  /**
8727
- * Updates the existing Glue Identity Center configuration, allowing modification of scopes and permissions for the integration.
8964
+ * Deletes a specified batch of versions of a table.
8728
8965
  */
8729
- export const updateGlueIdentityCenterConfiguration = API.make(() => ({
8730
- input: UpdateGlueIdentityCenterConfigurationRequest,
8731
- output: UpdateGlueIdentityCenterConfigurationResponse,
8966
+ export const batchDeleteTableVersion = API.make(() => ({
8967
+ input: BatchDeleteTableVersionRequest,
8968
+ output: BatchDeleteTableVersionResponse,
8732
8969
  errors: [
8733
- AccessDeniedException,
8734
- ConcurrentModificationException,
8735
8970
  EntityNotFoundException,
8736
8971
  InternalServiceException,
8737
8972
  InvalidInputException,
@@ -8739,51 +8974,51 @@ export const updateGlueIdentityCenterConfiguration = API.make(() => ({
8739
8974
  ],
8740
8975
  }));
8741
8976
  /**
8742
- * Cancels the specified recommendation run that was being used to generate rules.
8977
+ * Retrieves the details for the custom patterns specified by a list of names.
8743
8978
  */
8744
- export const cancelDataQualityRuleRecommendationRun = API.make(() => ({
8745
- input: CancelDataQualityRuleRecommendationRunRequest,
8746
- output: CancelDataQualityRuleRecommendationRunResponse,
8979
+ export const batchGetCustomEntityTypes = API.make(() => ({
8980
+ input: BatchGetCustomEntityTypesRequest,
8981
+ output: BatchGetCustomEntityTypesResponse,
8747
8982
  errors: [
8748
- EntityNotFoundException,
8749
8983
  InternalServiceException,
8750
8984
  InvalidInputException,
8751
8985
  OperationTimeoutException,
8752
8986
  ],
8753
8987
  }));
8754
8988
  /**
8755
- * Cancels (stops) a task run. Machine learning task runs are asynchronous tasks that Glue runs on your behalf as part of various machine learning workflows. You can cancel a
8756
- * machine learning task run at any time by calling `CancelMLTaskRun` with a task
8757
- * run's parent transform's `TransformID` and the task run's `TaskRunId`.
8989
+ * Retrieves a list of data quality results for the specified result IDs.
8758
8990
  */
8759
- export const cancelMLTaskRun = API.make(() => ({
8760
- input: CancelMLTaskRunRequest,
8761
- output: CancelMLTaskRunResponse,
8991
+ export const batchGetDataQualityResult = API.make(() => ({
8992
+ input: BatchGetDataQualityResultRequest,
8993
+ output: BatchGetDataQualityResultResponse,
8762
8994
  errors: [
8763
- EntityNotFoundException,
8764
8995
  InternalServiceException,
8765
8996
  InvalidInputException,
8766
8997
  OperationTimeoutException,
8767
8998
  ],
8768
8999
  }));
8769
9000
  /**
8770
- * Validates the supplied schema. This call has no side effects, it simply validates using the supplied schema using `DataFormat` as the format. Since it does not take a schema set name, no compatibility checks are performed.
9001
+ * Returns a list of resource metadata for a given list of development endpoint names. After
9002
+ * calling the `ListDevEndpoints` operation, you can call this operation to access the
9003
+ * data to which you have been granted permissions. This operation supports all IAM permissions,
9004
+ * including permission conditions that uses tags.
8771
9005
  */
8772
- export const checkSchemaVersionValidity = API.make(() => ({
8773
- input: CheckSchemaVersionValidityInput,
8774
- output: CheckSchemaVersionValidityResponse,
9006
+ export const batchGetDevEndpoints = API.make(() => ({
9007
+ input: BatchGetDevEndpointsRequest,
9008
+ output: BatchGetDevEndpointsResponse,
8775
9009
  errors: [
8776
9010
  AccessDeniedException,
8777
9011
  InternalServiceException,
8778
9012
  InvalidInputException,
9013
+ OperationTimeoutException,
8779
9014
  ],
8780
9015
  }));
8781
9016
  /**
8782
- * Deletes an existing blueprint.
9017
+ * Returns a list of resource metadata for a given list of job names. After calling the `ListJobs` operation, you can call this operation to access the data to which you have been granted permissions. This operation supports all IAM permissions, including permission conditions that uses tags.
8783
9018
  */
8784
- export const deleteBlueprint = API.make(() => ({
8785
- input: DeleteBlueprintRequest,
8786
- output: DeleteBlueprintResponse,
9019
+ export const batchGetJobs = API.make(() => ({
9020
+ input: BatchGetJobsRequest,
9021
+ output: BatchGetJobsResponse,
8787
9022
  errors: [
8788
9023
  InternalServiceException,
8789
9024
  InvalidInputException,
@@ -8791,26 +9026,23 @@ export const deleteBlueprint = API.make(() => ({
8791
9026
  ],
8792
9027
  }));
8793
9028
  /**
8794
- * Deletes a custom pattern by specifying its name.
9029
+ * Returns a list of resource metadata for a given list of trigger names. After calling the `ListTriggers` operation, you can call this operation to access the data to which you have been granted permissions. This operation supports all IAM permissions, including permission conditions that uses tags.
8795
9030
  */
8796
- export const deleteCustomEntityType = API.make(() => ({
8797
- input: DeleteCustomEntityTypeRequest,
8798
- output: DeleteCustomEntityTypeResponse,
9031
+ export const batchGetTriggers = API.make(() => ({
9032
+ input: BatchGetTriggersRequest,
9033
+ output: BatchGetTriggersResponse,
8799
9034
  errors: [
8800
- AccessDeniedException,
8801
- EntityNotFoundException,
8802
9035
  InternalServiceException,
8803
9036
  InvalidInputException,
8804
9037
  OperationTimeoutException,
8805
9038
  ],
8806
9039
  }));
8807
9040
  /**
8808
- * Deletes a specified job definition. If the job definition
8809
- * is not found, no exception is thrown.
9041
+ * Stops one or more job runs for a specified job definition.
8810
9042
  */
8811
- export const deleteJob = API.make(() => ({
8812
- input: DeleteJobRequest,
8813
- output: DeleteJobResponse,
9043
+ export const batchStopJobRun = API.make(() => ({
9044
+ input: BatchStopJobRunRequest,
9045
+ output: BatchStopJobRunResponse,
8814
9046
  errors: [
8815
9047
  InternalServiceException,
8816
9048
  InvalidInputException,
@@ -8818,135 +9050,75 @@ export const deleteJob = API.make(() => ({
8818
9050
  ],
8819
9051
  }));
8820
9052
  /**
8821
- * Deletes an Glue machine learning transform. Machine learning transforms are a special
8822
- * type of transform that use machine learning to learn the details of the transformation to be
8823
- * performed by learning from examples provided by humans. These transformations are then saved
8824
- * by Glue. If you no longer need a transform, you can delete it by calling
8825
- * `DeleteMLTransforms`. However, any Glue jobs that still reference the deleted
8826
- * transform will no longer succeed.
9053
+ * Creates a new registry which may be used to hold a collection of schemas.
8827
9054
  */
8828
- export const deleteMLTransform = API.make(() => ({
8829
- input: DeleteMLTransformRequest,
8830
- output: DeleteMLTransformResponse,
9055
+ export const createRegistry = API.make(() => ({
9056
+ input: CreateRegistryInput,
9057
+ output: CreateRegistryResponse,
8831
9058
  errors: [
8832
- EntityNotFoundException,
9059
+ AccessDeniedException,
9060
+ AlreadyExistsException,
9061
+ ConcurrentModificationException,
8833
9062
  InternalServiceException,
8834
9063
  InvalidInputException,
8835
- OperationTimeoutException,
9064
+ ResourceNumberLimitExceededException,
8836
9065
  ],
8837
9066
  }));
8838
9067
  /**
8839
- * Deletes a specified policy.
9068
+ * Tests a connection to a service to validate the service credentials that you provide.
9069
+ *
9070
+ * You can either provide an existing connection name or a `TestConnectionInput` for testing a non-existing connection input. Providing both at the same time will cause an error.
9071
+ *
9072
+ * If the action is successful, the service sends back an HTTP 200 response.
8840
9073
  */
8841
- export const deleteResourcePolicy = API.make(() => ({
8842
- input: DeleteResourcePolicyRequest,
8843
- output: DeleteResourcePolicyResponse,
8844
- errors: [
8845
- ConditionCheckFailureException,
9074
+ export const testConnection = API.make(() => ({
9075
+ input: TestConnectionRequest,
9076
+ output: TestConnectionResponse,
9077
+ errors: [
9078
+ AccessDeniedException,
9079
+ ConflictException,
8846
9080
  EntityNotFoundException,
9081
+ FederationSourceException,
9082
+ GlueEncryptionException,
8847
9083
  InternalServiceException,
8848
9084
  InvalidInputException,
8849
9085
  OperationTimeoutException,
9086
+ ResourceNumberLimitExceededException,
8850
9087
  ],
8851
9088
  }));
8852
9089
  /**
8853
- * Deletes a specified trigger. If the trigger is not found, no
8854
- * exception is thrown.
9090
+ * Updates an existing catalog's properties in the Glue Data Catalog.
8855
9091
  */
8856
- export const deleteTrigger = API.make(() => ({
8857
- input: DeleteTriggerRequest,
8858
- output: DeleteTriggerResponse,
9092
+ export const updateCatalog = API.make(() => ({
9093
+ input: UpdateCatalogRequest,
9094
+ output: UpdateCatalogResponse,
8859
9095
  errors: [
9096
+ AccessDeniedException,
8860
9097
  ConcurrentModificationException,
8861
- InternalServiceException,
8862
- InvalidInputException,
8863
- OperationTimeoutException,
8864
- ],
8865
- }));
8866
- /**
8867
- * Deletes a specified batch of versions of a table.
8868
- */
8869
- export const batchDeleteTableVersion = API.make(() => ({
8870
- input: BatchDeleteTableVersionRequest,
8871
- output: BatchDeleteTableVersionResponse,
8872
- errors: [
8873
9098
  EntityNotFoundException,
9099
+ FederationSourceException,
9100
+ GlueEncryptionException,
8874
9101
  InternalServiceException,
8875
9102
  InvalidInputException,
8876
9103
  OperationTimeoutException,
8877
9104
  ],
8878
9105
  }));
8879
9106
  /**
8880
- * Retrieves the details for the custom patterns specified by a list of names.
8881
- */
8882
- export const batchGetCustomEntityTypes = API.make(() => ({
8883
- input: BatchGetCustomEntityTypesRequest,
8884
- output: BatchGetCustomEntityTypesResponse,
8885
- errors: [
8886
- InternalServiceException,
8887
- InvalidInputException,
8888
- OperationTimeoutException,
8889
- ],
8890
- }));
8891
- /**
8892
- * Retrieves a list of data quality results for the specified result IDs.
8893
- */
8894
- export const batchGetDataQualityResult = API.make(() => ({
8895
- input: BatchGetDataQualityResultRequest,
8896
- output: BatchGetDataQualityResultResponse,
8897
- errors: [
8898
- InternalServiceException,
8899
- InvalidInputException,
8900
- OperationTimeoutException,
8901
- ],
8902
- }));
8903
- /**
8904
- * Returns a list of resource metadata for a given list of development endpoint names. After
8905
- * calling the `ListDevEndpoints` operation, you can call this operation to access the
8906
- * data to which you have been granted permissions. This operation supports all IAM permissions,
8907
- * including permission conditions that uses tags.
9107
+ * Removes the specified catalog from the Glue Data Catalog.
9108
+ *
9109
+ * After completing this operation, you no longer have access to the databases, tables (and all table versions and partitions that might belong to the tables) and the user-defined functions in the deleted catalog. Glue deletes these "orphaned" resources asynchronously in a timely manner, at the discretion of the service.
9110
+ *
9111
+ * To ensure the immediate deletion of all related resources before calling the `DeleteCatalog` operation, use `DeleteTableVersion` (or `BatchDeleteTableVersion`), `DeletePartition` (or `BatchDeletePartition`), `DeleteTable` (or `BatchDeleteTable`), `DeleteUserDefinedFunction` and `DeleteDatabase` to delete any resources that belong to the catalog.
8908
9112
  */
8909
- export const batchGetDevEndpoints = API.make(() => ({
8910
- input: BatchGetDevEndpointsRequest,
8911
- output: BatchGetDevEndpointsResponse,
9113
+ export const deleteCatalog = API.make(() => ({
9114
+ input: DeleteCatalogRequest,
9115
+ output: DeleteCatalogResponse,
8912
9116
  errors: [
8913
9117
  AccessDeniedException,
8914
- InternalServiceException,
8915
- InvalidInputException,
8916
- OperationTimeoutException,
8917
- ],
8918
- }));
8919
- /**
8920
- * Returns a list of resource metadata for a given list of job names. After calling the `ListJobs` operation, you can call this operation to access the data to which you have been granted permissions. This operation supports all IAM permissions, including permission conditions that uses tags.
8921
- */
8922
- export const batchGetJobs = API.make(() => ({
8923
- input: BatchGetJobsRequest,
8924
- output: BatchGetJobsResponse,
8925
- errors: [
8926
- InternalServiceException,
8927
- InvalidInputException,
8928
- OperationTimeoutException,
8929
- ],
8930
- }));
8931
- /**
8932
- * Returns a list of resource metadata for a given list of trigger names. After calling the `ListTriggers` operation, you can call this operation to access the data to which you have been granted permissions. This operation supports all IAM permissions, including permission conditions that uses tags.
8933
- */
8934
- export const batchGetTriggers = API.make(() => ({
8935
- input: BatchGetTriggersRequest,
8936
- output: BatchGetTriggersResponse,
8937
- errors: [
8938
- InternalServiceException,
8939
- InvalidInputException,
8940
- OperationTimeoutException,
8941
- ],
8942
- }));
8943
- /**
8944
- * Stops one or more job runs for a specified job definition.
8945
- */
8946
- export const batchStopJobRun = API.make(() => ({
8947
- input: BatchStopJobRunRequest,
8948
- output: BatchStopJobRunResponse,
8949
- errors: [
9118
+ ConcurrentModificationException,
9119
+ EntityNotFoundException,
9120
+ FederationSourceException,
9121
+ GlueEncryptionException,
8950
9122
  InternalServiceException,
8951
9123
  InvalidInputException,
8952
9124
  OperationTimeoutException,
@@ -8997,6 +9169,21 @@ export const cancelStatement = API.make(() => ({
8997
9169
  OperationTimeoutException,
8998
9170
  ],
8999
9171
  }));
9172
+ /**
9173
+ * Starts a job run using a job definition.
9174
+ */
9175
+ export const startJobRun = API.make(() => ({
9176
+ input: StartJobRunRequest,
9177
+ output: StartJobRunResponse,
9178
+ errors: [
9179
+ ConcurrentRunsExceededException,
9180
+ EntityNotFoundException,
9181
+ InternalServiceException,
9182
+ InvalidInputException,
9183
+ OperationTimeoutException,
9184
+ ResourceNumberLimitExceededException,
9185
+ ],
9186
+ }));
9000
9187
  /**
9001
9188
  * Starts the active learning workflow for your machine learning transform to improve the
9002
9189
  * transform's quality by generating label sets and adding labels.
@@ -9028,706 +9215,626 @@ export const startMLLabelingSetGenerationTaskRun = API.make(() => ({
9028
9215
  ],
9029
9216
  }));
9030
9217
  /**
9031
- * Updates a registered blueprint.
9218
+ * Starts an existing trigger. See Triggering
9219
+ * Jobs for information about how different types of trigger are
9220
+ * started.
9032
9221
  */
9033
- export const updateBlueprint = API.make(() => ({
9034
- input: UpdateBlueprintRequest,
9035
- output: UpdateBlueprintResponse,
9222
+ export const startTrigger = API.make(() => ({
9223
+ input: StartTriggerRequest,
9224
+ output: StartTriggerResponse,
9036
9225
  errors: [
9037
- ConcurrentModificationException,
9226
+ ConcurrentRunsExceededException,
9038
9227
  EntityNotFoundException,
9039
- IllegalBlueprintStateException,
9040
9228
  InternalServiceException,
9041
9229
  InvalidInputException,
9042
9230
  OperationTimeoutException,
9231
+ ResourceNumberLimitExceededException,
9043
9232
  ],
9044
9233
  }));
9045
9234
  /**
9046
- * Restarts selected nodes of a previous partially completed workflow run and resumes the workflow run. The selected nodes and all nodes that are downstream from the selected nodes are run.
9235
+ * Starts a new run of the specified workflow.
9047
9236
  */
9048
- export const resumeWorkflowRun = API.make(() => ({
9049
- input: ResumeWorkflowRunRequest,
9050
- output: ResumeWorkflowRunResponse,
9237
+ export const startWorkflowRun = API.make(() => ({
9238
+ input: StartWorkflowRunRequest,
9239
+ output: StartWorkflowRunResponse,
9051
9240
  errors: [
9052
9241
  ConcurrentRunsExceededException,
9053
9242
  EntityNotFoundException,
9054
- IllegalWorkflowStateException,
9055
9243
  InternalServiceException,
9056
9244
  InvalidInputException,
9057
9245
  OperationTimeoutException,
9246
+ ResourceNumberLimitExceededException,
9058
9247
  ],
9059
9248
  }));
9060
9249
  /**
9061
- * Deletes a list of connection definitions from the Data Catalog.
9062
- */
9063
- export const batchDeleteConnection = API.make(() => ({
9064
- input: BatchDeleteConnectionRequest,
9065
- output: BatchDeleteConnectionResponse,
9066
- errors: [InternalServiceException, OperationTimeoutException],
9067
- }));
9068
- /**
9069
- * Deletes one or more partitions in a batch operation.
9250
+ * Updates a registered blueprint.
9070
9251
  */
9071
- export const batchDeletePartition = API.make(() => ({
9072
- input: BatchDeletePartitionRequest,
9073
- output: BatchDeletePartitionResponse,
9252
+ export const updateBlueprint = API.make(() => ({
9253
+ input: UpdateBlueprintRequest,
9254
+ output: UpdateBlueprintResponse,
9074
9255
  errors: [
9256
+ ConcurrentModificationException,
9075
9257
  EntityNotFoundException,
9258
+ IllegalBlueprintStateException,
9076
9259
  InternalServiceException,
9077
9260
  InvalidInputException,
9078
9261
  OperationTimeoutException,
9079
9262
  ],
9080
9263
  }));
9081
9264
  /**
9082
- * Retrieves information about a list of blueprints.
9265
+ * Creates settings for a column statistics task.
9083
9266
  */
9084
- export const batchGetBlueprints = API.make(() => ({
9085
- input: BatchGetBlueprintsRequest,
9086
- output: BatchGetBlueprintsResponse,
9267
+ export const createColumnStatisticsTaskSettings = API.make(() => ({
9268
+ input: CreateColumnStatisticsTaskSettingsRequest,
9269
+ output: CreateColumnStatisticsTaskSettingsResponse,
9087
9270
  errors: [
9088
- InternalServiceException,
9271
+ AccessDeniedException,
9272
+ AlreadyExistsException,
9273
+ ColumnStatisticsTaskRunningException,
9274
+ EntityNotFoundException,
9089
9275
  InvalidInputException,
9090
9276
  OperationTimeoutException,
9277
+ ResourceNumberLimitExceededException,
9091
9278
  ],
9092
9279
  }));
9093
9280
  /**
9094
- * Returns a list of resource metadata for a given list of crawler names. After calling the `ListCrawlers` operation, you can call this operation to access the data to which you have been granted permissions. This operation supports all IAM permissions, including permission conditions that uses tags.
9095
- */
9096
- export const batchGetCrawlers = API.make(() => ({
9097
- input: BatchGetCrawlersRequest,
9098
- output: BatchGetCrawlersResponse,
9099
- errors: [InvalidInputException, OperationTimeoutException],
9100
- }));
9101
- /**
9102
- * Updates one or more partitions in a batch operation.
9281
+ * Starts a materialized view refresh task run, for a specified table and columns.
9103
9282
  */
9104
- export const batchUpdatePartition = API.make(() => ({
9105
- input: BatchUpdatePartitionRequest,
9106
- output: BatchUpdatePartitionResponse,
9283
+ export const startMaterializedViewRefreshTaskRun = API.make(() => ({
9284
+ input: StartMaterializedViewRefreshTaskRunRequest,
9285
+ output: StartMaterializedViewRefreshTaskRunResponse,
9107
9286
  errors: [
9287
+ AccessDeniedException,
9108
9288
  EntityNotFoundException,
9109
- GlueEncryptionException,
9110
- InternalServiceException,
9111
9289
  InvalidInputException,
9290
+ MaterializedViewRefreshTaskRunningException,
9112
9291
  OperationTimeoutException,
9292
+ ResourceNumberLimitExceededException,
9113
9293
  ],
9114
9294
  }));
9115
9295
  /**
9116
- * Transforms a directed acyclic graph (DAG) into code.
9296
+ * Creates a custom pattern that is used to detect sensitive data across the columns and rows of your structured data.
9297
+ *
9298
+ * Each custom pattern you create specifies a regular expression and an optional list of context words. If no context words are passed only a regular expression is checked.
9117
9299
  */
9118
- export const createScript = API.make(() => ({
9119
- input: CreateScriptRequest,
9120
- output: CreateScriptResponse,
9300
+ export const createCustomEntityType = API.make(() => ({
9301
+ input: CreateCustomEntityTypeRequest,
9302
+ output: CreateCustomEntityTypeResponse,
9121
9303
  errors: [
9304
+ AccessDeniedException,
9305
+ AlreadyExistsException,
9306
+ IdempotentParameterMismatchException,
9122
9307
  InternalServiceException,
9123
9308
  InvalidInputException,
9124
9309
  OperationTimeoutException,
9310
+ ResourceNumberLimitExceededException,
9125
9311
  ],
9126
9312
  }));
9127
9313
  /**
9128
- * Removes a specified crawler from the Glue Data Catalog, unless the crawler state is
9129
- * `RUNNING`.
9314
+ * Deletes the Glue specified usage profile.
9130
9315
  */
9131
- export const deleteCrawler = API.make(() => ({
9132
- input: DeleteCrawlerRequest,
9133
- output: DeleteCrawlerResponse,
9316
+ export const deleteUsageProfile = API.make(() => ({
9317
+ input: DeleteUsageProfileRequest,
9318
+ output: DeleteUsageProfileResponse,
9134
9319
  errors: [
9135
- CrawlerRunningException,
9136
- EntityNotFoundException,
9320
+ InternalServiceException,
9321
+ InvalidInputException,
9322
+ OperationNotSupportedException,
9137
9323
  OperationTimeoutException,
9138
- SchedulerTransitioningException,
9139
9324
  ],
9140
9325
  }));
9141
9326
  /**
9142
- * Removes a specified database from a Data Catalog.
9143
- *
9144
- * After completing this operation, you no longer have access to the tables (and all table
9145
- * versions and partitions that might belong to the tables) and the user-defined functions in
9146
- * the deleted database. Glue deletes these "orphaned" resources asynchronously in a timely
9147
- * manner, at the discretion of the service.
9148
- *
9149
- * To ensure the immediate deletion of all related resources, before calling
9150
- * `DeleteDatabase`, use `DeleteTableVersion` or
9151
- * `BatchDeleteTableVersion`, `DeletePartition` or
9152
- * `BatchDeletePartition`, `DeleteUserDefinedFunction`, and
9153
- * `DeleteTable` or `BatchDeleteTable`, to delete any resources that
9154
- * belong to the database.
9327
+ * Retrieves information about the specified Glue usage profile.
9155
9328
  */
9156
- export const deleteDatabase = API.make(() => ({
9157
- input: DeleteDatabaseRequest,
9158
- output: DeleteDatabaseResponse,
9329
+ export const getUsageProfile = API.make(() => ({
9330
+ input: GetUsageProfileRequest,
9331
+ output: GetUsageProfileResponse,
9159
9332
  errors: [
9160
- ConcurrentModificationException,
9161
9333
  EntityNotFoundException,
9162
- FederationSourceException,
9163
- FederationSourceRetryableException,
9164
9334
  InternalServiceException,
9165
9335
  InvalidInputException,
9336
+ OperationNotSupportedException,
9166
9337
  OperationTimeoutException,
9167
9338
  ],
9168
9339
  }));
9169
9340
  /**
9170
- * Remove versions from the specified schema. A version number or range may be supplied. If the compatibility mode forbids deleting of a version that is necessary, such as BACKWARDS_FULL, an error is returned. Calling the `GetSchemaVersions` API after this call will list the status of the deleted versions.
9171
- *
9172
- * When the range of version numbers contain check pointed version, the API will return a 409 conflict and will not proceed with the deletion. You have to remove the checkpoint first using the `DeleteSchemaCheckpoint` API before using this API.
9173
- *
9174
- * You cannot use the `DeleteSchemaVersions` API to delete the first schema version in the schema set. The first schema version can only be deleted by the `DeleteSchema` API. This operation will also delete the attached `SchemaVersionMetadata` under the schema versions. Hard deletes will be enforced on the database.
9175
- *
9176
- * If the compatibility mode forbids deleting of a version that is necessary, such as BACKWARDS_FULL, an error is returned.
9177
- */
9178
- export const deleteSchemaVersions = API.make(() => ({
9179
- input: DeleteSchemaVersionsInput,
9180
- output: DeleteSchemaVersionsResponse,
9181
- errors: [
9182
- AccessDeniedException,
9183
- ConcurrentModificationException,
9184
- EntityNotFoundException,
9185
- InvalidInputException,
9186
- ],
9187
- }));
9188
- /**
9189
- * Retrieve a classifier by name.
9190
- */
9191
- export const getClassifier = API.make(() => ({
9192
- input: GetClassifierRequest,
9193
- output: GetClassifierResponse,
9194
- errors: [EntityNotFoundException, OperationTimeoutException],
9195
- }));
9196
- /**
9197
- * Gets settings for a column statistics task.
9198
- */
9199
- export const getColumnStatisticsTaskSettings = API.make(() => ({
9200
- input: GetColumnStatisticsTaskSettingsRequest,
9201
- output: GetColumnStatisticsTaskSettingsResponse,
9202
- errors: [
9203
- EntityNotFoundException,
9204
- InvalidInputException,
9205
- OperationTimeoutException,
9206
- ],
9207
- }));
9208
- /**
9209
- * This API is used to query preview data from a given connection type or from a native Amazon S3 based Glue Data Catalog.
9210
- *
9211
- * Returns records as an array of JSON blobs. Each record is formatted using Jackson JsonNode based on the field type defined by the `DescribeEntity` API.
9212
- *
9213
- * Spark connectors generate schemas according to the same data type mapping as in the `DescribeEntity` API. Spark connectors convert data to the appropriate data types matching the schema when returning rows.
9341
+ * List all the Glue usage profiles.
9214
9342
  */
9215
- export const getEntityRecords = API.make(() => ({
9216
- input: GetEntityRecordsRequest,
9217
- output: GetEntityRecordsResponse,
9343
+ export const listUsageProfiles = API.makePaginated(() => ({
9344
+ input: ListUsageProfilesRequest,
9345
+ output: ListUsageProfilesResponse,
9218
9346
  errors: [
9219
- AccessDeniedException,
9220
- EntityNotFoundException,
9221
- FederationSourceException,
9222
- GlueEncryptionException,
9347
+ InternalServiceException,
9223
9348
  InvalidInputException,
9349
+ OperationNotSupportedException,
9224
9350
  OperationTimeoutException,
9225
- ValidationException,
9226
9351
  ],
9352
+ pagination: {
9353
+ inputToken: "NextToken",
9354
+ outputToken: "NextToken",
9355
+ items: "Profiles",
9356
+ pageSize: "MaxResults",
9357
+ },
9227
9358
  }));
9228
9359
  /**
9229
- * This API is used for fetching the `ResourceProperty` of the Glue connection (for the source) or Glue database ARN (for the target)
9360
+ * Returns the configuration of all optimizers associated with a specified table.
9230
9361
  */
9231
- export const getIntegrationResourceProperty = API.make(() => ({
9232
- input: GetIntegrationResourcePropertyRequest,
9233
- output: GetIntegrationResourcePropertyResponse,
9362
+ export const getTableOptimizer = API.make(() => ({
9363
+ input: GetTableOptimizerRequest,
9364
+ output: GetTableOptimizerResponse,
9234
9365
  errors: [
9235
9366
  AccessDeniedException,
9236
9367
  EntityNotFoundException,
9237
- InternalServerException,
9238
9368
  InternalServiceException,
9239
9369
  InvalidInputException,
9240
- ResourceNotFoundException,
9241
- ValidationException,
9370
+ ThrottlingException,
9242
9371
  ],
9243
9372
  }));
9244
9373
  /**
9245
- * Retrieves the metadata for a given job run. Job run history is accessible for 365 days for your workflow and job run.
9374
+ * Restarts selected nodes of a previous partially completed workflow run and resumes the workflow run. The selected nodes and all nodes that are downstream from the selected nodes are run.
9246
9375
  */
9247
- export const getJobRun = API.make(() => ({
9248
- input: GetJobRunRequest,
9249
- output: GetJobRunResponse,
9376
+ export const resumeWorkflowRun = API.make(() => ({
9377
+ input: ResumeWorkflowRunRequest,
9378
+ output: ResumeWorkflowRunResponse,
9250
9379
  errors: [
9380
+ ConcurrentRunsExceededException,
9251
9381
  EntityNotFoundException,
9382
+ IllegalWorkflowStateException,
9252
9383
  InternalServiceException,
9253
9384
  InvalidInputException,
9254
9385
  OperationTimeoutException,
9255
9386
  ],
9256
9387
  }));
9257
9388
  /**
9258
- * Gets details for a specific task run on a machine learning transform. Machine learning
9259
- * task runs are asynchronous tasks that Glue runs on your behalf as part of various machine
9260
- * learning workflows. You can check the stats of any task run by calling
9261
- * `GetMLTaskRun` with the `TaskRunID` and its parent transform's
9262
- * `TransformID`.
9389
+ * Adds a new version to the existing schema. Returns an error if new version of schema does not meet the compatibility requirements of the schema set. This API will not create a new schema set and will return a 404 error if the schema set is not already present in the Schema Registry.
9390
+ *
9391
+ * If this is the first schema definition to be registered in the Schema Registry, this API will store the schema version and return immediately. Otherwise, this call has the potential to run longer than other operations due to compatibility modes. You can call the `GetSchemaVersion` API with the `SchemaVersionId` to check compatibility modes.
9392
+ *
9393
+ * If the same schema definition is already stored in Schema Registry as a version, the schema ID of the existing schema is returned to the caller.
9263
9394
  */
9264
- export const getMLTaskRun = API.make(() => ({
9265
- input: GetMLTaskRunRequest,
9266
- output: GetMLTaskRunResponse,
9395
+ export const registerSchemaVersion = API.make(() => ({
9396
+ input: RegisterSchemaVersionInput,
9397
+ output: RegisterSchemaVersionResponse,
9267
9398
  errors: [
9399
+ AccessDeniedException,
9400
+ ConcurrentModificationException,
9268
9401
  EntityNotFoundException,
9269
9402
  InternalServiceException,
9270
9403
  InvalidInputException,
9271
- OperationTimeoutException,
9404
+ ResourceNumberLimitExceededException,
9272
9405
  ],
9273
9406
  }));
9274
9407
  /**
9275
- * Gets a list of runs for a machine learning transform. Machine learning task runs are
9276
- * asynchronous tasks that Glue runs on your behalf as part of various machine learning
9277
- * workflows. You can get a sortable, filterable list of machine learning task runs by calling
9278
- * `GetMLTaskRuns` with their parent transform's `TransformID` and other
9279
- * optional parameters as documented in this section.
9408
+ * Creates a new schema set and registers the schema definition. Returns an error if the schema set already exists without actually registering the version.
9280
9409
  *
9281
- * This operation returns a list of historic runs and must be paginated.
9410
+ * When the schema set is created, a version checkpoint will be set to the first version. Compatibility mode "DISABLED" restricts any additional schema versions from being added after the first schema version. For all other compatibility modes, validation of compatibility settings will be applied only from the second version onwards when the `RegisterSchemaVersion` API is used.
9411
+ *
9412
+ * When this API is called without a `RegistryId`, this will create an entry for a "default-registry" in the registry database tables, if it is not already present.
9282
9413
  */
9283
- export const getMLTaskRuns = API.makePaginated(() => ({
9284
- input: GetMLTaskRunsRequest,
9285
- output: GetMLTaskRunsResponse,
9414
+ export const createSchema = API.make(() => ({
9415
+ input: CreateSchemaInput,
9416
+ output: CreateSchemaResponse,
9286
9417
  errors: [
9418
+ AccessDeniedException,
9419
+ AlreadyExistsException,
9420
+ ConcurrentModificationException,
9287
9421
  EntityNotFoundException,
9288
9422
  InternalServiceException,
9289
9423
  InvalidInputException,
9290
- OperationTimeoutException,
9424
+ ResourceNumberLimitExceededException,
9291
9425
  ],
9292
- pagination: {
9293
- inputToken: "NextToken",
9294
- outputToken: "NextToken",
9295
- pageSize: "MaxResults",
9296
- },
9297
9426
  }));
9298
9427
  /**
9299
- * Retrieves the partition indexes associated with a table.
9300
- */
9301
- export const getPartitionIndexes = API.makePaginated(() => ({
9302
- input: GetPartitionIndexesRequest,
9303
- output: GetPartitionIndexesResponse,
9304
- errors: [
9305
- ConflictException,
9306
- EntityNotFoundException,
9307
- InternalServiceException,
9308
- InvalidInputException,
9309
- OperationTimeoutException,
9310
- ],
9311
- pagination: {
9312
- inputToken: "NextToken",
9313
- outputToken: "NextToken",
9314
- items: "PartitionIndexDescriptorList",
9315
- },
9316
- }));
9317
- /**
9318
- * Returns the configuration of all optimizers associated with a specified table.
9428
+ * Puts the metadata key value pair for a specified schema version ID. A maximum of 10 key value pairs will be allowed per schema version. They can be added over one or more calls.
9319
9429
  */
9320
- export const getTableOptimizer = API.make(() => ({
9321
- input: GetTableOptimizerRequest,
9322
- output: GetTableOptimizerResponse,
9430
+ export const putSchemaVersionMetadata = API.make(() => ({
9431
+ input: PutSchemaVersionMetadataInput,
9432
+ output: PutSchemaVersionMetadataResponse,
9323
9433
  errors: [
9324
9434
  AccessDeniedException,
9435
+ AlreadyExistsException,
9325
9436
  EntityNotFoundException,
9326
- InternalServiceException,
9327
9437
  InvalidInputException,
9328
- ThrottlingException,
9438
+ ResourceNumberLimitExceededException,
9329
9439
  ],
9330
9440
  }));
9331
9441
  /**
9332
- * Retrieves the metadata for a given workflow run. Job run history is accessible for 90 days for your workflow and job run.
9442
+ * Starts a new run of the specified blueprint.
9333
9443
  */
9334
- export const getWorkflowRun = API.make(() => ({
9335
- input: GetWorkflowRunRequest,
9336
- output: GetWorkflowRunResponse,
9444
+ export const startBlueprintRun = API.make(() => ({
9445
+ input: StartBlueprintRunRequest,
9446
+ output: StartBlueprintRunResponse,
9337
9447
  errors: [
9338
9448
  EntityNotFoundException,
9449
+ IllegalBlueprintStateException,
9339
9450
  InternalServiceException,
9340
9451
  InvalidInputException,
9341
9452
  OperationTimeoutException,
9453
+ ResourceNumberLimitExceededException,
9342
9454
  ],
9343
9455
  }));
9344
9456
  /**
9345
- * The `ListConnectionTypes` API provides a discovery mechanism to learn available connection types in Glue. The response contains a list of connection types with high-level details of what is supported for each connection type. The connection types listed are the set of supported options for the `ConnectionType` value in the `CreateConnection` API.
9346
- */
9347
- export const listConnectionTypes = API.makePaginated(() => ({
9348
- input: ListConnectionTypesRequest,
9349
- output: ListConnectionTypesResponse,
9350
- errors: [AccessDeniedException, InternalServiceException],
9351
- pagination: {
9352
- inputToken: "NextToken",
9353
- outputToken: "NextToken",
9354
- items: "ConnectionTypes",
9355
- pageSize: "MaxResults",
9356
- },
9357
- }));
9358
- /**
9359
- * Returns all the crawls of a specified crawler. Returns only the crawls that have occurred since the launch date of the crawler history feature, and only retains up to 12 months of crawls. Older crawls will not be returned.
9360
- *
9361
- * You may use this API to:
9362
- *
9363
- * - Retrive all the crawls of a specified crawler.
9364
- *
9365
- * - Retrieve all the crawls of a specified crawler within a limited count.
9366
- *
9367
- * - Retrieve all the crawls of a specified crawler in a specific time range.
9368
- *
9369
- * - Retrieve all the crawls of a specified crawler with a particular state, crawl ID, or DPU hour value.
9457
+ * Starts a column statistics task run, for a specified table and columns.
9370
9458
  */
9371
- export const listCrawls = API.make(() => ({
9372
- input: ListCrawlsRequest,
9373
- output: ListCrawlsResponse,
9459
+ export const startColumnStatisticsTaskRun = API.make(() => ({
9460
+ input: StartColumnStatisticsTaskRunRequest,
9461
+ output: StartColumnStatisticsTaskRunResponse,
9374
9462
  errors: [
9463
+ AccessDeniedException,
9464
+ ColumnStatisticsTaskRunningException,
9375
9465
  EntityNotFoundException,
9376
9466
  InvalidInputException,
9377
9467
  OperationTimeoutException,
9468
+ ResourceNumberLimitExceededException,
9378
9469
  ],
9379
9470
  }));
9380
9471
  /**
9381
- * Returns all data quality execution results for your account.
9472
+ * Updates the specified data quality ruleset.
9382
9473
  */
9383
- export const listDataQualityResults = API.makePaginated(() => ({
9384
- input: ListDataQualityResultsRequest,
9385
- output: ListDataQualityResultsResponse,
9474
+ export const updateDataQualityRuleset = API.make(() => ({
9475
+ input: UpdateDataQualityRulesetRequest,
9476
+ output: UpdateDataQualityRulesetResponse,
9386
9477
  errors: [
9478
+ AlreadyExistsException,
9479
+ EntityNotFoundException,
9480
+ IdempotentParameterMismatchException,
9387
9481
  InternalServiceException,
9388
9482
  InvalidInputException,
9389
9483
  OperationTimeoutException,
9484
+ ResourceNumberLimitExceededException,
9390
9485
  ],
9391
- pagination: {
9392
- inputToken: "NextToken",
9393
- outputToken: "NextToken",
9394
- pageSize: "MaxResults",
9395
- },
9396
9486
  }));
9397
9487
  /**
9398
- * Lists the recommendation runs meeting the filter criteria.
9488
+ * Creates a specified partition index in an existing table.
9399
9489
  */
9400
- export const listDataQualityRuleRecommendationRuns = API.makePaginated(() => ({
9401
- input: ListDataQualityRuleRecommendationRunsRequest,
9402
- output: ListDataQualityRuleRecommendationRunsResponse,
9490
+ export const createPartitionIndex = API.make(() => ({
9491
+ input: CreatePartitionIndexRequest,
9492
+ output: CreatePartitionIndexResponse,
9403
9493
  errors: [
9494
+ AlreadyExistsException,
9495
+ EntityNotFoundException,
9496
+ GlueEncryptionException,
9404
9497
  InternalServiceException,
9405
9498
  InvalidInputException,
9406
9499
  OperationTimeoutException,
9500
+ ResourceNumberLimitExceededException,
9407
9501
  ],
9408
- pagination: {
9409
- inputToken: "NextToken",
9410
- outputToken: "NextToken",
9411
- pageSize: "MaxResults",
9412
- },
9413
9502
  }));
9414
9503
  /**
9415
- * Lists all the runs meeting the filter criteria, where a ruleset is evaluated against a data source.
9504
+ * Puts the specified workflow run properties for the given workflow run. If a property already exists for the specified run, then it overrides the value otherwise adds the property to existing properties.
9416
9505
  */
9417
- export const listDataQualityRulesetEvaluationRuns = API.makePaginated(() => ({
9418
- input: ListDataQualityRulesetEvaluationRunsRequest,
9419
- output: ListDataQualityRulesetEvaluationRunsResponse,
9506
+ export const putWorkflowRunProperties = API.make(() => ({
9507
+ input: PutWorkflowRunPropertiesRequest,
9508
+ output: PutWorkflowRunPropertiesResponse,
9420
9509
  errors: [
9510
+ AlreadyExistsException,
9511
+ ConcurrentModificationException,
9512
+ EntityNotFoundException,
9421
9513
  InternalServiceException,
9422
9514
  InvalidInputException,
9423
9515
  OperationTimeoutException,
9516
+ ResourceNumberLimitExceededException,
9424
9517
  ],
9425
- pagination: {
9426
- inputToken: "NextToken",
9427
- outputToken: "NextToken",
9428
- pageSize: "MaxResults",
9429
- },
9430
9518
  }));
9431
9519
  /**
9432
- * Returns a paginated list of rulesets for the specified list of Glue tables.
9520
+ * Enables you to provide additional labels (examples of truth) to be used to teach the
9521
+ * machine learning transform and improve its quality. This API operation is generally used as
9522
+ * part of the active learning workflow that starts with the
9523
+ * `StartMLLabelingSetGenerationTaskRun` call and that ultimately results in
9524
+ * improving the quality of your machine learning transform.
9525
+ *
9526
+ * After the `StartMLLabelingSetGenerationTaskRun` finishes, Glue machine learning
9527
+ * will have generated a series of questions for humans to answer. (Answering these questions is
9528
+ * often called 'labeling' in the machine learning workflows). In the case of the
9529
+ * `FindMatches` transform, these questions are of the form, “What is the correct
9530
+ * way to group these rows together into groups composed entirely of matching records?” After the
9531
+ * labeling process is finished, users upload their answers/labels with a call to
9532
+ * `StartImportLabelsTaskRun`. After `StartImportLabelsTaskRun` finishes,
9533
+ * all future runs of the machine learning transform use the new and improved labels and perform
9534
+ * a higher-quality transformation.
9535
+ *
9536
+ * By default, `StartMLLabelingSetGenerationTaskRun` continually learns from and
9537
+ * combines all labels that you upload unless you set `Replace` to true. If you set
9538
+ * `Replace` to true, `StartImportLabelsTaskRun` deletes and forgets all
9539
+ * previously uploaded labels and learns only from the exact set that you upload. Replacing
9540
+ * labels can be helpful if you realize that you previously uploaded incorrect labels, and you
9541
+ * believe that they are having a negative effect on your transform quality.
9542
+ *
9543
+ * You can check on the status of your task run by calling the `GetMLTaskRun`
9544
+ * operation.
9433
9545
  */
9434
- export const listDataQualityRulesets = API.makePaginated(() => ({
9435
- input: ListDataQualityRulesetsRequest,
9436
- output: ListDataQualityRulesetsResponse,
9546
+ export const startImportLabelsTaskRun = API.make(() => ({
9547
+ input: StartImportLabelsTaskRunRequest,
9548
+ output: StartImportLabelsTaskRunResponse,
9437
9549
  errors: [
9438
9550
  EntityNotFoundException,
9439
9551
  InternalServiceException,
9440
9552
  InvalidInputException,
9441
9553
  OperationTimeoutException,
9554
+ ResourceNumberLimitExceededException,
9442
9555
  ],
9443
- pagination: {
9444
- inputToken: "NextToken",
9445
- outputToken: "NextToken",
9446
- pageSize: "MaxResults",
9447
- },
9448
- }));
9449
- /**
9450
- * Retrieve annotations for a data quality statistic.
9451
- */
9452
- export const listDataQualityStatisticAnnotations = API.make(() => ({
9453
- input: ListDataQualityStatisticAnnotationsRequest,
9454
- output: ListDataQualityStatisticAnnotationsResponse,
9455
- errors: [InternalServiceException, InvalidInputException],
9456
9556
  }));
9457
9557
  /**
9458
- * Retrieves a list of data quality statistics.
9558
+ * Registers a blueprint with Glue.
9459
9559
  */
9460
- export const listDataQualityStatistics = API.make(() => ({
9461
- input: ListDataQualityStatisticsRequest,
9462
- output: ListDataQualityStatisticsResponse,
9560
+ export const createBlueprint = API.make(() => ({
9561
+ input: CreateBlueprintRequest,
9562
+ output: CreateBlueprintResponse,
9463
9563
  errors: [
9464
- EntityNotFoundException,
9564
+ AlreadyExistsException,
9465
9565
  InternalServiceException,
9466
9566
  InvalidInputException,
9567
+ OperationTimeoutException,
9568
+ ResourceNumberLimitExceededException,
9467
9569
  ],
9468
9570
  }));
9469
9571
  /**
9470
- * List integration resource properties for a single customer. It supports the filters, maxRecords and markers.
9572
+ * Creates a new crawler with specified targets, role, configuration, and optional schedule.
9573
+ * At least one crawl target must be specified, in the `s3Targets` field, the
9574
+ * `jdbcTargets` field, or the `DynamoDBTargets` field.
9471
9575
  */
9472
- export const listIntegrationResourceProperties = API.make(() => ({
9473
- input: ListIntegrationResourcePropertiesRequest,
9474
- output: ListIntegrationResourcePropertiesResponse,
9576
+ export const createCrawler = API.make(() => ({
9577
+ input: CreateCrawlerRequest,
9578
+ output: CreateCrawlerResponse,
9475
9579
  errors: [
9476
- AccessDeniedException,
9477
- EntityNotFoundException,
9478
- InternalServerException,
9479
- InternalServiceException,
9580
+ AlreadyExistsException,
9480
9581
  InvalidInputException,
9481
- ResourceNotFoundException,
9482
- ValidationException,
9582
+ OperationTimeoutException,
9583
+ ResourceNumberLimitExceededException,
9483
9584
  ],
9484
9585
  }));
9485
9586
  /**
9486
- * List all the Glue usage profiles.
9587
+ * Creates a data quality ruleset with DQDL rules applied to a specified Glue table.
9588
+ *
9589
+ * You create the ruleset using the Data Quality Definition Language (DQDL). For more information, see the Glue developer guide.
9487
9590
  */
9488
- export const listUsageProfiles = API.makePaginated(() => ({
9489
- input: ListUsageProfilesRequest,
9490
- output: ListUsageProfilesResponse,
9591
+ export const createDataQualityRuleset = API.make(() => ({
9592
+ input: CreateDataQualityRulesetRequest,
9593
+ output: CreateDataQualityRulesetResponse,
9491
9594
  errors: [
9595
+ AlreadyExistsException,
9492
9596
  InternalServiceException,
9493
9597
  InvalidInputException,
9494
- OperationNotSupportedException,
9495
9598
  OperationTimeoutException,
9599
+ ResourceNumberLimitExceededException,
9496
9600
  ],
9497
- pagination: {
9498
- inputToken: "NextToken",
9499
- outputToken: "NextToken",
9500
- items: "Profiles",
9501
- pageSize: "MaxResults",
9502
- },
9503
9601
  }));
9504
9602
  /**
9505
- * Puts the metadata key value pair for a specified schema version ID. A maximum of 10 key value pairs will be allowed per schema version. They can be added over one or more calls.
9603
+ * Creates a new partition.
9506
9604
  */
9507
- export const putSchemaVersionMetadata = API.make(() => ({
9508
- input: PutSchemaVersionMetadataInput,
9509
- output: PutSchemaVersionMetadataResponse,
9605
+ export const createPartition = API.make(() => ({
9606
+ input: CreatePartitionRequest,
9607
+ output: CreatePartitionResponse,
9510
9608
  errors: [
9511
- AccessDeniedException,
9512
9609
  AlreadyExistsException,
9513
9610
  EntityNotFoundException,
9611
+ GlueEncryptionException,
9612
+ InternalServiceException,
9514
9613
  InvalidInputException,
9614
+ OperationTimeoutException,
9515
9615
  ResourceNumberLimitExceededException,
9516
9616
  ],
9517
9617
  }));
9518
9618
  /**
9519
- * Starts a recommendation run that is used to generate rules when you don't know what rules to write. Glue Data Quality analyzes the data and comes up with recommendations for a potential ruleset. You can then triage the ruleset and modify the generated ruleset to your liking.
9520
- *
9521
- * Recommendation runs are automatically deleted after 90 days.
9619
+ * Creates a new function definition in the Data Catalog.
9522
9620
  */
9523
- export const startDataQualityRuleRecommendationRun = API.make(() => ({
9524
- input: StartDataQualityRuleRecommendationRunRequest,
9525
- output: StartDataQualityRuleRecommendationRunResponse,
9621
+ export const createUserDefinedFunction = API.make(() => ({
9622
+ input: CreateUserDefinedFunctionRequest,
9623
+ output: CreateUserDefinedFunctionResponse,
9526
9624
  errors: [
9527
- ConflictException,
9625
+ AlreadyExistsException,
9626
+ EntityNotFoundException,
9627
+ GlueEncryptionException,
9528
9628
  InternalServiceException,
9529
9629
  InvalidInputException,
9530
9630
  OperationTimeoutException,
9631
+ ResourceNumberLimitExceededException,
9531
9632
  ],
9532
9633
  }));
9533
9634
  /**
9534
- * Changes the schedule state of the specified crawler to
9535
- * `SCHEDULED`, unless the crawler is already running or the
9536
- * schedule state is already `SCHEDULED`.
9635
+ * Creates a new workflow.
9537
9636
  */
9538
- export const startCrawlerSchedule = API.make(() => ({
9539
- input: StartCrawlerScheduleRequest,
9540
- output: StartCrawlerScheduleResponse,
9637
+ export const createWorkflow = API.make(() => ({
9638
+ input: CreateWorkflowRequest,
9639
+ output: CreateWorkflowResponse,
9541
9640
  errors: [
9542
- EntityNotFoundException,
9543
- NoScheduleException,
9641
+ AlreadyExistsException,
9642
+ ConcurrentModificationException,
9643
+ InternalServiceException,
9644
+ InvalidInputException,
9544
9645
  OperationTimeoutException,
9545
- SchedulerRunningException,
9546
- SchedulerTransitioningException,
9646
+ ResourceNumberLimitExceededException,
9547
9647
  ],
9548
9648
  }));
9549
9649
  /**
9550
- * Creates a new catalog in the Glue Data Catalog.
9650
+ * Deletes a list of connection definitions from the Data Catalog.
9551
9651
  */
9552
- export const createCatalog = API.make(() => ({
9553
- input: CreateCatalogRequest,
9554
- output: CreateCatalogResponse,
9652
+ export const batchDeleteConnection = API.make(() => ({
9653
+ input: BatchDeleteConnectionRequest,
9654
+ output: BatchDeleteConnectionResponse,
9655
+ errors: [InternalServiceException, OperationTimeoutException],
9656
+ }));
9657
+ /**
9658
+ * Deletes one or more partitions in a batch operation.
9659
+ */
9660
+ export const batchDeletePartition = API.make(() => ({
9661
+ input: BatchDeletePartitionRequest,
9662
+ output: BatchDeletePartitionResponse,
9555
9663
  errors: [
9556
- AccessDeniedException,
9557
- AlreadyExistsException,
9558
- ConcurrentModificationException,
9559
9664
  EntityNotFoundException,
9560
- FederatedResourceAlreadyExistsException,
9561
- FederationSourceException,
9562
- GlueEncryptionException,
9563
9665
  InternalServiceException,
9564
9666
  InvalidInputException,
9565
9667
  OperationTimeoutException,
9566
- ResourceNumberLimitExceededException,
9567
9668
  ],
9568
9669
  }));
9569
9670
  /**
9570
- * Deletes multiple tables at once.
9571
- *
9572
- * After completing this operation, you no longer have access to the table versions and
9573
- * partitions that belong to the deleted table. Glue deletes these "orphaned" resources
9574
- * asynchronously in a timely manner, at the discretion of the service.
9575
- *
9576
- * To ensure the immediate deletion of all related resources, before calling
9577
- * `BatchDeleteTable`, use `DeleteTableVersion` or
9578
- * `BatchDeleteTableVersion`, and `DeletePartition` or
9579
- * `BatchDeletePartition`, to delete any resources that belong to the
9580
- * table.
9671
+ * Retrieves information about a list of blueprints.
9581
9672
  */
9582
- export const batchDeleteTable = API.make(() => ({
9583
- input: BatchDeleteTableRequest,
9584
- output: BatchDeleteTableResponse,
9673
+ export const batchGetBlueprints = API.make(() => ({
9674
+ input: BatchGetBlueprintsRequest,
9675
+ output: BatchGetBlueprintsResponse,
9585
9676
  errors: [
9586
- EntityNotFoundException,
9587
- GlueEncryptionException,
9588
9677
  InternalServiceException,
9589
9678
  InvalidInputException,
9590
9679
  OperationTimeoutException,
9591
- ResourceNotReadyException,
9592
9680
  ],
9593
9681
  }));
9594
9682
  /**
9595
- * Sets the schedule state of the specified crawler to
9596
- * `NOT_SCHEDULED`, but does not stop the crawler if it is
9597
- * already running.
9683
+ * Returns a list of resource metadata for a given list of crawler names. After calling the `ListCrawlers` operation, you can call this operation to access the data to which you have been granted permissions. This operation supports all IAM permissions, including permission conditions that uses tags.
9598
9684
  */
9599
- export const stopCrawlerSchedule = API.make(() => ({
9600
- input: StopCrawlerScheduleRequest,
9601
- output: StopCrawlerScheduleResponse,
9685
+ export const batchGetCrawlers = API.make(() => ({
9686
+ input: BatchGetCrawlersRequest,
9687
+ output: BatchGetCrawlersResponse,
9688
+ errors: [InvalidInputException, OperationTimeoutException],
9689
+ }));
9690
+ /**
9691
+ * Returns the configuration for the specified table optimizers.
9692
+ */
9693
+ export const batchGetTableOptimizer = API.make(() => ({
9694
+ input: BatchGetTableOptimizerRequest,
9695
+ output: BatchGetTableOptimizerResponse,
9602
9696
  errors: [
9697
+ AccessDeniedException,
9603
9698
  EntityNotFoundException,
9604
- OperationTimeoutException,
9605
- SchedulerNotRunningException,
9606
- SchedulerTransitioningException,
9699
+ InternalServiceException,
9700
+ InvalidInputException,
9701
+ ThrottlingException,
9607
9702
  ],
9608
9703
  }));
9609
9704
  /**
9610
- * Retrieves the definition of a specified database.
9705
+ * Annotate datapoints over time for a specific data quality statistic.
9706
+ * The API requires both profileID and statisticID as part of the InclusionAnnotation input.
9707
+ * The API only works for a single statisticId across multiple profiles.
9611
9708
  */
9612
- export const getDatabase = API.make(() => ({
9613
- input: GetDatabaseRequest,
9614
- output: GetDatabaseResponse,
9709
+ export const batchPutDataQualityStatisticAnnotation = API.make(() => ({
9710
+ input: BatchPutDataQualityStatisticAnnotationRequest,
9711
+ output: BatchPutDataQualityStatisticAnnotationResponse,
9615
9712
  errors: [
9616
9713
  EntityNotFoundException,
9617
- FederationSourceException,
9618
- FederationSourceRetryableException,
9619
- GlueEncryptionException,
9620
9714
  InternalServiceException,
9621
9715
  InvalidInputException,
9622
- OperationTimeoutException,
9716
+ ResourceNumberLimitExceededException,
9623
9717
  ],
9624
9718
  }));
9625
9719
  /**
9626
- * Retrieves the `Table` definition in a Data Catalog for
9627
- * a specified table.
9720
+ * Updates one or more partitions in a batch operation.
9628
9721
  */
9629
- export const getTable = API.make(() => ({
9630
- input: GetTableRequest,
9631
- output: GetTableResponse,
9722
+ export const batchUpdatePartition = API.make(() => ({
9723
+ input: BatchUpdatePartitionRequest,
9724
+ output: BatchUpdatePartitionResponse,
9632
9725
  errors: [
9633
9726
  EntityNotFoundException,
9634
- FederationSourceException,
9635
- FederationSourceRetryableException,
9636
9727
  GlueEncryptionException,
9637
9728
  InternalServiceException,
9638
9729
  InvalidInputException,
9639
9730
  OperationTimeoutException,
9640
- ResourceNotReadyException,
9641
9731
  ],
9642
9732
  }));
9643
9733
  /**
9644
- * Retrieves all catalogs defined in a catalog in the Glue Data Catalog. For a Redshift-federated catalog use case, this operation returns the list of catalogs mapped to Redshift databases in the Redshift namespace catalog.
9734
+ * Creates an Glue machine learning transform. This operation creates the transform and
9735
+ * all the necessary parameters to train it.
9736
+ *
9737
+ * Call this operation as the first step in the process of using a machine learning transform
9738
+ * (such as the `FindMatches` transform) for deduplicating data. You can provide an
9739
+ * optional `Description`, in addition to the parameters that you want to use for your
9740
+ * algorithm.
9741
+ *
9742
+ * You must also specify certain parameters for the tasks that Glue runs on your
9743
+ * behalf as part of learning from your data and creating a high-quality machine learning
9744
+ * transform. These parameters include `Role`, and optionally,
9745
+ * `AllocatedCapacity`, `Timeout`, and `MaxRetries`. For more
9746
+ * information, see Jobs.
9645
9747
  */
9646
- export const getCatalogs = API.make(() => ({
9647
- input: GetCatalogsRequest,
9648
- output: GetCatalogsResponse,
9748
+ export const createMLTransform = API.make(() => ({
9749
+ input: CreateMLTransformRequest,
9750
+ output: CreateMLTransformResponse,
9649
9751
  errors: [
9650
9752
  AccessDeniedException,
9651
- EntityNotFoundException,
9652
- FederationSourceException,
9653
- FederationSourceRetryableException,
9654
- GlueEncryptionException,
9753
+ AlreadyExistsException,
9754
+ IdempotentParameterMismatchException,
9655
9755
  InternalServiceException,
9656
9756
  InvalidInputException,
9657
9757
  OperationTimeoutException,
9758
+ ResourceNumberLimitExceededException,
9658
9759
  ],
9659
9760
  }));
9660
9761
  /**
9661
- * Retrieves all databases defined in a given Data Catalog.
9762
+ * Transforms a directed acyclic graph (DAG) into code.
9662
9763
  */
9663
- export const getDatabases = API.makePaginated(() => ({
9664
- input: GetDatabasesRequest,
9665
- output: GetDatabasesResponse,
9764
+ export const createScript = API.make(() => ({
9765
+ input: CreateScriptRequest,
9766
+ output: CreateScriptResponse,
9666
9767
  errors: [
9667
- EntityNotFoundException,
9668
- FederationSourceException,
9669
- FederationSourceRetryableException,
9670
- GlueEncryptionException,
9671
9768
  InternalServiceException,
9672
9769
  InvalidInputException,
9673
9770
  OperationTimeoutException,
9674
9771
  ],
9675
- pagination: {
9676
- inputToken: "NextToken",
9677
- outputToken: "NextToken",
9678
- pageSize: "MaxResults",
9679
- },
9680
9772
  }));
9681
9773
  /**
9682
- * Retrieves information about a specified partition.
9774
+ * Creates a new security configuration. A security configuration is a set of security properties that can be used by Glue. You can use a security configuration to encrypt data at rest. For information about using security configurations in Glue, see Encrypting Data Written by Crawlers, Jobs, and Development Endpoints.
9683
9775
  */
9684
- export const getPartition = API.make(() => ({
9685
- input: GetPartitionRequest,
9686
- output: GetPartitionResponse,
9776
+ export const createSecurityConfiguration = API.make(() => ({
9777
+ input: CreateSecurityConfigurationRequest,
9778
+ output: CreateSecurityConfigurationResponse,
9687
9779
  errors: [
9688
- EntityNotFoundException,
9689
- FederationSourceException,
9690
- FederationSourceRetryableException,
9691
- GlueEncryptionException,
9780
+ AlreadyExistsException,
9692
9781
  InternalServiceException,
9693
9782
  InvalidInputException,
9694
9783
  OperationTimeoutException,
9784
+ ResourceNumberLimitExceededException,
9695
9785
  ],
9696
9786
  }));
9697
9787
  /**
9698
- * Updates an existing database definition in a Data Catalog.
9788
+ * Creates a new trigger.
9789
+ *
9790
+ * Job arguments may be logged. Do not pass plaintext secrets as arguments. Retrieve secrets from a Glue Connection, Amazon Web Services Secrets Manager or other secret management mechanism if you intend to keep them within the Job.
9699
9791
  */
9700
- export const updateDatabase = API.make(() => ({
9701
- input: UpdateDatabaseRequest,
9702
- output: UpdateDatabaseResponse,
9792
+ export const createTrigger = API.make(() => ({
9793
+ input: CreateTriggerRequest,
9794
+ output: CreateTriggerResponse,
9703
9795
  errors: [
9704
9796
  AlreadyExistsException,
9705
9797
  ConcurrentModificationException,
9706
9798
  EntityNotFoundException,
9707
- FederationSourceException,
9708
- FederationSourceRetryableException,
9709
- GlueEncryptionException,
9799
+ IdempotentParameterMismatchException,
9710
9800
  InternalServiceException,
9711
9801
  InvalidInputException,
9712
9802
  OperationTimeoutException,
9803
+ ResourceNumberLimitExceededException,
9713
9804
  ],
9714
9805
  }));
9715
9806
  /**
9716
- * Removes a table definition from the Data Catalog.
9807
+ * Removes a specified crawler from the Glue Data Catalog, unless the crawler state is
9808
+ * `RUNNING`.
9809
+ */
9810
+ export const deleteCrawler = API.make(() => ({
9811
+ input: DeleteCrawlerRequest,
9812
+ output: DeleteCrawlerResponse,
9813
+ errors: [
9814
+ CrawlerRunningException,
9815
+ EntityNotFoundException,
9816
+ OperationTimeoutException,
9817
+ SchedulerTransitioningException,
9818
+ ],
9819
+ }));
9820
+ /**
9821
+ * Removes a specified database from a Data Catalog.
9717
9822
  *
9718
- * After completing this operation, you no longer have access to the table versions and
9719
- * partitions that belong to the deleted table. Glue deletes these "orphaned" resources
9720
- * asynchronously in a timely manner, at the discretion of the service.
9823
+ * After completing this operation, you no longer have access to the tables (and all table
9824
+ * versions and partitions that might belong to the tables) and the user-defined functions in
9825
+ * the deleted database. Glue deletes these "orphaned" resources asynchronously in a timely
9826
+ * manner, at the discretion of the service.
9721
9827
  *
9722
9828
  * To ensure the immediate deletion of all related resources, before calling
9723
- * `DeleteTable`, use `DeleteTableVersion` or
9724
- * `BatchDeleteTableVersion`, and `DeletePartition` or
9725
- * `BatchDeletePartition`, to delete any resources that belong to the
9726
- * table.
9829
+ * `DeleteDatabase`, use `DeleteTableVersion` or
9830
+ * `BatchDeleteTableVersion`, `DeletePartition` or
9831
+ * `BatchDeletePartition`, `DeleteUserDefinedFunction`, and
9832
+ * `DeleteTable` or `BatchDeleteTable`, to delete any resources that
9833
+ * belong to the database.
9727
9834
  */
9728
- export const deleteTable = API.make(() => ({
9729
- input: DeleteTableRequest,
9730
- output: DeleteTableResponse,
9835
+ export const deleteDatabase = API.make(() => ({
9836
+ input: DeleteDatabaseRequest,
9837
+ output: DeleteDatabaseResponse,
9731
9838
  errors: [
9732
9839
  ConcurrentModificationException,
9733
9840
  EntityNotFoundException,
@@ -9736,280 +9843,300 @@ export const deleteTable = API.make(() => ({
9736
9843
  InternalServiceException,
9737
9844
  InvalidInputException,
9738
9845
  OperationTimeoutException,
9739
- ResourceNotReadyException,
9740
9846
  ],
9741
9847
  }));
9742
9848
  /**
9743
- * Creates a new database in a Data Catalog.
9849
+ * Remove versions from the specified schema. A version number or range may be supplied. If the compatibility mode forbids deleting of a version that is necessary, such as BACKWARDS_FULL, an error is returned. Calling the `GetSchemaVersions` API after this call will list the status of the deleted versions.
9850
+ *
9851
+ * When the range of version numbers contain check pointed version, the API will return a 409 conflict and will not proceed with the deletion. You have to remove the checkpoint first using the `DeleteSchemaCheckpoint` API before using this API.
9852
+ *
9853
+ * You cannot use the `DeleteSchemaVersions` API to delete the first schema version in the schema set. The first schema version can only be deleted by the `DeleteSchema` API. This operation will also delete the attached `SchemaVersionMetadata` under the schema versions. Hard deletes will be enforced on the database.
9854
+ *
9855
+ * If the compatibility mode forbids deleting of a version that is necessary, such as BACKWARDS_FULL, an error is returned.
9744
9856
  */
9745
- export const createDatabase = API.make(() => ({
9746
- input: CreateDatabaseRequest,
9747
- output: CreateDatabaseResponse,
9857
+ export const deleteSchemaVersions = API.make(() => ({
9858
+ input: DeleteSchemaVersionsInput,
9859
+ output: DeleteSchemaVersionsResponse,
9748
9860
  errors: [
9749
- AlreadyExistsException,
9861
+ AccessDeniedException,
9750
9862
  ConcurrentModificationException,
9751
- FederatedResourceAlreadyExistsException,
9752
- FederationSourceException,
9753
- FederationSourceRetryableException,
9754
- GlueEncryptionException,
9755
- InternalServiceException,
9863
+ EntityNotFoundException,
9756
9864
  InvalidInputException,
9757
- OperationTimeoutException,
9758
- ResourceNumberLimitExceededException,
9759
9865
  ],
9760
9866
  }));
9761
9867
  /**
9762
- * Modifies an existing classifier (a `GrokClassifier`,
9763
- * an `XMLClassifier`, a `JsonClassifier`, or a `CsvClassifier`, depending on
9764
- * which field is present).
9868
+ * Retrieve a classifier by name.
9765
9869
  */
9766
- export const updateClassifier = API.make(() => ({
9767
- input: UpdateClassifierRequest,
9768
- output: UpdateClassifierResponse,
9870
+ export const getClassifier = API.make(() => ({
9871
+ input: GetClassifierRequest,
9872
+ output: GetClassifierResponse,
9873
+ errors: [EntityNotFoundException, OperationTimeoutException],
9874
+ }));
9875
+ /**
9876
+ * Gets settings for a column statistics task.
9877
+ */
9878
+ export const getColumnStatisticsTaskSettings = API.make(() => ({
9879
+ input: GetColumnStatisticsTaskSettingsRequest,
9880
+ output: GetColumnStatisticsTaskSettingsResponse,
9769
9881
  errors: [
9770
9882
  EntityNotFoundException,
9771
9883
  InvalidInputException,
9772
9884
  OperationTimeoutException,
9773
- VersionMismatchException,
9774
9885
  ],
9775
9886
  }));
9776
9887
  /**
9777
- * Returns information on a job bookmark entry.
9778
- *
9779
- * For more information about enabling and using job bookmarks, see:
9780
- *
9781
- * - Tracking processed data using job bookmarks
9888
+ * This API is used to query preview data from a given connection type or from a native Amazon S3 based Glue Data Catalog.
9782
9889
  *
9783
- * - Job parameters used by Glue
9890
+ * Returns records as an array of JSON blobs. Each record is formatted using Jackson JsonNode based on the field type defined by the `DescribeEntity` API.
9784
9891
  *
9785
- * - Job structure
9892
+ * Spark connectors generate schemas according to the same data type mapping as in the `DescribeEntity` API. Spark connectors convert data to the appropriate data types matching the schema when returning rows.
9786
9893
  */
9787
- export const getJobBookmark = API.make(() => ({
9788
- input: GetJobBookmarkRequest,
9789
- output: GetJobBookmarkResponse,
9894
+ export const getEntityRecords = API.make(() => ({
9895
+ input: GetEntityRecordsRequest,
9896
+ output: GetEntityRecordsResponse,
9790
9897
  errors: [
9898
+ AccessDeniedException,
9791
9899
  EntityNotFoundException,
9792
- InternalServiceException,
9900
+ FederationSourceException,
9901
+ GlueEncryptionException,
9793
9902
  InvalidInputException,
9794
9903
  OperationTimeoutException,
9795
9904
  ValidationException,
9796
9905
  ],
9797
9906
  }));
9798
9907
  /**
9799
- * Returns the available entities supported by the connection type.
9908
+ * This API is used for fetching the `ResourceProperty` of the Glue connection (for the source) or Glue database ARN (for the target)
9800
9909
  */
9801
- export const listEntities = API.makePaginated(() => ({
9802
- input: ListEntitiesRequest,
9803
- output: ListEntitiesResponse,
9910
+ export const getIntegrationResourceProperty = API.make(() => ({
9911
+ input: GetIntegrationResourcePropertyRequest,
9912
+ output: GetIntegrationResourcePropertyResponse,
9804
9913
  errors: [
9805
9914
  AccessDeniedException,
9806
9915
  EntityNotFoundException,
9807
- FederationSourceException,
9808
- GlueEncryptionException,
9916
+ InternalServerException,
9917
+ InternalServiceException,
9809
9918
  InvalidInputException,
9810
- OperationTimeoutException,
9919
+ ResourceNotFoundException,
9811
9920
  ValidationException,
9812
9921
  ],
9813
- pagination: {
9814
- inputToken: "NextToken",
9815
- outputToken: "NextToken",
9816
- items: "Entities",
9817
- },
9818
9922
  }));
9819
9923
  /**
9820
- * Updates a specified development endpoint.
9924
+ * Retrieves the metadata for a given job run. Job run history is accessible for 365 days for your workflow and job run.
9821
9925
  */
9822
- export const updateDevEndpoint = API.make(() => ({
9823
- input: UpdateDevEndpointRequest,
9824
- output: UpdateDevEndpointResponse,
9926
+ export const getJobRun = API.make(() => ({
9927
+ input: GetJobRunRequest,
9928
+ output: GetJobRunResponse,
9825
9929
  errors: [
9826
9930
  EntityNotFoundException,
9827
9931
  InternalServiceException,
9828
9932
  InvalidInputException,
9829
9933
  OperationTimeoutException,
9830
- ValidationException,
9831
9934
  ],
9832
9935
  }));
9833
9936
  /**
9834
- * Synchronizes a job from the source control repository. This operation takes the job artifacts that are located in the remote repository and updates the Glue internal stores with these artifacts.
9835
- *
9836
- * This API supports optional parameters which take in the repository information.
9937
+ * Gets details for a specific task run on a machine learning transform. Machine learning
9938
+ * task runs are asynchronous tasks that Glue runs on your behalf as part of various machine
9939
+ * learning workflows. You can check the stats of any task run by calling
9940
+ * `GetMLTaskRun` with the `TaskRunID` and its parent transform's
9941
+ * `TransformID`.
9837
9942
  */
9838
- export const updateJobFromSourceControl = API.make(() => ({
9839
- input: UpdateJobFromSourceControlRequest,
9840
- output: UpdateJobFromSourceControlResponse,
9943
+ export const getMLTaskRun = API.make(() => ({
9944
+ input: GetMLTaskRunRequest,
9945
+ output: GetMLTaskRunResponse,
9841
9946
  errors: [
9842
- AccessDeniedException,
9843
- AlreadyExistsException,
9844
9947
  EntityNotFoundException,
9845
9948
  InternalServiceException,
9846
9949
  InvalidInputException,
9847
9950
  OperationTimeoutException,
9848
- ValidationException,
9849
9951
  ],
9850
9952
  }));
9851
9953
  /**
9852
- * Synchronizes a job to the source control repository. This operation takes the job artifacts from the Glue internal stores and makes a commit to the remote repository that is configured on the job.
9954
+ * Gets a list of runs for a machine learning transform. Machine learning task runs are
9955
+ * asynchronous tasks that Glue runs on your behalf as part of various machine learning
9956
+ * workflows. You can get a sortable, filterable list of machine learning task runs by calling
9957
+ * `GetMLTaskRuns` with their parent transform's `TransformID` and other
9958
+ * optional parameters as documented in this section.
9853
9959
  *
9854
- * This API supports optional parameters which take in the repository information.
9960
+ * This operation returns a list of historic runs and must be paginated.
9855
9961
  */
9856
- export const updateSourceControlFromJob = API.make(() => ({
9857
- input: UpdateSourceControlFromJobRequest,
9858
- output: UpdateSourceControlFromJobResponse,
9962
+ export const getMLTaskRuns = API.makePaginated(() => ({
9963
+ input: GetMLTaskRunsRequest,
9964
+ output: GetMLTaskRunsResponse,
9859
9965
  errors: [
9860
- AccessDeniedException,
9861
- AlreadyExistsException,
9862
9966
  EntityNotFoundException,
9863
9967
  InternalServiceException,
9864
9968
  InvalidInputException,
9865
9969
  OperationTimeoutException,
9866
- ValidationException,
9867
9970
  ],
9971
+ pagination: {
9972
+ inputToken: "NextToken",
9973
+ outputToken: "NextToken",
9974
+ pageSize: "MaxResults",
9975
+ },
9868
9976
  }));
9869
9977
  /**
9870
- * Provides details regarding the entity used with the connection type, with a description of the data model for each field in the selected entity.
9871
- *
9872
- * The response includes all the fields which make up the entity.
9978
+ * Retrieves the partition indexes associated with a table.
9873
9979
  */
9874
- export const describeEntity = API.makePaginated(() => ({
9875
- input: DescribeEntityRequest,
9876
- output: DescribeEntityResponse,
9980
+ export const getPartitionIndexes = API.makePaginated(() => ({
9981
+ input: GetPartitionIndexesRequest,
9982
+ output: GetPartitionIndexesResponse,
9877
9983
  errors: [
9878
- AccessDeniedException,
9984
+ ConflictException,
9879
9985
  EntityNotFoundException,
9880
- FederationSourceException,
9881
- GlueEncryptionException,
9986
+ InternalServiceException,
9882
9987
  InvalidInputException,
9883
9988
  OperationTimeoutException,
9884
- ValidationException,
9885
9989
  ],
9886
9990
  pagination: {
9887
9991
  inputToken: "NextToken",
9888
9992
  outputToken: "NextToken",
9889
- items: "Fields",
9993
+ items: "PartitionIndexDescriptorList",
9890
9994
  },
9891
9995
  }));
9892
9996
  /**
9893
- * The API is used to retrieve a list of integrations.
9997
+ * Retrieves the metadata for a given workflow run. Job run history is accessible for 90 days for your workflow and job run.
9894
9998
  */
9895
- export const describeIntegrations = API.make(() => ({
9896
- input: DescribeIntegrationsRequest,
9897
- output: DescribeIntegrationsResponse,
9999
+ export const getWorkflowRun = API.make(() => ({
10000
+ input: GetWorkflowRunRequest,
10001
+ output: GetWorkflowRunResponse,
9898
10002
  errors: [
9899
- AccessDeniedException,
9900
10003
  EntityNotFoundException,
9901
- IntegrationNotFoundFault,
9902
- InternalServerException,
9903
10004
  InternalServiceException,
9904
10005
  InvalidInputException,
9905
- ValidationException,
10006
+ OperationTimeoutException,
9906
10007
  ],
9907
10008
  }));
9908
10009
  /**
9909
- * This API is used to retrieve optional override properties for the tables that need to be replicated. These properties can include properties for filtering and partition for source and target tables.
10010
+ * The `ListConnectionTypes` API provides a discovery mechanism to learn available connection types in Glue. The response contains a list of connection types with high-level details of what is supported for each connection type. The connection types listed are the set of supported options for the `ConnectionType` value in the `CreateConnection` API.
9910
10011
  */
9911
- export const getIntegrationTableProperties = API.make(() => ({
9912
- input: GetIntegrationTablePropertiesRequest,
9913
- output: GetIntegrationTablePropertiesResponse,
10012
+ export const listConnectionTypes = API.makePaginated(() => ({
10013
+ input: ListConnectionTypesRequest,
10014
+ output: ListConnectionTypesResponse,
10015
+ errors: [AccessDeniedException, InternalServiceException],
10016
+ pagination: {
10017
+ inputToken: "NextToken",
10018
+ outputToken: "NextToken",
10019
+ items: "ConnectionTypes",
10020
+ pageSize: "MaxResults",
10021
+ },
10022
+ }));
10023
+ /**
10024
+ * Returns all the crawls of a specified crawler. Returns only the crawls that have occurred since the launch date of the crawler history feature, and only retains up to 12 months of crawls. Older crawls will not be returned.
10025
+ *
10026
+ * You may use this API to:
10027
+ *
10028
+ * - Retrive all the crawls of a specified crawler.
10029
+ *
10030
+ * - Retrieve all the crawls of a specified crawler within a limited count.
10031
+ *
10032
+ * - Retrieve all the crawls of a specified crawler in a specific time range.
10033
+ *
10034
+ * - Retrieve all the crawls of a specified crawler with a particular state, crawl ID, or DPU hour value.
10035
+ */
10036
+ export const listCrawls = API.make(() => ({
10037
+ input: ListCrawlsRequest,
10038
+ output: ListCrawlsResponse,
9914
10039
  errors: [
9915
- AccessDeniedException,
9916
10040
  EntityNotFoundException,
9917
- InternalServerException,
9918
- InternalServiceException,
9919
10041
  InvalidInputException,
9920
- ResourceNotFoundException,
9921
- ValidationException,
10042
+ OperationTimeoutException,
9922
10043
  ],
9923
10044
  }));
9924
10045
  /**
9925
- * This API can be used for updating the `ResourceProperty` of the Glue connection (for the source) or Glue database ARN (for the target). These properties can include the role to access the connection or database. Since the same resource can be used across multiple integrations, updating resource properties will impact all the integrations using it.
10046
+ * Returns all data quality execution results for your account.
9926
10047
  */
9927
- export const updateIntegrationResourceProperty = API.make(() => ({
9928
- input: UpdateIntegrationResourcePropertyRequest,
9929
- output: UpdateIntegrationResourcePropertyResponse,
10048
+ export const listDataQualityResults = API.makePaginated(() => ({
10049
+ input: ListDataQualityResultsRequest,
10050
+ output: ListDataQualityResultsResponse,
9930
10051
  errors: [
9931
- AccessDeniedException,
9932
- EntityNotFoundException,
9933
- InternalServerException,
9934
10052
  InternalServiceException,
9935
10053
  InvalidInputException,
9936
- ResourceNotFoundException,
9937
- ValidationException,
10054
+ OperationTimeoutException,
9938
10055
  ],
10056
+ pagination: {
10057
+ inputToken: "NextToken",
10058
+ outputToken: "NextToken",
10059
+ pageSize: "MaxResults",
10060
+ },
9939
10061
  }));
9940
10062
  /**
9941
- * This API is used for deleting the `ResourceProperty` of the Glue connection (for the source) or Glue database ARN (for the target).
10063
+ * Lists the recommendation runs meeting the filter criteria.
9942
10064
  */
9943
- export const deleteIntegrationResourceProperty = API.make(() => ({
9944
- input: DeleteIntegrationResourcePropertyRequest,
9945
- output: DeleteIntegrationResourcePropertyResponse,
10065
+ export const listDataQualityRuleRecommendationRuns = API.makePaginated(() => ({
10066
+ input: ListDataQualityRuleRecommendationRunsRequest,
10067
+ output: ListDataQualityRuleRecommendationRunsResponse,
9946
10068
  errors: [
9947
- AccessDeniedException,
9948
- EntityNotFoundException,
9949
- InternalServerException,
9950
10069
  InternalServiceException,
9951
10070
  InvalidInputException,
9952
- ResourceNotFoundException,
9953
- ValidationException,
10071
+ OperationTimeoutException,
9954
10072
  ],
10073
+ pagination: {
10074
+ inputToken: "NextToken",
10075
+ outputToken: "NextToken",
10076
+ pageSize: "MaxResults",
10077
+ },
9955
10078
  }));
9956
10079
  /**
9957
- * Deletes the table properties that have been created for the tables that need to be replicated.
10080
+ * Lists all the runs meeting the filter criteria, where a ruleset is evaluated against a data source.
9958
10081
  */
9959
- export const deleteIntegrationTableProperties = API.make(() => ({
9960
- input: DeleteIntegrationTablePropertiesRequest,
9961
- output: DeleteIntegrationTablePropertiesResponse,
10082
+ export const listDataQualityRulesetEvaluationRuns = API.makePaginated(() => ({
10083
+ input: ListDataQualityRulesetEvaluationRunsRequest,
10084
+ output: ListDataQualityRulesetEvaluationRunsResponse,
9962
10085
  errors: [
9963
- AccessDeniedException,
9964
- EntityNotFoundException,
9965
- InternalServerException,
9966
10086
  InternalServiceException,
9967
10087
  InvalidInputException,
9968
- ResourceNotFoundException,
9969
- ValidationException,
10088
+ OperationTimeoutException,
9970
10089
  ],
10090
+ pagination: {
10091
+ inputToken: "NextToken",
10092
+ outputToken: "NextToken",
10093
+ pageSize: "MaxResults",
10094
+ },
9971
10095
  }));
9972
10096
  /**
9973
- * This API is used to provide optional override properties for the tables that need to be replicated. These properties can include properties for filtering and partitioning for the source and target tables. To set both source and target properties the same API need to be invoked with the Glue connection ARN as `ResourceArn` with `SourceTableConfig`, and the Glue database ARN as `ResourceArn` with `TargetTableConfig` respectively.
9974
- *
9975
- * The override will be reflected across all the integrations using same `ResourceArn` and source table.
10097
+ * Returns a paginated list of rulesets for the specified list of Glue tables.
9976
10098
  */
9977
- export const updateIntegrationTableProperties = API.make(() => ({
9978
- input: UpdateIntegrationTablePropertiesRequest,
9979
- output: UpdateIntegrationTablePropertiesResponse,
10099
+ export const listDataQualityRulesets = API.makePaginated(() => ({
10100
+ input: ListDataQualityRulesetsRequest,
10101
+ output: ListDataQualityRulesetsResponse,
9980
10102
  errors: [
9981
- AccessDeniedException,
9982
10103
  EntityNotFoundException,
9983
- InternalServerException,
9984
10104
  InternalServiceException,
9985
10105
  InvalidInputException,
9986
- ResourceNotFoundException,
9987
- ValidationException,
10106
+ OperationTimeoutException,
9988
10107
  ],
10108
+ pagination: {
10109
+ inputToken: "NextToken",
10110
+ outputToken: "NextToken",
10111
+ pageSize: "MaxResults",
10112
+ },
9989
10113
  }));
9990
10114
  /**
9991
- * This API can be used for setting up the `ResourceProperty` of the Glue connection (for the source) or Glue database ARN (for the target). These properties can include the role to access the connection or database. To set both source and target properties the same API needs to be invoked with the Glue connection ARN as `ResourceArn` with `SourceProcessingProperties` and the Glue database ARN as `ResourceArn` with `TargetProcessingProperties` respectively.
10115
+ * Retrieve annotations for a data quality statistic.
9992
10116
  */
9993
- export const createIntegrationResourceProperty = API.make(() => ({
9994
- input: CreateIntegrationResourcePropertyRequest,
9995
- output: CreateIntegrationResourcePropertyResponse,
10117
+ export const listDataQualityStatisticAnnotations = API.make(() => ({
10118
+ input: ListDataQualityStatisticAnnotationsRequest,
10119
+ output: ListDataQualityStatisticAnnotationsResponse,
10120
+ errors: [InternalServiceException, InvalidInputException],
10121
+ }));
10122
+ /**
10123
+ * Retrieves a list of data quality statistics.
10124
+ */
10125
+ export const listDataQualityStatistics = API.make(() => ({
10126
+ input: ListDataQualityStatisticsRequest,
10127
+ output: ListDataQualityStatisticsResponse,
9996
10128
  errors: [
9997
- AccessDeniedException,
9998
- ConflictException,
9999
10129
  EntityNotFoundException,
10000
- InternalServerException,
10001
10130
  InternalServiceException,
10002
10131
  InvalidInputException,
10003
- ResourceNotFoundException,
10004
- ValidationException,
10005
10132
  ],
10006
10133
  }));
10007
10134
  /**
10008
- * This API is used to provide optional override properties for the the tables that need to be replicated. These properties can include properties for filtering and partitioning for the source and target tables. To set both source and target properties the same API need to be invoked with the Glue connection ARN as `ResourceArn` with `SourceTableConfig`, and the Glue database ARN as `ResourceArn` with `TargetTableConfig` respectively.
10135
+ * List integration resource properties for a single customer. It supports the filters, maxRecords and markers.
10009
10136
  */
10010
- export const createIntegrationTableProperties = API.make(() => ({
10011
- input: CreateIntegrationTablePropertiesRequest,
10012
- output: CreateIntegrationTablePropertiesResponse,
10137
+ export const listIntegrationResourceProperties = API.make(() => ({
10138
+ input: ListIntegrationResourcePropertiesRequest,
10139
+ output: ListIntegrationResourcePropertiesResponse,
10013
10140
  errors: [
10014
10141
  AccessDeniedException,
10015
10142
  EntityNotFoundException,
@@ -10021,401 +10148,428 @@ export const createIntegrationTableProperties = API.make(() => ({
10021
10148
  ],
10022
10149
  }));
10023
10150
  /**
10024
- * Deletes an optimizer and all associated metadata for a table. The optimization will no longer be performed on the table.
10151
+ * Starts a recommendation run that is used to generate rules when you don't know what rules to write. Glue Data Quality analyzes the data and comes up with recommendations for a potential ruleset. You can then triage the ruleset and modify the generated ruleset to your liking.
10152
+ *
10153
+ * Recommendation runs are automatically deleted after 90 days.
10025
10154
  */
10026
- export const deleteTableOptimizer = API.make(() => ({
10027
- input: DeleteTableOptimizerRequest,
10028
- output: DeleteTableOptimizerResponse,
10155
+ export const startDataQualityRuleRecommendationRun = API.make(() => ({
10156
+ input: StartDataQualityRuleRecommendationRunRequest,
10157
+ output: StartDataQualityRuleRecommendationRunResponse,
10029
10158
  errors: [
10030
- AccessDeniedException,
10031
- EntityNotFoundException,
10159
+ ConflictException,
10032
10160
  InternalServiceException,
10033
10161
  InvalidInputException,
10034
- ThrottlingException,
10162
+ OperationTimeoutException,
10035
10163
  ],
10036
10164
  }));
10037
10165
  /**
10038
- * Updates the configuration for an existing table optimizer.
10166
+ * Stops a materialized view refresh task run, for a specified table and columns.
10039
10167
  */
10040
- export const updateTableOptimizer = API.make(() => ({
10041
- input: UpdateTableOptimizerRequest,
10042
- output: UpdateTableOptimizerResponse,
10168
+ export const stopMaterializedViewRefreshTaskRun = API.make(() => ({
10169
+ input: StopMaterializedViewRefreshTaskRunRequest,
10170
+ output: StopMaterializedViewRefreshTaskRunResponse,
10043
10171
  errors: [
10044
10172
  AccessDeniedException,
10045
- ConcurrentModificationException,
10046
- EntityNotFoundException,
10047
- InternalServiceException,
10048
10173
  InvalidInputException,
10049
- ThrottlingException,
10050
- ValidationException,
10174
+ MaterializedViewRefreshTaskNotRunningException,
10175
+ MaterializedViewRefreshTaskStoppingException,
10176
+ OperationTimeoutException,
10051
10177
  ],
10052
10178
  }));
10053
10179
  /**
10054
- * Returns the configuration for the specified table optimizers.
10180
+ * Changes the schedule state of the specified crawler to
10181
+ * `SCHEDULED`, unless the crawler is already running or the
10182
+ * schedule state is already `SCHEDULED`.
10055
10183
  */
10056
- export const batchGetTableOptimizer = API.make(() => ({
10057
- input: BatchGetTableOptimizerRequest,
10058
- output: BatchGetTableOptimizerResponse,
10184
+ export const startCrawlerSchedule = API.make(() => ({
10185
+ input: StartCrawlerScheduleRequest,
10186
+ output: StartCrawlerScheduleResponse,
10059
10187
  errors: [
10060
- AccessDeniedException,
10061
10188
  EntityNotFoundException,
10062
- InternalServiceException,
10063
- InvalidInputException,
10064
- ThrottlingException,
10189
+ NoScheduleException,
10190
+ OperationTimeoutException,
10191
+ SchedulerRunningException,
10192
+ SchedulerTransitioningException,
10065
10193
  ],
10066
10194
  }));
10067
10195
  /**
10068
- * Creates a new table optimizer for a specific function.
10196
+ * Creates a new catalog in the Glue Data Catalog.
10069
10197
  */
10070
- export const createTableOptimizer = API.make(() => ({
10071
- input: CreateTableOptimizerRequest,
10072
- output: CreateTableOptimizerResponse,
10198
+ export const createCatalog = API.make(() => ({
10199
+ input: CreateCatalogRequest,
10200
+ output: CreateCatalogResponse,
10073
10201
  errors: [
10074
10202
  AccessDeniedException,
10075
10203
  AlreadyExistsException,
10204
+ ConcurrentModificationException,
10076
10205
  EntityNotFoundException,
10206
+ FederatedResourceAlreadyExistsException,
10207
+ FederationSourceException,
10208
+ GlueEncryptionException,
10077
10209
  InternalServiceException,
10078
10210
  InvalidInputException,
10079
- ThrottlingException,
10080
- ValidationException,
10211
+ OperationTimeoutException,
10212
+ ResourceNumberLimitExceededException,
10081
10213
  ],
10082
10214
  }));
10083
10215
  /**
10084
- * Deletes the Glue specified usage profile.
10216
+ * Deletes multiple tables at once.
10217
+ *
10218
+ * After completing this operation, you no longer have access to the table versions and
10219
+ * partitions that belong to the deleted table. Glue deletes these "orphaned" resources
10220
+ * asynchronously in a timely manner, at the discretion of the service.
10221
+ *
10222
+ * To ensure the immediate deletion of all related resources, before calling
10223
+ * `BatchDeleteTable`, use `DeleteTableVersion` or
10224
+ * `BatchDeleteTableVersion`, and `DeletePartition` or
10225
+ * `BatchDeletePartition`, to delete any resources that belong to the
10226
+ * table.
10085
10227
  */
10086
- export const deleteUsageProfile = API.make(() => ({
10087
- input: DeleteUsageProfileRequest,
10088
- output: DeleteUsageProfileResponse,
10228
+ export const batchDeleteTable = API.make(() => ({
10229
+ input: BatchDeleteTableRequest,
10230
+ output: BatchDeleteTableResponse,
10089
10231
  errors: [
10232
+ EntityNotFoundException,
10233
+ GlueEncryptionException,
10090
10234
  InternalServiceException,
10091
10235
  InvalidInputException,
10092
- OperationNotSupportedException,
10093
10236
  OperationTimeoutException,
10237
+ ResourceNotReadyException,
10094
10238
  ],
10095
10239
  }));
10096
10240
  /**
10097
- * Retrieves information about the specified Glue usage profile.
10241
+ * Modifies an existing classifier (a `GrokClassifier`,
10242
+ * an `XMLClassifier`, a `JsonClassifier`, or a `CsvClassifier`, depending on
10243
+ * which field is present).
10098
10244
  */
10099
- export const getUsageProfile = API.make(() => ({
10100
- input: GetUsageProfileRequest,
10101
- output: GetUsageProfileResponse,
10245
+ export const updateClassifier = API.make(() => ({
10246
+ input: UpdateClassifierRequest,
10247
+ output: UpdateClassifierResponse,
10102
10248
  errors: [
10103
10249
  EntityNotFoundException,
10104
- InternalServiceException,
10105
10250
  InvalidInputException,
10106
- OperationNotSupportedException,
10107
10251
  OperationTimeoutException,
10252
+ VersionMismatchException,
10108
10253
  ],
10109
10254
  }));
10110
10255
  /**
10111
- * Update an Glue usage profile.
10256
+ * Sets the schedule state of the specified crawler to
10257
+ * `NOT_SCHEDULED`, but does not stop the crawler if it is
10258
+ * already running.
10112
10259
  */
10113
- export const updateUsageProfile = API.make(() => ({
10114
- input: UpdateUsageProfileRequest,
10115
- output: UpdateUsageProfileResponse,
10260
+ export const stopCrawlerSchedule = API.make(() => ({
10261
+ input: StopCrawlerScheduleRequest,
10262
+ output: StopCrawlerScheduleResponse,
10116
10263
  errors: [
10117
- ConcurrentModificationException,
10118
10264
  EntityNotFoundException,
10119
- InternalServiceException,
10120
- InvalidInputException,
10121
- OperationNotSupportedException,
10122
10265
  OperationTimeoutException,
10266
+ SchedulerNotRunningException,
10267
+ SchedulerTransitioningException,
10123
10268
  ],
10124
10269
  }));
10125
10270
  /**
10126
- * Starts a new run of the specified blueprint.
10271
+ * Updates the schedule of a crawler using a `cron` expression.
10127
10272
  */
10128
- export const startBlueprintRun = API.make(() => ({
10129
- input: StartBlueprintRunRequest,
10130
- output: StartBlueprintRunResponse,
10273
+ export const updateCrawlerSchedule = API.make(() => ({
10274
+ input: UpdateCrawlerScheduleRequest,
10275
+ output: UpdateCrawlerScheduleResponse,
10131
10276
  errors: [
10132
10277
  EntityNotFoundException,
10133
- IllegalBlueprintStateException,
10134
- InternalServiceException,
10135
10278
  InvalidInputException,
10136
10279
  OperationTimeoutException,
10137
- ResourceNumberLimitExceededException,
10280
+ SchedulerTransitioningException,
10281
+ VersionMismatchException,
10138
10282
  ],
10139
10283
  }));
10140
10284
  /**
10141
- * Starts a column statistics task run, for a specified table and columns.
10285
+ * Retrieves the definition of a specified database.
10142
10286
  */
10143
- export const startColumnStatisticsTaskRun = API.make(() => ({
10144
- input: StartColumnStatisticsTaskRunRequest,
10145
- output: StartColumnStatisticsTaskRunResponse,
10287
+ export const getDatabase = API.make(() => ({
10288
+ input: GetDatabaseRequest,
10289
+ output: GetDatabaseResponse,
10146
10290
  errors: [
10147
- AccessDeniedException,
10148
- ColumnStatisticsTaskRunningException,
10149
10291
  EntityNotFoundException,
10292
+ FederationSourceException,
10293
+ FederationSourceRetryableException,
10294
+ GlueEncryptionException,
10295
+ InternalServiceException,
10150
10296
  InvalidInputException,
10151
10297
  OperationTimeoutException,
10152
- ResourceNumberLimitExceededException,
10153
10298
  ],
10154
10299
  }));
10155
10300
  /**
10156
- * Updates the specified data quality ruleset.
10157
- */
10158
- export const updateDataQualityRuleset = API.make(() => ({
10159
- input: UpdateDataQualityRulesetRequest,
10160
- output: UpdateDataQualityRulesetResponse,
10301
+ * Retrieves the `Table` definition in a Data Catalog for
10302
+ * a specified table.
10303
+ */
10304
+ export const getTable = API.make(() => ({
10305
+ input: GetTableRequest,
10306
+ output: GetTableResponse,
10161
10307
  errors: [
10162
- AlreadyExistsException,
10163
10308
  EntityNotFoundException,
10164
- IdempotentParameterMismatchException,
10309
+ FederationSourceException,
10310
+ FederationSourceRetryableException,
10311
+ GlueEncryptionException,
10165
10312
  InternalServiceException,
10166
10313
  InvalidInputException,
10167
10314
  OperationTimeoutException,
10168
- ResourceNumberLimitExceededException,
10315
+ ResourceNotReadyException,
10169
10316
  ],
10170
10317
  }));
10171
10318
  /**
10172
- * Creates a specified partition index in an existing table.
10319
+ * Retrieves all catalogs defined in a catalog in the Glue Data Catalog. For a Redshift-federated catalog use case, this operation returns the list of catalogs mapped to Redshift databases in the Redshift namespace catalog.
10173
10320
  */
10174
- export const createPartitionIndex = API.make(() => ({
10175
- input: CreatePartitionIndexRequest,
10176
- output: CreatePartitionIndexResponse,
10321
+ export const getCatalogs = API.make(() => ({
10322
+ input: GetCatalogsRequest,
10323
+ output: GetCatalogsResponse,
10177
10324
  errors: [
10178
- AlreadyExistsException,
10325
+ AccessDeniedException,
10179
10326
  EntityNotFoundException,
10327
+ FederationSourceException,
10328
+ FederationSourceRetryableException,
10180
10329
  GlueEncryptionException,
10181
10330
  InternalServiceException,
10182
10331
  InvalidInputException,
10183
10332
  OperationTimeoutException,
10184
- ResourceNumberLimitExceededException,
10185
10333
  ],
10186
10334
  }));
10187
10335
  /**
10188
- * Tests a connection to a service to validate the service credentials that you provide.
10189
- *
10190
- * You can either provide an existing connection name or a `TestConnectionInput` for testing a non-existing connection input. Providing both at the same time will cause an error.
10191
- *
10192
- * If the action is successful, the service sends back an HTTP 200 response.
10336
+ * Retrieves all databases defined in a given Data Catalog.
10193
10337
  */
10194
- export const testConnection = API.make(() => ({
10195
- input: TestConnectionRequest,
10196
- output: TestConnectionResponse,
10338
+ export const getDatabases = API.makePaginated(() => ({
10339
+ input: GetDatabasesRequest,
10340
+ output: GetDatabasesResponse,
10197
10341
  errors: [
10198
- AccessDeniedException,
10199
- ConflictException,
10200
10342
  EntityNotFoundException,
10201
10343
  FederationSourceException,
10344
+ FederationSourceRetryableException,
10202
10345
  GlueEncryptionException,
10203
10346
  InternalServiceException,
10204
10347
  InvalidInputException,
10205
10348
  OperationTimeoutException,
10206
- ResourceNumberLimitExceededException,
10207
10349
  ],
10350
+ pagination: {
10351
+ inputToken: "NextToken",
10352
+ outputToken: "NextToken",
10353
+ pageSize: "MaxResults",
10354
+ },
10208
10355
  }));
10209
10356
  /**
10210
- * Adds a new version to the existing schema. Returns an error if new version of schema does not meet the compatibility requirements of the schema set. This API will not create a new schema set and will return a 404 error if the schema set is not already present in the Schema Registry.
10211
- *
10212
- * If this is the first schema definition to be registered in the Schema Registry, this API will store the schema version and return immediately. Otherwise, this call has the potential to run longer than other operations due to compatibility modes. You can call the `GetSchemaVersion` API with the `SchemaVersionId` to check compatibility modes.
10213
- *
10214
- * If the same schema definition is already stored in Schema Registry as a version, the schema ID of the existing schema is returned to the caller.
10357
+ * Retrieves information about a specified partition.
10215
10358
  */
10216
- export const registerSchemaVersion = API.make(() => ({
10217
- input: RegisterSchemaVersionInput,
10218
- output: RegisterSchemaVersionResponse,
10359
+ export const getPartition = API.make(() => ({
10360
+ input: GetPartitionRequest,
10361
+ output: GetPartitionResponse,
10219
10362
  errors: [
10220
- AccessDeniedException,
10221
- ConcurrentModificationException,
10222
10363
  EntityNotFoundException,
10364
+ FederationSourceException,
10365
+ FederationSourceRetryableException,
10366
+ GlueEncryptionException,
10223
10367
  InternalServiceException,
10224
10368
  InvalidInputException,
10225
- ResourceNumberLimitExceededException,
10369
+ OperationTimeoutException,
10226
10370
  ],
10227
10371
  }));
10228
10372
  /**
10229
- * Enables you to provide additional labels (examples of truth) to be used to teach the
10230
- * machine learning transform and improve its quality. This API operation is generally used as
10231
- * part of the active learning workflow that starts with the
10232
- * `StartMLLabelingSetGenerationTaskRun` call and that ultimately results in
10233
- * improving the quality of your machine learning transform.
10234
- *
10235
- * After the `StartMLLabelingSetGenerationTaskRun` finishes, Glue machine learning
10236
- * will have generated a series of questions for humans to answer. (Answering these questions is
10237
- * often called 'labeling' in the machine learning workflows). In the case of the
10238
- * `FindMatches` transform, these questions are of the form, “What is the correct
10239
- * way to group these rows together into groups composed entirely of matching records?” After the
10240
- * labeling process is finished, users upload their answers/labels with a call to
10241
- * `StartImportLabelsTaskRun`. After `StartImportLabelsTaskRun` finishes,
10242
- * all future runs of the machine learning transform use the new and improved labels and perform
10243
- * a higher-quality transformation.
10244
- *
10245
- * By default, `StartMLLabelingSetGenerationTaskRun` continually learns from and
10246
- * combines all labels that you upload unless you set `Replace` to true. If you set
10247
- * `Replace` to true, `StartImportLabelsTaskRun` deletes and forgets all
10248
- * previously uploaded labels and learns only from the exact set that you upload. Replacing
10249
- * labels can be helpful if you realize that you previously uploaded incorrect labels, and you
10250
- * believe that they are having a negative effect on your transform quality.
10251
- *
10252
- * You can check on the status of your task run by calling the `GetMLTaskRun`
10253
- * operation.
10373
+ * Updates an existing database definition in a Data Catalog.
10254
10374
  */
10255
- export const startImportLabelsTaskRun = API.make(() => ({
10256
- input: StartImportLabelsTaskRunRequest,
10257
- output: StartImportLabelsTaskRunResponse,
10375
+ export const updateDatabase = API.make(() => ({
10376
+ input: UpdateDatabaseRequest,
10377
+ output: UpdateDatabaseResponse,
10258
10378
  errors: [
10379
+ AlreadyExistsException,
10380
+ ConcurrentModificationException,
10259
10381
  EntityNotFoundException,
10382
+ FederationSourceException,
10383
+ FederationSourceRetryableException,
10384
+ GlueEncryptionException,
10260
10385
  InternalServiceException,
10261
10386
  InvalidInputException,
10262
10387
  OperationTimeoutException,
10263
- ResourceNumberLimitExceededException,
10264
10388
  ],
10265
10389
  }));
10266
10390
  /**
10267
- * Puts the specified workflow run properties for the given workflow run. If a property already exists for the specified run, then it overrides the value otherwise adds the property to existing properties.
10391
+ * Removes a table definition from the Data Catalog.
10392
+ *
10393
+ * After completing this operation, you no longer have access to the table versions and
10394
+ * partitions that belong to the deleted table. Glue deletes these "orphaned" resources
10395
+ * asynchronously in a timely manner, at the discretion of the service.
10396
+ *
10397
+ * To ensure the immediate deletion of all related resources, before calling
10398
+ * `DeleteTable`, use `DeleteTableVersion` or
10399
+ * `BatchDeleteTableVersion`, and `DeletePartition` or
10400
+ * `BatchDeletePartition`, to delete any resources that belong to the
10401
+ * table.
10268
10402
  */
10269
- export const putWorkflowRunProperties = API.make(() => ({
10270
- input: PutWorkflowRunPropertiesRequest,
10271
- output: PutWorkflowRunPropertiesResponse,
10403
+ export const deleteTable = API.make(() => ({
10404
+ input: DeleteTableRequest,
10405
+ output: DeleteTableResponse,
10272
10406
  errors: [
10273
- AlreadyExistsException,
10274
10407
  ConcurrentModificationException,
10275
10408
  EntityNotFoundException,
10409
+ FederationSourceException,
10410
+ FederationSourceRetryableException,
10276
10411
  InternalServiceException,
10277
10412
  InvalidInputException,
10278
10413
  OperationTimeoutException,
10279
- ResourceNumberLimitExceededException,
10414
+ ResourceNotReadyException,
10280
10415
  ],
10281
10416
  }));
10282
10417
  /**
10283
- * Creates a new registry which may be used to hold a collection of schemas.
10418
+ * Creates a new database in a Data Catalog.
10284
10419
  */
10285
- export const createRegistry = API.make(() => ({
10286
- input: CreateRegistryInput,
10287
- output: CreateRegistryResponse,
10420
+ export const createDatabase = API.make(() => ({
10421
+ input: CreateDatabaseRequest,
10422
+ output: CreateDatabaseResponse,
10288
10423
  errors: [
10289
- AccessDeniedException,
10290
10424
  AlreadyExistsException,
10291
10425
  ConcurrentModificationException,
10426
+ FederatedResourceAlreadyExistsException,
10427
+ FederationSourceException,
10428
+ FederationSourceRetryableException,
10429
+ GlueEncryptionException,
10292
10430
  InternalServiceException,
10293
10431
  InvalidInputException,
10432
+ OperationTimeoutException,
10294
10433
  ResourceNumberLimitExceededException,
10295
10434
  ],
10296
10435
  }));
10297
10436
  /**
10298
- * Registers a blueprint with Glue.
10437
+ * Returns information on a job bookmark entry.
10438
+ *
10439
+ * For more information about enabling and using job bookmarks, see:
10440
+ *
10441
+ * - Tracking processed data using job bookmarks
10442
+ *
10443
+ * - Job parameters used by Glue
10444
+ *
10445
+ * - Job structure
10299
10446
  */
10300
- export const createBlueprint = API.make(() => ({
10301
- input: CreateBlueprintRequest,
10302
- output: CreateBlueprintResponse,
10447
+ export const getJobBookmark = API.make(() => ({
10448
+ input: GetJobBookmarkRequest,
10449
+ output: GetJobBookmarkResponse,
10303
10450
  errors: [
10304
- AlreadyExistsException,
10451
+ EntityNotFoundException,
10305
10452
  InternalServiceException,
10306
10453
  InvalidInputException,
10307
10454
  OperationTimeoutException,
10308
- ResourceNumberLimitExceededException,
10455
+ ValidationException,
10309
10456
  ],
10310
10457
  }));
10311
10458
  /**
10312
- * Creates a new crawler with specified targets, role, configuration, and optional schedule.
10313
- * At least one crawl target must be specified, in the `s3Targets` field, the
10314
- * `jdbcTargets` field, or the `DynamoDBTargets` field.
10459
+ * Returns the available entities supported by the connection type.
10315
10460
  */
10316
- export const createCrawler = API.make(() => ({
10317
- input: CreateCrawlerRequest,
10318
- output: CreateCrawlerResponse,
10461
+ export const listEntities = API.makePaginated(() => ({
10462
+ input: ListEntitiesRequest,
10463
+ output: ListEntitiesResponse,
10319
10464
  errors: [
10320
- AlreadyExistsException,
10465
+ AccessDeniedException,
10466
+ EntityNotFoundException,
10467
+ FederationSourceException,
10468
+ GlueEncryptionException,
10321
10469
  InvalidInputException,
10322
10470
  OperationTimeoutException,
10323
- ResourceNumberLimitExceededException,
10471
+ ValidationException,
10324
10472
  ],
10473
+ pagination: {
10474
+ inputToken: "NextToken",
10475
+ outputToken: "NextToken",
10476
+ items: "Entities",
10477
+ },
10325
10478
  }));
10326
10479
  /**
10327
- * Creates a data quality ruleset with DQDL rules applied to a specified Glue table.
10328
- *
10329
- * You create the ruleset using the Data Quality Definition Language (DQDL). For more information, see the Glue developer guide.
10480
+ * Updates a specified development endpoint.
10330
10481
  */
10331
- export const createDataQualityRuleset = API.make(() => ({
10332
- input: CreateDataQualityRulesetRequest,
10333
- output: CreateDataQualityRulesetResponse,
10482
+ export const updateDevEndpoint = API.make(() => ({
10483
+ input: UpdateDevEndpointRequest,
10484
+ output: UpdateDevEndpointResponse,
10334
10485
  errors: [
10335
- AlreadyExistsException,
10486
+ EntityNotFoundException,
10336
10487
  InternalServiceException,
10337
10488
  InvalidInputException,
10338
10489
  OperationTimeoutException,
10339
- ResourceNumberLimitExceededException,
10490
+ ValidationException,
10340
10491
  ],
10341
10492
  }));
10342
10493
  /**
10343
- * Creates a new partition.
10494
+ * Synchronizes a job from the source control repository. This operation takes the job artifacts that are located in the remote repository and updates the Glue internal stores with these artifacts.
10495
+ *
10496
+ * This API supports optional parameters which take in the repository information.
10344
10497
  */
10345
- export const createPartition = API.make(() => ({
10346
- input: CreatePartitionRequest,
10347
- output: CreatePartitionResponse,
10498
+ export const updateJobFromSourceControl = API.make(() => ({
10499
+ input: UpdateJobFromSourceControlRequest,
10500
+ output: UpdateJobFromSourceControlResponse,
10348
10501
  errors: [
10502
+ AccessDeniedException,
10349
10503
  AlreadyExistsException,
10350
10504
  EntityNotFoundException,
10351
- GlueEncryptionException,
10352
10505
  InternalServiceException,
10353
10506
  InvalidInputException,
10354
10507
  OperationTimeoutException,
10355
- ResourceNumberLimitExceededException,
10508
+ ValidationException,
10356
10509
  ],
10357
10510
  }));
10358
10511
  /**
10359
- * Creates a new schema set and registers the schema definition. Returns an error if the schema set already exists without actually registering the version.
10360
- *
10361
- * When the schema set is created, a version checkpoint will be set to the first version. Compatibility mode "DISABLED" restricts any additional schema versions from being added after the first schema version. For all other compatibility modes, validation of compatibility settings will be applied only from the second version onwards when the `RegisterSchemaVersion` API is used.
10512
+ * Synchronizes a job to the source control repository. This operation takes the job artifacts from the Glue internal stores and makes a commit to the remote repository that is configured on the job.
10362
10513
  *
10363
- * When this API is called without a `RegistryId`, this will create an entry for a "default-registry" in the registry database tables, if it is not already present.
10514
+ * This API supports optional parameters which take in the repository information.
10364
10515
  */
10365
- export const createSchema = API.make(() => ({
10366
- input: CreateSchemaInput,
10367
- output: CreateSchemaResponse,
10516
+ export const updateSourceControlFromJob = API.make(() => ({
10517
+ input: UpdateSourceControlFromJobRequest,
10518
+ output: UpdateSourceControlFromJobResponse,
10368
10519
  errors: [
10369
10520
  AccessDeniedException,
10370
10521
  AlreadyExistsException,
10371
- ConcurrentModificationException,
10372
10522
  EntityNotFoundException,
10373
10523
  InternalServiceException,
10374
10524
  InvalidInputException,
10375
- ResourceNumberLimitExceededException,
10525
+ OperationTimeoutException,
10526
+ ValidationException,
10376
10527
  ],
10377
10528
  }));
10378
10529
  /**
10379
- * Creates a new function definition in the Data Catalog.
10530
+ * Executes the statement.
10380
10531
  */
10381
- export const createUserDefinedFunction = API.make(() => ({
10382
- input: CreateUserDefinedFunctionRequest,
10383
- output: CreateUserDefinedFunctionResponse,
10532
+ export const runStatement = API.make(() => ({
10533
+ input: RunStatementRequest,
10534
+ output: RunStatementResponse,
10384
10535
  errors: [
10385
- AlreadyExistsException,
10536
+ AccessDeniedException,
10386
10537
  EntityNotFoundException,
10387
- GlueEncryptionException,
10538
+ IllegalSessionStateException,
10388
10539
  InternalServiceException,
10389
10540
  InvalidInputException,
10390
10541
  OperationTimeoutException,
10391
10542
  ResourceNumberLimitExceededException,
10543
+ ValidationException,
10392
10544
  ],
10393
10545
  }));
10394
10546
  /**
10395
- * Creates a new workflow.
10547
+ * Creates a new development endpoint.
10396
10548
  */
10397
- export const createWorkflow = API.make(() => ({
10398
- input: CreateWorkflowRequest,
10399
- output: CreateWorkflowResponse,
10549
+ export const createDevEndpoint = API.make(() => ({
10550
+ input: CreateDevEndpointRequest,
10551
+ output: CreateDevEndpointResponse,
10400
10552
  errors: [
10553
+ AccessDeniedException,
10401
10554
  AlreadyExistsException,
10402
- ConcurrentModificationException,
10555
+ IdempotentParameterMismatchException,
10403
10556
  InternalServiceException,
10404
10557
  InvalidInputException,
10405
10558
  OperationTimeoutException,
10406
10559
  ResourceNumberLimitExceededException,
10560
+ ValidationException,
10407
10561
  ],
10408
10562
  }));
10409
10563
  /**
10410
- * Executes the statement.
10411
- */
10412
- export const runStatement = API.make(() => ({
10413
- input: RunStatementRequest,
10414
- output: RunStatementResponse,
10564
+ * Creates a new session.
10565
+ */
10566
+ export const createSession = API.make(() => ({
10567
+ input: CreateSessionRequest,
10568
+ output: CreateSessionResponse,
10415
10569
  errors: [
10416
10570
  AccessDeniedException,
10417
- EntityNotFoundException,
10418
- IllegalSessionStateException,
10571
+ AlreadyExistsException,
10572
+ IdempotentParameterMismatchException,
10419
10573
  InternalServiceException,
10420
10574
  InvalidInputException,
10421
10575
  OperationTimeoutException,
@@ -10424,194 +10578,189 @@ export const runStatement = API.make(() => ({
10424
10578
  ],
10425
10579
  }));
10426
10580
  /**
10427
- * Starts a job run using a job definition.
10581
+ * Updates the configuration for an existing table optimizer.
10428
10582
  */
10429
- export const startJobRun = API.make(() => ({
10430
- input: StartJobRunRequest,
10431
- output: StartJobRunResponse,
10583
+ export const updateTableOptimizer = API.make(() => ({
10584
+ input: UpdateTableOptimizerRequest,
10585
+ output: UpdateTableOptimizerResponse,
10432
10586
  errors: [
10433
- ConcurrentRunsExceededException,
10587
+ AccessDeniedException,
10588
+ ConcurrentModificationException,
10434
10589
  EntityNotFoundException,
10435
10590
  InternalServiceException,
10436
10591
  InvalidInputException,
10437
- OperationTimeoutException,
10438
- ResourceNumberLimitExceededException,
10592
+ ThrottlingException,
10593
+ ValidationException,
10439
10594
  ],
10440
10595
  }));
10441
10596
  /**
10442
- * Starts an existing trigger. See Triggering
10443
- * Jobs for information about how different types of trigger are
10444
- * started.
10597
+ * Creates a new table optimizer for a specific function.
10445
10598
  */
10446
- export const startTrigger = API.make(() => ({
10447
- input: StartTriggerRequest,
10448
- output: StartTriggerResponse,
10599
+ export const createTableOptimizer = API.make(() => ({
10600
+ input: CreateTableOptimizerRequest,
10601
+ output: CreateTableOptimizerResponse,
10449
10602
  errors: [
10450
- ConcurrentRunsExceededException,
10603
+ AccessDeniedException,
10604
+ AlreadyExistsException,
10451
10605
  EntityNotFoundException,
10452
10606
  InternalServiceException,
10453
10607
  InvalidInputException,
10454
- OperationTimeoutException,
10455
- ResourceNumberLimitExceededException,
10608
+ ThrottlingException,
10609
+ ValidationException,
10456
10610
  ],
10457
10611
  }));
10458
10612
  /**
10459
- * Starts a new run of the specified workflow.
10613
+ * Provides details regarding the entity used with the connection type, with a description of the data model for each field in the selected entity.
10614
+ *
10615
+ * The response includes all the fields which make up the entity.
10460
10616
  */
10461
- export const startWorkflowRun = API.make(() => ({
10462
- input: StartWorkflowRunRequest,
10463
- output: StartWorkflowRunResponse,
10617
+ export const describeEntity = API.makePaginated(() => ({
10618
+ input: DescribeEntityRequest,
10619
+ output: DescribeEntityResponse,
10464
10620
  errors: [
10465
- ConcurrentRunsExceededException,
10621
+ AccessDeniedException,
10466
10622
  EntityNotFoundException,
10467
- InternalServiceException,
10623
+ FederationSourceException,
10624
+ GlueEncryptionException,
10468
10625
  InvalidInputException,
10469
10626
  OperationTimeoutException,
10470
- ResourceNumberLimitExceededException,
10627
+ ValidationException,
10471
10628
  ],
10629
+ pagination: {
10630
+ inputToken: "NextToken",
10631
+ outputToken: "NextToken",
10632
+ items: "Fields",
10633
+ },
10472
10634
  }));
10473
10635
  /**
10474
- * Creates settings for a column statistics task.
10636
+ * The API is used to retrieve a list of integrations.
10475
10637
  */
10476
- export const createColumnStatisticsTaskSettings = API.make(() => ({
10477
- input: CreateColumnStatisticsTaskSettingsRequest,
10478
- output: CreateColumnStatisticsTaskSettingsResponse,
10638
+ export const describeIntegrations = API.make(() => ({
10639
+ input: DescribeIntegrationsRequest,
10640
+ output: DescribeIntegrationsResponse,
10479
10641
  errors: [
10480
10642
  AccessDeniedException,
10481
- AlreadyExistsException,
10482
- ColumnStatisticsTaskRunningException,
10483
10643
  EntityNotFoundException,
10644
+ IntegrationNotFoundFault,
10645
+ InternalServerException,
10646
+ InternalServiceException,
10484
10647
  InvalidInputException,
10485
- OperationTimeoutException,
10486
- ResourceNumberLimitExceededException,
10648
+ ValidationException,
10487
10649
  ],
10488
10650
  }));
10489
10651
  /**
10490
- * Creates a custom pattern that is used to detect sensitive data across the columns and rows of your structured data.
10491
- *
10492
- * Each custom pattern you create specifies a regular expression and an optional list of context words. If no context words are passed only a regular expression is checked.
10652
+ * This API is used to retrieve optional override properties for the tables that need to be replicated. These properties can include properties for filtering and partition for source and target tables.
10493
10653
  */
10494
- export const createCustomEntityType = API.make(() => ({
10495
- input: CreateCustomEntityTypeRequest,
10496
- output: CreateCustomEntityTypeResponse,
10654
+ export const getIntegrationTableProperties = API.make(() => ({
10655
+ input: GetIntegrationTablePropertiesRequest,
10656
+ output: GetIntegrationTablePropertiesResponse,
10497
10657
  errors: [
10498
10658
  AccessDeniedException,
10499
- AlreadyExistsException,
10500
- IdempotentParameterMismatchException,
10659
+ EntityNotFoundException,
10660
+ InternalServerException,
10501
10661
  InternalServiceException,
10502
10662
  InvalidInputException,
10503
- OperationTimeoutException,
10504
- ResourceNumberLimitExceededException,
10663
+ ResourceNotFoundException,
10664
+ ValidationException,
10505
10665
  ],
10506
10666
  }));
10507
10667
  /**
10508
- * Creates a new development endpoint.
10668
+ * This API can be used for updating the `ResourceProperty` of the Glue connection (for the source) or Glue database ARN (for the target). These properties can include the role to access the connection or database. Since the same resource can be used across multiple integrations, updating resource properties will impact all the integrations using it.
10509
10669
  */
10510
- export const createDevEndpoint = API.make(() => ({
10511
- input: CreateDevEndpointRequest,
10512
- output: CreateDevEndpointResponse,
10670
+ export const updateIntegrationResourceProperty = API.make(() => ({
10671
+ input: UpdateIntegrationResourcePropertyRequest,
10672
+ output: UpdateIntegrationResourcePropertyResponse,
10513
10673
  errors: [
10514
10674
  AccessDeniedException,
10515
- AlreadyExistsException,
10516
- IdempotentParameterMismatchException,
10675
+ EntityNotFoundException,
10676
+ InternalServerException,
10517
10677
  InternalServiceException,
10518
10678
  InvalidInputException,
10519
- OperationTimeoutException,
10520
- ResourceNumberLimitExceededException,
10679
+ ResourceNotFoundException,
10521
10680
  ValidationException,
10522
10681
  ],
10523
10682
  }));
10524
10683
  /**
10525
- * Creates a new session.
10684
+ * This API is used for deleting the `ResourceProperty` of the Glue connection (for the source) or Glue database ARN (for the target).
10526
10685
  */
10527
- export const createSession = API.make(() => ({
10528
- input: CreateSessionRequest,
10529
- output: CreateSessionResponse,
10686
+ export const deleteIntegrationResourceProperty = API.make(() => ({
10687
+ input: DeleteIntegrationResourcePropertyRequest,
10688
+ output: DeleteIntegrationResourcePropertyResponse,
10530
10689
  errors: [
10531
10690
  AccessDeniedException,
10532
- AlreadyExistsException,
10533
- IdempotentParameterMismatchException,
10691
+ EntityNotFoundException,
10692
+ InternalServerException,
10534
10693
  InternalServiceException,
10535
10694
  InvalidInputException,
10536
- OperationTimeoutException,
10537
- ResourceNumberLimitExceededException,
10695
+ ResourceNotFoundException,
10538
10696
  ValidationException,
10539
10697
  ],
10540
10698
  }));
10541
10699
  /**
10542
- * Annotate datapoints over time for a specific data quality statistic.
10543
- * The API requires both profileID and statisticID as part of the InclusionAnnotation input.
10544
- * The API only works for a single statisticId across multiple profiles.
10700
+ * Deletes the table properties that have been created for the tables that need to be replicated.
10545
10701
  */
10546
- export const batchPutDataQualityStatisticAnnotation = API.make(() => ({
10547
- input: BatchPutDataQualityStatisticAnnotationRequest,
10548
- output: BatchPutDataQualityStatisticAnnotationResponse,
10702
+ export const deleteIntegrationTableProperties = API.make(() => ({
10703
+ input: DeleteIntegrationTablePropertiesRequest,
10704
+ output: DeleteIntegrationTablePropertiesResponse,
10549
10705
  errors: [
10706
+ AccessDeniedException,
10550
10707
  EntityNotFoundException,
10708
+ InternalServerException,
10551
10709
  InternalServiceException,
10552
10710
  InvalidInputException,
10553
- ResourceNumberLimitExceededException,
10711
+ ResourceNotFoundException,
10712
+ ValidationException,
10554
10713
  ],
10555
10714
  }));
10556
10715
  /**
10557
- * Creates an Glue machine learning transform. This operation creates the transform and
10558
- * all the necessary parameters to train it.
10559
- *
10560
- * Call this operation as the first step in the process of using a machine learning transform
10561
- * (such as the `FindMatches` transform) for deduplicating data. You can provide an
10562
- * optional `Description`, in addition to the parameters that you want to use for your
10563
- * algorithm.
10716
+ * This API is used to provide optional override properties for the tables that need to be replicated. These properties can include properties for filtering and partitioning for the source and target tables. To set both source and target properties the same API need to be invoked with the Glue connection ARN as `ResourceArn` with `SourceTableConfig`, and the Glue database ARN as `ResourceArn` with `TargetTableConfig` respectively.
10564
10717
  *
10565
- * You must also specify certain parameters for the tasks that Glue runs on your
10566
- * behalf as part of learning from your data and creating a high-quality machine learning
10567
- * transform. These parameters include `Role`, and optionally,
10568
- * `AllocatedCapacity`, `Timeout`, and `MaxRetries`. For more
10569
- * information, see Jobs.
10718
+ * The override will be reflected across all the integrations using same `ResourceArn` and source table.
10570
10719
  */
10571
- export const createMLTransform = API.make(() => ({
10572
- input: CreateMLTransformRequest,
10573
- output: CreateMLTransformResponse,
10720
+ export const updateIntegrationTableProperties = API.make(() => ({
10721
+ input: UpdateIntegrationTablePropertiesRequest,
10722
+ output: UpdateIntegrationTablePropertiesResponse,
10574
10723
  errors: [
10575
10724
  AccessDeniedException,
10576
- AlreadyExistsException,
10577
- IdempotentParameterMismatchException,
10725
+ EntityNotFoundException,
10726
+ InternalServerException,
10578
10727
  InternalServiceException,
10579
10728
  InvalidInputException,
10580
- OperationTimeoutException,
10581
- ResourceNumberLimitExceededException,
10729
+ ResourceNotFoundException,
10730
+ ValidationException,
10582
10731
  ],
10583
10732
  }));
10584
10733
  /**
10585
- * Creates a new security configuration. A security configuration is a set of security properties that can be used by Glue. You can use a security configuration to encrypt data at rest. For information about using security configurations in Glue, see Encrypting Data Written by Crawlers, Jobs, and Development Endpoints.
10734
+ * This API can be used for setting up the `ResourceProperty` of the Glue connection (for the source) or Glue database ARN (for the target). These properties can include the role to access the connection or database. To set both source and target properties the same API needs to be invoked with the Glue connection ARN as `ResourceArn` with `SourceProcessingProperties` and the Glue database ARN as `ResourceArn` with `TargetProcessingProperties` respectively.
10586
10735
  */
10587
- export const createSecurityConfiguration = API.make(() => ({
10588
- input: CreateSecurityConfigurationRequest,
10589
- output: CreateSecurityConfigurationResponse,
10736
+ export const createIntegrationResourceProperty = API.make(() => ({
10737
+ input: CreateIntegrationResourcePropertyRequest,
10738
+ output: CreateIntegrationResourcePropertyResponse,
10590
10739
  errors: [
10591
- AlreadyExistsException,
10740
+ AccessDeniedException,
10741
+ ConflictException,
10742
+ EntityNotFoundException,
10743
+ InternalServerException,
10592
10744
  InternalServiceException,
10593
10745
  InvalidInputException,
10594
- OperationTimeoutException,
10595
- ResourceNumberLimitExceededException,
10746
+ ResourceNotFoundException,
10747
+ ValidationException,
10596
10748
  ],
10597
10749
  }));
10598
10750
  /**
10599
- * Creates a new trigger.
10600
- *
10601
- * Job arguments may be logged. Do not pass plaintext secrets as arguments. Retrieve secrets from a Glue Connection, Amazon Web Services Secrets Manager or other secret management mechanism if you intend to keep them within the Job.
10751
+ * This API is used to provide optional override properties for the the tables that need to be replicated. These properties can include properties for filtering and partitioning for the source and target tables. To set both source and target properties the same API need to be invoked with the Glue connection ARN as `ResourceArn` with `SourceTableConfig`, and the Glue database ARN as `ResourceArn` with `TargetTableConfig` respectively.
10602
10752
  */
10603
- export const createTrigger = API.make(() => ({
10604
- input: CreateTriggerRequest,
10605
- output: CreateTriggerResponse,
10753
+ export const createIntegrationTableProperties = API.make(() => ({
10754
+ input: CreateIntegrationTablePropertiesRequest,
10755
+ output: CreateIntegrationTablePropertiesResponse,
10606
10756
  errors: [
10607
- AlreadyExistsException,
10608
- ConcurrentModificationException,
10757
+ AccessDeniedException,
10609
10758
  EntityNotFoundException,
10610
- IdempotentParameterMismatchException,
10759
+ InternalServerException,
10611
10760
  InternalServiceException,
10612
10761
  InvalidInputException,
10613
- OperationTimeoutException,
10614
- ResourceNumberLimitExceededException,
10762
+ ResourceNotFoundException,
10763
+ ValidationException,
10615
10764
  ],
10616
10765
  }));
10617
10766
  /**
@@ -10666,20 +10815,6 @@ export const updateCrawler = API.make(() => ({
10666
10815
  VersionMismatchException,
10667
10816
  ],
10668
10817
  }));
10669
- /**
10670
- * Updates the schedule of a crawler using a `cron` expression.
10671
- */
10672
- export const updateCrawlerSchedule = API.make(() => ({
10673
- input: UpdateCrawlerScheduleRequest,
10674
- output: UpdateCrawlerScheduleResponse,
10675
- errors: [
10676
- EntityNotFoundException,
10677
- InvalidInputException,
10678
- OperationTimeoutException,
10679
- SchedulerTransitioningException,
10680
- VersionMismatchException,
10681
- ],
10682
- }));
10683
10818
  /**
10684
10819
  * Creates an Glue usage profile.
10685
10820
  */
@@ -10708,6 +10843,24 @@ export const describeConnectionType = API.make(() => ({
10708
10843
  ValidationException,
10709
10844
  ],
10710
10845
  }));
10846
+ /**
10847
+ * Returns a list of inbound integrations for the specified integration.
10848
+ */
10849
+ export const describeInboundIntegrations = API.make(() => ({
10850
+ input: DescribeInboundIntegrationsRequest,
10851
+ output: DescribeInboundIntegrationsResponse,
10852
+ errors: [
10853
+ AccessDeniedException,
10854
+ EntityNotFoundException,
10855
+ IntegrationNotFoundFault,
10856
+ InternalServerException,
10857
+ InternalServiceException,
10858
+ InvalidInputException,
10859
+ OperationNotSupportedException,
10860
+ TargetResourceNotFound,
10861
+ ValidationException,
10862
+ ],
10863
+ }));
10711
10864
  /**
10712
10865
  * The name of the Catalog to retrieve. This should be all lowercase.
10713
10866
  */
@@ -10945,24 +11098,6 @@ export const getUnfilteredPartitionsMetadata = API.makePaginated(() => ({
10945
11098
  pageSize: "MaxResults",
10946
11099
  },
10947
11100
  }));
10948
- /**
10949
- * Returns a list of inbound integrations for the specified integration.
10950
- */
10951
- export const describeInboundIntegrations = API.make(() => ({
10952
- input: DescribeInboundIntegrationsRequest,
10953
- output: DescribeInboundIntegrationsResponse,
10954
- errors: [
10955
- AccessDeniedException,
10956
- EntityNotFoundException,
10957
- IntegrationNotFoundFault,
10958
- InternalServerException,
10959
- InternalServiceException,
10960
- InvalidInputException,
10961
- OperationNotSupportedException,
10962
- TargetResourceNotFound,
10963
- ValidationException,
10964
- ],
10965
- }));
10966
11101
  /**
10967
11102
  * Retrieves partitions in a batch request.
10968
11103
  */