@aws-sdk/client-glue 3.864.0 → 3.869.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 +32 -0
- package/dist-cjs/index.js +149 -0
- package/dist-es/Glue.js +8 -0
- package/dist-es/commands/CreateGlueIdentityCenterConfigurationCommand.js +22 -0
- package/dist-es/commands/DeleteGlueIdentityCenterConfigurationCommand.js +22 -0
- package/dist-es/commands/GetGlueIdentityCenterConfigurationCommand.js +22 -0
- package/dist-es/commands/UpdateGlueIdentityCenterConfigurationCommand.js +22 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/protocols/Aws_json1_1.js +77 -0
- package/dist-types/Glue.d.ts +31 -0
- package/dist-types/GlueClient.d.ts +6 -2
- package/dist-types/commands/CreateGlueIdentityCenterConfigurationCommand.d.ts +94 -0
- package/dist-types/commands/CreateIntegrationCommand.d.ts +2 -0
- package/dist-types/commands/DeleteGlueIdentityCenterConfigurationCommand.d.ts +87 -0
- package/dist-types/commands/DescribeInboundIntegrationsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeIntegrationsCommand.d.ts +1 -0
- package/dist-types/commands/GetCatalogImportStatusCommand.d.ts +2 -1
- package/dist-types/commands/GetCatalogsCommand.d.ts +1 -1
- package/dist-types/commands/GetClassifierCommand.d.ts +1 -2
- package/dist-types/commands/GetGlueIdentityCenterConfigurationCommand.d.ts +93 -0
- package/dist-types/commands/ListTableOptimizerRunsCommand.d.ts +2 -1
- package/dist-types/commands/ListTriggersCommand.d.ts +1 -1
- package/dist-types/commands/ListUsageProfilesCommand.d.ts +1 -1
- package/dist-types/commands/ModifyIntegrationCommand.d.ts +14 -0
- package/dist-types/commands/UpdateGlueIdentityCenterConfigurationCommand.d.ts +90 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_1.d.ts +68 -69
- package/dist-types/models/models_2.d.ts +95 -130
- package/dist-types/models/models_3.d.ts +157 -2
- package/dist-types/protocols/Aws_json1_1.d.ts +36 -0
- package/dist-types/ts3.4/Glue.d.ts +95 -0
- package/dist-types/ts3.4/GlueClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/CreateGlueIdentityCenterConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteGlueIdentityCenterConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetCatalogImportStatusCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetCatalogsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetClassifierCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/GetGlueIdentityCenterConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListTableOptimizerRunsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListTriggersCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListUsageProfilesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateGlueIdentityCenterConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_1.d.ts +10 -17
- package/dist-types/ts3.4/models/models_2.d.ts +25 -32
- package/dist-types/ts3.4/models/models_3.d.ts +39 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +48 -0
- package/package.json +1 -1
|
@@ -21,7 +21,6 @@ import {
|
|
|
21
21
|
SchemaId,
|
|
22
22
|
StatisticAnnotation,
|
|
23
23
|
TableOptimizer,
|
|
24
|
-
TableOptimizerRun,
|
|
25
24
|
TableOptimizerType,
|
|
26
25
|
TimestampedInclusionAnnotation,
|
|
27
26
|
Trigger,
|
|
@@ -29,6 +28,8 @@ import {
|
|
|
29
28
|
} from "./models_0";
|
|
30
29
|
import {
|
|
31
30
|
Capabilities,
|
|
31
|
+
Catalog,
|
|
32
|
+
CatalogImportStatus,
|
|
32
33
|
CodeGenEdge,
|
|
33
34
|
CodeGenNode,
|
|
34
35
|
CodeGenNodeArg,
|
|
@@ -69,6 +70,23 @@ import {
|
|
|
69
70
|
Workflow,
|
|
70
71
|
WorkflowRun,
|
|
71
72
|
} from "./models_1";
|
|
73
|
+
export interface GetCatalogImportStatusResponse {
|
|
74
|
+
ImportStatus?: CatalogImportStatus | undefined;
|
|
75
|
+
}
|
|
76
|
+
export interface GetCatalogsRequest {
|
|
77
|
+
ParentCatalogId?: string | undefined;
|
|
78
|
+
NextToken?: string | undefined;
|
|
79
|
+
MaxResults?: number | undefined;
|
|
80
|
+
Recursive?: boolean | undefined;
|
|
81
|
+
IncludeRoot?: boolean | undefined;
|
|
82
|
+
}
|
|
83
|
+
export interface GetCatalogsResponse {
|
|
84
|
+
CatalogList: Catalog[] | undefined;
|
|
85
|
+
NextToken?: string | undefined;
|
|
86
|
+
}
|
|
87
|
+
export interface GetClassifierRequest {
|
|
88
|
+
Name: string | undefined;
|
|
89
|
+
}
|
|
72
90
|
export interface CsvClassifier {
|
|
73
91
|
Name: string | undefined;
|
|
74
92
|
CreationTime?: Date | undefined;
|
|
@@ -625,6 +643,12 @@ export interface GetEntityRecordsResponse {
|
|
|
625
643
|
Records?: __DocumentType[] | undefined;
|
|
626
644
|
NextToken?: string | undefined;
|
|
627
645
|
}
|
|
646
|
+
export interface GetGlueIdentityCenterConfigurationRequest {}
|
|
647
|
+
export interface GetGlueIdentityCenterConfigurationResponse {
|
|
648
|
+
ApplicationArn?: string | undefined;
|
|
649
|
+
InstanceArn?: string | undefined;
|
|
650
|
+
Scopes?: string[] | undefined;
|
|
651
|
+
}
|
|
628
652
|
export interface GetIntegrationResourcePropertyRequest {
|
|
629
653
|
ResourceArn: string | undefined;
|
|
630
654
|
}
|
|
@@ -1806,37 +1830,6 @@ export interface ListTableOptimizerRunsRequest {
|
|
|
1806
1830
|
MaxResults?: number | undefined;
|
|
1807
1831
|
NextToken?: string | undefined;
|
|
1808
1832
|
}
|
|
1809
|
-
export interface ListTableOptimizerRunsResponse {
|
|
1810
|
-
CatalogId?: string | undefined;
|
|
1811
|
-
DatabaseName?: string | undefined;
|
|
1812
|
-
TableName?: string | undefined;
|
|
1813
|
-
NextToken?: string | undefined;
|
|
1814
|
-
TableOptimizerRuns?: TableOptimizerRun[] | undefined;
|
|
1815
|
-
}
|
|
1816
|
-
export interface ListTriggersRequest {
|
|
1817
|
-
NextToken?: string | undefined;
|
|
1818
|
-
DependentJobName?: string | undefined;
|
|
1819
|
-
MaxResults?: number | undefined;
|
|
1820
|
-
Tags?: Record<string, string> | undefined;
|
|
1821
|
-
}
|
|
1822
|
-
export interface ListTriggersResponse {
|
|
1823
|
-
TriggerNames?: string[] | undefined;
|
|
1824
|
-
NextToken?: string | undefined;
|
|
1825
|
-
}
|
|
1826
|
-
export interface ListUsageProfilesRequest {
|
|
1827
|
-
NextToken?: string | undefined;
|
|
1828
|
-
MaxResults?: number | undefined;
|
|
1829
|
-
}
|
|
1830
|
-
export interface UsageProfileDefinition {
|
|
1831
|
-
Name?: string | undefined;
|
|
1832
|
-
Description?: string | undefined;
|
|
1833
|
-
CreatedOn?: Date | undefined;
|
|
1834
|
-
LastModifiedOn?: Date | undefined;
|
|
1835
|
-
}
|
|
1836
|
-
export interface ListUsageProfilesResponse {
|
|
1837
|
-
Profiles?: UsageProfileDefinition[] | undefined;
|
|
1838
|
-
NextToken?: string | undefined;
|
|
1839
|
-
}
|
|
1840
1833
|
export declare const GetDataQualityResultResponseFilterSensitiveLog: (
|
|
1841
1834
|
obj: GetDataQualityResultResponse
|
|
1842
1835
|
) => any;
|
|
@@ -104,6 +104,7 @@ import {
|
|
|
104
104
|
SplitFields,
|
|
105
105
|
StorageDescriptor,
|
|
106
106
|
TableOptimizerConfiguration,
|
|
107
|
+
TableOptimizerRun,
|
|
107
108
|
TableOptimizerType,
|
|
108
109
|
Trigger,
|
|
109
110
|
Union,
|
|
@@ -121,6 +122,7 @@ import {
|
|
|
121
122
|
IcebergPartitionSpec,
|
|
122
123
|
IcebergSchema,
|
|
123
124
|
IcebergSortOrder,
|
|
125
|
+
IntegrationConfig,
|
|
124
126
|
IntegrationError,
|
|
125
127
|
IntegrationStatus,
|
|
126
128
|
Permission,
|
|
@@ -151,6 +153,37 @@ import {
|
|
|
151
153
|
ViewDefinition,
|
|
152
154
|
ViewValidation,
|
|
153
155
|
} from "./models_2";
|
|
156
|
+
export interface ListTableOptimizerRunsResponse {
|
|
157
|
+
CatalogId?: string | undefined;
|
|
158
|
+
DatabaseName?: string | undefined;
|
|
159
|
+
TableName?: string | undefined;
|
|
160
|
+
NextToken?: string | undefined;
|
|
161
|
+
TableOptimizerRuns?: TableOptimizerRun[] | undefined;
|
|
162
|
+
}
|
|
163
|
+
export interface ListTriggersRequest {
|
|
164
|
+
NextToken?: string | undefined;
|
|
165
|
+
DependentJobName?: string | undefined;
|
|
166
|
+
MaxResults?: number | undefined;
|
|
167
|
+
Tags?: Record<string, string> | undefined;
|
|
168
|
+
}
|
|
169
|
+
export interface ListTriggersResponse {
|
|
170
|
+
TriggerNames?: string[] | undefined;
|
|
171
|
+
NextToken?: string | undefined;
|
|
172
|
+
}
|
|
173
|
+
export interface ListUsageProfilesRequest {
|
|
174
|
+
NextToken?: string | undefined;
|
|
175
|
+
MaxResults?: number | undefined;
|
|
176
|
+
}
|
|
177
|
+
export interface UsageProfileDefinition {
|
|
178
|
+
Name?: string | undefined;
|
|
179
|
+
Description?: string | undefined;
|
|
180
|
+
CreatedOn?: Date | undefined;
|
|
181
|
+
LastModifiedOn?: Date | undefined;
|
|
182
|
+
}
|
|
183
|
+
export interface ListUsageProfilesResponse {
|
|
184
|
+
Profiles?: UsageProfileDefinition[] | undefined;
|
|
185
|
+
NextToken?: string | undefined;
|
|
186
|
+
}
|
|
154
187
|
export interface ListWorkflowsRequest {
|
|
155
188
|
NextToken?: string | undefined;
|
|
156
189
|
MaxResults?: number | undefined;
|
|
@@ -163,6 +196,7 @@ export interface ModifyIntegrationRequest {
|
|
|
163
196
|
IntegrationIdentifier: string | undefined;
|
|
164
197
|
Description?: string | undefined;
|
|
165
198
|
DataFilter?: string | undefined;
|
|
199
|
+
IntegrationConfig?: IntegrationConfig | undefined;
|
|
166
200
|
IntegrationName?: string | undefined;
|
|
167
201
|
}
|
|
168
202
|
export interface ModifyIntegrationResponse {
|
|
@@ -178,6 +212,7 @@ export interface ModifyIntegrationResponse {
|
|
|
178
212
|
CreateTime: Date | undefined;
|
|
179
213
|
Errors?: IntegrationError[] | undefined;
|
|
180
214
|
DataFilter?: string | undefined;
|
|
215
|
+
IntegrationConfig?: IntegrationConfig | undefined;
|
|
181
216
|
}
|
|
182
217
|
export interface PutDataCatalogEncryptionSettingsRequest {
|
|
183
218
|
CatalogId?: string | undefined;
|
|
@@ -764,6 +799,10 @@ export interface UpdateDevEndpointRequest {
|
|
|
764
799
|
AddArguments?: Record<string, string> | undefined;
|
|
765
800
|
}
|
|
766
801
|
export interface UpdateDevEndpointResponse {}
|
|
802
|
+
export interface UpdateGlueIdentityCenterConfigurationRequest {
|
|
803
|
+
Scopes?: string[] | undefined;
|
|
804
|
+
}
|
|
805
|
+
export interface UpdateGlueIdentityCenterConfigurationResponse {}
|
|
767
806
|
export interface UpdateIntegrationResourcePropertyRequest {
|
|
768
807
|
ResourceArn: string | undefined;
|
|
769
808
|
SourceProcessingProperties?: SourceProcessingProperties | undefined;
|
|
@@ -135,6 +135,10 @@ import {
|
|
|
135
135
|
CreateDevEndpointCommandInput,
|
|
136
136
|
CreateDevEndpointCommandOutput,
|
|
137
137
|
} from "../commands/CreateDevEndpointCommand";
|
|
138
|
+
import {
|
|
139
|
+
CreateGlueIdentityCenterConfigurationCommandInput,
|
|
140
|
+
CreateGlueIdentityCenterConfigurationCommandOutput,
|
|
141
|
+
} from "../commands/CreateGlueIdentityCenterConfigurationCommand";
|
|
138
142
|
import {
|
|
139
143
|
CreateIntegrationCommandInput,
|
|
140
144
|
CreateIntegrationCommandOutput,
|
|
@@ -255,6 +259,10 @@ import {
|
|
|
255
259
|
DeleteDevEndpointCommandInput,
|
|
256
260
|
DeleteDevEndpointCommandOutput,
|
|
257
261
|
} from "../commands/DeleteDevEndpointCommand";
|
|
262
|
+
import {
|
|
263
|
+
DeleteGlueIdentityCenterConfigurationCommandInput,
|
|
264
|
+
DeleteGlueIdentityCenterConfigurationCommandOutput,
|
|
265
|
+
} from "../commands/DeleteGlueIdentityCenterConfigurationCommand";
|
|
258
266
|
import {
|
|
259
267
|
DeleteIntegrationCommandInput,
|
|
260
268
|
DeleteIntegrationCommandOutput,
|
|
@@ -475,6 +483,10 @@ import {
|
|
|
475
483
|
GetEntityRecordsCommandInput,
|
|
476
484
|
GetEntityRecordsCommandOutput,
|
|
477
485
|
} from "../commands/GetEntityRecordsCommand";
|
|
486
|
+
import {
|
|
487
|
+
GetGlueIdentityCenterConfigurationCommandInput,
|
|
488
|
+
GetGlueIdentityCenterConfigurationCommandOutput,
|
|
489
|
+
} from "../commands/GetGlueIdentityCenterConfigurationCommand";
|
|
478
490
|
import {
|
|
479
491
|
GetIntegrationResourcePropertyCommandInput,
|
|
480
492
|
GetIntegrationResourcePropertyCommandOutput,
|
|
@@ -955,6 +967,10 @@ import {
|
|
|
955
967
|
UpdateDevEndpointCommandInput,
|
|
956
968
|
UpdateDevEndpointCommandOutput,
|
|
957
969
|
} from "../commands/UpdateDevEndpointCommand";
|
|
970
|
+
import {
|
|
971
|
+
UpdateGlueIdentityCenterConfigurationCommandInput,
|
|
972
|
+
UpdateGlueIdentityCenterConfigurationCommandOutput,
|
|
973
|
+
} from "../commands/UpdateGlueIdentityCenterConfigurationCommand";
|
|
958
974
|
import {
|
|
959
975
|
UpdateIntegrationResourcePropertyCommandInput,
|
|
960
976
|
UpdateIntegrationResourcePropertyCommandOutput,
|
|
@@ -1147,6 +1163,10 @@ export declare const se_CreateDevEndpointCommand: (
|
|
|
1147
1163
|
input: CreateDevEndpointCommandInput,
|
|
1148
1164
|
context: __SerdeContext
|
|
1149
1165
|
) => Promise<__HttpRequest>;
|
|
1166
|
+
export declare const se_CreateGlueIdentityCenterConfigurationCommand: (
|
|
1167
|
+
input: CreateGlueIdentityCenterConfigurationCommandInput,
|
|
1168
|
+
context: __SerdeContext
|
|
1169
|
+
) => Promise<__HttpRequest>;
|
|
1150
1170
|
export declare const se_CreateIntegrationCommand: (
|
|
1151
1171
|
input: CreateIntegrationCommandInput,
|
|
1152
1172
|
context: __SerdeContext
|
|
@@ -1267,6 +1287,10 @@ export declare const se_DeleteDevEndpointCommand: (
|
|
|
1267
1287
|
input: DeleteDevEndpointCommandInput,
|
|
1268
1288
|
context: __SerdeContext
|
|
1269
1289
|
) => Promise<__HttpRequest>;
|
|
1290
|
+
export declare const se_DeleteGlueIdentityCenterConfigurationCommand: (
|
|
1291
|
+
input: DeleteGlueIdentityCenterConfigurationCommandInput,
|
|
1292
|
+
context: __SerdeContext
|
|
1293
|
+
) => Promise<__HttpRequest>;
|
|
1270
1294
|
export declare const se_DeleteIntegrationCommand: (
|
|
1271
1295
|
input: DeleteIntegrationCommandInput,
|
|
1272
1296
|
context: __SerdeContext
|
|
@@ -1487,6 +1511,10 @@ export declare const se_GetEntityRecordsCommand: (
|
|
|
1487
1511
|
input: GetEntityRecordsCommandInput,
|
|
1488
1512
|
context: __SerdeContext
|
|
1489
1513
|
) => Promise<__HttpRequest>;
|
|
1514
|
+
export declare const se_GetGlueIdentityCenterConfigurationCommand: (
|
|
1515
|
+
input: GetGlueIdentityCenterConfigurationCommandInput,
|
|
1516
|
+
context: __SerdeContext
|
|
1517
|
+
) => Promise<__HttpRequest>;
|
|
1490
1518
|
export declare const se_GetIntegrationResourcePropertyCommand: (
|
|
1491
1519
|
input: GetIntegrationResourcePropertyCommandInput,
|
|
1492
1520
|
context: __SerdeContext
|
|
@@ -1967,6 +1995,10 @@ export declare const se_UpdateDevEndpointCommand: (
|
|
|
1967
1995
|
input: UpdateDevEndpointCommandInput,
|
|
1968
1996
|
context: __SerdeContext
|
|
1969
1997
|
) => Promise<__HttpRequest>;
|
|
1998
|
+
export declare const se_UpdateGlueIdentityCenterConfigurationCommand: (
|
|
1999
|
+
input: UpdateGlueIdentityCenterConfigurationCommandInput,
|
|
2000
|
+
context: __SerdeContext
|
|
2001
|
+
) => Promise<__HttpRequest>;
|
|
1970
2002
|
export declare const se_UpdateIntegrationResourcePropertyCommand: (
|
|
1971
2003
|
input: UpdateIntegrationResourcePropertyCommandInput,
|
|
1972
2004
|
context: __SerdeContext
|
|
@@ -2159,6 +2191,10 @@ export declare const de_CreateDevEndpointCommand: (
|
|
|
2159
2191
|
output: __HttpResponse,
|
|
2160
2192
|
context: __SerdeContext
|
|
2161
2193
|
) => Promise<CreateDevEndpointCommandOutput>;
|
|
2194
|
+
export declare const de_CreateGlueIdentityCenterConfigurationCommand: (
|
|
2195
|
+
output: __HttpResponse,
|
|
2196
|
+
context: __SerdeContext
|
|
2197
|
+
) => Promise<CreateGlueIdentityCenterConfigurationCommandOutput>;
|
|
2162
2198
|
export declare const de_CreateIntegrationCommand: (
|
|
2163
2199
|
output: __HttpResponse,
|
|
2164
2200
|
context: __SerdeContext
|
|
@@ -2279,6 +2315,10 @@ export declare const de_DeleteDevEndpointCommand: (
|
|
|
2279
2315
|
output: __HttpResponse,
|
|
2280
2316
|
context: __SerdeContext
|
|
2281
2317
|
) => Promise<DeleteDevEndpointCommandOutput>;
|
|
2318
|
+
export declare const de_DeleteGlueIdentityCenterConfigurationCommand: (
|
|
2319
|
+
output: __HttpResponse,
|
|
2320
|
+
context: __SerdeContext
|
|
2321
|
+
) => Promise<DeleteGlueIdentityCenterConfigurationCommandOutput>;
|
|
2282
2322
|
export declare const de_DeleteIntegrationCommand: (
|
|
2283
2323
|
output: __HttpResponse,
|
|
2284
2324
|
context: __SerdeContext
|
|
@@ -2499,6 +2539,10 @@ export declare const de_GetEntityRecordsCommand: (
|
|
|
2499
2539
|
output: __HttpResponse,
|
|
2500
2540
|
context: __SerdeContext
|
|
2501
2541
|
) => Promise<GetEntityRecordsCommandOutput>;
|
|
2542
|
+
export declare const de_GetGlueIdentityCenterConfigurationCommand: (
|
|
2543
|
+
output: __HttpResponse,
|
|
2544
|
+
context: __SerdeContext
|
|
2545
|
+
) => Promise<GetGlueIdentityCenterConfigurationCommandOutput>;
|
|
2502
2546
|
export declare const de_GetIntegrationResourcePropertyCommand: (
|
|
2503
2547
|
output: __HttpResponse,
|
|
2504
2548
|
context: __SerdeContext
|
|
@@ -2979,6 +3023,10 @@ export declare const de_UpdateDevEndpointCommand: (
|
|
|
2979
3023
|
output: __HttpResponse,
|
|
2980
3024
|
context: __SerdeContext
|
|
2981
3025
|
) => Promise<UpdateDevEndpointCommandOutput>;
|
|
3026
|
+
export declare const de_UpdateGlueIdentityCenterConfigurationCommand: (
|
|
3027
|
+
output: __HttpResponse,
|
|
3028
|
+
context: __SerdeContext
|
|
3029
|
+
) => Promise<UpdateGlueIdentityCenterConfigurationCommandOutput>;
|
|
2982
3030
|
export declare const de_UpdateIntegrationResourcePropertyCommand: (
|
|
2983
3031
|
output: __HttpResponse,
|
|
2984
3032
|
context: __SerdeContext
|
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.869.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-glue",
|