@aws-sdk/client-glue 3.940.0 → 3.943.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.
@@ -14,9 +14,11 @@ import {
14
14
  FieldName,
15
15
  FilterOperator,
16
16
  FunctionType,
17
+ IcebergUpdateAction,
17
18
  InclusionAnnotationValue,
18
19
  IntegrationStatus,
19
20
  Language,
21
+ LastRefreshType,
20
22
  PartitionIndexStatus,
21
23
  Permission,
22
24
  PermissionType,
@@ -395,7 +397,12 @@ export interface ViewRepresentation {
395
397
  export interface ViewDefinition {
396
398
  IsProtected?: boolean | undefined;
397
399
  Definer?: string | undefined;
400
+ ViewVersionId?: number | undefined;
401
+ ViewVersionToken?: string | undefined;
402
+ RefreshSeconds?: number | undefined;
403
+ LastRefreshType?: LastRefreshType | undefined;
398
404
  SubObjects?: string[] | undefined;
405
+ SubObjectVersionIds?: number[] | undefined;
399
406
  Representations?: ViewRepresentation[] | undefined;
400
407
  }
401
408
  export interface GetTableOptimizerRequest {
@@ -1575,12 +1582,21 @@ export interface UpdateSourceControlFromJobRequest {
1575
1582
  export interface UpdateSourceControlFromJobResponse {
1576
1583
  JobName?: string | undefined;
1577
1584
  }
1585
+ export interface IcebergEncryptedKey {
1586
+ KeyId: string | undefined;
1587
+ EncryptedKeyMetadata: string | undefined;
1588
+ EncryptedById?: string | undefined;
1589
+ Properties?: Record<string, string> | undefined;
1590
+ }
1578
1591
  export interface IcebergTableUpdate {
1579
1592
  Schema: IcebergSchema | undefined;
1580
1593
  PartitionSpec?: IcebergPartitionSpec | undefined;
1581
1594
  SortOrder?: IcebergSortOrder | undefined;
1582
1595
  Location: string | undefined;
1583
1596
  Properties?: Record<string, string> | undefined;
1597
+ Action?: IcebergUpdateAction | undefined;
1598
+ EncryptionKey?: IcebergEncryptedKey | undefined;
1599
+ KeyId?: string | undefined;
1584
1600
  }
1585
1601
  export interface UpdateIcebergTableInput {
1586
1602
  Updates: IcebergTableUpdate[] | undefined;
@@ -1624,6 +1640,3 @@ export interface UpdateTriggerRequest {
1624
1640
  Name: string | undefined;
1625
1641
  TriggerUpdate: TriggerUpdate | undefined;
1626
1642
  }
1627
- export interface UpdateTriggerResponse {
1628
- Trigger?: Trigger | undefined;
1629
- }
@@ -92,6 +92,7 @@ import {
92
92
  Spigot,
93
93
  SplitFields,
94
94
  StorageDescriptor,
95
+ Trigger,
95
96
  Union,
96
97
  } from "./models_0";
97
98
  import {
@@ -105,6 +106,9 @@ import {
105
106
  ViewDefinition,
106
107
  ViewValidation,
107
108
  } from "./models_2";
109
+ export interface UpdateTriggerResponse {
110
+ Trigger?: Trigger | undefined;
111
+ }
108
112
  export interface UpdateUsageProfileRequest {
109
113
  Name: string | undefined;
110
114
  Description?: string | undefined;
@@ -170,6 +174,7 @@ export interface Table {
170
174
  FederatedTable?: FederatedTable | undefined;
171
175
  ViewDefinition?: ViewDefinition | undefined;
172
176
  IsMultiDialectView?: boolean | undefined;
177
+ IsMaterializedView?: boolean | undefined;
173
178
  Status?: TableStatus | undefined;
174
179
  }
175
180
  export interface TableStatus {
@@ -273,6 +278,7 @@ export interface GetUnfilteredTableMetadataResponse {
273
278
  CellFilters?: ColumnRowFilter[] | undefined;
274
279
  QueryAuthorizationId?: string | undefined;
275
280
  IsMultiDialectView?: boolean | undefined;
281
+ IsMaterializedView?: boolean | undefined;
276
282
  ResourceArn?: string | undefined;
277
283
  IsProtected?: boolean | undefined;
278
284
  Permissions?: Permission[] | undefined;
@@ -544,6 +544,7 @@ export declare var GroupFilters: StaticStructureSchema;
544
544
  export declare var HudiTarget: StaticStructureSchema;
545
545
  export declare var IcebergCompactionConfiguration: StaticStructureSchema;
546
546
  export declare var IcebergCompactionMetrics: StaticStructureSchema;
547
+ export declare var IcebergEncryptedKey: StaticStructureSchema;
547
548
  export declare var IcebergInput: StaticStructureSchema;
548
549
  export declare var IcebergOptimizationProperties: StaticStructureSchema;
549
550
  export declare var IcebergOptimizationPropertiesOutput: StaticStructureSchema;
@@ -1194,6 +1195,7 @@ export declare var ValueStringList: number;
1194
1195
  export declare var ViewRepresentationInputList: StaticListSchema;
1195
1196
  export declare var ViewRepresentationList: StaticListSchema;
1196
1197
  export declare var ViewSubObjectsList: number;
1198
+ export declare var ViewSubObjectVersionIdsList: number;
1197
1199
  export declare var ViewValidationList: StaticListSchema;
1198
1200
  export declare var WorkflowNames: number;
1199
1201
  export declare var WorkflowRuns: StaticListSchema;
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.940.0",
4
+ "version": "3.943.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",
@@ -20,17 +20,17 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.940.0",
24
- "@aws-sdk/credential-provider-node": "3.940.0",
23
+ "@aws-sdk/core": "3.943.0",
24
+ "@aws-sdk/credential-provider-node": "3.943.0",
25
25
  "@aws-sdk/middleware-host-header": "3.936.0",
26
26
  "@aws-sdk/middleware-logger": "3.936.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.936.0",
28
- "@aws-sdk/middleware-user-agent": "3.940.0",
28
+ "@aws-sdk/middleware-user-agent": "3.943.0",
29
29
  "@aws-sdk/region-config-resolver": "3.936.0",
30
30
  "@aws-sdk/types": "3.936.0",
31
31
  "@aws-sdk/util-endpoints": "3.936.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.936.0",
33
- "@aws-sdk/util-user-agent-node": "3.940.0",
33
+ "@aws-sdk/util-user-agent-node": "3.943.0",
34
34
  "@smithy/config-resolver": "^4.4.3",
35
35
  "@smithy/core": "^3.18.5",
36
36
  "@smithy/fetch-http-handler": "^5.3.6",