aws-sdk-glue 1.243.0 → 1.244.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glue/client.rb +73 -1
- data/lib/aws-sdk-glue/client_api.rb +33 -0
- data/lib/aws-sdk-glue/types.rb +148 -52
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/client.rbs +32 -5
- data/sig/types.rbs +25 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3c6e2940ff8ff1759b741dceb3cd77ff694bc0ddc180d8af1c11ab2493a30a03
|
|
4
|
+
data.tar.gz: 1ccd2e5b9167ea5bb92aa517a8612b2d35d6eec7c335c2a45532ec62654b3fdc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6f1584271e29c186f6c460dbb28a64563b173d7df0d06c25604844178aceccc51d07b769a50988817ada74e4e55ef93ea495ca457b6272bf459d9749022457d3
|
|
7
|
+
data.tar.gz: 326c39c10ea5286b66e1dcf6509185c40ce686f105fdd612170229b00b8b03ad56045bce27d5ae8f285ddf0f0f5bc5f378bbfb785389e5527c4a3440a1d48ee3
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.244.0 (2025-12-01)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - feature: Glue: Add support for Iceberg materialized view in Glue Data Catalog, including updated CreateTable API to support materialized views and new APIs for managing data refresh for materialized views.
|
|
8
|
+
feature: Glue: Add support for Iceberg table encryption keys and struct field defaults.
|
|
9
|
+
|
|
4
10
|
1.243.0 (2025-11-21)
|
|
5
11
|
------------------
|
|
6
12
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.244.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
|
@@ -4411,7 +4411,12 @@ module Aws::Glue
|
|
|
4411
4411
|
# view_expanded_text: "ViewTextString",
|
|
4412
4412
|
# },
|
|
4413
4413
|
# ],
|
|
4414
|
+
# view_version_id: 1,
|
|
4415
|
+
# view_version_token: "VersionString",
|
|
4416
|
+
# refresh_seconds: 1,
|
|
4417
|
+
# last_refresh_type: "FULL", # accepts FULL, INCREMENTAL
|
|
4414
4418
|
# sub_objects: ["ArnString"],
|
|
4419
|
+
# sub_object_version_ids: [1],
|
|
4415
4420
|
# },
|
|
4416
4421
|
# },
|
|
4417
4422
|
# partition_indexes: [
|
|
@@ -4439,6 +4444,10 @@ module Aws::Glue
|
|
|
4439
4444
|
# },
|
|
4440
4445
|
# required: false, # required
|
|
4441
4446
|
# doc: "CommentString",
|
|
4447
|
+
# initial_default: {
|
|
4448
|
+
# },
|
|
4449
|
+
# write_default: {
|
|
4450
|
+
# },
|
|
4442
4451
|
# },
|
|
4443
4452
|
# ],
|
|
4444
4453
|
# },
|
|
@@ -10303,8 +10312,14 @@ module Aws::Glue
|
|
|
10303
10312
|
# resp.table.federated_table.connection_type #=> String
|
|
10304
10313
|
# resp.table.view_definition.is_protected #=> Boolean
|
|
10305
10314
|
# resp.table.view_definition.definer #=> String
|
|
10315
|
+
# resp.table.view_definition.view_version_id #=> Integer
|
|
10316
|
+
# resp.table.view_definition.view_version_token #=> String
|
|
10317
|
+
# resp.table.view_definition.refresh_seconds #=> Integer
|
|
10318
|
+
# resp.table.view_definition.last_refresh_type #=> String, one of "FULL", "INCREMENTAL"
|
|
10306
10319
|
# resp.table.view_definition.sub_objects #=> Array
|
|
10307
10320
|
# resp.table.view_definition.sub_objects[0] #=> String
|
|
10321
|
+
# resp.table.view_definition.sub_object_version_ids #=> Array
|
|
10322
|
+
# resp.table.view_definition.sub_object_version_ids[0] #=> Integer
|
|
10308
10323
|
# resp.table.view_definition.representations #=> Array
|
|
10309
10324
|
# resp.table.view_definition.representations[0].dialect #=> String, one of "REDSHIFT", "ATHENA", "SPARK"
|
|
10310
10325
|
# resp.table.view_definition.representations[0].dialect_version #=> String
|
|
@@ -10313,6 +10328,7 @@ module Aws::Glue
|
|
|
10313
10328
|
# resp.table.view_definition.representations[0].validation_connection #=> String
|
|
10314
10329
|
# resp.table.view_definition.representations[0].is_stale #=> Boolean
|
|
10315
10330
|
# resp.table.is_multi_dialect_view #=> Boolean
|
|
10331
|
+
# resp.table.is_materialized_view #=> Boolean
|
|
10316
10332
|
# resp.table.status.requested_by #=> String
|
|
10317
10333
|
# resp.table.status.updated_by #=> String
|
|
10318
10334
|
# resp.table.status.request_time #=> Time
|
|
@@ -10528,8 +10544,14 @@ module Aws::Glue
|
|
|
10528
10544
|
# resp.table_version.table.federated_table.connection_type #=> String
|
|
10529
10545
|
# resp.table_version.table.view_definition.is_protected #=> Boolean
|
|
10530
10546
|
# resp.table_version.table.view_definition.definer #=> String
|
|
10547
|
+
# resp.table_version.table.view_definition.view_version_id #=> Integer
|
|
10548
|
+
# resp.table_version.table.view_definition.view_version_token #=> String
|
|
10549
|
+
# resp.table_version.table.view_definition.refresh_seconds #=> Integer
|
|
10550
|
+
# resp.table_version.table.view_definition.last_refresh_type #=> String, one of "FULL", "INCREMENTAL"
|
|
10531
10551
|
# resp.table_version.table.view_definition.sub_objects #=> Array
|
|
10532
10552
|
# resp.table_version.table.view_definition.sub_objects[0] #=> String
|
|
10553
|
+
# resp.table_version.table.view_definition.sub_object_version_ids #=> Array
|
|
10554
|
+
# resp.table_version.table.view_definition.sub_object_version_ids[0] #=> Integer
|
|
10533
10555
|
# resp.table_version.table.view_definition.representations #=> Array
|
|
10534
10556
|
# resp.table_version.table.view_definition.representations[0].dialect #=> String, one of "REDSHIFT", "ATHENA", "SPARK"
|
|
10535
10557
|
# resp.table_version.table.view_definition.representations[0].dialect_version #=> String
|
|
@@ -10538,6 +10560,7 @@ module Aws::Glue
|
|
|
10538
10560
|
# resp.table_version.table.view_definition.representations[0].validation_connection #=> String
|
|
10539
10561
|
# resp.table_version.table.view_definition.representations[0].is_stale #=> Boolean
|
|
10540
10562
|
# resp.table_version.table.is_multi_dialect_view #=> Boolean
|
|
10563
|
+
# resp.table_version.table.is_materialized_view #=> Boolean
|
|
10541
10564
|
# resp.table_version.table.status.requested_by #=> String
|
|
10542
10565
|
# resp.table_version.table.status.updated_by #=> String
|
|
10543
10566
|
# resp.table_version.table.status.request_time #=> Time
|
|
@@ -10677,8 +10700,14 @@ module Aws::Glue
|
|
|
10677
10700
|
# resp.table_versions[0].table.federated_table.connection_type #=> String
|
|
10678
10701
|
# resp.table_versions[0].table.view_definition.is_protected #=> Boolean
|
|
10679
10702
|
# resp.table_versions[0].table.view_definition.definer #=> String
|
|
10703
|
+
# resp.table_versions[0].table.view_definition.view_version_id #=> Integer
|
|
10704
|
+
# resp.table_versions[0].table.view_definition.view_version_token #=> String
|
|
10705
|
+
# resp.table_versions[0].table.view_definition.refresh_seconds #=> Integer
|
|
10706
|
+
# resp.table_versions[0].table.view_definition.last_refresh_type #=> String, one of "FULL", "INCREMENTAL"
|
|
10680
10707
|
# resp.table_versions[0].table.view_definition.sub_objects #=> Array
|
|
10681
10708
|
# resp.table_versions[0].table.view_definition.sub_objects[0] #=> String
|
|
10709
|
+
# resp.table_versions[0].table.view_definition.sub_object_version_ids #=> Array
|
|
10710
|
+
# resp.table_versions[0].table.view_definition.sub_object_version_ids[0] #=> Integer
|
|
10682
10711
|
# resp.table_versions[0].table.view_definition.representations #=> Array
|
|
10683
10712
|
# resp.table_versions[0].table.view_definition.representations[0].dialect #=> String, one of "REDSHIFT", "ATHENA", "SPARK"
|
|
10684
10713
|
# resp.table_versions[0].table.view_definition.representations[0].dialect_version #=> String
|
|
@@ -10687,6 +10716,7 @@ module Aws::Glue
|
|
|
10687
10716
|
# resp.table_versions[0].table.view_definition.representations[0].validation_connection #=> String
|
|
10688
10717
|
# resp.table_versions[0].table.view_definition.representations[0].is_stale #=> Boolean
|
|
10689
10718
|
# resp.table_versions[0].table.is_multi_dialect_view #=> Boolean
|
|
10719
|
+
# resp.table_versions[0].table.is_materialized_view #=> Boolean
|
|
10690
10720
|
# resp.table_versions[0].table.status.requested_by #=> String
|
|
10691
10721
|
# resp.table_versions[0].table.status.updated_by #=> String
|
|
10692
10722
|
# resp.table_versions[0].table.status.request_time #=> Time
|
|
@@ -10866,8 +10896,14 @@ module Aws::Glue
|
|
|
10866
10896
|
# resp.table_list[0].federated_table.connection_type #=> String
|
|
10867
10897
|
# resp.table_list[0].view_definition.is_protected #=> Boolean
|
|
10868
10898
|
# resp.table_list[0].view_definition.definer #=> String
|
|
10899
|
+
# resp.table_list[0].view_definition.view_version_id #=> Integer
|
|
10900
|
+
# resp.table_list[0].view_definition.view_version_token #=> String
|
|
10901
|
+
# resp.table_list[0].view_definition.refresh_seconds #=> Integer
|
|
10902
|
+
# resp.table_list[0].view_definition.last_refresh_type #=> String, one of "FULL", "INCREMENTAL"
|
|
10869
10903
|
# resp.table_list[0].view_definition.sub_objects #=> Array
|
|
10870
10904
|
# resp.table_list[0].view_definition.sub_objects[0] #=> String
|
|
10905
|
+
# resp.table_list[0].view_definition.sub_object_version_ids #=> Array
|
|
10906
|
+
# resp.table_list[0].view_definition.sub_object_version_ids[0] #=> Integer
|
|
10871
10907
|
# resp.table_list[0].view_definition.representations #=> Array
|
|
10872
10908
|
# resp.table_list[0].view_definition.representations[0].dialect #=> String, one of "REDSHIFT", "ATHENA", "SPARK"
|
|
10873
10909
|
# resp.table_list[0].view_definition.representations[0].dialect_version #=> String
|
|
@@ -10876,6 +10912,7 @@ module Aws::Glue
|
|
|
10876
10912
|
# resp.table_list[0].view_definition.representations[0].validation_connection #=> String
|
|
10877
10913
|
# resp.table_list[0].view_definition.representations[0].is_stale #=> Boolean
|
|
10878
10914
|
# resp.table_list[0].is_multi_dialect_view #=> Boolean
|
|
10915
|
+
# resp.table_list[0].is_materialized_view #=> Boolean
|
|
10879
10916
|
# resp.table_list[0].status.requested_by #=> String
|
|
10880
10917
|
# resp.table_list[0].status.updated_by #=> String
|
|
10881
10918
|
# resp.table_list[0].status.request_time #=> Time
|
|
@@ -11495,6 +11532,7 @@ module Aws::Glue
|
|
|
11495
11532
|
# * {Types::GetUnfilteredTableMetadataResponse#cell_filters #cell_filters} => Array<Types::ColumnRowFilter>
|
|
11496
11533
|
# * {Types::GetUnfilteredTableMetadataResponse#query_authorization_id #query_authorization_id} => String
|
|
11497
11534
|
# * {Types::GetUnfilteredTableMetadataResponse#is_multi_dialect_view #is_multi_dialect_view} => Boolean
|
|
11535
|
+
# * {Types::GetUnfilteredTableMetadataResponse#is_materialized_view #is_materialized_view} => Boolean
|
|
11498
11536
|
# * {Types::GetUnfilteredTableMetadataResponse#resource_arn #resource_arn} => String
|
|
11499
11537
|
# * {Types::GetUnfilteredTableMetadataResponse#is_protected #is_protected} => Boolean
|
|
11500
11538
|
# * {Types::GetUnfilteredTableMetadataResponse#permissions #permissions} => Array<String>
|
|
@@ -11603,8 +11641,14 @@ module Aws::Glue
|
|
|
11603
11641
|
# resp.table.federated_table.connection_type #=> String
|
|
11604
11642
|
# resp.table.view_definition.is_protected #=> Boolean
|
|
11605
11643
|
# resp.table.view_definition.definer #=> String
|
|
11644
|
+
# resp.table.view_definition.view_version_id #=> Integer
|
|
11645
|
+
# resp.table.view_definition.view_version_token #=> String
|
|
11646
|
+
# resp.table.view_definition.refresh_seconds #=> Integer
|
|
11647
|
+
# resp.table.view_definition.last_refresh_type #=> String, one of "FULL", "INCREMENTAL"
|
|
11606
11648
|
# resp.table.view_definition.sub_objects #=> Array
|
|
11607
11649
|
# resp.table.view_definition.sub_objects[0] #=> String
|
|
11650
|
+
# resp.table.view_definition.sub_object_version_ids #=> Array
|
|
11651
|
+
# resp.table.view_definition.sub_object_version_ids[0] #=> Integer
|
|
11608
11652
|
# resp.table.view_definition.representations #=> Array
|
|
11609
11653
|
# resp.table.view_definition.representations[0].dialect #=> String, one of "REDSHIFT", "ATHENA", "SPARK"
|
|
11610
11654
|
# resp.table.view_definition.representations[0].dialect_version #=> String
|
|
@@ -11613,6 +11657,7 @@ module Aws::Glue
|
|
|
11613
11657
|
# resp.table.view_definition.representations[0].validation_connection #=> String
|
|
11614
11658
|
# resp.table.view_definition.representations[0].is_stale #=> Boolean
|
|
11615
11659
|
# resp.table.is_multi_dialect_view #=> Boolean
|
|
11660
|
+
# resp.table.is_materialized_view #=> Boolean
|
|
11616
11661
|
# resp.table.status.requested_by #=> String
|
|
11617
11662
|
# resp.table.status.updated_by #=> String
|
|
11618
11663
|
# resp.table.status.request_time #=> Time
|
|
@@ -11638,6 +11683,7 @@ module Aws::Glue
|
|
|
11638
11683
|
# resp.cell_filters[0].row_filter_expression #=> String
|
|
11639
11684
|
# resp.query_authorization_id #=> String
|
|
11640
11685
|
# resp.is_multi_dialect_view #=> Boolean
|
|
11686
|
+
# resp.is_materialized_view #=> Boolean
|
|
11641
11687
|
# resp.resource_arn #=> String
|
|
11642
11688
|
# resp.is_protected #=> Boolean
|
|
11643
11689
|
# resp.permissions #=> Array
|
|
@@ -14692,8 +14738,14 @@ module Aws::Glue
|
|
|
14692
14738
|
# resp.table_list[0].federated_table.connection_type #=> String
|
|
14693
14739
|
# resp.table_list[0].view_definition.is_protected #=> Boolean
|
|
14694
14740
|
# resp.table_list[0].view_definition.definer #=> String
|
|
14741
|
+
# resp.table_list[0].view_definition.view_version_id #=> Integer
|
|
14742
|
+
# resp.table_list[0].view_definition.view_version_token #=> String
|
|
14743
|
+
# resp.table_list[0].view_definition.refresh_seconds #=> Integer
|
|
14744
|
+
# resp.table_list[0].view_definition.last_refresh_type #=> String, one of "FULL", "INCREMENTAL"
|
|
14695
14745
|
# resp.table_list[0].view_definition.sub_objects #=> Array
|
|
14696
14746
|
# resp.table_list[0].view_definition.sub_objects[0] #=> String
|
|
14747
|
+
# resp.table_list[0].view_definition.sub_object_version_ids #=> Array
|
|
14748
|
+
# resp.table_list[0].view_definition.sub_object_version_ids[0] #=> Integer
|
|
14697
14749
|
# resp.table_list[0].view_definition.representations #=> Array
|
|
14698
14750
|
# resp.table_list[0].view_definition.representations[0].dialect #=> String, one of "REDSHIFT", "ATHENA", "SPARK"
|
|
14699
14751
|
# resp.table_list[0].view_definition.representations[0].dialect_version #=> String
|
|
@@ -14702,6 +14754,7 @@ module Aws::Glue
|
|
|
14702
14754
|
# resp.table_list[0].view_definition.representations[0].validation_connection #=> String
|
|
14703
14755
|
# resp.table_list[0].view_definition.representations[0].is_stale #=> Boolean
|
|
14704
14756
|
# resp.table_list[0].is_multi_dialect_view #=> Boolean
|
|
14757
|
+
# resp.table_list[0].is_materialized_view #=> Boolean
|
|
14705
14758
|
# resp.table_list[0].status.requested_by #=> String
|
|
14706
14759
|
# resp.table_list[0].status.updated_by #=> String
|
|
14707
14760
|
# resp.table_list[0].status.request_time #=> Time
|
|
@@ -17661,7 +17714,12 @@ module Aws::Glue
|
|
|
17661
17714
|
# view_expanded_text: "ViewTextString",
|
|
17662
17715
|
# },
|
|
17663
17716
|
# ],
|
|
17717
|
+
# view_version_id: 1,
|
|
17718
|
+
# view_version_token: "VersionString",
|
|
17719
|
+
# refresh_seconds: 1,
|
|
17720
|
+
# last_refresh_type: "FULL", # accepts FULL, INCREMENTAL
|
|
17664
17721
|
# sub_objects: ["ArnString"],
|
|
17722
|
+
# sub_object_version_ids: [1],
|
|
17665
17723
|
# },
|
|
17666
17724
|
# },
|
|
17667
17725
|
# skip_archive: false,
|
|
@@ -17686,6 +17744,10 @@ module Aws::Glue
|
|
|
17686
17744
|
# },
|
|
17687
17745
|
# required: false, # required
|
|
17688
17746
|
# doc: "CommentString",
|
|
17747
|
+
# initial_default: {
|
|
17748
|
+
# },
|
|
17749
|
+
# write_default: {
|
|
17750
|
+
# },
|
|
17689
17751
|
# },
|
|
17690
17752
|
# ],
|
|
17691
17753
|
# },
|
|
@@ -17715,6 +17777,16 @@ module Aws::Glue
|
|
|
17715
17777
|
# properties: {
|
|
17716
17778
|
# "NullableString" => "NullableString",
|
|
17717
17779
|
# },
|
|
17780
|
+
# action: "add-schema", # accepts add-schema, set-current-schema, add-spec, set-default-spec, add-sort-order, set-default-sort-order, set-location, set-properties, remove-properties, add-encryption-key, remove-encryption-key
|
|
17781
|
+
# encryption_key: {
|
|
17782
|
+
# key_id: "EncryptionKeyIdString", # required
|
|
17783
|
+
# encrypted_key_metadata: "EncryptedKeyMetadataString", # required
|
|
17784
|
+
# encrypted_by_id: "EncryptionKeyIdString",
|
|
17785
|
+
# properties: {
|
|
17786
|
+
# "NullableString" => "NullableString",
|
|
17787
|
+
# },
|
|
17788
|
+
# },
|
|
17789
|
+
# key_id: "EncryptionKeyIdString",
|
|
17718
17790
|
# },
|
|
17719
17791
|
# ],
|
|
17720
17792
|
# },
|
|
@@ -18066,7 +18138,7 @@ module Aws::Glue
|
|
|
18066
18138
|
tracer: tracer
|
|
18067
18139
|
)
|
|
18068
18140
|
context[:gem_name] = 'aws-sdk-glue'
|
|
18069
|
-
context[:gem_version] = '1.
|
|
18141
|
+
context[:gem_version] = '1.244.0'
|
|
18070
18142
|
Seahorse::Client::Request.new(handlers, context)
|
|
18071
18143
|
end
|
|
18072
18144
|
|
|
@@ -566,8 +566,10 @@ module Aws::Glue
|
|
|
566
566
|
EnclosedInStringPropertiesMinOne = Shapes::ListShape.new(name: 'EnclosedInStringPropertiesMinOne')
|
|
567
567
|
EnclosedInStringProperty = Shapes::StringShape.new(name: 'EnclosedInStringProperty')
|
|
568
568
|
EnclosedInStringPropertyWithQuote = Shapes::StringShape.new(name: 'EnclosedInStringPropertyWithQuote')
|
|
569
|
+
EncryptedKeyMetadataString = Shapes::StringShape.new(name: 'EncryptedKeyMetadataString')
|
|
569
570
|
EncryptionAtRest = Shapes::StructureShape.new(name: 'EncryptionAtRest')
|
|
570
571
|
EncryptionConfiguration = Shapes::StructureShape.new(name: 'EncryptionConfiguration')
|
|
572
|
+
EncryptionKeyIdString = Shapes::StringShape.new(name: 'EncryptionKeyIdString')
|
|
571
573
|
Entity = Shapes::StructureShape.new(name: 'Entity')
|
|
572
574
|
EntityDescription = Shapes::StringShape.new(name: 'EntityDescription')
|
|
573
575
|
EntityFieldName = Shapes::StringShape.new(name: 'EntityFieldName')
|
|
@@ -823,6 +825,7 @@ module Aws::Glue
|
|
|
823
825
|
IcebergCompactionConfiguration = Shapes::StructureShape.new(name: 'IcebergCompactionConfiguration')
|
|
824
826
|
IcebergCompactionMetrics = Shapes::StructureShape.new(name: 'IcebergCompactionMetrics')
|
|
825
827
|
IcebergDocument = Shapes::DocumentShape.new(name: 'IcebergDocument', document: true)
|
|
828
|
+
IcebergEncryptedKey = Shapes::StructureShape.new(name: 'IcebergEncryptedKey')
|
|
826
829
|
IcebergInput = Shapes::StructureShape.new(name: 'IcebergInput')
|
|
827
830
|
IcebergNullOrder = Shapes::StringShape.new(name: 'IcebergNullOrder')
|
|
828
831
|
IcebergOptimizationProperties = Shapes::StructureShape.new(name: 'IcebergOptimizationProperties')
|
|
@@ -848,6 +851,7 @@ module Aws::Glue
|
|
|
848
851
|
IcebergTargetCompressionType = Shapes::StringShape.new(name: 'IcebergTargetCompressionType')
|
|
849
852
|
IcebergTargetList = Shapes::ListShape.new(name: 'IcebergTargetList')
|
|
850
853
|
IcebergTransformString = Shapes::StringShape.new(name: 'IcebergTransformString')
|
|
854
|
+
IcebergUpdateAction = Shapes::StringShape.new(name: 'IcebergUpdateAction')
|
|
851
855
|
IdString = Shapes::StringShape.new(name: 'IdString')
|
|
852
856
|
IdempotentParameterMismatchException = Shapes::StructureShape.new(name: 'IdempotentParameterMismatchException')
|
|
853
857
|
IdentityCenterInstanceArn = Shapes::StringShape.new(name: 'IdentityCenterInstanceArn')
|
|
@@ -950,6 +954,7 @@ module Aws::Glue
|
|
|
950
954
|
LastActiveDefinition = Shapes::StructureShape.new(name: 'LastActiveDefinition')
|
|
951
955
|
LastCrawlInfo = Shapes::StructureShape.new(name: 'LastCrawlInfo')
|
|
952
956
|
LastCrawlStatus = Shapes::StringShape.new(name: 'LastCrawlStatus')
|
|
957
|
+
LastRefreshType = Shapes::StringShape.new(name: 'LastRefreshType')
|
|
953
958
|
LatestSchemaVersionBoolean = Shapes::BooleanShape.new(name: 'LatestSchemaVersionBoolean')
|
|
954
959
|
Limit = Shapes::IntegerShape.new(name: 'Limit')
|
|
955
960
|
LimitedPathList = Shapes::ListShape.new(name: 'LimitedPathList')
|
|
@@ -1212,6 +1217,7 @@ module Aws::Glue
|
|
|
1212
1217
|
RedshiftSource = Shapes::StructureShape.new(name: 'RedshiftSource')
|
|
1213
1218
|
RedshiftTarget = Shapes::StructureShape.new(name: 'RedshiftTarget')
|
|
1214
1219
|
ReferenceDatasetsList = Shapes::ListShape.new(name: 'ReferenceDatasetsList')
|
|
1220
|
+
RefreshSeconds = Shapes::IntegerShape.new(name: 'RefreshSeconds')
|
|
1215
1221
|
RefreshToken = Shapes::StringShape.new(name: 'RefreshToken')
|
|
1216
1222
|
RegisterSchemaVersionInput = Shapes::StructureShape.new(name: 'RegisterSchemaVersionInput')
|
|
1217
1223
|
RegisterSchemaVersionResponse = Shapes::StructureShape.new(name: 'RegisterSchemaVersionResponse')
|
|
@@ -1444,6 +1450,7 @@ module Aws::Glue
|
|
|
1444
1450
|
TableVersion = Shapes::StructureShape.new(name: 'TableVersion')
|
|
1445
1451
|
TableVersionError = Shapes::StructureShape.new(name: 'TableVersionError')
|
|
1446
1452
|
TableVersionErrors = Shapes::ListShape.new(name: 'TableVersionErrors')
|
|
1453
|
+
TableVersionId = Shapes::IntegerShape.new(name: 'TableVersionId')
|
|
1447
1454
|
Tag = Shapes::StructureShape.new(name: 'Tag')
|
|
1448
1455
|
TagKey = Shapes::StringShape.new(name: 'TagKey')
|
|
1449
1456
|
TagKeysList = Shapes::ListShape.new(name: 'TagKeysList')
|
|
@@ -1606,6 +1613,7 @@ module Aws::Glue
|
|
|
1606
1613
|
ViewRepresentationInput = Shapes::StructureShape.new(name: 'ViewRepresentationInput')
|
|
1607
1614
|
ViewRepresentationInputList = Shapes::ListShape.new(name: 'ViewRepresentationInputList')
|
|
1608
1615
|
ViewRepresentationList = Shapes::ListShape.new(name: 'ViewRepresentationList')
|
|
1616
|
+
ViewSubObjectVersionIdsList = Shapes::ListShape.new(name: 'ViewSubObjectVersionIdsList')
|
|
1609
1617
|
ViewSubObjectsList = Shapes::ListShape.new(name: 'ViewSubObjectsList')
|
|
1610
1618
|
ViewTextString = Shapes::StringShape.new(name: 'ViewTextString')
|
|
1611
1619
|
ViewUpdateAction = Shapes::StringShape.new(name: 'ViewUpdateAction')
|
|
@@ -4706,6 +4714,7 @@ module Aws::Glue
|
|
|
4706
4714
|
GetUnfilteredTableMetadataResponse.add_member(:cell_filters, Shapes::ShapeRef.new(shape: ColumnRowFilterList, location_name: "CellFilters"))
|
|
4707
4715
|
GetUnfilteredTableMetadataResponse.add_member(:query_authorization_id, Shapes::ShapeRef.new(shape: HashString, location_name: "QueryAuthorizationId"))
|
|
4708
4716
|
GetUnfilteredTableMetadataResponse.add_member(:is_multi_dialect_view, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsMultiDialectView"))
|
|
4717
|
+
GetUnfilteredTableMetadataResponse.add_member(:is_materialized_view, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsMaterializedView"))
|
|
4709
4718
|
GetUnfilteredTableMetadataResponse.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ArnString, location_name: "ResourceArn"))
|
|
4710
4719
|
GetUnfilteredTableMetadataResponse.add_member(:is_protected, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsProtected"))
|
|
4711
4720
|
GetUnfilteredTableMetadataResponse.add_member(:permissions, Shapes::ShapeRef.new(shape: PermissionList, location_name: "Permissions"))
|
|
@@ -4860,6 +4869,12 @@ module Aws::Glue
|
|
|
4860
4869
|
IcebergCompactionMetrics.add_member(:job_duration_in_hour, Shapes::ShapeRef.new(shape: dpuDurationInHour, location_name: "JobDurationInHour"))
|
|
4861
4870
|
IcebergCompactionMetrics.struct_class = Types::IcebergCompactionMetrics
|
|
4862
4871
|
|
|
4872
|
+
IcebergEncryptedKey.add_member(:key_id, Shapes::ShapeRef.new(shape: EncryptionKeyIdString, required: true, location_name: "KeyId"))
|
|
4873
|
+
IcebergEncryptedKey.add_member(:encrypted_key_metadata, Shapes::ShapeRef.new(shape: EncryptedKeyMetadataString, required: true, location_name: "EncryptedKeyMetadata"))
|
|
4874
|
+
IcebergEncryptedKey.add_member(:encrypted_by_id, Shapes::ShapeRef.new(shape: EncryptionKeyIdString, location_name: "EncryptedById"))
|
|
4875
|
+
IcebergEncryptedKey.add_member(:properties, Shapes::ShapeRef.new(shape: StringToStringMap, location_name: "Properties"))
|
|
4876
|
+
IcebergEncryptedKey.struct_class = Types::IcebergEncryptedKey
|
|
4877
|
+
|
|
4863
4878
|
IcebergInput.add_member(:metadata_operation, Shapes::ShapeRef.new(shape: MetadataOperation, required: true, location_name: "MetadataOperation"))
|
|
4864
4879
|
IcebergInput.add_member(:version, Shapes::ShapeRef.new(shape: VersionString, location_name: "Version"))
|
|
4865
4880
|
IcebergInput.add_member(:create_iceberg_table_input, Shapes::ShapeRef.new(shape: CreateIcebergTableInput, location_name: "CreateIcebergTableInput"))
|
|
@@ -4938,6 +4953,8 @@ module Aws::Glue
|
|
|
4938
4953
|
IcebergStructField.add_member(:type, Shapes::ShapeRef.new(shape: IcebergDocument, required: true, location_name: "Type"))
|
|
4939
4954
|
IcebergStructField.add_member(:required, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "Required"))
|
|
4940
4955
|
IcebergStructField.add_member(:doc, Shapes::ShapeRef.new(shape: CommentString, location_name: "Doc"))
|
|
4956
|
+
IcebergStructField.add_member(:initial_default, Shapes::ShapeRef.new(shape: IcebergDocument, location_name: "InitialDefault"))
|
|
4957
|
+
IcebergStructField.add_member(:write_default, Shapes::ShapeRef.new(shape: IcebergDocument, location_name: "WriteDefault"))
|
|
4941
4958
|
IcebergStructField.struct_class = Types::IcebergStructField
|
|
4942
4959
|
|
|
4943
4960
|
IcebergStructFieldList.member = Shapes::ShapeRef.new(shape: IcebergStructField)
|
|
@@ -4947,6 +4964,9 @@ module Aws::Glue
|
|
|
4947
4964
|
IcebergTableUpdate.add_member(:sort_order, Shapes::ShapeRef.new(shape: IcebergSortOrder, location_name: "SortOrder"))
|
|
4948
4965
|
IcebergTableUpdate.add_member(:location, Shapes::ShapeRef.new(shape: LocationString, required: true, location_name: "Location"))
|
|
4949
4966
|
IcebergTableUpdate.add_member(:properties, Shapes::ShapeRef.new(shape: StringToStringMap, location_name: "Properties"))
|
|
4967
|
+
IcebergTableUpdate.add_member(:action, Shapes::ShapeRef.new(shape: IcebergUpdateAction, location_name: "Action"))
|
|
4968
|
+
IcebergTableUpdate.add_member(:encryption_key, Shapes::ShapeRef.new(shape: IcebergEncryptedKey, location_name: "EncryptionKey"))
|
|
4969
|
+
IcebergTableUpdate.add_member(:key_id, Shapes::ShapeRef.new(shape: EncryptionKeyIdString, location_name: "KeyId"))
|
|
4950
4970
|
IcebergTableUpdate.struct_class = Types::IcebergTableUpdate
|
|
4951
4971
|
|
|
4952
4972
|
IcebergTableUpdateList.member = Shapes::ShapeRef.new(shape: IcebergTableUpdate)
|
|
@@ -6993,6 +7013,7 @@ module Aws::Glue
|
|
|
6993
7013
|
Table.add_member(:federated_table, Shapes::ShapeRef.new(shape: FederatedTable, location_name: "FederatedTable"))
|
|
6994
7014
|
Table.add_member(:view_definition, Shapes::ShapeRef.new(shape: ViewDefinition, location_name: "ViewDefinition"))
|
|
6995
7015
|
Table.add_member(:is_multi_dialect_view, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "IsMultiDialectView"))
|
|
7016
|
+
Table.add_member(:is_materialized_view, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "IsMaterializedView"))
|
|
6996
7017
|
Table.add_member(:status, Shapes::ShapeRef.new(shape: TableStatus, location_name: "Status"))
|
|
6997
7018
|
Table.struct_class = Types::Table
|
|
6998
7019
|
|
|
@@ -7612,14 +7633,24 @@ module Aws::Glue
|
|
|
7612
7633
|
|
|
7613
7634
|
ViewDefinition.add_member(:is_protected, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "IsProtected"))
|
|
7614
7635
|
ViewDefinition.add_member(:definer, Shapes::ShapeRef.new(shape: ArnString, location_name: "Definer"))
|
|
7636
|
+
ViewDefinition.add_member(:view_version_id, Shapes::ShapeRef.new(shape: TableVersionId, location_name: "ViewVersionId"))
|
|
7637
|
+
ViewDefinition.add_member(:view_version_token, Shapes::ShapeRef.new(shape: HashString, location_name: "ViewVersionToken"))
|
|
7638
|
+
ViewDefinition.add_member(:refresh_seconds, Shapes::ShapeRef.new(shape: RefreshSeconds, location_name: "RefreshSeconds"))
|
|
7639
|
+
ViewDefinition.add_member(:last_refresh_type, Shapes::ShapeRef.new(shape: LastRefreshType, location_name: "LastRefreshType"))
|
|
7615
7640
|
ViewDefinition.add_member(:sub_objects, Shapes::ShapeRef.new(shape: ViewSubObjectsList, location_name: "SubObjects"))
|
|
7641
|
+
ViewDefinition.add_member(:sub_object_version_ids, Shapes::ShapeRef.new(shape: ViewSubObjectVersionIdsList, location_name: "SubObjectVersionIds"))
|
|
7616
7642
|
ViewDefinition.add_member(:representations, Shapes::ShapeRef.new(shape: ViewRepresentationList, location_name: "Representations"))
|
|
7617
7643
|
ViewDefinition.struct_class = Types::ViewDefinition
|
|
7618
7644
|
|
|
7619
7645
|
ViewDefinitionInput.add_member(:is_protected, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "IsProtected"))
|
|
7620
7646
|
ViewDefinitionInput.add_member(:definer, Shapes::ShapeRef.new(shape: ArnString, location_name: "Definer"))
|
|
7621
7647
|
ViewDefinitionInput.add_member(:representations, Shapes::ShapeRef.new(shape: ViewRepresentationInputList, location_name: "Representations"))
|
|
7648
|
+
ViewDefinitionInput.add_member(:view_version_id, Shapes::ShapeRef.new(shape: TableVersionId, location_name: "ViewVersionId"))
|
|
7649
|
+
ViewDefinitionInput.add_member(:view_version_token, Shapes::ShapeRef.new(shape: VersionString, location_name: "ViewVersionToken"))
|
|
7650
|
+
ViewDefinitionInput.add_member(:refresh_seconds, Shapes::ShapeRef.new(shape: RefreshSeconds, location_name: "RefreshSeconds"))
|
|
7651
|
+
ViewDefinitionInput.add_member(:last_refresh_type, Shapes::ShapeRef.new(shape: LastRefreshType, location_name: "LastRefreshType"))
|
|
7622
7652
|
ViewDefinitionInput.add_member(:sub_objects, Shapes::ShapeRef.new(shape: ViewSubObjectsList, location_name: "SubObjects"))
|
|
7653
|
+
ViewDefinitionInput.add_member(:sub_object_version_ids, Shapes::ShapeRef.new(shape: ViewSubObjectVersionIdsList, location_name: "SubObjectVersionIds"))
|
|
7623
7654
|
ViewDefinitionInput.struct_class = Types::ViewDefinitionInput
|
|
7624
7655
|
|
|
7625
7656
|
ViewRepresentation.add_member(:dialect, Shapes::ShapeRef.new(shape: ViewDialect, location_name: "Dialect"))
|
|
@@ -7641,6 +7672,8 @@ module Aws::Glue
|
|
|
7641
7672
|
|
|
7642
7673
|
ViewRepresentationList.member = Shapes::ShapeRef.new(shape: ViewRepresentation)
|
|
7643
7674
|
|
|
7675
|
+
ViewSubObjectVersionIdsList.member = Shapes::ShapeRef.new(shape: TableVersionId)
|
|
7676
|
+
|
|
7644
7677
|
ViewSubObjectsList.member = Shapes::ShapeRef.new(shape: ArnString)
|
|
7645
7678
|
|
|
7646
7679
|
ViewValidation.add_member(:dialect, Shapes::ShapeRef.new(shape: ViewDialect, location_name: "Dialect"))
|
data/lib/aws-sdk-glue/types.rb
CHANGED
|
@@ -4204,53 +4204,6 @@ module Aws::Glue
|
|
|
4204
4204
|
# connector to read from and write to data stores that are not
|
|
4205
4205
|
# natively supported by Glue.
|
|
4206
4206
|
#
|
|
4207
|
-
# Additionally, a `ConnectionType` for the following SaaS connectors
|
|
4208
|
-
# is supported:
|
|
4209
|
-
#
|
|
4210
|
-
# * `FACEBOOKADS` - Designates a connection to Facebook Ads.
|
|
4211
|
-
#
|
|
4212
|
-
# * `GOOGLEADS` - Designates a connection to Google Ads.
|
|
4213
|
-
#
|
|
4214
|
-
# * `GOOGLESHEETS` - Designates a connection to Google Sheets.
|
|
4215
|
-
#
|
|
4216
|
-
# * `GOOGLEANALYTICS4` - Designates a connection to Google Analytics
|
|
4217
|
-
# 4.
|
|
4218
|
-
#
|
|
4219
|
-
# * `HUBSPOT` - Designates a connection to HubSpot.
|
|
4220
|
-
#
|
|
4221
|
-
# * `INSTAGRAMADS` - Designates a connection to Instagram Ads.
|
|
4222
|
-
#
|
|
4223
|
-
# * `INTERCOM` - Designates a connection to Intercom.
|
|
4224
|
-
#
|
|
4225
|
-
# * `JIRACLOUD` - Designates a connection to Jira Cloud.
|
|
4226
|
-
#
|
|
4227
|
-
# * `MARKETO` - Designates a connection to Adobe Marketo Engage.
|
|
4228
|
-
#
|
|
4229
|
-
# * `NETSUITEERP` - Designates a connection to Oracle NetSuite.
|
|
4230
|
-
#
|
|
4231
|
-
# * `SALESFORCE` - Designates a connection to Salesforce using OAuth
|
|
4232
|
-
# authentication.
|
|
4233
|
-
#
|
|
4234
|
-
# * `SALESFORCEMARKETINGCLOUD` - Designates a connection to Salesforce
|
|
4235
|
-
# Marketing Cloud.
|
|
4236
|
-
#
|
|
4237
|
-
# * `SALESFORCEPARDOT` - Designates a connection to Salesforce
|
|
4238
|
-
# Marketing Cloud Account Engagement (MCAE).
|
|
4239
|
-
#
|
|
4240
|
-
# * `SAPODATA` - Designates a connection to SAP OData.
|
|
4241
|
-
#
|
|
4242
|
-
# * `SERVICENOW` - Designates a connection to ServiceNow.
|
|
4243
|
-
#
|
|
4244
|
-
# * `SLACK` - Designates a connection to Slack.
|
|
4245
|
-
#
|
|
4246
|
-
# * `SNAPCHATADS` - Designates a connection to Snapchat Ads.
|
|
4247
|
-
#
|
|
4248
|
-
# * `STRIPE` - Designates a connection to Stripe.
|
|
4249
|
-
#
|
|
4250
|
-
# * `ZENDESK` - Designates a connection to Zendesk.
|
|
4251
|
-
#
|
|
4252
|
-
# * `ZOHOCRM` - Designates a connection to Zoho CRM.
|
|
4253
|
-
#
|
|
4254
4207
|
# For more information on the connection parameters needed for a
|
|
4255
4208
|
# particular connector, see the documentation for the connector in
|
|
4256
4209
|
# [Adding an Glue connection][1]in the Glue User Guide.
|
|
@@ -15392,6 +15345,10 @@ module Aws::Glue
|
|
|
15392
15345
|
# different query engines and can therefore be read by those engines.
|
|
15393
15346
|
# @return [Boolean]
|
|
15394
15347
|
#
|
|
15348
|
+
# @!attribute [rw] is_materialized_view
|
|
15349
|
+
# Indicates if a table is a materialized view.
|
|
15350
|
+
# @return [Boolean]
|
|
15351
|
+
#
|
|
15395
15352
|
# @!attribute [rw] resource_arn
|
|
15396
15353
|
# The resource ARN of the parent resource extracted from the request.
|
|
15397
15354
|
# @return [String]
|
|
@@ -15425,6 +15382,7 @@ module Aws::Glue
|
|
|
15425
15382
|
:cell_filters,
|
|
15426
15383
|
:query_authorization_id,
|
|
15427
15384
|
:is_multi_dialect_view,
|
|
15385
|
+
:is_materialized_view,
|
|
15428
15386
|
:resource_arn,
|
|
15429
15387
|
:is_protected,
|
|
15430
15388
|
:permissions,
|
|
@@ -16137,6 +16095,46 @@ module Aws::Glue
|
|
|
16137
16095
|
include Aws::Structure
|
|
16138
16096
|
end
|
|
16139
16097
|
|
|
16098
|
+
# Encryption key structure used for Iceberg table encryption. Contains
|
|
16099
|
+
# the key ID, encrypted key metadata, optional reference to the
|
|
16100
|
+
# encrypting key, and additional properties for the table's encryption
|
|
16101
|
+
# scheme.
|
|
16102
|
+
#
|
|
16103
|
+
# @!attribute [rw] key_id
|
|
16104
|
+
# Unique identifier of the encryption key used for Iceberg table
|
|
16105
|
+
# encryption. This ID is used to reference the key in table metadata
|
|
16106
|
+
# and track which key was used to encrypt specific data.
|
|
16107
|
+
# @return [String]
|
|
16108
|
+
#
|
|
16109
|
+
# @!attribute [rw] encrypted_key_metadata
|
|
16110
|
+
# Encrypted key and metadata, base64 encoded. The format of encrypted
|
|
16111
|
+
# key metadata is determined by the table's encryption scheme and can
|
|
16112
|
+
# be a wrapped format specific to the table's KMS provider.
|
|
16113
|
+
# @return [String]
|
|
16114
|
+
#
|
|
16115
|
+
# @!attribute [rw] encrypted_by_id
|
|
16116
|
+
# Optional ID of the key used to encrypt or wrap the key metadata in
|
|
16117
|
+
# Iceberg table encryption. This field references another encryption
|
|
16118
|
+
# key that was used to encrypt the current key's metadata.
|
|
16119
|
+
# @return [String]
|
|
16120
|
+
#
|
|
16121
|
+
# @!attribute [rw] properties
|
|
16122
|
+
# A string to string map of additional metadata used by the table's
|
|
16123
|
+
# encryption scheme. These properties provide additional context and
|
|
16124
|
+
# configuration for the encryption key implementation.
|
|
16125
|
+
# @return [Hash<String,String>]
|
|
16126
|
+
#
|
|
16127
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/IcebergEncryptedKey AWS API Documentation
|
|
16128
|
+
#
|
|
16129
|
+
class IcebergEncryptedKey < Struct.new(
|
|
16130
|
+
:key_id,
|
|
16131
|
+
:encrypted_key_metadata,
|
|
16132
|
+
:encrypted_by_id,
|
|
16133
|
+
:properties)
|
|
16134
|
+
SENSITIVE = []
|
|
16135
|
+
include Aws::Structure
|
|
16136
|
+
end
|
|
16137
|
+
|
|
16140
16138
|
# A structure that defines an Apache Iceberg metadata table to create in
|
|
16141
16139
|
# the catalog.
|
|
16142
16140
|
#
|
|
@@ -16566,6 +16564,20 @@ module Aws::Glue
|
|
|
16566
16564
|
# context about the purpose and usage of this field.
|
|
16567
16565
|
# @return [String]
|
|
16568
16566
|
#
|
|
16567
|
+
# @!attribute [rw] initial_default
|
|
16568
|
+
# Default value used to populate the field's value for all records
|
|
16569
|
+
# that were written before the field was added to the schema. This
|
|
16570
|
+
# enables backward compatibility when adding new fields to existing
|
|
16571
|
+
# Iceberg tables.
|
|
16572
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
|
16573
|
+
#
|
|
16574
|
+
# @!attribute [rw] write_default
|
|
16575
|
+
# Default value used to populate the field's value for any records
|
|
16576
|
+
# written after the field was added to the schema, if the writer does
|
|
16577
|
+
# not supply the field's value. This can be changed through schema
|
|
16578
|
+
# evolution.
|
|
16579
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
|
16580
|
+
#
|
|
16569
16581
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/IcebergStructField AWS API Documentation
|
|
16570
16582
|
#
|
|
16571
16583
|
class IcebergStructField < Struct.new(
|
|
@@ -16573,7 +16585,9 @@ module Aws::Glue
|
|
|
16573
16585
|
:name,
|
|
16574
16586
|
:type,
|
|
16575
16587
|
:required,
|
|
16576
|
-
:doc
|
|
16588
|
+
:doc,
|
|
16589
|
+
:initial_default,
|
|
16590
|
+
:write_default)
|
|
16577
16591
|
SENSITIVE = []
|
|
16578
16592
|
include Aws::Structure
|
|
16579
16593
|
end
|
|
@@ -16606,6 +16620,24 @@ module Aws::Glue
|
|
|
16606
16620
|
# settings for the Iceberg table.
|
|
16607
16621
|
# @return [Hash<String,String>]
|
|
16608
16622
|
#
|
|
16623
|
+
# @!attribute [rw] action
|
|
16624
|
+
# The type of update action to be performed on the Iceberg table.
|
|
16625
|
+
# Defines the specific operation such as adding schema, setting
|
|
16626
|
+
# current schema, adding partition spec, or managing encryption keys.
|
|
16627
|
+
# @return [String]
|
|
16628
|
+
#
|
|
16629
|
+
# @!attribute [rw] encryption_key
|
|
16630
|
+
# Encryption key information associated with an Iceberg table update
|
|
16631
|
+
# operation. Used when adding or removing encryption keys from the
|
|
16632
|
+
# table metadata during table evolution.
|
|
16633
|
+
# @return [Types::IcebergEncryptedKey]
|
|
16634
|
+
#
|
|
16635
|
+
# @!attribute [rw] key_id
|
|
16636
|
+
# Identifier of the encryption key involved in an Iceberg table update
|
|
16637
|
+
# operation. References the specific key being added to or removed
|
|
16638
|
+
# from the table's encryption configuration.
|
|
16639
|
+
# @return [String]
|
|
16640
|
+
#
|
|
16609
16641
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/IcebergTableUpdate AWS API Documentation
|
|
16610
16642
|
#
|
|
16611
16643
|
class IcebergTableUpdate < Struct.new(
|
|
@@ -16613,7 +16645,10 @@ module Aws::Glue
|
|
|
16613
16645
|
:partition_spec,
|
|
16614
16646
|
:sort_order,
|
|
16615
16647
|
:location,
|
|
16616
|
-
:properties
|
|
16648
|
+
:properties,
|
|
16649
|
+
:action,
|
|
16650
|
+
:encryption_key,
|
|
16651
|
+
:key_id)
|
|
16617
16652
|
SENSITIVE = []
|
|
16618
16653
|
include Aws::Structure
|
|
16619
16654
|
end
|
|
@@ -26840,9 +26875,12 @@ module Aws::Glue
|
|
|
26840
26875
|
# different query engines and can therefore be read by those engines.
|
|
26841
26876
|
# @return [Boolean]
|
|
26842
26877
|
#
|
|
26878
|
+
# @!attribute [rw] is_materialized_view
|
|
26879
|
+
# Indicates a table is a `MaterializedView`.
|
|
26880
|
+
# @return [Boolean]
|
|
26881
|
+
#
|
|
26843
26882
|
# @!attribute [rw] status
|
|
26844
|
-
#
|
|
26845
|
-
# asynchronous change to a table.
|
|
26883
|
+
# Indicates the the state of an asynchronous change to a table.
|
|
26846
26884
|
# @return [Types::TableStatus]
|
|
26847
26885
|
#
|
|
26848
26886
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/Table AWS API Documentation
|
|
@@ -26871,6 +26909,7 @@ module Aws::Glue
|
|
|
26871
26909
|
:federated_table,
|
|
26872
26910
|
:view_definition,
|
|
26873
26911
|
:is_multi_dialect_view,
|
|
26912
|
+
:is_materialized_view,
|
|
26874
26913
|
:status)
|
|
26875
26914
|
SENSITIVE = []
|
|
26876
26915
|
include Aws::Structure
|
|
@@ -29853,10 +29892,33 @@ module Aws::Glue
|
|
|
29853
29892
|
# The definer of a view in SQL.
|
|
29854
29893
|
# @return [String]
|
|
29855
29894
|
#
|
|
29895
|
+
# @!attribute [rw] view_version_id
|
|
29896
|
+
# The ID value that identifies this view's version. For materialized
|
|
29897
|
+
# views, the version ID is the Apache Iceberg table's snapshot ID.
|
|
29898
|
+
# @return [Integer]
|
|
29899
|
+
#
|
|
29900
|
+
# @!attribute [rw] view_version_token
|
|
29901
|
+
# The version ID of the Apache Iceberg table.
|
|
29902
|
+
# @return [String]
|
|
29903
|
+
#
|
|
29904
|
+
# @!attribute [rw] refresh_seconds
|
|
29905
|
+
# Auto refresh interval in seconds for the materialized view. If not
|
|
29906
|
+
# specified, the view will not automatically refresh.
|
|
29907
|
+
# @return [Integer]
|
|
29908
|
+
#
|
|
29909
|
+
# @!attribute [rw] last_refresh_type
|
|
29910
|
+
# Sets the method used for the most recent refresh.
|
|
29911
|
+
# @return [String]
|
|
29912
|
+
#
|
|
29856
29913
|
# @!attribute [rw] sub_objects
|
|
29857
29914
|
# A list of table Amazon Resource Names (ARNs).
|
|
29858
29915
|
# @return [Array<String>]
|
|
29859
29916
|
#
|
|
29917
|
+
# @!attribute [rw] sub_object_version_ids
|
|
29918
|
+
# List of the Apache Iceberg table versions referenced by the
|
|
29919
|
+
# materialized view.
|
|
29920
|
+
# @return [Array<Integer>]
|
|
29921
|
+
#
|
|
29860
29922
|
# @!attribute [rw] representations
|
|
29861
29923
|
# A list of representations.
|
|
29862
29924
|
# @return [Array<Types::ViewRepresentation>]
|
|
@@ -29866,7 +29928,12 @@ module Aws::Glue
|
|
|
29866
29928
|
class ViewDefinition < Struct.new(
|
|
29867
29929
|
:is_protected,
|
|
29868
29930
|
:definer,
|
|
29931
|
+
:view_version_id,
|
|
29932
|
+
:view_version_token,
|
|
29933
|
+
:refresh_seconds,
|
|
29934
|
+
:last_refresh_type,
|
|
29869
29935
|
:sub_objects,
|
|
29936
|
+
:sub_object_version_ids,
|
|
29870
29937
|
:representations)
|
|
29871
29938
|
SENSITIVE = []
|
|
29872
29939
|
include Aws::Structure
|
|
@@ -29891,17 +29958,46 @@ module Aws::Glue
|
|
|
29891
29958
|
# query that defines the view.
|
|
29892
29959
|
# @return [Array<Types::ViewRepresentationInput>]
|
|
29893
29960
|
#
|
|
29961
|
+
# @!attribute [rw] view_version_id
|
|
29962
|
+
# The ID value that identifies this view's version. For materialized
|
|
29963
|
+
# views, the version ID is the Apache Iceberg table's snapshot ID.
|
|
29964
|
+
# @return [Integer]
|
|
29965
|
+
#
|
|
29966
|
+
# @!attribute [rw] view_version_token
|
|
29967
|
+
# The version ID of the Apache Iceberg table.
|
|
29968
|
+
# @return [String]
|
|
29969
|
+
#
|
|
29970
|
+
# @!attribute [rw] refresh_seconds
|
|
29971
|
+
# Auto refresh interval in seconds for the materialized view. If not
|
|
29972
|
+
# specified, the view will not automatically refresh.
|
|
29973
|
+
# @return [Integer]
|
|
29974
|
+
#
|
|
29975
|
+
# @!attribute [rw] last_refresh_type
|
|
29976
|
+
# The type of the materialized view's last refresh. Valid values:
|
|
29977
|
+
# `Full`, `Incremental`.
|
|
29978
|
+
# @return [String]
|
|
29979
|
+
#
|
|
29894
29980
|
# @!attribute [rw] sub_objects
|
|
29895
29981
|
# A list of base table ARNs that make up the view.
|
|
29896
29982
|
# @return [Array<String>]
|
|
29897
29983
|
#
|
|
29984
|
+
# @!attribute [rw] sub_object_version_ids
|
|
29985
|
+
# List of the Apache Iceberg table versions referenced by the
|
|
29986
|
+
# materialized view.
|
|
29987
|
+
# @return [Array<Integer>]
|
|
29988
|
+
#
|
|
29898
29989
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ViewDefinitionInput AWS API Documentation
|
|
29899
29990
|
#
|
|
29900
29991
|
class ViewDefinitionInput < Struct.new(
|
|
29901
29992
|
:is_protected,
|
|
29902
29993
|
:definer,
|
|
29903
29994
|
:representations,
|
|
29904
|
-
:
|
|
29995
|
+
:view_version_id,
|
|
29996
|
+
:view_version_token,
|
|
29997
|
+
:refresh_seconds,
|
|
29998
|
+
:last_refresh_type,
|
|
29999
|
+
:sub_objects,
|
|
30000
|
+
:sub_object_version_ids)
|
|
29905
30001
|
SENSITIVE = []
|
|
29906
30002
|
include Aws::Structure
|
|
29907
30003
|
end
|
data/lib/aws-sdk-glue.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -2878,7 +2878,12 @@ module Aws
|
|
|
2878
2878
|
view_expanded_text: ::String?
|
|
2879
2879
|
},
|
|
2880
2880
|
]?,
|
|
2881
|
-
|
|
2881
|
+
view_version_id: ::Integer?,
|
|
2882
|
+
view_version_token: ::String?,
|
|
2883
|
+
refresh_seconds: ::Integer?,
|
|
2884
|
+
last_refresh_type: ("FULL" | "INCREMENTAL")?,
|
|
2885
|
+
sub_objects: Array[::String]?,
|
|
2886
|
+
sub_object_version_ids: Array[::Integer]?
|
|
2882
2887
|
}?
|
|
2883
2888
|
},
|
|
2884
2889
|
?partition_indexes: Array[
|
|
@@ -2905,7 +2910,11 @@ module Aws
|
|
|
2905
2910
|
type: {
|
|
2906
2911
|
},
|
|
2907
2912
|
required: bool,
|
|
2908
|
-
doc: ::String
|
|
2913
|
+
doc: ::String?,
|
|
2914
|
+
initial_default: {
|
|
2915
|
+
}?,
|
|
2916
|
+
write_default: {
|
|
2917
|
+
}?
|
|
2909
2918
|
},
|
|
2910
2919
|
]
|
|
2911
2920
|
},
|
|
@@ -4677,6 +4686,7 @@ module Aws
|
|
|
4677
4686
|
def cell_filters: () -> ::Array[Types::ColumnRowFilter]
|
|
4678
4687
|
def query_authorization_id: () -> ::String
|
|
4679
4688
|
def is_multi_dialect_view: () -> bool
|
|
4689
|
+
def is_materialized_view: () -> bool
|
|
4680
4690
|
def resource_arn: () -> ::String
|
|
4681
4691
|
def is_protected: () -> bool
|
|
4682
4692
|
def permissions: () -> ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS")]
|
|
@@ -8258,7 +8268,12 @@ module Aws
|
|
|
8258
8268
|
view_expanded_text: ::String?
|
|
8259
8269
|
},
|
|
8260
8270
|
]?,
|
|
8261
|
-
|
|
8271
|
+
view_version_id: ::Integer?,
|
|
8272
|
+
view_version_token: ::String?,
|
|
8273
|
+
refresh_seconds: ::Integer?,
|
|
8274
|
+
last_refresh_type: ("FULL" | "INCREMENTAL")?,
|
|
8275
|
+
sub_objects: Array[::String]?,
|
|
8276
|
+
sub_object_version_ids: Array[::Integer]?
|
|
8262
8277
|
}?
|
|
8263
8278
|
},
|
|
8264
8279
|
?skip_archive: bool,
|
|
@@ -8282,7 +8297,11 @@ module Aws
|
|
|
8282
8297
|
type: {
|
|
8283
8298
|
},
|
|
8284
8299
|
required: bool,
|
|
8285
|
-
doc: ::String
|
|
8300
|
+
doc: ::String?,
|
|
8301
|
+
initial_default: {
|
|
8302
|
+
}?,
|
|
8303
|
+
write_default: {
|
|
8304
|
+
}?
|
|
8286
8305
|
},
|
|
8287
8306
|
]
|
|
8288
8307
|
},
|
|
@@ -8309,7 +8328,15 @@ module Aws
|
|
|
8309
8328
|
]
|
|
8310
8329
|
}?,
|
|
8311
8330
|
location: ::String,
|
|
8312
|
-
properties: Hash[::String, ::String]
|
|
8331
|
+
properties: Hash[::String, ::String]?,
|
|
8332
|
+
action: ("add-schema" | "set-current-schema" | "add-spec" | "set-default-spec" | "add-sort-order" | "set-default-sort-order" | "set-location" | "set-properties" | "remove-properties" | "add-encryption-key" | "remove-encryption-key")?,
|
|
8333
|
+
encryption_key: {
|
|
8334
|
+
key_id: ::String,
|
|
8335
|
+
encrypted_key_metadata: ::String,
|
|
8336
|
+
encrypted_by_id: ::String?,
|
|
8337
|
+
properties: Hash[::String, ::String]?
|
|
8338
|
+
}?,
|
|
8339
|
+
key_id: ::String?
|
|
8313
8340
|
},
|
|
8314
8341
|
]
|
|
8315
8342
|
}
|
data/sig/types.rbs
CHANGED
|
@@ -3804,6 +3804,7 @@ module Aws::Glue
|
|
|
3804
3804
|
attr_accessor cell_filters: ::Array[Types::ColumnRowFilter]
|
|
3805
3805
|
attr_accessor query_authorization_id: ::String
|
|
3806
3806
|
attr_accessor is_multi_dialect_view: bool
|
|
3807
|
+
attr_accessor is_materialized_view: bool
|
|
3807
3808
|
attr_accessor resource_arn: ::String
|
|
3808
3809
|
attr_accessor is_protected: bool
|
|
3809
3810
|
attr_accessor permissions: ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS")]
|
|
@@ -3996,6 +3997,14 @@ module Aws::Glue
|
|
|
3996
3997
|
SENSITIVE: []
|
|
3997
3998
|
end
|
|
3998
3999
|
|
|
4000
|
+
class IcebergEncryptedKey
|
|
4001
|
+
attr_accessor key_id: ::String
|
|
4002
|
+
attr_accessor encrypted_key_metadata: ::String
|
|
4003
|
+
attr_accessor encrypted_by_id: ::String
|
|
4004
|
+
attr_accessor properties: ::Hash[::String, ::String]
|
|
4005
|
+
SENSITIVE: []
|
|
4006
|
+
end
|
|
4007
|
+
|
|
3999
4008
|
class IcebergInput
|
|
4000
4009
|
attr_accessor metadata_operation: ("CREATE")
|
|
4001
4010
|
attr_accessor version: ::String
|
|
@@ -4095,6 +4104,8 @@ module Aws::Glue
|
|
|
4095
4104
|
attr_accessor type: untyped
|
|
4096
4105
|
attr_accessor required: bool
|
|
4097
4106
|
attr_accessor doc: ::String
|
|
4107
|
+
attr_accessor initial_default: untyped
|
|
4108
|
+
attr_accessor write_default: untyped
|
|
4098
4109
|
SENSITIVE: []
|
|
4099
4110
|
end
|
|
4100
4111
|
|
|
@@ -4104,6 +4115,9 @@ module Aws::Glue
|
|
|
4104
4115
|
attr_accessor sort_order: Types::IcebergSortOrder
|
|
4105
4116
|
attr_accessor location: ::String
|
|
4106
4117
|
attr_accessor properties: ::Hash[::String, ::String]
|
|
4118
|
+
attr_accessor action: ("add-schema" | "set-current-schema" | "add-spec" | "set-default-spec" | "add-sort-order" | "set-default-sort-order" | "set-location" | "set-properties" | "remove-properties" | "add-encryption-key" | "remove-encryption-key")
|
|
4119
|
+
attr_accessor encryption_key: Types::IcebergEncryptedKey
|
|
4120
|
+
attr_accessor key_id: ::String
|
|
4107
4121
|
SENSITIVE: []
|
|
4108
4122
|
end
|
|
4109
4123
|
|
|
@@ -6552,6 +6566,7 @@ module Aws::Glue
|
|
|
6552
6566
|
attr_accessor federated_table: Types::FederatedTable
|
|
6553
6567
|
attr_accessor view_definition: Types::ViewDefinition
|
|
6554
6568
|
attr_accessor is_multi_dialect_view: bool
|
|
6569
|
+
attr_accessor is_materialized_view: bool
|
|
6555
6570
|
attr_accessor status: Types::TableStatus
|
|
6556
6571
|
SENSITIVE: []
|
|
6557
6572
|
end
|
|
@@ -7331,7 +7346,12 @@ module Aws::Glue
|
|
|
7331
7346
|
class ViewDefinition
|
|
7332
7347
|
attr_accessor is_protected: bool
|
|
7333
7348
|
attr_accessor definer: ::String
|
|
7349
|
+
attr_accessor view_version_id: ::Integer
|
|
7350
|
+
attr_accessor view_version_token: ::String
|
|
7351
|
+
attr_accessor refresh_seconds: ::Integer
|
|
7352
|
+
attr_accessor last_refresh_type: ("FULL" | "INCREMENTAL")
|
|
7334
7353
|
attr_accessor sub_objects: ::Array[::String]
|
|
7354
|
+
attr_accessor sub_object_version_ids: ::Array[::Integer]
|
|
7335
7355
|
attr_accessor representations: ::Array[Types::ViewRepresentation]
|
|
7336
7356
|
SENSITIVE: []
|
|
7337
7357
|
end
|
|
@@ -7340,7 +7360,12 @@ module Aws::Glue
|
|
|
7340
7360
|
attr_accessor is_protected: bool
|
|
7341
7361
|
attr_accessor definer: ::String
|
|
7342
7362
|
attr_accessor representations: ::Array[Types::ViewRepresentationInput]
|
|
7363
|
+
attr_accessor view_version_id: ::Integer
|
|
7364
|
+
attr_accessor view_version_token: ::String
|
|
7365
|
+
attr_accessor refresh_seconds: ::Integer
|
|
7366
|
+
attr_accessor last_refresh_type: ("FULL" | "INCREMENTAL")
|
|
7343
7367
|
attr_accessor sub_objects: ::Array[::String]
|
|
7368
|
+
attr_accessor sub_object_version_ids: ::Array[::Integer]
|
|
7344
7369
|
SENSITIVE: []
|
|
7345
7370
|
end
|
|
7346
7371
|
|