@aws-sdk/client-glue 3.982.0 → 3.984.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 +14 -0
- package/dist-cjs/index.js +338 -70
- package/dist-es/Glue.js +4 -0
- package/dist-es/commands/DeleteConnectionTypeCommand.js +16 -0
- package/dist-es/commands/RegisterConnectionTypeCommand.js +16 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/enums.js +24 -0
- package/dist-es/schemas/schemas_0.js +256 -70
- package/dist-types/Glue.d.ts +14 -0
- package/dist-types/GlueClient.d.ts +4 -2
- package/dist-types/commands/DeleteConnectionTypeCommand.d.ts +91 -0
- package/dist-types/commands/DescribeConnectionTypeCommand.d.ts +156 -1
- package/dist-types/commands/DescribeEntityCommand.d.ts +1 -1
- package/dist-types/commands/GetMLTaskRunCommand.d.ts +2 -1
- package/dist-types/commands/GetMLTaskRunsCommand.d.ts +1 -1
- package/dist-types/commands/GetMLTransformCommand.d.ts +1 -2
- package/dist-types/commands/ListConnectionTypesCommand.d.ts +3 -1
- package/dist-types/commands/RegisterConnectionTypeCommand.d.ts +284 -0
- package/dist-types/commands/UpdateDevEndpointCommand.d.ts +1 -1
- package/dist-types/commands/UpdateGlueIdentityCenterConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateIntegrationResourcePropertyCommand.d.ts +1 -1
- package/dist-types/commands/UpdateIntegrationTablePropertiesCommand.d.ts +1 -1
- package/dist-types/commands/UpdateJobCommand.d.ts +1 -2
- package/dist-types/commands/UpdateJobFromSourceControlCommand.d.ts +1 -1
- package/dist-types/commands/UpdateMLTransformCommand.d.ts +1 -1
- package/dist-types/commands/UpdatePartitionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateRegistryCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSchemaCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSourceControlFromJobCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/enums.d.ts +64 -0
- package/dist-types/models/models_0.d.ts +11 -1
- package/dist-types/models/models_1.d.ts +252 -368
- package/dist-types/models/models_2.d.ts +664 -599
- package/dist-types/models/models_3.d.ts +585 -4
- package/dist-types/schemas/schemas_0.d.ts +25 -0
- package/dist-types/ts3.4/Glue.d.ts +34 -0
- package/dist-types/ts3.4/GlueClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/DeleteConnectionTypeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetMLTaskRunCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/GetMLTaskRunsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetMLTransformCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/RegisterConnectionTypeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateDevEndpointCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateGlueIdentityCenterConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateIntegrationResourcePropertyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateIntegrationTablePropertiesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateJobCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/UpdateJobFromSourceControlCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateMLTransformCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdatePartitionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateRegistryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateSchemaCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateSourceControlFromJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/enums.d.ts +32 -0
- package/dist-types/ts3.4/models/models_0.d.ts +3 -0
- package/dist-types/ts3.4/models/models_1.d.ts +63 -85
- package/dist-types/ts3.4/models/models_2.d.ts +161 -134
- package/dist-types/ts3.4/models/models_3.d.ts +141 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +25 -0
- package/package.json +2 -2
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
import {
|
|
2
|
+
Compatibility,
|
|
2
3
|
ExecutionClass,
|
|
4
|
+
IcebergUpdateAction,
|
|
3
5
|
JobMode,
|
|
4
6
|
Permission,
|
|
5
7
|
ResourceAction,
|
|
6
8
|
ResourceState,
|
|
9
|
+
SourceControlAuthStrategy,
|
|
10
|
+
SourceControlProvider,
|
|
7
11
|
TableOptimizerType,
|
|
8
12
|
ViewUpdateAction,
|
|
9
13
|
WorkerType,
|
|
@@ -54,6 +58,7 @@ import {
|
|
|
54
58
|
NotificationProperty,
|
|
55
59
|
OracleSQLCatalogSource,
|
|
56
60
|
OracleSQLCatalogTarget,
|
|
61
|
+
PartitionInput,
|
|
57
62
|
PIIDetection,
|
|
58
63
|
PostgreSQLCatalogSource,
|
|
59
64
|
PostgreSQLCatalogTarget,
|
|
@@ -84,6 +89,7 @@ import {
|
|
|
84
89
|
S3IcebergDirectTarget,
|
|
85
90
|
S3JsonSource,
|
|
86
91
|
S3ParquetSource,
|
|
92
|
+
SchemaId,
|
|
87
93
|
SelectFields,
|
|
88
94
|
SelectFromCollection,
|
|
89
95
|
SnowflakeSource,
|
|
@@ -102,18 +108,152 @@ import {
|
|
|
102
108
|
Column,
|
|
103
109
|
} from "./models_0";
|
|
104
110
|
import {
|
|
111
|
+
IcebergPartitionSpec,
|
|
112
|
+
IcebergSchema,
|
|
113
|
+
IcebergSortOrder,
|
|
105
114
|
ProfileConfiguration,
|
|
115
|
+
RegistryId,
|
|
116
|
+
SourceProcessingProperties,
|
|
117
|
+
SourceTableConfig,
|
|
106
118
|
TableIdentifier,
|
|
107
119
|
TableInput,
|
|
120
|
+
TargetProcessingProperties,
|
|
121
|
+
TargetTableConfig,
|
|
122
|
+
TransformParameters,
|
|
108
123
|
UserDefinedFunctionInput,
|
|
109
124
|
} from "./models_1";
|
|
110
125
|
import {
|
|
126
|
+
DevEndpointCustomLibraries,
|
|
111
127
|
FederatedTable,
|
|
128
|
+
SchemaVersionNumber,
|
|
112
129
|
ViewDefinition,
|
|
113
130
|
ColumnRowFilter,
|
|
114
|
-
IcebergTableUpdate,
|
|
115
131
|
ViewValidation,
|
|
116
132
|
} from "./models_2";
|
|
133
|
+
export interface UpdateDevEndpointRequest {
|
|
134
|
+
EndpointName: string | undefined;
|
|
135
|
+
PublicKey?: string | undefined;
|
|
136
|
+
AddPublicKeys?: string[] | undefined;
|
|
137
|
+
DeletePublicKeys?: string[] | undefined;
|
|
138
|
+
CustomLibraries?: DevEndpointCustomLibraries | undefined;
|
|
139
|
+
UpdateEtlLibraries?: boolean | undefined;
|
|
140
|
+
DeleteArguments?: string[] | undefined;
|
|
141
|
+
AddArguments?: Record<string, string> | undefined;
|
|
142
|
+
}
|
|
143
|
+
export interface UpdateDevEndpointResponse {}
|
|
144
|
+
export interface UpdateGlueIdentityCenterConfigurationRequest {
|
|
145
|
+
Scopes?: string[] | undefined;
|
|
146
|
+
UserBackgroundSessionsEnabled?: boolean | undefined;
|
|
147
|
+
}
|
|
148
|
+
export interface UpdateGlueIdentityCenterConfigurationResponse {}
|
|
149
|
+
export interface UpdateIntegrationResourcePropertyRequest {
|
|
150
|
+
ResourceArn: string | undefined;
|
|
151
|
+
SourceProcessingProperties?: SourceProcessingProperties | undefined;
|
|
152
|
+
TargetProcessingProperties?: TargetProcessingProperties | undefined;
|
|
153
|
+
}
|
|
154
|
+
export interface UpdateIntegrationResourcePropertyResponse {
|
|
155
|
+
ResourceArn?: string | undefined;
|
|
156
|
+
ResourcePropertyArn?: string | undefined;
|
|
157
|
+
SourceProcessingProperties?: SourceProcessingProperties | undefined;
|
|
158
|
+
TargetProcessingProperties?: TargetProcessingProperties | undefined;
|
|
159
|
+
}
|
|
160
|
+
export interface UpdateIntegrationTablePropertiesRequest {
|
|
161
|
+
ResourceArn: string | undefined;
|
|
162
|
+
TableName: string | undefined;
|
|
163
|
+
SourceTableConfig?: SourceTableConfig | undefined;
|
|
164
|
+
TargetTableConfig?: TargetTableConfig | undefined;
|
|
165
|
+
}
|
|
166
|
+
export interface UpdateIntegrationTablePropertiesResponse {}
|
|
167
|
+
export interface UpdateJobResponse {
|
|
168
|
+
JobName?: string | undefined;
|
|
169
|
+
}
|
|
170
|
+
export interface UpdateJobFromSourceControlRequest {
|
|
171
|
+
JobName?: string | undefined;
|
|
172
|
+
Provider?: SourceControlProvider | undefined;
|
|
173
|
+
RepositoryName?: string | undefined;
|
|
174
|
+
RepositoryOwner?: string | undefined;
|
|
175
|
+
BranchName?: string | undefined;
|
|
176
|
+
Folder?: string | undefined;
|
|
177
|
+
CommitId?: string | undefined;
|
|
178
|
+
AuthStrategy?: SourceControlAuthStrategy | undefined;
|
|
179
|
+
AuthToken?: string | undefined;
|
|
180
|
+
}
|
|
181
|
+
export interface UpdateJobFromSourceControlResponse {
|
|
182
|
+
JobName?: string | undefined;
|
|
183
|
+
}
|
|
184
|
+
export interface UpdateMLTransformRequest {
|
|
185
|
+
TransformId: string | undefined;
|
|
186
|
+
Name?: string | undefined;
|
|
187
|
+
Description?: string | undefined;
|
|
188
|
+
Parameters?: TransformParameters | undefined;
|
|
189
|
+
Role?: string | undefined;
|
|
190
|
+
GlueVersion?: string | undefined;
|
|
191
|
+
MaxCapacity?: number | undefined;
|
|
192
|
+
WorkerType?: WorkerType | undefined;
|
|
193
|
+
NumberOfWorkers?: number | undefined;
|
|
194
|
+
Timeout?: number | undefined;
|
|
195
|
+
MaxRetries?: number | undefined;
|
|
196
|
+
}
|
|
197
|
+
export interface UpdateMLTransformResponse {
|
|
198
|
+
TransformId?: string | undefined;
|
|
199
|
+
}
|
|
200
|
+
export interface UpdatePartitionRequest {
|
|
201
|
+
CatalogId?: string | undefined;
|
|
202
|
+
DatabaseName: string | undefined;
|
|
203
|
+
TableName: string | undefined;
|
|
204
|
+
PartitionValueList: string[] | undefined;
|
|
205
|
+
PartitionInput: PartitionInput | undefined;
|
|
206
|
+
}
|
|
207
|
+
export interface UpdatePartitionResponse {}
|
|
208
|
+
export interface UpdateRegistryInput {
|
|
209
|
+
RegistryId: RegistryId | undefined;
|
|
210
|
+
Description: string | undefined;
|
|
211
|
+
}
|
|
212
|
+
export interface UpdateRegistryResponse {
|
|
213
|
+
RegistryName?: string | undefined;
|
|
214
|
+
RegistryArn?: string | undefined;
|
|
215
|
+
}
|
|
216
|
+
export interface UpdateSchemaInput {
|
|
217
|
+
SchemaId: SchemaId | undefined;
|
|
218
|
+
SchemaVersionNumber?: SchemaVersionNumber | undefined;
|
|
219
|
+
Compatibility?: Compatibility | undefined;
|
|
220
|
+
Description?: string | undefined;
|
|
221
|
+
}
|
|
222
|
+
export interface UpdateSchemaResponse {
|
|
223
|
+
SchemaArn?: string | undefined;
|
|
224
|
+
SchemaName?: string | undefined;
|
|
225
|
+
RegistryName?: string | undefined;
|
|
226
|
+
}
|
|
227
|
+
export interface UpdateSourceControlFromJobRequest {
|
|
228
|
+
JobName?: string | undefined;
|
|
229
|
+
Provider?: SourceControlProvider | undefined;
|
|
230
|
+
RepositoryName?: string | undefined;
|
|
231
|
+
RepositoryOwner?: string | undefined;
|
|
232
|
+
BranchName?: string | undefined;
|
|
233
|
+
Folder?: string | undefined;
|
|
234
|
+
CommitId?: string | undefined;
|
|
235
|
+
AuthStrategy?: SourceControlAuthStrategy | undefined;
|
|
236
|
+
AuthToken?: string | undefined;
|
|
237
|
+
}
|
|
238
|
+
export interface UpdateSourceControlFromJobResponse {
|
|
239
|
+
JobName?: string | undefined;
|
|
240
|
+
}
|
|
241
|
+
export interface IcebergEncryptedKey {
|
|
242
|
+
KeyId: string | undefined;
|
|
243
|
+
EncryptedKeyMetadata: string | undefined;
|
|
244
|
+
EncryptedById?: string | undefined;
|
|
245
|
+
Properties?: Record<string, string> | undefined;
|
|
246
|
+
}
|
|
247
|
+
export interface IcebergTableUpdate {
|
|
248
|
+
Schema: IcebergSchema | undefined;
|
|
249
|
+
PartitionSpec?: IcebergPartitionSpec | undefined;
|
|
250
|
+
SortOrder?: IcebergSortOrder | undefined;
|
|
251
|
+
Location: string | undefined;
|
|
252
|
+
Properties?: Record<string, string> | undefined;
|
|
253
|
+
Action?: IcebergUpdateAction | undefined;
|
|
254
|
+
EncryptionKey?: IcebergEncryptedKey | undefined;
|
|
255
|
+
KeyId?: string | undefined;
|
|
256
|
+
}
|
|
117
257
|
export interface UpdateIcebergTableInput {
|
|
118
258
|
Updates: IcebergTableUpdate[] | undefined;
|
|
119
259
|
}
|
|
@@ -25,6 +25,7 @@ export declare var AuthorizationCodeProperties$: StaticStructureSchema;
|
|
|
25
25
|
export declare var AutoDataQuality$: StaticStructureSchema;
|
|
26
26
|
export declare var BackfillError$: StaticStructureSchema;
|
|
27
27
|
export declare var BasicAuthenticationCredentials$: StaticStructureSchema;
|
|
28
|
+
export declare var BasicAuthenticationProperties$: StaticStructureSchema;
|
|
28
29
|
export declare var BasicCatalogTarget$: StaticStructureSchema;
|
|
29
30
|
export declare var BatchCreatePartitionRequest$: StaticStructureSchema;
|
|
30
31
|
export declare var BatchCreatePartitionResponse$: StaticStructureSchema;
|
|
@@ -100,6 +101,7 @@ export declare var CatalogTarget$: StaticStructureSchema;
|
|
|
100
101
|
export declare var CheckSchemaVersionValidityInput$: StaticStructureSchema;
|
|
101
102
|
export declare var CheckSchemaVersionValidityResponse$: StaticStructureSchema;
|
|
102
103
|
export declare var Classifier$: StaticStructureSchema;
|
|
104
|
+
export declare var ClientCredentialsProperties$: StaticStructureSchema;
|
|
103
105
|
export declare var CloudWatchEncryption$: StaticStructureSchema;
|
|
104
106
|
export declare var CodeGenConfigurationNode$: StaticStructureSchema;
|
|
105
107
|
export declare var CodeGenEdge$: StaticStructureSchema;
|
|
@@ -131,11 +133,16 @@ export declare var ConfusionMatrix$: StaticStructureSchema;
|
|
|
131
133
|
export declare var Connection$: StaticStructureSchema;
|
|
132
134
|
export declare var ConnectionInput$: StaticStructureSchema;
|
|
133
135
|
export declare var ConnectionPasswordEncryption$: StaticStructureSchema;
|
|
136
|
+
export declare var ConnectionPropertiesConfiguration$: StaticStructureSchema;
|
|
134
137
|
export declare var ConnectionsList$: StaticStructureSchema;
|
|
135
138
|
export declare var ConnectionTypeBrief$: StaticStructureSchema;
|
|
136
139
|
export declare var ConnectionTypeVariant$: StaticStructureSchema;
|
|
140
|
+
export declare var ConnectorAuthenticationConfiguration$: StaticStructureSchema;
|
|
141
|
+
export declare var ConnectorAuthorizationCodeProperties$: StaticStructureSchema;
|
|
137
142
|
export declare var ConnectorDataSource$: StaticStructureSchema;
|
|
138
143
|
export declare var ConnectorDataTarget$: StaticStructureSchema;
|
|
144
|
+
export declare var ConnectorOAuth2Properties$: StaticStructureSchema;
|
|
145
|
+
export declare var ConnectorProperty$: StaticStructureSchema;
|
|
139
146
|
export declare var Crawl$: StaticStructureSchema;
|
|
140
147
|
export declare var Crawler$: StaticStructureSchema;
|
|
141
148
|
export declare var CrawlerHistory$: StaticStructureSchema;
|
|
@@ -210,6 +217,8 @@ export declare var CreateWorkflowRequest$: StaticStructureSchema;
|
|
|
210
217
|
export declare var CreateWorkflowResponse$: StaticStructureSchema;
|
|
211
218
|
export declare var CreateXMLClassifierRequest$: StaticStructureSchema;
|
|
212
219
|
export declare var CsvClassifier$: StaticStructureSchema;
|
|
220
|
+
export declare var CursorConfiguration$: StaticStructureSchema;
|
|
221
|
+
export declare var CustomAuthenticationProperties$: StaticStructureSchema;
|
|
213
222
|
export declare var CustomCode$: StaticStructureSchema;
|
|
214
223
|
export declare var CustomEntityType$: StaticStructureSchema;
|
|
215
224
|
export declare var Database$: StaticStructureSchema;
|
|
@@ -259,6 +268,8 @@ export declare var DeleteColumnStatisticsTaskSettingsRequest$: StaticStructureSc
|
|
|
259
268
|
export declare var DeleteColumnStatisticsTaskSettingsResponse$: StaticStructureSchema;
|
|
260
269
|
export declare var DeleteConnectionRequest$: StaticStructureSchema;
|
|
261
270
|
export declare var DeleteConnectionResponse$: StaticStructureSchema;
|
|
271
|
+
export declare var DeleteConnectionTypeRequest$: StaticStructureSchema;
|
|
272
|
+
export declare var DeleteConnectionTypeResponse$: StaticStructureSchema;
|
|
262
273
|
export declare var DeleteCrawlerRequest$: StaticStructureSchema;
|
|
263
274
|
export declare var DeleteCrawlerResponse$: StaticStructureSchema;
|
|
264
275
|
export declare var DeleteCustomEntityTypeRequest$: StaticStructureSchema;
|
|
@@ -340,6 +351,7 @@ export declare var Edge$: StaticStructureSchema;
|
|
|
340
351
|
export declare var EncryptionAtRest$: StaticStructureSchema;
|
|
341
352
|
export declare var EncryptionConfiguration$: StaticStructureSchema;
|
|
342
353
|
export declare var Entity$: StaticStructureSchema;
|
|
354
|
+
export declare var EntityConfiguration$: StaticStructureSchema;
|
|
343
355
|
export declare var EntityNotFoundException$: StaticErrorSchema;
|
|
344
356
|
export declare var ErrorDetail$: StaticStructureSchema;
|
|
345
357
|
export declare var ErrorDetails$: StaticStructureSchema;
|
|
@@ -350,6 +362,7 @@ export declare var EventBatchingCondition$: StaticStructureSchema;
|
|
|
350
362
|
export declare var ExecutionAttempt$: StaticStructureSchema;
|
|
351
363
|
export declare var ExecutionProperty$: StaticStructureSchema;
|
|
352
364
|
export declare var ExportLabelsTaskRunProperties$: StaticStructureSchema;
|
|
365
|
+
export declare var ExtractedParameter$: StaticStructureSchema;
|
|
353
366
|
export declare var FederatedCatalog$: StaticStructureSchema;
|
|
354
367
|
export declare var FederatedDatabase$: StaticStructureSchema;
|
|
355
368
|
export declare var FederatedResourceAlreadyExistsException$: StaticErrorSchema;
|
|
@@ -357,6 +370,7 @@ export declare var FederatedTable$: StaticStructureSchema;
|
|
|
357
370
|
export declare var FederationSourceException$: StaticErrorSchema;
|
|
358
371
|
export declare var FederationSourceRetryableException$: StaticErrorSchema;
|
|
359
372
|
export declare var Field$: StaticStructureSchema;
|
|
373
|
+
export declare var FieldDefinition$: StaticStructureSchema;
|
|
360
374
|
export declare var FillMissingValues$: StaticStructureSchema;
|
|
361
375
|
export declare var Filter$: StaticStructureSchema;
|
|
362
376
|
export declare var FilterExpression$: StaticStructureSchema;
|
|
@@ -588,6 +602,7 @@ export declare var JobUpdate$: StaticStructureSchema;
|
|
|
588
602
|
export declare var Join$: StaticStructureSchema;
|
|
589
603
|
export declare var JoinColumn$: StaticStructureSchema;
|
|
590
604
|
export declare var JsonClassifier$: StaticStructureSchema;
|
|
605
|
+
export declare var JWTBearerProperties$: StaticStructureSchema;
|
|
591
606
|
export declare var KafkaStreamingSourceOptions$: StaticStructureSchema;
|
|
592
607
|
export declare var KeySchemaElement$: StaticStructureSchema;
|
|
593
608
|
export declare var KinesisStreamingSourceOptions$: StaticStructureSchema;
|
|
@@ -682,6 +697,7 @@ export declare var OAuth2ClientApplication$: StaticStructureSchema;
|
|
|
682
697
|
export declare var OAuth2Credentials$: StaticStructureSchema;
|
|
683
698
|
export declare var OAuth2Properties$: StaticStructureSchema;
|
|
684
699
|
export declare var OAuth2PropertiesInput$: StaticStructureSchema;
|
|
700
|
+
export declare var OffsetConfiguration$: StaticStructureSchema;
|
|
685
701
|
export declare var OpenTableFormatInput$: StaticStructureSchema;
|
|
686
702
|
export declare var OperationNotSupportedException$: StaticErrorSchema;
|
|
687
703
|
export declare var OperationTimeoutException$: StaticErrorSchema;
|
|
@@ -692,6 +708,7 @@ export declare var Order$: StaticStructureSchema;
|
|
|
692
708
|
export declare var OrphanFileDeletionConfiguration$: StaticStructureSchema;
|
|
693
709
|
export declare var OrphanFileDeletionMetrics$: StaticStructureSchema;
|
|
694
710
|
export declare var OtherMetadataValueListItem$: StaticStructureSchema;
|
|
711
|
+
export declare var PaginationConfiguration$: StaticStructureSchema;
|
|
695
712
|
export declare var Partition$: StaticStructureSchema;
|
|
696
713
|
export declare var PartitionError$: StaticStructureSchema;
|
|
697
714
|
export declare var PartitionIndex$: StaticStructureSchema;
|
|
@@ -729,6 +746,8 @@ export declare var RecipeStep$: StaticStructureSchema;
|
|
|
729
746
|
export declare var RecrawlPolicy$: StaticStructureSchema;
|
|
730
747
|
export declare var RedshiftSource$: StaticStructureSchema;
|
|
731
748
|
export declare var RedshiftTarget$: StaticStructureSchema;
|
|
749
|
+
export declare var RegisterConnectionTypeRequest$: StaticStructureSchema;
|
|
750
|
+
export declare var RegisterConnectionTypeResponse$: StaticStructureSchema;
|
|
732
751
|
export declare var RegisterSchemaVersionInput$: StaticStructureSchema;
|
|
733
752
|
export declare var RegisterSchemaVersionResponse$: StaticStructureSchema;
|
|
734
753
|
export declare var RegistryId$: StaticStructureSchema;
|
|
@@ -743,6 +762,9 @@ export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
|
743
762
|
export declare var ResourceNotReadyException$: StaticErrorSchema;
|
|
744
763
|
export declare var ResourceNumberLimitExceededException$: StaticErrorSchema;
|
|
745
764
|
export declare var ResourceUri$: StaticStructureSchema;
|
|
765
|
+
export declare var ResponseConfiguration$: StaticStructureSchema;
|
|
766
|
+
export declare var ResponseExtractionMapping$: StaticStructureSchema;
|
|
767
|
+
export declare var RestConfiguration$: StaticStructureSchema;
|
|
746
768
|
export declare var ResumeWorkflowRunRequest$: StaticStructureSchema;
|
|
747
769
|
export declare var ResumeWorkflowRunResponse$: StaticStructureSchema;
|
|
748
770
|
export declare var RetentionConfiguration$: StaticStructureSchema;
|
|
@@ -802,6 +824,7 @@ export declare var SnowflakeNodeData$: StaticStructureSchema;
|
|
|
802
824
|
export declare var SnowflakeSource$: StaticStructureSchema;
|
|
803
825
|
export declare var SnowflakeTarget$: StaticStructureSchema;
|
|
804
826
|
export declare var SortCriterion$: StaticStructureSchema;
|
|
827
|
+
export declare var SourceConfiguration$: StaticStructureSchema;
|
|
805
828
|
export declare var SourceControlDetails$: StaticStructureSchema;
|
|
806
829
|
export declare var SourceProcessingProperties$: StaticStructureSchema;
|
|
807
830
|
export declare var SourceTableConfig$: StaticStructureSchema;
|
|
@@ -1048,6 +1071,7 @@ export declare var DeleteColumnStatisticsForPartition$: StaticOperationSchema;
|
|
|
1048
1071
|
export declare var DeleteColumnStatisticsForTable$: StaticOperationSchema;
|
|
1049
1072
|
export declare var DeleteColumnStatisticsTaskSettings$: StaticOperationSchema;
|
|
1050
1073
|
export declare var DeleteConnection$: StaticOperationSchema;
|
|
1074
|
+
export declare var DeleteConnectionType$: StaticOperationSchema;
|
|
1051
1075
|
export declare var DeleteCrawler$: StaticOperationSchema;
|
|
1052
1076
|
export declare var DeleteCustomEntityType$: StaticOperationSchema;
|
|
1053
1077
|
export declare var DeleteDatabase$: StaticOperationSchema;
|
|
@@ -1192,6 +1216,7 @@ export declare var PutResourcePolicy$: StaticOperationSchema;
|
|
|
1192
1216
|
export declare var PutSchemaVersionMetadata$: StaticOperationSchema;
|
|
1193
1217
|
export declare var PutWorkflowRunProperties$: StaticOperationSchema;
|
|
1194
1218
|
export declare var QuerySchemaVersionMetadata$: StaticOperationSchema;
|
|
1219
|
+
export declare var RegisterConnectionType$: StaticOperationSchema;
|
|
1195
1220
|
export declare var RegisterSchemaVersion$: StaticOperationSchema;
|
|
1196
1221
|
export declare var RemoveSchemaVersionMetadata$: StaticOperationSchema;
|
|
1197
1222
|
export declare var ResetJobBookmark$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-glue",
|
|
3
3
|
"description": "AWS SDK for JavaScript Glue Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.984.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-glue",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"@aws-sdk/middleware-user-agent": "^3.972.6",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
31
31
|
"@aws-sdk/types": "^3.973.1",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.984.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
34
34
|
"@aws-sdk/util-user-agent-node": "^3.972.4",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|