@aws-sdk/client-glue 3.1060.0 → 3.1062.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/README.md +14 -0
  2. package/dist-cjs/index.js +38 -0
  3. package/dist-cjs/models/errors.js +16 -1
  4. package/dist-cjs/schemas/schemas_0.js +91 -36
  5. package/dist-es/Glue.js +4 -0
  6. package/dist-es/commands/GetDashboardUrlCommand.js +16 -0
  7. package/dist-es/commands/GetSessionEndpointCommand.js +16 -0
  8. package/dist-es/commands/index.js +2 -0
  9. package/dist-es/models/enums.js +8 -0
  10. package/dist-es/models/errors.js +14 -0
  11. package/dist-es/schemas/schemas_0.js +66 -11
  12. package/dist-types/Glue.d.ts +14 -0
  13. package/dist-types/GlueClient.d.ts +4 -2
  14. package/dist-types/commands/CreateSessionCommand.d.ts +5 -0
  15. package/dist-types/commands/GetDashboardUrlCommand.d.ts +93 -0
  16. package/dist-types/commands/GetMLTaskRunCommand.d.ts +1 -2
  17. package/dist-types/commands/GetSessionCommand.d.ts +1 -0
  18. package/dist-types/commands/GetSessionEndpointCommand.d.ts +101 -0
  19. package/dist-types/commands/ListSessionsCommand.d.ts +1 -0
  20. package/dist-types/commands/RunStatementCommand.d.ts +6 -0
  21. package/dist-types/commands/UpdateDataQualityRulesetCommand.d.ts +1 -1
  22. package/dist-types/commands/UpdateDatabaseCommand.d.ts +1 -1
  23. package/dist-types/commands/index.d.ts +2 -0
  24. package/dist-types/models/enums.d.ts +24 -0
  25. package/dist-types/models/errors.d.ts +17 -0
  26. package/dist-types/models/models_1.d.ts +41 -28
  27. package/dist-types/models/models_2.d.ts +70 -97
  28. package/dist-types/models/models_3.d.ts +97 -2
  29. package/dist-types/schemas/schemas_0.d.ts +8 -0
  30. package/dist-types/ts3.4/Glue.d.ts +34 -0
  31. package/dist-types/ts3.4/GlueClient.d.ts +12 -0
  32. package/dist-types/ts3.4/commands/GetDashboardUrlCommand.d.ts +52 -0
  33. package/dist-types/ts3.4/commands/GetMLTaskRunCommand.d.ts +1 -2
  34. package/dist-types/ts3.4/commands/GetSessionEndpointCommand.d.ts +53 -0
  35. package/dist-types/ts3.4/commands/UpdateDataQualityRulesetCommand.d.ts +1 -1
  36. package/dist-types/ts3.4/commands/UpdateDatabaseCommand.d.ts +1 -1
  37. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  38. package/dist-types/ts3.4/models/enums.d.ts +11 -0
  39. package/dist-types/ts3.4/models/errors.d.ts +8 -0
  40. package/dist-types/ts3.4/models/models_1.d.ts +12 -7
  41. package/dist-types/ts3.4/models/models_2.d.ts +18 -22
  42. package/dist-types/ts3.4/models/models_3.d.ts +21 -1
  43. package/dist-types/ts3.4/schemas/schemas_0.d.ts +8 -0
  44. package/package.json +2 -2
@@ -83,6 +83,7 @@ declare const ListSessionsCommand_base: {
83
83
  * // DPUSeconds: Number("double"),
84
84
  * // IdleTimeout: Number("int"),
85
85
  * // ProfileName: "STRING_VALUE",
86
+ * // SessionType: "LIVY" || "SPARK_CONNECT",
86
87
  * // },
87
88
  * // ],
88
89
  * // NextToken: "STRING_VALUE",
@@ -72,12 +72,18 @@ declare const RunStatementCommand_base: {
72
72
  * @throws {@link InvalidInputException} (client fault)
73
73
  * <p>The input provided was not valid.</p>
74
74
  *
75
+ * @throws {@link OperationNotSupportedException} (client fault)
76
+ * <p>The operation is not available in the region.</p>
77
+ *
75
78
  * @throws {@link OperationTimeoutException} (client fault)
76
79
  * <p>The operation timed out.</p>
77
80
  *
78
81
  * @throws {@link ResourceNumberLimitExceededException} (client fault)
79
82
  * <p>A resource numerical limit was exceeded.</p>
80
83
  *
84
+ * @throws {@link SessionBusyException} (client fault)
85
+ * <p>The session is currently busy processing another request and cannot accept new operations.</p>
86
+ *
81
87
  * @throws {@link ValidationException} (client fault)
82
88
  * <p>A value could not be validated.</p>
83
89
  *
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/core/client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
4
- import type { UpdateDataQualityRulesetRequest, UpdateDataQualityRulesetResponse } from "../models/models_2";
4
+ import type { UpdateDataQualityRulesetRequest, UpdateDataQualityRulesetResponse } from "../models/models_3";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/core/client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
4
- import type { UpdateDatabaseRequest, UpdateDatabaseResponse } from "../models/models_2";
4
+ import type { UpdateDatabaseRequest, UpdateDatabaseResponse } from "../models/models_3";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -107,6 +107,7 @@ export * from "./GetCrawlerCommand";
107
107
  export * from "./GetCrawlerMetricsCommand";
108
108
  export * from "./GetCrawlersCommand";
109
109
  export * from "./GetCustomEntityTypeCommand";
110
+ export * from "./GetDashboardUrlCommand";
110
111
  export * from "./GetDataCatalogEncryptionSettingsCommand";
111
112
  export * from "./GetDataQualityModelCommand";
112
113
  export * from "./GetDataQualityModelResultCommand";
@@ -148,6 +149,7 @@ export * from "./GetSchemaVersionsDiffCommand";
148
149
  export * from "./GetSecurityConfigurationCommand";
149
150
  export * from "./GetSecurityConfigurationsCommand";
150
151
  export * from "./GetSessionCommand";
152
+ export * from "./GetSessionEndpointCommand";
151
153
  export * from "./GetStatementCommand";
152
154
  export * from "./GetTableCommand";
153
155
  export * from "./GetTableOptimizerCommand";
@@ -1326,6 +1326,18 @@ export declare const S3EncryptionMode: {
1326
1326
  * @public
1327
1327
  */
1328
1328
  export type S3EncryptionMode = (typeof S3EncryptionMode)[keyof typeof S3EncryptionMode];
1329
+ /**
1330
+ * @public
1331
+ * @enum
1332
+ */
1333
+ export declare const SessionType: {
1334
+ readonly LIVY: "LIVY";
1335
+ readonly SPARK_CONNECT: "SPARK_CONNECT";
1336
+ };
1337
+ /**
1338
+ * @public
1339
+ */
1340
+ export type SessionType = (typeof SessionType)[keyof typeof SessionType];
1329
1341
  /**
1330
1342
  * @public
1331
1343
  * @enum
@@ -1617,6 +1629,18 @@ export declare const SettingSource: {
1617
1629
  * @public
1618
1630
  */
1619
1631
  export type SettingSource = (typeof SettingSource)[keyof typeof SettingSource];
1632
+ /**
1633
+ * @public
1634
+ * @enum
1635
+ */
1636
+ export declare const GlueResourceType: {
1637
+ readonly JOB: "JOB";
1638
+ readonly SESSION: "SESSION";
1639
+ };
1640
+ /**
1641
+ * @public
1642
+ */
1643
+ export type GlueResourceType = (typeof GlueResourceType)[keyof typeof GlueResourceType];
1620
1644
  /**
1621
1645
  * @public
1622
1646
  * @enum
@@ -617,6 +617,23 @@ export declare class IllegalWorkflowStateException extends __BaseException {
617
617
  */
618
618
  constructor(opts: __ExceptionOptionType<IllegalWorkflowStateException, __BaseException>);
619
619
  }
620
+ /**
621
+ * <p>The session is currently busy processing another request and cannot accept new operations.</p>
622
+ * @public
623
+ */
624
+ export declare class SessionBusyException extends __BaseException {
625
+ readonly name: "SessionBusyException";
626
+ readonly $fault: "client";
627
+ /**
628
+ * <p>A message describing the problem.</p>
629
+ * @public
630
+ */
631
+ Message?: string | undefined;
632
+ /**
633
+ * @internal
634
+ */
635
+ constructor(opts: __ExceptionOptionType<SessionBusyException, __BaseException>);
636
+ }
620
637
  /**
621
638
  * <p>The blueprint is in an invalid state to perform a requested operation.</p>
622
639
  * @public
@@ -1,5 +1,5 @@
1
1
  import type { DocumentType as __DocumentType } from "@smithy/types";
2
- import type { AllowFullTableExternalDataAccessEnum, AuthenticationType, BlueprintRunState, CatalogEncryptionMode, CloudWatchEncryptionMode, ColumnStatisticsState, ColumnStatisticsType, Compatibility, ComputationType, ComputeEnvironment, ConnectionPropertyKey, ConnectionStatus, ConnectionType, CsvHeaderOption, CsvSerdeOption, DatabaseAttributes, DataFormat, DataOperation, DataQualityEncryptionMode, DataQualityModelStatus, DQCompositeRuleEvaluationMethod, ExecutionStatus, FieldDataType, FieldFilterOperator, FunctionType, HTTPMethod, IcebergNullOrder, IcebergSortDirection, IcebergStructTypeEnum, InclusionAnnotationValue, IntegrationStatus, JobBookmarksEncryptionMode, Language, LastRefreshType, MaterializedViewRefreshState, MaterializedViewRefreshType, MetadataOperation, MLUserDataEncryptionModeString, PrincipalType, PropertyLocation, PropertyType, RegistryStatus, ResourceShareType, ResourceType, S3EncryptionMode, ScheduleType, SchemaStatus, SchemaVersionStatus, SessionStatus, SettingSource, TableOptimizerType, TaskStatusType, TransformType, TriggerType, UnnestSpec, ViewDialect, WorkerType } from "./enums";
2
+ import type { AllowFullTableExternalDataAccessEnum, AuthenticationType, BlueprintRunState, CatalogEncryptionMode, CloudWatchEncryptionMode, ColumnStatisticsState, ColumnStatisticsType, Compatibility, ComputationType, ComputeEnvironment, ConnectionPropertyKey, ConnectionStatus, ConnectionType, CsvHeaderOption, CsvSerdeOption, DatabaseAttributes, DataFormat, DataOperation, DataQualityEncryptionMode, DataQualityModelStatus, DQCompositeRuleEvaluationMethod, ExecutionStatus, FieldDataType, FieldFilterOperator, FunctionType, GlueResourceType, HTTPMethod, IcebergNullOrder, IcebergSortDirection, IcebergStructTypeEnum, InclusionAnnotationValue, IntegrationStatus, JobBookmarksEncryptionMode, Language, LastRefreshType, MaterializedViewRefreshState, MaterializedViewRefreshType, MetadataOperation, MLUserDataEncryptionModeString, PrincipalType, PropertyLocation, PropertyType, RegistryStatus, ResourceShareType, ResourceType, S3EncryptionMode, ScheduleType, SchemaStatus, SchemaVersionStatus, SessionStatus, SessionType, SettingSource, TableOptimizerType, TaskStatusType, TransformType, TriggerType, UnnestSpec, ViewDialect, WorkerType } from "./enums";
3
3
  import type { Action, AuthConfiguration, AuthenticationConfiguration, Blueprint, Column, ConnectionsList, Crawler, DatabaseIdentifier, DataQualityAggregatedMetrics, DataQualityAnalyzerResult, DataQualityObservation, DataQualityRuleResult, DataQualityTargetTable, DataSource, DevEndpoint, ErrorDetail, EventBatchingCondition, FederatedCatalog, FederatedDatabase, GlueTable, JobRun, PartitionInput, PhysicalConnectionRequirements, Predicate, PrincipalPermissions, Property, Schedule, SchemaId, StorageDescriptor, TableOptimizerConfiguration, TargetRedshiftCatalog } from "./models_0";
4
4
  /**
5
5
  * <p>A request to create a data quality ruleset.</p>
@@ -1658,6 +1658,11 @@ export interface CreateSessionRequest {
1658
1658
  * @public
1659
1659
  */
1660
1660
  RequestOrigin?: string | undefined;
1661
+ /**
1662
+ * <p>The type of session to create.</p>
1663
+ * @public
1664
+ */
1665
+ SessionType?: SessionType | undefined;
1661
1666
  }
1662
1667
  /**
1663
1668
  * <p>The period in which a remote Spark runtime environment is running.</p>
@@ -1766,6 +1771,11 @@ export interface Session {
1766
1771
  * @public
1767
1772
  */
1768
1773
  ProfileName?: string | undefined;
1774
+ /**
1775
+ * <p>The type of the session.</p>
1776
+ * @public
1777
+ */
1778
+ SessionType?: SessionType | undefined;
1769
1779
  }
1770
1780
  /**
1771
1781
  * @public
@@ -6135,6 +6145,36 @@ export interface GetCustomEntityTypeResponse {
6135
6145
  */
6136
6146
  ContextWords?: string[] | undefined;
6137
6147
  }
6148
+ /**
6149
+ * @public
6150
+ */
6151
+ export interface GetDashboardUrlRequest {
6152
+ /**
6153
+ * <p>The unique identifier of the resource for which to retrieve the dashboard URL.</p>
6154
+ * @public
6155
+ */
6156
+ ResourceId: string | undefined;
6157
+ /**
6158
+ * <p>The type of the resource. Valid values are <code>SESSION</code> and <code>JOB</code>.</p>
6159
+ * @public
6160
+ */
6161
+ ResourceType: GlueResourceType | undefined;
6162
+ /**
6163
+ * <p>The origin of the request. </p>
6164
+ * @public
6165
+ */
6166
+ RequestOrigin?: string | undefined;
6167
+ }
6168
+ /**
6169
+ * @public
6170
+ */
6171
+ export interface GetDashboardUrlResponse {
6172
+ /**
6173
+ * <p>The URL for the Spark monitoring dashboard.</p>
6174
+ * @public
6175
+ */
6176
+ Url: string | undefined;
6177
+ }
6138
6178
  /**
6139
6179
  * @public
6140
6180
  */
@@ -7445,30 +7485,3 @@ export interface GetMaterializedViewRefreshTaskRunResponse {
7445
7485
  */
7446
7486
  MaterializedViewRefreshTaskRun?: MaterializedViewRefreshTaskRun | undefined;
7447
7487
  }
7448
- /**
7449
- * @public
7450
- */
7451
- export interface GetMLTaskRunRequest {
7452
- /**
7453
- * <p>The unique identifier of the machine learning transform.</p>
7454
- * @public
7455
- */
7456
- TransformId: string | undefined;
7457
- /**
7458
- * <p>The unique identifier of the task run.</p>
7459
- * @public
7460
- */
7461
- TaskRunId: string | undefined;
7462
- }
7463
- /**
7464
- * <p>Specifies configuration properties for an exporting labels task run.</p>
7465
- * @public
7466
- */
7467
- export interface ExportLabelsTaskRunProperties {
7468
- /**
7469
- * <p>The Amazon Simple Storage Service (Amazon S3) path where you will export the
7470
- * labels.</p>
7471
- * @public
7472
- */
7473
- OutputS3Path?: string | undefined;
7474
- }
@@ -1,6 +1,33 @@
1
1
  import type { AuthenticationType, BackfillErrorCode, Comparator, Compatibility, ConnectionPropertyKey, ConnectionType, ConnectorOAuth2GrantType, ContentType, CrawlerHistoryState, CsvHeaderOption, CsvSerdeOption, DataFormat, EnableHybridValues, ExecutionClass, ExistCondition, FieldName, FilterOperator, FunctionType, HTTPMethod, InclusionAnnotationValue, IntegrationStatus, IntegrationType, Language, LastRefreshType, PartitionIndexStatus, Permission, PermissionType, PrincipalType, RegistryStatus, ResourceShareType, ResourceState, SchemaDiffType, SchemaStatus, SchemaVersionStatus, Sort, SortDirectionType, StatementState, StatisticEvaluationLevel, TableAttributes, TableOptimizerType, TaskRunSortColumnType, TaskStatusType, TaskType, TransformSortColumnType, TransformStatusType, TransformType, ViewDialect, WorkerType } from "./enums";
2
- import type { AuditContext, AuthenticationConfigurationInput, CatalogInput, ConnectionInput, CrawlerTargets, CustomEntityType, DatabaseInput, DataQualityTargetTable, DataSource, ErrorDetail, GlueTable, LakeFormationConfiguration, LineageConfiguration, NotificationProperty, Partition, PartitionValueList, QuerySessionContext, RecrawlPolicy, SchemaChangePolicy, SchemaId, StatisticAnnotation, TableOptimizer, TableOptimizerRun, TimestampedInclusionAnnotation, Trigger, Workflow, WorkflowRun } from "./models_0";
3
- import type { Capabilities, CatalogEntry, ColumnStatistics, ConnectorProperty, DataCatalogEncryptionSettings, DataQualityEvaluationRunAdditionalRunOptions, EncryptionConfiguration, ExportLabelsTaskRunProperties, IntegrationConfig, IntegrationError, JobBookmarkEntry, Location, MappingEntry, MaterializedViewRefreshTaskRun, ProfileConfiguration, RegistryId, ResourceUri, RestConfiguration, Session, SourceProcessingProperties, Tag, TargetProcessingProperties, TransformEncryption, TransformParameters } from "./models_1";
2
+ import type { AuditContext, AuthenticationConfigurationInput, CatalogInput, ConnectionInput, CrawlerTargets, CustomEntityType, DataQualityTargetTable, DataSource, ErrorDetail, GlueTable, LakeFormationConfiguration, LineageConfiguration, NotificationProperty, Partition, PartitionValueList, QuerySessionContext, RecrawlPolicy, SchemaChangePolicy, SchemaId, StatisticAnnotation, TableOptimizer, TableOptimizerRun, TimestampedInclusionAnnotation, Trigger, Workflow, WorkflowRun } from "./models_0";
3
+ import type { Capabilities, CatalogEntry, ColumnStatistics, ConnectorProperty, DataCatalogEncryptionSettings, DataQualityEvaluationRunAdditionalRunOptions, EncryptionConfiguration, IntegrationConfig, IntegrationError, JobBookmarkEntry, Location, MappingEntry, MaterializedViewRefreshTaskRun, ProfileConfiguration, RegistryId, ResourceUri, RestConfiguration, Session, SourceProcessingProperties, Tag, TargetProcessingProperties, TransformEncryption, TransformParameters } from "./models_1";
4
+ /**
5
+ * @public
6
+ */
7
+ export interface GetMLTaskRunRequest {
8
+ /**
9
+ * <p>The unique identifier of the machine learning transform.</p>
10
+ * @public
11
+ */
12
+ TransformId: string | undefined;
13
+ /**
14
+ * <p>The unique identifier of the task run.</p>
15
+ * @public
16
+ */
17
+ TaskRunId: string | undefined;
18
+ }
19
+ /**
20
+ * <p>Specifies configuration properties for an exporting labels task run.</p>
21
+ * @public
22
+ */
23
+ export interface ExportLabelsTaskRunProperties {
24
+ /**
25
+ * <p>The Amazon Simple Storage Service (Amazon S3) path where you will export the
26
+ * labels.</p>
27
+ * @public
28
+ */
29
+ OutputS3Path?: string | undefined;
30
+ }
4
31
  /**
5
32
  * <p>Specifies configuration properties for a Find Matches task run.</p>
6
33
  * @public
@@ -1756,6 +1783,47 @@ export interface GetSessionResponse {
1756
1783
  */
1757
1784
  Session?: Session | undefined;
1758
1785
  }
1786
+ /**
1787
+ * @public
1788
+ */
1789
+ export interface GetSessionEndpointRequest {
1790
+ /**
1791
+ * <p>The unique identifier of the interactive session.</p>
1792
+ * @public
1793
+ */
1794
+ SessionId: string | undefined;
1795
+ }
1796
+ /**
1797
+ * <p>Contains the Spark Connect endpoint details for an interactive session, including the URL and authentication credentials.</p>
1798
+ * @public
1799
+ */
1800
+ export interface SessionEndpoint {
1801
+ /**
1802
+ * <p>The Spark Connect endpoint URL for the session.</p>
1803
+ * @public
1804
+ */
1805
+ Url: string | undefined;
1806
+ /**
1807
+ * <p>The authentication token to include in requests to the Spark Connect endpoint.</p>
1808
+ * @public
1809
+ */
1810
+ AuthToken: string | undefined;
1811
+ /**
1812
+ * <p>The time at which the authentication token expires.</p>
1813
+ * @public
1814
+ */
1815
+ AuthTokenExpirationTime: Date | undefined;
1816
+ }
1817
+ /**
1818
+ * @public
1819
+ */
1820
+ export interface GetSessionEndpointResponse {
1821
+ /**
1822
+ * <p>The Spark Connect endpoint details for the session.</p>
1823
+ * @public
1824
+ */
1825
+ SparkConnect: SessionEndpoint | undefined;
1826
+ }
1759
1827
  /**
1760
1828
  * @public
1761
1829
  */
@@ -7143,98 +7211,3 @@ export interface UpdateCrawlerScheduleRequest {
7143
7211
  */
7144
7212
  export interface UpdateCrawlerScheduleResponse {
7145
7213
  }
7146
- /**
7147
- * @public
7148
- */
7149
- export interface UpdateDatabaseRequest {
7150
- /**
7151
- * <p>The ID of the Data Catalog in which the metadata database resides. If none is provided,
7152
- * the Amazon Web Services account ID is used by default.</p>
7153
- * @public
7154
- */
7155
- CatalogId?: string | undefined;
7156
- /**
7157
- * <p>The name of the database to update in the catalog. For Hive
7158
- * compatibility, this is folded to lowercase.</p>
7159
- * @public
7160
- */
7161
- Name: string | undefined;
7162
- /**
7163
- * <p>A <code>DatabaseInput</code> object specifying the new definition
7164
- * of the metadata database in the catalog.</p>
7165
- * @public
7166
- */
7167
- DatabaseInput: DatabaseInput | undefined;
7168
- }
7169
- /**
7170
- * @public
7171
- */
7172
- export interface UpdateDatabaseResponse {
7173
- }
7174
- /**
7175
- * @public
7176
- */
7177
- export interface UpdateDataQualityRulesetRequest {
7178
- /**
7179
- * <p>The name of the data quality ruleset.</p>
7180
- * @public
7181
- */
7182
- Name: string | undefined;
7183
- /**
7184
- * <p>A description of the ruleset.</p>
7185
- * @public
7186
- */
7187
- Description?: string | undefined;
7188
- /**
7189
- * <p>A Data Quality Definition Language (DQDL) ruleset. For more information, see the Glue developer guide.</p>
7190
- * @public
7191
- */
7192
- Ruleset?: string | undefined;
7193
- }
7194
- /**
7195
- * @public
7196
- */
7197
- export interface UpdateDataQualityRulesetResponse {
7198
- /**
7199
- * <p>The name of the data quality ruleset.</p>
7200
- * @public
7201
- */
7202
- Name?: string | undefined;
7203
- /**
7204
- * <p>A description of the ruleset.</p>
7205
- * @public
7206
- */
7207
- Description?: string | undefined;
7208
- /**
7209
- * <p>A Data Quality Definition Language (DQDL) ruleset. For more information, see the Glue developer guide.</p>
7210
- * @public
7211
- */
7212
- Ruleset?: string | undefined;
7213
- }
7214
- /**
7215
- * <p>Custom libraries to be loaded into a development endpoint.</p>
7216
- * @public
7217
- */
7218
- export interface DevEndpointCustomLibraries {
7219
- /**
7220
- * <p>The paths to one or more Python libraries in an Amazon Simple Storage Service (Amazon S3)
7221
- * bucket that should be loaded in your <code>DevEndpoint</code>. Multiple values must be
7222
- * complete paths separated by a comma.</p>
7223
- * <note>
7224
- * <p>You can only use pure Python libraries with a <code>DevEndpoint</code>. Libraries that rely on
7225
- * C extensions, such as the <a href="http://pandas.pydata.org/">pandas</a> Python data
7226
- * analysis library, are not currently supported.</p>
7227
- * </note>
7228
- * @public
7229
- */
7230
- ExtraPythonLibsS3Path?: string | undefined;
7231
- /**
7232
- * <p>The path to one or more Java <code>.jar</code> files in an S3 bucket that should be loaded
7233
- * in your <code>DevEndpoint</code>.</p>
7234
- * <note>
7235
- * <p>You can only use pure Java/Scala libraries with a <code>DevEndpoint</code>.</p>
7236
- * </note>
7237
- * @public
7238
- */
7239
- ExtraJarsS3Path?: string | undefined;
7240
- }
@@ -1,7 +1,102 @@
1
1
  import type { Compatibility, ExecutionClass, IcebergUpdateAction, JobMode, Permission, ResourceAction, ResourceState, SourceControlAuthStrategy, SourceControlProvider, TableOptimizerType, ViewUpdateAction, WorkerType } from "./enums";
2
- import type { Action, Aggregate, AmazonRedshiftSource, AmazonRedshiftTarget, AthenaConnectorSource, BasicCatalogTarget, CatalogDeltaSource, CatalogHudiSource, CatalogIcebergSource, CatalogKafkaSource, CatalogKinesisSource, CatalogSource, Column, ConnectionsList, ConnectorDataSource, ConnectorDataTarget, CustomCode, DirectJDBCSource, DirectKafkaSource, DirectKinesisSource, DropDuplicates, DropFields, DropNullFields, DynamicTransform, DynamoDBCatalogSource, DynamoDBELTConnectorSource, ErrorDetail, EvaluateDataQuality, EvaluateDataQualityMultiFrame, EventBatchingCondition, ExecutionProperty, FillMissingValues, Filter, GovernedCatalogSource, GovernedCatalogTarget, JDBCConnectorSource, JDBCConnectorTarget, JobCommand, Join, Merge, MicrosoftSQLServerCatalogSource, MicrosoftSQLServerCatalogTarget, MySQLCatalogSource, MySQLCatalogTarget, NotificationProperty, OracleSQLCatalogSource, OracleSQLCatalogTarget, PartitionInput, PIIDetection, PostgreSQLCatalogSource, PostgreSQLCatalogTarget, Predicate, Recipe, RedshiftSource, RedshiftTarget, RelationalCatalogSource, RenameField, Route, S3CatalogDeltaSource, S3CatalogHudiSource, S3CatalogIcebergSource, S3CatalogSource, S3CatalogTarget, S3CsvSource, S3DeltaCatalogTarget, S3DeltaDirectTarget, S3DeltaSource, S3DirectTarget, S3ExcelSource, S3GlueParquetTarget, S3HudiCatalogTarget, S3HudiDirectTarget, S3HudiSource, S3HyperDirectTarget, S3IcebergCatalogTarget, S3IcebergDirectTarget, S3JsonSource, S3ParquetSource, SchemaId, SelectFields, SelectFromCollection, SnowflakeSource, SnowflakeTarget, SourceControlDetails, SparkConnectorSource, SparkConnectorTarget, SparkSQL, Spigot, SplitFields, StorageDescriptor, TableOptimizerConfiguration, Trigger, Union } from "./models_0";
2
+ import type { Action, Aggregate, AmazonRedshiftSource, AmazonRedshiftTarget, AthenaConnectorSource, BasicCatalogTarget, CatalogDeltaSource, CatalogHudiSource, CatalogIcebergSource, CatalogKafkaSource, CatalogKinesisSource, CatalogSource, Column, ConnectionsList, ConnectorDataSource, ConnectorDataTarget, CustomCode, DatabaseInput, DirectJDBCSource, DirectKafkaSource, DirectKinesisSource, DropDuplicates, DropFields, DropNullFields, DynamicTransform, DynamoDBCatalogSource, DynamoDBELTConnectorSource, ErrorDetail, EvaluateDataQuality, EvaluateDataQualityMultiFrame, EventBatchingCondition, ExecutionProperty, FillMissingValues, Filter, GovernedCatalogSource, GovernedCatalogTarget, JDBCConnectorSource, JDBCConnectorTarget, JobCommand, Join, Merge, MicrosoftSQLServerCatalogSource, MicrosoftSQLServerCatalogTarget, MySQLCatalogSource, MySQLCatalogTarget, NotificationProperty, OracleSQLCatalogSource, OracleSQLCatalogTarget, PartitionInput, PIIDetection, PostgreSQLCatalogSource, PostgreSQLCatalogTarget, Predicate, Recipe, RedshiftSource, RedshiftTarget, RelationalCatalogSource, RenameField, Route, S3CatalogDeltaSource, S3CatalogHudiSource, S3CatalogIcebergSource, S3CatalogSource, S3CatalogTarget, S3CsvSource, S3DeltaCatalogTarget, S3DeltaDirectTarget, S3DeltaSource, S3DirectTarget, S3ExcelSource, S3GlueParquetTarget, S3HudiCatalogTarget, S3HudiDirectTarget, S3HudiSource, S3HyperDirectTarget, S3IcebergCatalogTarget, S3IcebergDirectTarget, S3JsonSource, S3ParquetSource, SchemaId, SelectFields, SelectFromCollection, SnowflakeSource, SnowflakeTarget, SourceControlDetails, SparkConnectorSource, SparkConnectorTarget, SparkSQL, Spigot, SplitFields, StorageDescriptor, TableOptimizerConfiguration, Trigger, Union } from "./models_0";
3
3
  import type { IcebergPartitionSpec, IcebergSchema, IcebergSortOrder, ProfileConfiguration, RegistryId, SourceProcessingProperties, SourceTableConfig, TableIdentifier, TableInput, TargetProcessingProperties, TargetTableConfig, TransformParameters, UserDefinedFunctionInput } from "./models_1";
4
- import type { ColumnRowFilter, DevEndpointCustomLibraries, FederatedTable, SchemaVersionNumber, ViewDefinition, ViewValidation } from "./models_2";
4
+ import type { ColumnRowFilter, FederatedTable, SchemaVersionNumber, ViewDefinition, ViewValidation } from "./models_2";
5
+ /**
6
+ * @public
7
+ */
8
+ export interface UpdateDatabaseRequest {
9
+ /**
10
+ * <p>The ID of the Data Catalog in which the metadata database resides. If none is provided,
11
+ * the Amazon Web Services account ID is used by default.</p>
12
+ * @public
13
+ */
14
+ CatalogId?: string | undefined;
15
+ /**
16
+ * <p>The name of the database to update in the catalog. For Hive
17
+ * compatibility, this is folded to lowercase.</p>
18
+ * @public
19
+ */
20
+ Name: string | undefined;
21
+ /**
22
+ * <p>A <code>DatabaseInput</code> object specifying the new definition
23
+ * of the metadata database in the catalog.</p>
24
+ * @public
25
+ */
26
+ DatabaseInput: DatabaseInput | undefined;
27
+ }
28
+ /**
29
+ * @public
30
+ */
31
+ export interface UpdateDatabaseResponse {
32
+ }
33
+ /**
34
+ * @public
35
+ */
36
+ export interface UpdateDataQualityRulesetRequest {
37
+ /**
38
+ * <p>The name of the data quality ruleset.</p>
39
+ * @public
40
+ */
41
+ Name: string | undefined;
42
+ /**
43
+ * <p>A description of the ruleset.</p>
44
+ * @public
45
+ */
46
+ Description?: string | undefined;
47
+ /**
48
+ * <p>A Data Quality Definition Language (DQDL) ruleset. For more information, see the Glue developer guide.</p>
49
+ * @public
50
+ */
51
+ Ruleset?: string | undefined;
52
+ }
53
+ /**
54
+ * @public
55
+ */
56
+ export interface UpdateDataQualityRulesetResponse {
57
+ /**
58
+ * <p>The name of the data quality ruleset.</p>
59
+ * @public
60
+ */
61
+ Name?: string | undefined;
62
+ /**
63
+ * <p>A description of the ruleset.</p>
64
+ * @public
65
+ */
66
+ Description?: string | undefined;
67
+ /**
68
+ * <p>A Data Quality Definition Language (DQDL) ruleset. For more information, see the Glue developer guide.</p>
69
+ * @public
70
+ */
71
+ Ruleset?: string | undefined;
72
+ }
73
+ /**
74
+ * <p>Custom libraries to be loaded into a development endpoint.</p>
75
+ * @public
76
+ */
77
+ export interface DevEndpointCustomLibraries {
78
+ /**
79
+ * <p>The paths to one or more Python libraries in an Amazon Simple Storage Service (Amazon S3)
80
+ * bucket that should be loaded in your <code>DevEndpoint</code>. Multiple values must be
81
+ * complete paths separated by a comma.</p>
82
+ * <note>
83
+ * <p>You can only use pure Python libraries with a <code>DevEndpoint</code>. Libraries that rely on
84
+ * C extensions, such as the <a href="http://pandas.pydata.org/">pandas</a> Python data
85
+ * analysis library, are not currently supported.</p>
86
+ * </note>
87
+ * @public
88
+ */
89
+ ExtraPythonLibsS3Path?: string | undefined;
90
+ /**
91
+ * <p>The path to one or more Java <code>.jar</code> files in an S3 bucket that should be loaded
92
+ * in your <code>DevEndpoint</code>.</p>
93
+ * <note>
94
+ * <p>You can only use pure Java/Scala libraries with a <code>DevEndpoint</code>.</p>
95
+ * </note>
96
+ * @public
97
+ */
98
+ ExtraJarsS3Path?: string | undefined;
99
+ }
5
100
  /**
6
101
  * @public
7
102
  */
@@ -45,6 +45,7 @@ export declare var ResourceNumberLimitExceededException$: StaticErrorSchema;
45
45
  export declare var SchedulerNotRunningException$: StaticErrorSchema;
46
46
  export declare var SchedulerRunningException$: StaticErrorSchema;
47
47
  export declare var SchedulerTransitioningException$: StaticErrorSchema;
48
+ export declare var SessionBusyException$: StaticErrorSchema;
48
49
  export declare var TargetResourceNotFound$: StaticErrorSchema;
49
50
  export declare var ThrottlingException$: StaticErrorSchema;
50
51
  export declare var ValidationException$: StaticErrorSchema;
@@ -452,6 +453,8 @@ export declare var GetCrawlersRequest$: StaticStructureSchema;
452
453
  export declare var GetCrawlersResponse$: StaticStructureSchema;
453
454
  export declare var GetCustomEntityTypeRequest$: StaticStructureSchema;
454
455
  export declare var GetCustomEntityTypeResponse$: StaticStructureSchema;
456
+ export declare var GetDashboardUrlRequest$: StaticStructureSchema;
457
+ export declare var GetDashboardUrlResponse$: StaticStructureSchema;
455
458
  export declare var GetDatabaseRequest$: StaticStructureSchema;
456
459
  export declare var GetDatabaseResponse$: StaticStructureSchema;
457
460
  export declare var GetDatabasesRequest$: StaticStructureSchema;
@@ -532,6 +535,8 @@ export declare var GetSecurityConfigurationRequest$: StaticStructureSchema;
532
535
  export declare var GetSecurityConfigurationResponse$: StaticStructureSchema;
533
536
  export declare var GetSecurityConfigurationsRequest$: StaticStructureSchema;
534
537
  export declare var GetSecurityConfigurationsResponse$: StaticStructureSchema;
538
+ export declare var GetSessionEndpointRequest$: StaticStructureSchema;
539
+ export declare var GetSessionEndpointResponse$: StaticStructureSchema;
535
540
  export declare var GetSessionRequest$: StaticStructureSchema;
536
541
  export declare var GetSessionResponse$: StaticStructureSchema;
537
542
  export declare var GetStatementRequest$: StaticStructureSchema;
@@ -826,6 +831,7 @@ export declare var SelectFromCollection$: StaticStructureSchema;
826
831
  export declare var SerDeInfo$: StaticStructureSchema;
827
832
  export declare var Session$: StaticStructureSchema;
828
833
  export declare var SessionCommand$: StaticStructureSchema;
834
+ export declare var SessionEndpoint$: StaticStructureSchema;
829
835
  export declare var SkewedInfo$: StaticStructureSchema;
830
836
  export declare var SnowflakeNodeData$: StaticStructureSchema;
831
837
  export declare var SnowflakeSource$: StaticStructureSchema;
@@ -1123,6 +1129,7 @@ export declare var GetCrawler$: StaticOperationSchema;
1123
1129
  export declare var GetCrawlerMetrics$: StaticOperationSchema;
1124
1130
  export declare var GetCrawlers$: StaticOperationSchema;
1125
1131
  export declare var GetCustomEntityType$: StaticOperationSchema;
1132
+ export declare var GetDashboardUrl$: StaticOperationSchema;
1126
1133
  export declare var GetDatabase$: StaticOperationSchema;
1127
1134
  export declare var GetDatabases$: StaticOperationSchema;
1128
1135
  export declare var GetDataCatalogEncryptionSettings$: StaticOperationSchema;
@@ -1164,6 +1171,7 @@ export declare var GetSchemaVersionsDiff$: StaticOperationSchema;
1164
1171
  export declare var GetSecurityConfiguration$: StaticOperationSchema;
1165
1172
  export declare var GetSecurityConfigurations$: StaticOperationSchema;
1166
1173
  export declare var GetSession$: StaticOperationSchema;
1174
+ export declare var GetSessionEndpoint$: StaticOperationSchema;
1167
1175
  export declare var GetStatement$: StaticOperationSchema;
1168
1176
  export declare var GetTable$: StaticOperationSchema;
1169
1177
  export declare var GetTableOptimizer$: StaticOperationSchema;
@@ -439,6 +439,10 @@ import {
439
439
  GetCustomEntityTypeCommandInput,
440
440
  GetCustomEntityTypeCommandOutput,
441
441
  } from "./commands/GetCustomEntityTypeCommand";
442
+ import {
443
+ GetDashboardUrlCommandInput,
444
+ GetDashboardUrlCommandOutput,
445
+ } from "./commands/GetDashboardUrlCommand";
442
446
  import {
443
447
  GetDatabaseCommandInput,
444
448
  GetDatabaseCommandOutput,
@@ -603,6 +607,10 @@ import {
603
607
  GetSessionCommandInput,
604
608
  GetSessionCommandOutput,
605
609
  } from "./commands/GetSessionCommand";
610
+ import {
611
+ GetSessionEndpointCommandInput,
612
+ GetSessionEndpointCommandOutput,
613
+ } from "./commands/GetSessionEndpointCommand";
606
614
  import {
607
615
  GetStatementCommandInput,
608
616
  GetStatementCommandOutput,
@@ -2554,6 +2562,19 @@ export interface Glue {
2554
2562
  options: __HttpHandlerOptions,
2555
2563
  cb: (err: any, data?: GetCustomEntityTypeCommandOutput) => void
2556
2564
  ): void;
2565
+ getDashboardUrl(
2566
+ args: GetDashboardUrlCommandInput,
2567
+ options?: __HttpHandlerOptions
2568
+ ): Promise<GetDashboardUrlCommandOutput>;
2569
+ getDashboardUrl(
2570
+ args: GetDashboardUrlCommandInput,
2571
+ cb: (err: any, data?: GetDashboardUrlCommandOutput) => void
2572
+ ): void;
2573
+ getDashboardUrl(
2574
+ args: GetDashboardUrlCommandInput,
2575
+ options: __HttpHandlerOptions,
2576
+ cb: (err: any, data?: GetDashboardUrlCommandOutput) => void
2577
+ ): void;
2557
2578
  getDatabase(
2558
2579
  args: GetDatabaseCommandInput,
2559
2580
  options?: __HttpHandlerOptions
@@ -3122,6 +3143,19 @@ export interface Glue {
3122
3143
  options: __HttpHandlerOptions,
3123
3144
  cb: (err: any, data?: GetSessionCommandOutput) => void
3124
3145
  ): void;
3146
+ getSessionEndpoint(
3147
+ args: GetSessionEndpointCommandInput,
3148
+ options?: __HttpHandlerOptions
3149
+ ): Promise<GetSessionEndpointCommandOutput>;
3150
+ getSessionEndpoint(
3151
+ args: GetSessionEndpointCommandInput,
3152
+ cb: (err: any, data?: GetSessionEndpointCommandOutput) => void
3153
+ ): void;
3154
+ getSessionEndpoint(
3155
+ args: GetSessionEndpointCommandInput,
3156
+ options: __HttpHandlerOptions,
3157
+ cb: (err: any, data?: GetSessionEndpointCommandOutput) => void
3158
+ ): void;
3125
3159
  getStatement(
3126
3160
  args: GetStatementCommandInput,
3127
3161
  options?: __HttpHandlerOptions