aws-sdk-glue 1.222.0 → 1.223.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glue/client.rb +130 -3
- data/lib/aws-sdk-glue/client_api.rb +99 -1
- data/lib/aws-sdk-glue/types.rb +376 -5
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/client.rbs +103 -7
- data/sig/types.rbs +85 -0
- metadata +1 -1
data/sig/types.rbs
CHANGED
@@ -1335,6 +1335,15 @@ module Aws::Glue
|
|
1335
1335
|
SENSITIVE: []
|
1336
1336
|
end
|
1337
1337
|
|
1338
|
+
class CreateIcebergTableInput
|
1339
|
+
attr_accessor location: ::String
|
1340
|
+
attr_accessor schema: Types::IcebergSchema
|
1341
|
+
attr_accessor partition_spec: Types::IcebergPartitionSpec
|
1342
|
+
attr_accessor write_order: Types::IcebergSortOrder
|
1343
|
+
attr_accessor properties: ::Hash[::String, ::String]
|
1344
|
+
SENSITIVE: []
|
1345
|
+
end
|
1346
|
+
|
1338
1347
|
class CreateIntegrationRequest
|
1339
1348
|
attr_accessor integration_name: ::String
|
1340
1349
|
attr_accessor source_arn: ::String
|
@@ -1582,6 +1591,7 @@ module Aws::Glue
|
|
1582
1591
|
class CreateTableRequest
|
1583
1592
|
attr_accessor catalog_id: ::String
|
1584
1593
|
attr_accessor database_name: ::String
|
1594
|
+
attr_accessor name: ::String
|
1585
1595
|
attr_accessor table_input: Types::TableInput
|
1586
1596
|
attr_accessor partition_indexes: ::Array[Types::PartitionIndex]
|
1587
1597
|
attr_accessor transaction_id: ::String
|
@@ -2572,12 +2582,14 @@ module Aws::Glue
|
|
2572
2582
|
class FederatedCatalog
|
2573
2583
|
attr_accessor identifier: ::String
|
2574
2584
|
attr_accessor connection_name: ::String
|
2585
|
+
attr_accessor connection_type: ::String
|
2575
2586
|
SENSITIVE: []
|
2576
2587
|
end
|
2577
2588
|
|
2578
2589
|
class FederatedDatabase
|
2579
2590
|
attr_accessor identifier: ::String
|
2580
2591
|
attr_accessor connection_name: ::String
|
2592
|
+
attr_accessor connection_type: ::String
|
2581
2593
|
SENSITIVE: []
|
2582
2594
|
end
|
2583
2595
|
|
@@ -2591,6 +2603,7 @@ module Aws::Glue
|
|
2591
2603
|
attr_accessor identifier: ::String
|
2592
2604
|
attr_accessor database_identifier: ::String
|
2593
2605
|
attr_accessor connection_name: ::String
|
2606
|
+
attr_accessor connection_type: ::String
|
2594
2607
|
SENSITIVE: []
|
2595
2608
|
end
|
2596
2609
|
|
@@ -3869,6 +3882,7 @@ module Aws::Glue
|
|
3869
3882
|
class IcebergInput
|
3870
3883
|
attr_accessor metadata_operation: ("CREATE")
|
3871
3884
|
attr_accessor version: ::String
|
3885
|
+
attr_accessor create_iceberg_table_input: Types::CreateIcebergTableInput
|
3872
3886
|
SENSITIVE: []
|
3873
3887
|
end
|
3874
3888
|
|
@@ -3886,6 +3900,20 @@ module Aws::Glue
|
|
3886
3900
|
SENSITIVE: []
|
3887
3901
|
end
|
3888
3902
|
|
3903
|
+
class IcebergPartitionField
|
3904
|
+
attr_accessor source_id: ::Integer
|
3905
|
+
attr_accessor transform: ::String
|
3906
|
+
attr_accessor name: ::String
|
3907
|
+
attr_accessor field_id: ::Integer
|
3908
|
+
SENSITIVE: []
|
3909
|
+
end
|
3910
|
+
|
3911
|
+
class IcebergPartitionSpec
|
3912
|
+
attr_accessor fields: ::Array[Types::IcebergPartitionField]
|
3913
|
+
attr_accessor spec_id: ::Integer
|
3914
|
+
SENSITIVE: []
|
3915
|
+
end
|
3916
|
+
|
3889
3917
|
class IcebergRetentionConfiguration
|
3890
3918
|
attr_accessor snapshot_retention_period_in_days: ::Integer
|
3891
3919
|
attr_accessor number_of_snapshots_to_retain: ::Integer
|
@@ -3903,6 +3931,46 @@ module Aws::Glue
|
|
3903
3931
|
SENSITIVE: []
|
3904
3932
|
end
|
3905
3933
|
|
3934
|
+
class IcebergSchema
|
3935
|
+
attr_accessor schema_id: ::Integer
|
3936
|
+
attr_accessor identifier_field_ids: ::Array[::Integer]
|
3937
|
+
attr_accessor type: ("struct")
|
3938
|
+
attr_accessor fields: ::Array[Types::IcebergStructField]
|
3939
|
+
SENSITIVE: []
|
3940
|
+
end
|
3941
|
+
|
3942
|
+
class IcebergSortField
|
3943
|
+
attr_accessor source_id: ::Integer
|
3944
|
+
attr_accessor transform: ::String
|
3945
|
+
attr_accessor direction: ("asc" | "desc")
|
3946
|
+
attr_accessor null_order: ("nulls-first" | "nulls-last")
|
3947
|
+
SENSITIVE: []
|
3948
|
+
end
|
3949
|
+
|
3950
|
+
class IcebergSortOrder
|
3951
|
+
attr_accessor order_id: ::Integer
|
3952
|
+
attr_accessor fields: ::Array[Types::IcebergSortField]
|
3953
|
+
SENSITIVE: []
|
3954
|
+
end
|
3955
|
+
|
3956
|
+
class IcebergStructField
|
3957
|
+
attr_accessor id: ::Integer
|
3958
|
+
attr_accessor name: ::String
|
3959
|
+
attr_accessor type: untyped
|
3960
|
+
attr_accessor required: bool
|
3961
|
+
attr_accessor doc: ::String
|
3962
|
+
SENSITIVE: []
|
3963
|
+
end
|
3964
|
+
|
3965
|
+
class IcebergTableUpdate
|
3966
|
+
attr_accessor schema: Types::IcebergSchema
|
3967
|
+
attr_accessor partition_spec: Types::IcebergPartitionSpec
|
3968
|
+
attr_accessor sort_order: Types::IcebergSortOrder
|
3969
|
+
attr_accessor location: ::String
|
3970
|
+
attr_accessor properties: ::Hash[::String, ::String]
|
3971
|
+
SENSITIVE: []
|
3972
|
+
end
|
3973
|
+
|
3906
3974
|
class IcebergTarget
|
3907
3975
|
attr_accessor paths: ::Array[::String]
|
3908
3976
|
attr_accessor connection_name: ::String
|
@@ -6746,6 +6814,16 @@ module Aws::Glue
|
|
6746
6814
|
SENSITIVE: []
|
6747
6815
|
end
|
6748
6816
|
|
6817
|
+
class UpdateIcebergInput
|
6818
|
+
attr_accessor update_iceberg_table_input: Types::UpdateIcebergTableInput
|
6819
|
+
SENSITIVE: []
|
6820
|
+
end
|
6821
|
+
|
6822
|
+
class UpdateIcebergTableInput
|
6823
|
+
attr_accessor updates: ::Array[Types::IcebergTableUpdate]
|
6824
|
+
SENSITIVE: []
|
6825
|
+
end
|
6826
|
+
|
6749
6827
|
class UpdateIntegrationResourcePropertyRequest
|
6750
6828
|
attr_accessor resource_arn: ::String
|
6751
6829
|
attr_accessor source_processing_properties: Types::SourceProcessingProperties
|
@@ -6826,6 +6904,11 @@ module Aws::Glue
|
|
6826
6904
|
SENSITIVE: []
|
6827
6905
|
end
|
6828
6906
|
|
6907
|
+
class UpdateOpenTableFormatInput
|
6908
|
+
attr_accessor update_iceberg_input: Types::UpdateIcebergInput
|
6909
|
+
SENSITIVE: []
|
6910
|
+
end
|
6911
|
+
|
6829
6912
|
class UpdatePartitionRequest
|
6830
6913
|
attr_accessor catalog_id: ::String
|
6831
6914
|
attr_accessor database_name: ::String
|
@@ -6898,12 +6981,14 @@ module Aws::Glue
|
|
6898
6981
|
class UpdateTableRequest
|
6899
6982
|
attr_accessor catalog_id: ::String
|
6900
6983
|
attr_accessor database_name: ::String
|
6984
|
+
attr_accessor name: ::String
|
6901
6985
|
attr_accessor table_input: Types::TableInput
|
6902
6986
|
attr_accessor skip_archive: bool
|
6903
6987
|
attr_accessor transaction_id: ::String
|
6904
6988
|
attr_accessor version_id: ::String
|
6905
6989
|
attr_accessor view_update_action: ("ADD" | "REPLACE" | "ADD_OR_REPLACE" | "DROP")
|
6906
6990
|
attr_accessor force: bool
|
6991
|
+
attr_accessor update_open_table_format_input: Types::UpdateOpenTableFormatInput
|
6907
6992
|
SENSITIVE: []
|
6908
6993
|
end
|
6909
6994
|
|