@aws-sdk/client-glue 3.932.0 → 3.934.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -0
- package/dist-cjs/index.js +98 -8
- package/dist-es/Glue.js +4 -0
- package/dist-es/commands/DeleteIntegrationResourcePropertyCommand.js +16 -0
- package/dist-es/commands/ListIntegrationResourcePropertiesCommand.js +16 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/schemas/schemas_0.js +71 -8
- package/dist-types/Glue.d.ts +15 -0
- package/dist-types/GlueClient.d.ts +4 -2
- package/dist-types/commands/CreateIntegrationResourcePropertyCommand.d.ts +7 -0
- package/dist-types/commands/DeleteIntegrationResourcePropertyCommand.d.ts +93 -0
- package/dist-types/commands/GetCatalogCommand.d.ts +2 -1
- package/dist-types/commands/GetCatalogImportStatusCommand.d.ts +1 -2
- package/dist-types/commands/GetIntegrationResourcePropertyCommand.d.ts +1 -0
- package/dist-types/commands/ListIntegrationResourcePropertiesCommand.d.ts +119 -0
- package/dist-types/commands/ListSchemaVersionsCommand.d.ts +2 -1
- package/dist-types/commands/ListSessionsCommand.d.ts +1 -1
- package/dist-types/commands/ListStatementsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateIntegrationResourcePropertyCommand.d.ts +1 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_1.d.ts +26 -21
- package/dist-types/models/models_2.d.ts +102 -126
- package/dist-types/models/models_3.d.ts +135 -4
- package/dist-types/schemas/schemas_0.d.ts +11 -0
- package/dist-types/ts3.4/Glue.d.ts +47 -0
- package/dist-types/ts3.4/GlueClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/DeleteIntegrationResourcePropertyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetCatalogCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/GetCatalogImportStatusCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ListIntegrationResourcePropertiesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListSchemaVersionsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListSessionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListStatementsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_1.d.ts +6 -6
- package/dist-types/ts3.4/models/models_2.d.ts +26 -31
- package/dist-types/ts3.4/models/models_3.d.ts +34 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +11 -0
- package/package.json +6 -6
|
@@ -3,6 +3,26 @@ import { DocumentType as __DocumentType } from "@smithy/types";
|
|
|
3
3
|
import { GlueServiceException as __BaseException } from "./GlueServiceException";
|
|
4
4
|
import { AuditContext, AuthenticationConfiguration, Crawler, CustomEntityType, DataQualityAggregatedMetrics, DataQualityAnalyzerResult, DataQualityObservation, DataQualityRuleResult, DataSource, DevEndpoint, ErrorDetail, GlueTable, InclusionAnnotationValue, Partition, PartitionValueList, Schedule, SchemaId, StatisticAnnotation, TableOptimizer, TableOptimizerType, TimestampedInclusionAnnotation, Trigger, WorkerType } from "./models_0";
|
|
5
5
|
import { Capabilities, Catalog, CodeGenEdge, CodeGenNode, CodeGenNodeArg, Compatibility, ComputeEnvironment, ConnectionPropertyKey, ConnectionStatus, ConnectionType, CsvHeaderOption, CsvSerdeOption, DatabaseIdentifier, DataFormat, DataQualityTargetTable, EncryptionConfiguration, FederatedDatabase, JobRun, Language, Permission, PhysicalConnectionRequirements, PrincipalPermissions, PrincipalType, ProfileConfiguration, RegistryId, RegistryStatus, ResourceUri, SchemaStatus, SchemaVersionStatus, Session, SourceProcessingProperties, SourceTableConfig, TargetProcessingProperties, TargetTableConfig, TaskStatusType, TransformEncryption, TransformParameters, TransformType, ViewDialect, Workflow, WorkflowRun } from "./models_1";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export interface GetCatalogResponse {
|
|
10
|
+
/**
|
|
11
|
+
* <p>A <code>Catalog</code> object. The definition of the specified catalog in the Glue Data Catalog.</p>
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
Catalog?: Catalog | undefined;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
export interface GetCatalogImportStatusRequest {
|
|
20
|
+
/**
|
|
21
|
+
* <p>The ID of the catalog to migrate. Currently, this should be the Amazon Web Services account ID.</p>
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
24
|
+
CatalogId?: string | undefined;
|
|
25
|
+
}
|
|
6
26
|
/**
|
|
7
27
|
* <p>A structure containing migration status information.</p>
|
|
8
28
|
* @public
|
|
@@ -2588,6 +2608,11 @@ export interface GetIntegrationResourcePropertyResponse {
|
|
|
2588
2608
|
* @public
|
|
2589
2609
|
*/
|
|
2590
2610
|
ResourceArn?: string | undefined;
|
|
2611
|
+
/**
|
|
2612
|
+
* <p>The resource ARN created through this create API. The format is something like arn:aws:glue:<region>:<account_id>:integrationresourceproperty/*</p>
|
|
2613
|
+
* @public
|
|
2614
|
+
*/
|
|
2615
|
+
ResourcePropertyArn?: string | undefined;
|
|
2591
2616
|
/**
|
|
2592
2617
|
* <p>The resource properties associated with the integration source.</p>
|
|
2593
2618
|
* @public
|
|
@@ -7274,6 +7299,83 @@ export interface ListEntitiesResponse {
|
|
|
7274
7299
|
*/
|
|
7275
7300
|
NextToken?: string | undefined;
|
|
7276
7301
|
}
|
|
7302
|
+
/**
|
|
7303
|
+
* <p>A filter for integration resource properties.</p>
|
|
7304
|
+
* @public
|
|
7305
|
+
*/
|
|
7306
|
+
export interface IntegrationResourcePropertyFilter {
|
|
7307
|
+
/**
|
|
7308
|
+
* <p>The name of the filter. Supported filter keys are <code>SourceArn</code> and <code>TargetArn</code>.</p>
|
|
7309
|
+
* @public
|
|
7310
|
+
*/
|
|
7311
|
+
Name?: string | undefined;
|
|
7312
|
+
/**
|
|
7313
|
+
* <p>A list of filter values.</p>
|
|
7314
|
+
* @public
|
|
7315
|
+
*/
|
|
7316
|
+
Values?: string[] | undefined;
|
|
7317
|
+
}
|
|
7318
|
+
/**
|
|
7319
|
+
* @public
|
|
7320
|
+
*/
|
|
7321
|
+
export interface ListIntegrationResourcePropertiesRequest {
|
|
7322
|
+
/**
|
|
7323
|
+
* <p>This is the pagination token for next page, initial value is <code>null</code>.</p>
|
|
7324
|
+
* @public
|
|
7325
|
+
*/
|
|
7326
|
+
Marker?: string | undefined;
|
|
7327
|
+
/**
|
|
7328
|
+
* <p>A list of filters, supported filter Key is <code>SourceArn</code> and <code>TargetArn</code>.</p>
|
|
7329
|
+
* @public
|
|
7330
|
+
*/
|
|
7331
|
+
Filters?: IntegrationResourcePropertyFilter[] | undefined;
|
|
7332
|
+
/**
|
|
7333
|
+
* <p>This is total number of items to be evaluated.</p>
|
|
7334
|
+
* @public
|
|
7335
|
+
*/
|
|
7336
|
+
MaxRecords?: number | undefined;
|
|
7337
|
+
}
|
|
7338
|
+
/**
|
|
7339
|
+
* <p>A structure representing an integration resource property.</p>
|
|
7340
|
+
* @public
|
|
7341
|
+
*/
|
|
7342
|
+
export interface IntegrationResourceProperty {
|
|
7343
|
+
/**
|
|
7344
|
+
* <p>The connection ARN of the source, or the database ARN of the target.</p>
|
|
7345
|
+
* @public
|
|
7346
|
+
*/
|
|
7347
|
+
ResourceArn: string | undefined;
|
|
7348
|
+
/**
|
|
7349
|
+
* <p>The resource ARN created through this create API. The format is something like arn:aws:glue:<region>:<account_id>:integrationresourceproperty/*</p>
|
|
7350
|
+
* @public
|
|
7351
|
+
*/
|
|
7352
|
+
ResourcePropertyArn?: string | undefined;
|
|
7353
|
+
/**
|
|
7354
|
+
* <p>The resource properties associated with the integration source.</p>
|
|
7355
|
+
* @public
|
|
7356
|
+
*/
|
|
7357
|
+
SourceProcessingProperties?: SourceProcessingProperties | undefined;
|
|
7358
|
+
/**
|
|
7359
|
+
* <p>The resource properties associated with the integration target.</p>
|
|
7360
|
+
* @public
|
|
7361
|
+
*/
|
|
7362
|
+
TargetProcessingProperties?: TargetProcessingProperties | undefined;
|
|
7363
|
+
}
|
|
7364
|
+
/**
|
|
7365
|
+
* @public
|
|
7366
|
+
*/
|
|
7367
|
+
export interface ListIntegrationResourcePropertiesResponse {
|
|
7368
|
+
/**
|
|
7369
|
+
* <p>A list of integration resource property meeting the filter criteria.</p>
|
|
7370
|
+
* @public
|
|
7371
|
+
*/
|
|
7372
|
+
IntegrationResourcePropertyList?: IntegrationResourceProperty[] | undefined;
|
|
7373
|
+
/**
|
|
7374
|
+
* <p>This is the pagination token for the next page.</p>
|
|
7375
|
+
* @public
|
|
7376
|
+
*/
|
|
7377
|
+
Marker?: string | undefined;
|
|
7378
|
+
}
|
|
7277
7379
|
/**
|
|
7278
7380
|
* @public
|
|
7279
7381
|
*/
|
|
@@ -7527,129 +7629,3 @@ export interface ListSchemaVersionsInput {
|
|
|
7527
7629
|
*/
|
|
7528
7630
|
NextToken?: string | undefined;
|
|
7529
7631
|
}
|
|
7530
|
-
/**
|
|
7531
|
-
* <p>An object containing the details about a schema version.</p>
|
|
7532
|
-
* @public
|
|
7533
|
-
*/
|
|
7534
|
-
export interface SchemaVersionListItem {
|
|
7535
|
-
/**
|
|
7536
|
-
* <p>The Amazon Resource Name (ARN) of the schema.</p>
|
|
7537
|
-
* @public
|
|
7538
|
-
*/
|
|
7539
|
-
SchemaArn?: string | undefined;
|
|
7540
|
-
/**
|
|
7541
|
-
* <p>The unique identifier of the schema version.</p>
|
|
7542
|
-
* @public
|
|
7543
|
-
*/
|
|
7544
|
-
SchemaVersionId?: string | undefined;
|
|
7545
|
-
/**
|
|
7546
|
-
* <p>The version number of the schema.</p>
|
|
7547
|
-
* @public
|
|
7548
|
-
*/
|
|
7549
|
-
VersionNumber?: number | undefined;
|
|
7550
|
-
/**
|
|
7551
|
-
* <p>The status of the schema version.</p>
|
|
7552
|
-
* @public
|
|
7553
|
-
*/
|
|
7554
|
-
Status?: SchemaVersionStatus | undefined;
|
|
7555
|
-
/**
|
|
7556
|
-
* <p>The date and time the schema version was created.</p>
|
|
7557
|
-
* @public
|
|
7558
|
-
*/
|
|
7559
|
-
CreatedTime?: string | undefined;
|
|
7560
|
-
}
|
|
7561
|
-
/**
|
|
7562
|
-
* @public
|
|
7563
|
-
*/
|
|
7564
|
-
export interface ListSchemaVersionsResponse {
|
|
7565
|
-
/**
|
|
7566
|
-
* <p>An array of <code>SchemaVersionList</code> objects containing details of each schema version.</p>
|
|
7567
|
-
* @public
|
|
7568
|
-
*/
|
|
7569
|
-
Schemas?: SchemaVersionListItem[] | undefined;
|
|
7570
|
-
/**
|
|
7571
|
-
* <p>A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.</p>
|
|
7572
|
-
* @public
|
|
7573
|
-
*/
|
|
7574
|
-
NextToken?: string | undefined;
|
|
7575
|
-
}
|
|
7576
|
-
/**
|
|
7577
|
-
* @public
|
|
7578
|
-
*/
|
|
7579
|
-
export interface ListSessionsRequest {
|
|
7580
|
-
/**
|
|
7581
|
-
* <p>The token for the next set of results, or null if there are no more result. </p>
|
|
7582
|
-
* @public
|
|
7583
|
-
*/
|
|
7584
|
-
NextToken?: string | undefined;
|
|
7585
|
-
/**
|
|
7586
|
-
* <p>The maximum number of results. </p>
|
|
7587
|
-
* @public
|
|
7588
|
-
*/
|
|
7589
|
-
MaxResults?: number | undefined;
|
|
7590
|
-
/**
|
|
7591
|
-
* <p>Tags belonging to the session. </p>
|
|
7592
|
-
* @public
|
|
7593
|
-
*/
|
|
7594
|
-
Tags?: Record<string, string> | undefined;
|
|
7595
|
-
/**
|
|
7596
|
-
* <p>The origin of the request. </p>
|
|
7597
|
-
* @public
|
|
7598
|
-
*/
|
|
7599
|
-
RequestOrigin?: string | undefined;
|
|
7600
|
-
}
|
|
7601
|
-
/**
|
|
7602
|
-
* @public
|
|
7603
|
-
*/
|
|
7604
|
-
export interface ListSessionsResponse {
|
|
7605
|
-
/**
|
|
7606
|
-
* <p>Returns the ID of the session. </p>
|
|
7607
|
-
* @public
|
|
7608
|
-
*/
|
|
7609
|
-
Ids?: string[] | undefined;
|
|
7610
|
-
/**
|
|
7611
|
-
* <p>Returns the session object. </p>
|
|
7612
|
-
* @public
|
|
7613
|
-
*/
|
|
7614
|
-
Sessions?: Session[] | undefined;
|
|
7615
|
-
/**
|
|
7616
|
-
* <p>The token for the next set of results, or null if there are no more result. </p>
|
|
7617
|
-
* @public
|
|
7618
|
-
*/
|
|
7619
|
-
NextToken?: string | undefined;
|
|
7620
|
-
}
|
|
7621
|
-
/**
|
|
7622
|
-
* @public
|
|
7623
|
-
*/
|
|
7624
|
-
export interface ListStatementsRequest {
|
|
7625
|
-
/**
|
|
7626
|
-
* <p>The Session ID of the statements.</p>
|
|
7627
|
-
* @public
|
|
7628
|
-
*/
|
|
7629
|
-
SessionId: string | undefined;
|
|
7630
|
-
/**
|
|
7631
|
-
* <p>The origin of the request to list statements.</p>
|
|
7632
|
-
* @public
|
|
7633
|
-
*/
|
|
7634
|
-
RequestOrigin?: string | undefined;
|
|
7635
|
-
/**
|
|
7636
|
-
* <p>A continuation token, if this is a continuation call.</p>
|
|
7637
|
-
* @public
|
|
7638
|
-
*/
|
|
7639
|
-
NextToken?: string | undefined;
|
|
7640
|
-
}
|
|
7641
|
-
/**
|
|
7642
|
-
* @public
|
|
7643
|
-
*/
|
|
7644
|
-
export interface ListStatementsResponse {
|
|
7645
|
-
/**
|
|
7646
|
-
* <p>Returns the list of statements.</p>
|
|
7647
|
-
* @public
|
|
7648
|
-
*/
|
|
7649
|
-
Statements?: Statement[] | undefined;
|
|
7650
|
-
/**
|
|
7651
|
-
* <p>A continuation token, if not all statements have yet been returned.</p>
|
|
7652
|
-
* @public
|
|
7653
|
-
*/
|
|
7654
|
-
NextToken?: string | undefined;
|
|
7655
|
-
}
|
|
@@ -1,8 +1,134 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { GlueServiceException as __BaseException } from "./GlueServiceException";
|
|
3
3
|
import { Action, Aggregate, AmazonRedshiftSource, AmazonRedshiftTarget, AthenaConnectorSource, AuthenticationConfigurationInput, BasicCatalogTarget, CatalogDeltaSource, CatalogHudiSource, CatalogIcebergSource, CatalogKafkaSource, CatalogKinesisSource, CatalogSource, Column, ConnectionsList, ConnectorDataSource, ConnectorDataTarget, CrawlerTargets, CustomCode, DataSource, DirectJDBCSource, DirectKafkaSource, DirectKinesisSource, DropDuplicates, DropFields, DropNullFields, DynamicTransform, DynamoDBCatalogSource, DynamoDBELTConnectorSource, ErrorDetail, EvaluateDataQuality, EvaluateDataQualityMultiFrame, EventBatchingCondition, ExecutionClass, ExecutionProperty, FillMissingValues, Filter, GovernedCatalogSource, GovernedCatalogTarget, InclusionAnnotationValue, JDBCConnectorSource, JDBCConnectorTarget, JobCommand, JobMode, Join, LakeFormationConfiguration, LineageConfiguration, Merge, MicrosoftSQLServerCatalogSource, MicrosoftSQLServerCatalogTarget, MySQLCatalogSource, MySQLCatalogTarget, NotificationProperty, OracleSQLCatalogSource, OracleSQLCatalogTarget, PartitionInput, PIIDetection, PostgreSQLCatalogSource, PostgreSQLCatalogTarget, Predicate, Recipe, RecrawlPolicy, 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, SchemaChangePolicy, SchemaId, SelectFields, SelectFromCollection, SnowflakeSource, SnowflakeTarget, SourceControlAuthStrategy, SourceControlDetails, SourceControlProvider, SparkConnectorSource, SparkConnectorTarget, SparkSQL, Spigot, SplitFields, StorageDescriptor, TableOptimizerConfiguration, TableOptimizerRun, TableOptimizerType, Trigger, Union, WorkerType } from "./models_0";
|
|
4
|
-
import { CatalogInput, Compatibility, ConnectionInput, ConnectionPropertyKey, ConnectionType, CsvHeaderOption, CsvSerdeOption, DatabaseInput, IcebergPartitionSpec, IcebergSchema, IcebergSortOrder, IntegrationConfig, IntegrationError, IntegrationStatus, Permission, ProfileConfiguration, RegistryId, SchemaVersionStatus, SourceProcessingProperties, SourceTableConfig, TableIdentifier, TableInput, Tag, TargetProcessingProperties, TargetTableConfig, TransformParameters, UserDefinedFunctionInput } from "./models_1";
|
|
5
|
-
import { ColumnRowFilter, ColumnStatistics, DataCatalogEncryptionSettings, DataQualityEvaluationRunAdditionalRunOptions, FederatedTable, JobBookmarkEntry, ResourceAction, ResourceShareType, ResourceState, SchemaVersionNumber, ViewDefinition, ViewValidation } from "./models_2";
|
|
4
|
+
import { CatalogInput, Compatibility, ConnectionInput, ConnectionPropertyKey, ConnectionType, CsvHeaderOption, CsvSerdeOption, DatabaseInput, IcebergPartitionSpec, IcebergSchema, IcebergSortOrder, IntegrationConfig, IntegrationError, IntegrationStatus, Permission, ProfileConfiguration, RegistryId, SchemaVersionStatus, Session, SourceProcessingProperties, SourceTableConfig, TableIdentifier, TableInput, Tag, TargetProcessingProperties, TargetTableConfig, TransformParameters, UserDefinedFunctionInput } from "./models_1";
|
|
5
|
+
import { ColumnRowFilter, ColumnStatistics, DataCatalogEncryptionSettings, DataQualityEvaluationRunAdditionalRunOptions, FederatedTable, JobBookmarkEntry, ResourceAction, ResourceShareType, ResourceState, SchemaVersionNumber, Statement, ViewDefinition, ViewValidation } from "./models_2";
|
|
6
|
+
/**
|
|
7
|
+
* <p>An object containing the details about a schema version.</p>
|
|
8
|
+
* @public
|
|
9
|
+
*/
|
|
10
|
+
export interface SchemaVersionListItem {
|
|
11
|
+
/**
|
|
12
|
+
* <p>The Amazon Resource Name (ARN) of the schema.</p>
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
SchemaArn?: string | undefined;
|
|
16
|
+
/**
|
|
17
|
+
* <p>The unique identifier of the schema version.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
SchemaVersionId?: string | undefined;
|
|
21
|
+
/**
|
|
22
|
+
* <p>The version number of the schema.</p>
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
VersionNumber?: number | undefined;
|
|
26
|
+
/**
|
|
27
|
+
* <p>The status of the schema version.</p>
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
30
|
+
Status?: SchemaVersionStatus | undefined;
|
|
31
|
+
/**
|
|
32
|
+
* <p>The date and time the schema version was created.</p>
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
CreatedTime?: string | undefined;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* @public
|
|
39
|
+
*/
|
|
40
|
+
export interface ListSchemaVersionsResponse {
|
|
41
|
+
/**
|
|
42
|
+
* <p>An array of <code>SchemaVersionList</code> objects containing details of each schema version.</p>
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
45
|
+
Schemas?: SchemaVersionListItem[] | undefined;
|
|
46
|
+
/**
|
|
47
|
+
* <p>A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.</p>
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
50
|
+
NextToken?: string | undefined;
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
export interface ListSessionsRequest {
|
|
56
|
+
/**
|
|
57
|
+
* <p>The token for the next set of results, or null if there are no more result. </p>
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
60
|
+
NextToken?: string | undefined;
|
|
61
|
+
/**
|
|
62
|
+
* <p>The maximum number of results. </p>
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
65
|
+
MaxResults?: number | undefined;
|
|
66
|
+
/**
|
|
67
|
+
* <p>Tags belonging to the session. </p>
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
70
|
+
Tags?: Record<string, string> | undefined;
|
|
71
|
+
/**
|
|
72
|
+
* <p>The origin of the request. </p>
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
75
|
+
RequestOrigin?: string | undefined;
|
|
76
|
+
}
|
|
77
|
+
/**
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
80
|
+
export interface ListSessionsResponse {
|
|
81
|
+
/**
|
|
82
|
+
* <p>Returns the ID of the session. </p>
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
85
|
+
Ids?: string[] | undefined;
|
|
86
|
+
/**
|
|
87
|
+
* <p>Returns the session object. </p>
|
|
88
|
+
* @public
|
|
89
|
+
*/
|
|
90
|
+
Sessions?: Session[] | undefined;
|
|
91
|
+
/**
|
|
92
|
+
* <p>The token for the next set of results, or null if there are no more result. </p>
|
|
93
|
+
* @public
|
|
94
|
+
*/
|
|
95
|
+
NextToken?: string | undefined;
|
|
96
|
+
}
|
|
97
|
+
/**
|
|
98
|
+
* @public
|
|
99
|
+
*/
|
|
100
|
+
export interface ListStatementsRequest {
|
|
101
|
+
/**
|
|
102
|
+
* <p>The Session ID of the statements.</p>
|
|
103
|
+
* @public
|
|
104
|
+
*/
|
|
105
|
+
SessionId: string | undefined;
|
|
106
|
+
/**
|
|
107
|
+
* <p>The origin of the request to list statements.</p>
|
|
108
|
+
* @public
|
|
109
|
+
*/
|
|
110
|
+
RequestOrigin?: string | undefined;
|
|
111
|
+
/**
|
|
112
|
+
* <p>A continuation token, if this is a continuation call.</p>
|
|
113
|
+
* @public
|
|
114
|
+
*/
|
|
115
|
+
NextToken?: string | undefined;
|
|
116
|
+
}
|
|
117
|
+
/**
|
|
118
|
+
* @public
|
|
119
|
+
*/
|
|
120
|
+
export interface ListStatementsResponse {
|
|
121
|
+
/**
|
|
122
|
+
* <p>Returns the list of statements.</p>
|
|
123
|
+
* @public
|
|
124
|
+
*/
|
|
125
|
+
Statements?: Statement[] | undefined;
|
|
126
|
+
/**
|
|
127
|
+
* <p>A continuation token, if not all statements have yet been returned.</p>
|
|
128
|
+
* @public
|
|
129
|
+
*/
|
|
130
|
+
NextToken?: string | undefined;
|
|
131
|
+
}
|
|
6
132
|
/**
|
|
7
133
|
* @public
|
|
8
134
|
*/
|
|
@@ -216,7 +342,7 @@ export interface ModifyIntegrationRequest {
|
|
|
216
342
|
*/
|
|
217
343
|
DataFilter?: string | undefined;
|
|
218
344
|
/**
|
|
219
|
-
* <p>
|
|
345
|
+
* <p>The configuration settings for the integration. Currently, only the RefreshInterval can be modified. </p>
|
|
220
346
|
* @public
|
|
221
347
|
*/
|
|
222
348
|
IntegrationConfig?: IntegrationConfig | undefined;
|
|
@@ -315,7 +441,7 @@ export interface ModifyIntegrationResponse {
|
|
|
315
441
|
*/
|
|
316
442
|
DataFilter?: string | undefined;
|
|
317
443
|
/**
|
|
318
|
-
* <p>
|
|
444
|
+
* <p>The updated configuration settings for the integration.</p>
|
|
319
445
|
* @public
|
|
320
446
|
*/
|
|
321
447
|
IntegrationConfig?: IntegrationConfig | undefined;
|
|
@@ -2645,6 +2771,11 @@ export interface UpdateIntegrationResourcePropertyResponse {
|
|
|
2645
2771
|
* @public
|
|
2646
2772
|
*/
|
|
2647
2773
|
ResourceArn?: string | undefined;
|
|
2774
|
+
/**
|
|
2775
|
+
* <p>The resource ARN created through this create API. The format is something like arn:aws:glue:<region>:<account_id>:integrationresourceproperty/*</p>
|
|
2776
|
+
* @public
|
|
2777
|
+
*/
|
|
2778
|
+
ResourcePropertyArn?: string | undefined;
|
|
2648
2779
|
/**
|
|
2649
2780
|
* <p>The resource properties associated with the integration source.</p>
|
|
2650
2781
|
* @public
|
|
@@ -276,6 +276,8 @@ export declare var DeleteDevEndpointResponse: StaticStructureSchema;
|
|
|
276
276
|
export declare var DeleteGlueIdentityCenterConfigurationRequest: StaticStructureSchema;
|
|
277
277
|
export declare var DeleteGlueIdentityCenterConfigurationResponse: StaticStructureSchema;
|
|
278
278
|
export declare var DeleteIntegrationRequest: StaticStructureSchema;
|
|
279
|
+
export declare var DeleteIntegrationResourcePropertyRequest: StaticStructureSchema;
|
|
280
|
+
export declare var DeleteIntegrationResourcePropertyResponse: StaticStructureSchema;
|
|
279
281
|
export declare var DeleteIntegrationResponse: StaticStructureSchema;
|
|
280
282
|
export declare var DeleteIntegrationTablePropertiesRequest: StaticStructureSchema;
|
|
281
283
|
export declare var DeleteIntegrationTablePropertiesResponse: StaticStructureSchema;
|
|
@@ -566,6 +568,8 @@ export declare var IntegrationFilter: StaticStructureSchema;
|
|
|
566
568
|
export declare var IntegrationNotFoundFault: StaticErrorSchema;
|
|
567
569
|
export declare var IntegrationPartition: StaticStructureSchema;
|
|
568
570
|
export declare var IntegrationQuotaExceededFault: StaticErrorSchema;
|
|
571
|
+
export declare var IntegrationResourceProperty: StaticStructureSchema;
|
|
572
|
+
export declare var IntegrationResourcePropertyFilter: StaticStructureSchema;
|
|
569
573
|
export declare var InternalServerException: StaticErrorSchema;
|
|
570
574
|
export declare var InternalServiceException: StaticErrorSchema;
|
|
571
575
|
export declare var InvalidInputException: StaticErrorSchema;
|
|
@@ -622,6 +626,8 @@ export declare var ListDevEndpointsRequest: StaticStructureSchema;
|
|
|
622
626
|
export declare var ListDevEndpointsResponse: StaticStructureSchema;
|
|
623
627
|
export declare var ListEntitiesRequest: StaticStructureSchema;
|
|
624
628
|
export declare var ListEntitiesResponse: StaticStructureSchema;
|
|
629
|
+
export declare var ListIntegrationResourcePropertiesRequest: StaticStructureSchema;
|
|
630
|
+
export declare var ListIntegrationResourcePropertiesResponse: StaticStructureSchema;
|
|
625
631
|
export declare var ListJobsRequest: StaticStructureSchema;
|
|
626
632
|
export declare var ListJobsResponse: StaticStructureSchema;
|
|
627
633
|
export declare var ListMLTransformsRequest: StaticStructureSchema;
|
|
@@ -1090,6 +1096,9 @@ export declare var IntegrationErrorList: StaticListSchema;
|
|
|
1090
1096
|
export declare var IntegrationFilterList: StaticListSchema;
|
|
1091
1097
|
export declare var IntegrationFilterValues: number;
|
|
1092
1098
|
export declare var IntegrationPartitionSpecList: StaticListSchema;
|
|
1099
|
+
export declare var IntegrationResourcePropertyFilterList: StaticListSchema;
|
|
1100
|
+
export declare var IntegrationResourcePropertyFilterValues: number;
|
|
1101
|
+
export declare var IntegrationResourcePropertyList: StaticListSchema;
|
|
1093
1102
|
export declare var IntegrationsList: StaticListSchema;
|
|
1094
1103
|
export declare var IntegrationTagsList: StaticListSchema;
|
|
1095
1104
|
export declare var JdbcTargetList: StaticListSchema;
|
|
@@ -1286,6 +1295,7 @@ export declare var DeleteDataQualityRuleset: StaticOperationSchema;
|
|
|
1286
1295
|
export declare var DeleteDevEndpoint: StaticOperationSchema;
|
|
1287
1296
|
export declare var DeleteGlueIdentityCenterConfiguration: StaticOperationSchema;
|
|
1288
1297
|
export declare var DeleteIntegration: StaticOperationSchema;
|
|
1298
|
+
export declare var DeleteIntegrationResourceProperty: StaticOperationSchema;
|
|
1289
1299
|
export declare var DeleteIntegrationTableProperties: StaticOperationSchema;
|
|
1290
1300
|
export declare var DeleteJob: StaticOperationSchema;
|
|
1291
1301
|
export declare var DeleteMLTransform: StaticOperationSchema;
|
|
@@ -1401,6 +1411,7 @@ export declare var ListDataQualityStatisticAnnotations: StaticOperationSchema;
|
|
|
1401
1411
|
export declare var ListDataQualityStatistics: StaticOperationSchema;
|
|
1402
1412
|
export declare var ListDevEndpoints: StaticOperationSchema;
|
|
1403
1413
|
export declare var ListEntities: StaticOperationSchema;
|
|
1414
|
+
export declare var ListIntegrationResourceProperties: StaticOperationSchema;
|
|
1404
1415
|
export declare var ListJobs: StaticOperationSchema;
|
|
1405
1416
|
export declare var ListMLTransforms: StaticOperationSchema;
|
|
1406
1417
|
export declare var ListRegistries: StaticOperationSchema;
|
|
@@ -263,6 +263,10 @@ import {
|
|
|
263
263
|
DeleteIntegrationCommandInput,
|
|
264
264
|
DeleteIntegrationCommandOutput,
|
|
265
265
|
} from "./commands/DeleteIntegrationCommand";
|
|
266
|
+
import {
|
|
267
|
+
DeleteIntegrationResourcePropertyCommandInput,
|
|
268
|
+
DeleteIntegrationResourcePropertyCommandOutput,
|
|
269
|
+
} from "./commands/DeleteIntegrationResourcePropertyCommand";
|
|
266
270
|
import {
|
|
267
271
|
DeleteIntegrationTablePropertiesCommandInput,
|
|
268
272
|
DeleteIntegrationTablePropertiesCommandOutput,
|
|
@@ -723,6 +727,10 @@ import {
|
|
|
723
727
|
ListEntitiesCommandInput,
|
|
724
728
|
ListEntitiesCommandOutput,
|
|
725
729
|
} from "./commands/ListEntitiesCommand";
|
|
730
|
+
import {
|
|
731
|
+
ListIntegrationResourcePropertiesCommandInput,
|
|
732
|
+
ListIntegrationResourcePropertiesCommandOutput,
|
|
733
|
+
} from "./commands/ListIntegrationResourcePropertiesCommand";
|
|
726
734
|
import {
|
|
727
735
|
ListJobsCommandInput,
|
|
728
736
|
ListJobsCommandOutput,
|
|
@@ -1944,6 +1952,25 @@ export interface Glue {
|
|
|
1944
1952
|
options: __HttpHandlerOptions,
|
|
1945
1953
|
cb: (err: any, data?: DeleteIntegrationCommandOutput) => void
|
|
1946
1954
|
): void;
|
|
1955
|
+
deleteIntegrationResourceProperty(
|
|
1956
|
+
args: DeleteIntegrationResourcePropertyCommandInput,
|
|
1957
|
+
options?: __HttpHandlerOptions
|
|
1958
|
+
): Promise<DeleteIntegrationResourcePropertyCommandOutput>;
|
|
1959
|
+
deleteIntegrationResourceProperty(
|
|
1960
|
+
args: DeleteIntegrationResourcePropertyCommandInput,
|
|
1961
|
+
cb: (
|
|
1962
|
+
err: any,
|
|
1963
|
+
data?: DeleteIntegrationResourcePropertyCommandOutput
|
|
1964
|
+
) => void
|
|
1965
|
+
): void;
|
|
1966
|
+
deleteIntegrationResourceProperty(
|
|
1967
|
+
args: DeleteIntegrationResourcePropertyCommandInput,
|
|
1968
|
+
options: __HttpHandlerOptions,
|
|
1969
|
+
cb: (
|
|
1970
|
+
err: any,
|
|
1971
|
+
data?: DeleteIntegrationResourcePropertyCommandOutput
|
|
1972
|
+
) => void
|
|
1973
|
+
): void;
|
|
1947
1974
|
deleteIntegrationTableProperties(
|
|
1948
1975
|
args: DeleteIntegrationTablePropertiesCommandInput,
|
|
1949
1976
|
options?: __HttpHandlerOptions
|
|
@@ -3510,6 +3537,26 @@ export interface Glue {
|
|
|
3510
3537
|
options: __HttpHandlerOptions,
|
|
3511
3538
|
cb: (err: any, data?: ListEntitiesCommandOutput) => void
|
|
3512
3539
|
): void;
|
|
3540
|
+
listIntegrationResourceProperties(): Promise<ListIntegrationResourcePropertiesCommandOutput>;
|
|
3541
|
+
listIntegrationResourceProperties(
|
|
3542
|
+
args: ListIntegrationResourcePropertiesCommandInput,
|
|
3543
|
+
options?: __HttpHandlerOptions
|
|
3544
|
+
): Promise<ListIntegrationResourcePropertiesCommandOutput>;
|
|
3545
|
+
listIntegrationResourceProperties(
|
|
3546
|
+
args: ListIntegrationResourcePropertiesCommandInput,
|
|
3547
|
+
cb: (
|
|
3548
|
+
err: any,
|
|
3549
|
+
data?: ListIntegrationResourcePropertiesCommandOutput
|
|
3550
|
+
) => void
|
|
3551
|
+
): void;
|
|
3552
|
+
listIntegrationResourceProperties(
|
|
3553
|
+
args: ListIntegrationResourcePropertiesCommandInput,
|
|
3554
|
+
options: __HttpHandlerOptions,
|
|
3555
|
+
cb: (
|
|
3556
|
+
err: any,
|
|
3557
|
+
data?: ListIntegrationResourcePropertiesCommandOutput
|
|
3558
|
+
) => void
|
|
3559
|
+
): void;
|
|
3513
3560
|
listJobs(): Promise<ListJobsCommandOutput>;
|
|
3514
3561
|
listJobs(
|
|
3515
3562
|
args: ListJobsCommandInput,
|
|
@@ -312,6 +312,10 @@ import {
|
|
|
312
312
|
DeleteIntegrationCommandInput,
|
|
313
313
|
DeleteIntegrationCommandOutput,
|
|
314
314
|
} from "./commands/DeleteIntegrationCommand";
|
|
315
|
+
import {
|
|
316
|
+
DeleteIntegrationResourcePropertyCommandInput,
|
|
317
|
+
DeleteIntegrationResourcePropertyCommandOutput,
|
|
318
|
+
} from "./commands/DeleteIntegrationResourcePropertyCommand";
|
|
315
319
|
import {
|
|
316
320
|
DeleteIntegrationTablePropertiesCommandInput,
|
|
317
321
|
DeleteIntegrationTablePropertiesCommandOutput,
|
|
@@ -772,6 +776,10 @@ import {
|
|
|
772
776
|
ListEntitiesCommandInput,
|
|
773
777
|
ListEntitiesCommandOutput,
|
|
774
778
|
} from "./commands/ListEntitiesCommand";
|
|
779
|
+
import {
|
|
780
|
+
ListIntegrationResourcePropertiesCommandInput,
|
|
781
|
+
ListIntegrationResourcePropertiesCommandOutput,
|
|
782
|
+
} from "./commands/ListIntegrationResourcePropertiesCommand";
|
|
775
783
|
import {
|
|
776
784
|
ListJobsCommandInput,
|
|
777
785
|
ListJobsCommandOutput,
|
|
@@ -1150,6 +1158,7 @@ export type ServiceInputTypes =
|
|
|
1150
1158
|
| DeleteDevEndpointCommandInput
|
|
1151
1159
|
| DeleteGlueIdentityCenterConfigurationCommandInput
|
|
1152
1160
|
| DeleteIntegrationCommandInput
|
|
1161
|
+
| DeleteIntegrationResourcePropertyCommandInput
|
|
1153
1162
|
| DeleteIntegrationTablePropertiesCommandInput
|
|
1154
1163
|
| DeleteJobCommandInput
|
|
1155
1164
|
| DeleteMLTransformCommandInput
|
|
@@ -1265,6 +1274,7 @@ export type ServiceInputTypes =
|
|
|
1265
1274
|
| ListDataQualityStatisticsCommandInput
|
|
1266
1275
|
| ListDevEndpointsCommandInput
|
|
1267
1276
|
| ListEntitiesCommandInput
|
|
1277
|
+
| ListIntegrationResourcePropertiesCommandInput
|
|
1268
1278
|
| ListJobsCommandInput
|
|
1269
1279
|
| ListMLTransformsCommandInput
|
|
1270
1280
|
| ListRegistriesCommandInput
|
|
@@ -1408,6 +1418,7 @@ export type ServiceOutputTypes =
|
|
|
1408
1418
|
| DeleteDevEndpointCommandOutput
|
|
1409
1419
|
| DeleteGlueIdentityCenterConfigurationCommandOutput
|
|
1410
1420
|
| DeleteIntegrationCommandOutput
|
|
1421
|
+
| DeleteIntegrationResourcePropertyCommandOutput
|
|
1411
1422
|
| DeleteIntegrationTablePropertiesCommandOutput
|
|
1412
1423
|
| DeleteJobCommandOutput
|
|
1413
1424
|
| DeleteMLTransformCommandOutput
|
|
@@ -1523,6 +1534,7 @@ export type ServiceOutputTypes =
|
|
|
1523
1534
|
| ListDataQualityStatisticsCommandOutput
|
|
1524
1535
|
| ListDevEndpointsCommandOutput
|
|
1525
1536
|
| ListEntitiesCommandOutput
|
|
1537
|
+
| ListIntegrationResourcePropertiesCommandOutput
|
|
1526
1538
|
| ListJobsCommandOutput
|
|
1527
1539
|
| ListMLTransformsCommandOutput
|
|
1528
1540
|
| ListRegistriesCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GlueClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../GlueClient";
|
|
8
|
+
import {
|
|
9
|
+
DeleteIntegrationResourcePropertyRequest,
|
|
10
|
+
DeleteIntegrationResourcePropertyResponse,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteIntegrationResourcePropertyCommandInput
|
|
15
|
+
extends DeleteIntegrationResourcePropertyRequest {}
|
|
16
|
+
export interface DeleteIntegrationResourcePropertyCommandOutput
|
|
17
|
+
extends DeleteIntegrationResourcePropertyResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteIntegrationResourcePropertyCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteIntegrationResourcePropertyCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteIntegrationResourcePropertyCommandInput,
|
|
24
|
+
DeleteIntegrationResourcePropertyCommandOutput,
|
|
25
|
+
GlueClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DeleteIntegrationResourcePropertyCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteIntegrationResourcePropertyCommandInput,
|
|
33
|
+
DeleteIntegrationResourcePropertyCommandOutput,
|
|
34
|
+
GlueClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteIntegrationResourcePropertyCommand extends DeleteIntegrationResourcePropertyCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteIntegrationResourcePropertyRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteIntegrationResourcePropertyCommandInput;
|
|
48
|
+
output: DeleteIntegrationResourcePropertyCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -5,7 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../GlueClient";
|
|
8
|
-
import { GetCatalogRequest
|
|
8
|
+
import { GetCatalogRequest } from "../models/models_1";
|
|
9
|
+
import { GetCatalogResponse } from "../models/models_2";
|
|
9
10
|
export { __MetadataBearer };
|
|
10
11
|
export { $Command };
|
|
11
12
|
export interface GetCatalogCommandInput extends GetCatalogRequest {}
|
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../GlueClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
GetCatalogImportStatusRequest,
|
|
10
|
+
GetCatalogImportStatusResponse,
|
|
11
|
+
} from "../models/models_2";
|
|
10
12
|
export { __MetadataBearer };
|
|
11
13
|
export { $Command };
|
|
12
14
|
export interface GetCatalogImportStatusCommandInput
|