@aws-sdk/client-glue 3.1097.0 → 3.1098.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/dist-cjs/index.js +75 -29
- package/dist-es/models/enums.js +4 -0
- package/dist-es/schemas/schemas_0.js +66 -28
- package/dist-types/commands/DescribeConnectionTypeCommand.d.ts +68 -0
- package/dist-types/commands/GetDataCatalogEncryptionSettingsCommand.d.ts +2 -1
- package/dist-types/commands/GetDataflowGraphCommand.d.ts +1 -1
- package/dist-types/commands/RegisterConnectionTypeCommand.d.ts +67 -0
- package/dist-types/commands/SearchAssetsCommand.d.ts +1 -2
- package/dist-types/models/enums.d.ts +12 -0
- package/dist-types/models/models_1.d.ts +145 -56
- package/dist-types/models/models_2.d.ts +57 -85
- package/dist-types/models/models_3.d.ts +85 -2
- package/dist-types/schemas/schemas_0.d.ts +4 -0
- package/dist-types/ts3.4/commands/GetDataCatalogEncryptionSettingsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetDataflowGraphCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SearchAssetsCommand.d.ts +1 -2
- package/dist-types/ts3.4/models/enums.d.ts +5 -0
- package/dist-types/ts3.4/models/models_1.d.ts +33 -14
- package/dist-types/ts3.4/models/models_2.d.ts +18 -22
- package/dist-types/ts3.4/models/models_3.d.ts +22 -2
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +4 -0
- package/package.json +6 -6
|
@@ -32,7 +32,6 @@ import {
|
|
|
32
32
|
SchemaStatus,
|
|
33
33
|
SchemaVersionStatus,
|
|
34
34
|
SearchFilterOperator,
|
|
35
|
-
SearchSortOrder,
|
|
36
35
|
SortDirectionType,
|
|
37
36
|
StatementState,
|
|
38
37
|
StatisticEvaluationLevel,
|
|
@@ -78,10 +77,13 @@ import {
|
|
|
78
77
|
} from "./models_0";
|
|
79
78
|
import {
|
|
80
79
|
Capabilities,
|
|
80
|
+
CodeGenEdge,
|
|
81
|
+
CodeGenNode,
|
|
81
82
|
CodeGenNodeArg,
|
|
83
|
+
ConnectionPasswordEncryption,
|
|
82
84
|
ConnectorProperty,
|
|
83
|
-
DataCatalogEncryptionSettings,
|
|
84
85
|
DataQualityTargetTable,
|
|
86
|
+
EncryptionAtRest,
|
|
85
87
|
EncryptionConfiguration,
|
|
86
88
|
IcebergPartitionSpec,
|
|
87
89
|
IcebergSchema,
|
|
@@ -101,6 +103,20 @@ import {
|
|
|
101
103
|
TransformEncryption,
|
|
102
104
|
TransformParameters,
|
|
103
105
|
} from "./models_1";
|
|
106
|
+
export interface DataCatalogEncryptionSettings {
|
|
107
|
+
EncryptionAtRest?: EncryptionAtRest | undefined;
|
|
108
|
+
ConnectionPasswordEncryption?: ConnectionPasswordEncryption | undefined;
|
|
109
|
+
}
|
|
110
|
+
export interface GetDataCatalogEncryptionSettingsResponse {
|
|
111
|
+
DataCatalogEncryptionSettings?: DataCatalogEncryptionSettings | undefined;
|
|
112
|
+
}
|
|
113
|
+
export interface GetDataflowGraphRequest {
|
|
114
|
+
PythonScript?: string | undefined;
|
|
115
|
+
}
|
|
116
|
+
export interface GetDataflowGraphResponse {
|
|
117
|
+
DagNodes?: CodeGenNode[] | undefined;
|
|
118
|
+
DagEdges?: CodeGenEdge[] | undefined;
|
|
119
|
+
}
|
|
104
120
|
export interface GetDataQualityModelRequest {
|
|
105
121
|
StatisticId?: string | undefined;
|
|
106
122
|
ProfileId: string | undefined;
|
|
@@ -1799,23 +1815,3 @@ export declare namespace SearchMapFilterValue {
|
|
|
1799
1815
|
_: (name: string, value: any) => T;
|
|
1800
1816
|
}
|
|
1801
1817
|
}
|
|
1802
|
-
export interface SearchMapFilter {
|
|
1803
|
-
Attribute: string | undefined;
|
|
1804
|
-
Key: string | undefined;
|
|
1805
|
-
Value: SearchMapFilterValue | undefined;
|
|
1806
|
-
}
|
|
1807
|
-
export interface SearchSort {
|
|
1808
|
-
Attribute: string | undefined;
|
|
1809
|
-
Order?: SearchSortOrder | undefined;
|
|
1810
|
-
}
|
|
1811
|
-
export interface SearchResultItem {
|
|
1812
|
-
Id?: string | undefined;
|
|
1813
|
-
AssetName?: string | undefined;
|
|
1814
|
-
AssetDescription?: string | undefined;
|
|
1815
|
-
UpdatedAt?: Date | undefined;
|
|
1816
|
-
AssetTypeId?: string | undefined;
|
|
1817
|
-
}
|
|
1818
|
-
export interface SearchAssetsOutput {
|
|
1819
|
-
Items?: SearchResultItem[] | undefined;
|
|
1820
|
-
NextToken?: string | undefined;
|
|
1821
|
-
}
|
|
@@ -12,6 +12,7 @@ import {
|
|
|
12
12
|
ResourceAction,
|
|
13
13
|
ResourceShareType,
|
|
14
14
|
ResourceState,
|
|
15
|
+
SearchSortOrder,
|
|
15
16
|
Sort,
|
|
16
17
|
SourceControlAuthStrategy,
|
|
17
18
|
SourceControlProvider,
|
|
@@ -148,11 +149,30 @@ import {
|
|
|
148
149
|
IcebergTableMetadata,
|
|
149
150
|
SchemaVersionNumber,
|
|
150
151
|
SearchAttributeFilter,
|
|
151
|
-
|
|
152
|
-
SearchSort,
|
|
152
|
+
SearchMapFilterValue,
|
|
153
153
|
ViewDefinition,
|
|
154
154
|
ViewValidation,
|
|
155
155
|
} from "./models_2";
|
|
156
|
+
export interface SearchMapFilter {
|
|
157
|
+
Attribute: string | undefined;
|
|
158
|
+
Key: string | undefined;
|
|
159
|
+
Value: SearchMapFilterValue | undefined;
|
|
160
|
+
}
|
|
161
|
+
export interface SearchSort {
|
|
162
|
+
Attribute: string | undefined;
|
|
163
|
+
Order?: SearchSortOrder | undefined;
|
|
164
|
+
}
|
|
165
|
+
export interface SearchResultItem {
|
|
166
|
+
Id?: string | undefined;
|
|
167
|
+
AssetName?: string | undefined;
|
|
168
|
+
AssetDescription?: string | undefined;
|
|
169
|
+
UpdatedAt?: Date | undefined;
|
|
170
|
+
AssetTypeId?: string | undefined;
|
|
171
|
+
}
|
|
172
|
+
export interface SearchAssetsOutput {
|
|
173
|
+
Items?: SearchResultItem[] | undefined;
|
|
174
|
+
NextToken?: string | undefined;
|
|
175
|
+
}
|
|
156
176
|
export interface PropertyPredicate {
|
|
157
177
|
Key?: string | undefined;
|
|
158
178
|
Value?: string | undefined;
|
|
@@ -129,6 +129,7 @@ export declare var BatchUpdatePartitionFailureEntry$: StaticStructureSchema;
|
|
|
129
129
|
export declare var BatchUpdatePartitionRequest$: StaticStructureSchema;
|
|
130
130
|
export declare var BatchUpdatePartitionRequestEntry$: StaticStructureSchema;
|
|
131
131
|
export declare var BatchUpdatePartitionResponse$: StaticStructureSchema;
|
|
132
|
+
export declare var BetweenConfiguration$: StaticStructureSchema;
|
|
132
133
|
export declare var BinaryColumnStatisticsData$: StaticStructureSchema;
|
|
133
134
|
export declare var Blueprint$: StaticStructureSchema;
|
|
134
135
|
export declare var BlueprintDetails$: StaticStructureSchema;
|
|
@@ -442,7 +443,10 @@ export declare var Field$: StaticStructureSchema;
|
|
|
442
443
|
export declare var FieldDefinition$: StaticStructureSchema;
|
|
443
444
|
export declare var FillMissingValues$: StaticStructureSchema;
|
|
444
445
|
export declare var Filter$: StaticStructureSchema;
|
|
446
|
+
export declare var FilterConfiguration$: StaticStructureSchema;
|
|
445
447
|
export declare var FilterExpression$: StaticStructureSchema;
|
|
448
|
+
export declare var FilterOverrides$: StaticStructureSchema;
|
|
449
|
+
export declare var FilterStringConfiguration$: StaticStructureSchema;
|
|
446
450
|
export declare var FilterValue$: StaticStructureSchema;
|
|
447
451
|
export declare var FindMatchesMetrics$: StaticStructureSchema;
|
|
448
452
|
export declare var FindMatchesParameters$: StaticStructureSchema;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-glue",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1098.0",
|
|
4
4
|
"description": "AWS SDK for JavaScript Glue Client for Node.js, Browser and React Native",
|
|
5
5
|
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-glue",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -46,12 +46,12 @@
|
|
|
46
46
|
"test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@aws-sdk/core": "^3.977.
|
|
50
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
49
|
+
"@aws-sdk/core": "^3.977.3",
|
|
50
|
+
"@aws-sdk/credential-provider-node": "^3.972.75",
|
|
51
51
|
"@aws-sdk/types": "^3.974.2",
|
|
52
|
-
"@smithy/core": "^3.
|
|
53
|
-
"@smithy/fetch-http-handler": "^5.6.
|
|
54
|
-
"@smithy/node-http-handler": "^4.9.
|
|
52
|
+
"@smithy/core": "^3.31.1",
|
|
53
|
+
"@smithy/fetch-http-handler": "^5.6.13",
|
|
54
|
+
"@smithy/node-http-handler": "^4.9.13",
|
|
55
55
|
"@smithy/types": "^4.16.1",
|
|
56
56
|
"tslib": "^2.6.2"
|
|
57
57
|
},
|