aws-sdk-glue 1.222.0 → 1.224.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.
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
@@ -3975,6 +4043,7 @@ module Aws::Glue
3975
4043
 
3976
4044
  class IntegrationConfig
3977
4045
  attr_accessor refresh_interval: ::String
4046
+ attr_accessor source_properties: ::Hash[::String, ::String]
3978
4047
  SENSITIVE: []
3979
4048
  end
3980
4049
 
@@ -6746,6 +6815,16 @@ module Aws::Glue
6746
6815
  SENSITIVE: []
6747
6816
  end
6748
6817
 
6818
+ class UpdateIcebergInput
6819
+ attr_accessor update_iceberg_table_input: Types::UpdateIcebergTableInput
6820
+ SENSITIVE: []
6821
+ end
6822
+
6823
+ class UpdateIcebergTableInput
6824
+ attr_accessor updates: ::Array[Types::IcebergTableUpdate]
6825
+ SENSITIVE: []
6826
+ end
6827
+
6749
6828
  class UpdateIntegrationResourcePropertyRequest
6750
6829
  attr_accessor resource_arn: ::String
6751
6830
  attr_accessor source_processing_properties: Types::SourceProcessingProperties
@@ -6826,6 +6905,11 @@ module Aws::Glue
6826
6905
  SENSITIVE: []
6827
6906
  end
6828
6907
 
6908
+ class UpdateOpenTableFormatInput
6909
+ attr_accessor update_iceberg_input: Types::UpdateIcebergInput
6910
+ SENSITIVE: []
6911
+ end
6912
+
6829
6913
  class UpdatePartitionRequest
6830
6914
  attr_accessor catalog_id: ::String
6831
6915
  attr_accessor database_name: ::String
@@ -6898,12 +6982,14 @@ module Aws::Glue
6898
6982
  class UpdateTableRequest
6899
6983
  attr_accessor catalog_id: ::String
6900
6984
  attr_accessor database_name: ::String
6985
+ attr_accessor name: ::String
6901
6986
  attr_accessor table_input: Types::TableInput
6902
6987
  attr_accessor skip_archive: bool
6903
6988
  attr_accessor transaction_id: ::String
6904
6989
  attr_accessor version_id: ::String
6905
6990
  attr_accessor view_update_action: ("ADD" | "REPLACE" | "ADD_OR_REPLACE" | "DROP")
6906
6991
  attr_accessor force: bool
6992
+ attr_accessor update_open_table_format_input: Types::UpdateOpenTableFormatInput
6907
6993
  SENSITIVE: []
6908
6994
  end
6909
6995
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-glue
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.222.0
4
+ version: 1.224.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services