aws-sdk-glue 1.231.0 → 1.232.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 042ac73baf164cd990ec4899064ba1939ddf2f317014f53c07e34f0c314794bb
4
- data.tar.gz: b5ba433785168a07313b24bc4392ed3b268bb7797fd8cc9a69a3e966ac2882a4
3
+ metadata.gz: 8d8586b1819e79d8d829f8cec07527b0cdb8106d374edf38d2c1d0342b43d126
4
+ data.tar.gz: e8794bacddc2d096608573607a1d9cf58a1f84c1b68bfea2d966e2db93854dab
5
5
  SHA512:
6
- metadata.gz: f1b704949a182ff9d077fff5ad9153baa6c31927646cfde1df5fbc4829c7d90b925cfc0249ca80f4ad57c25ccb2c6b611c7c43d2a5ef974d3b1169709f89b8d5
7
- data.tar.gz: cdc7568a215710b1c2dd3c138b5d6599b00ea3a5503c97d85e31d76ee930b749e5648582761e81cf3894bd83ed363abca5a659e87e357a59283ad9c757164e28
6
+ metadata.gz: ba5792aae269fc6c58770d82f3a2619a2aab34e9dd2b12f13699cbcaf84cfb6ca490377152e82a6893598a9087dc82e458403fa66b7712ee4fe62a209afe10be
7
+ data.tar.gz: 9efca7d6c486a1b8700cf3aa7eb0595ff7f1495ec9422ee30f7b2010e4bf27e2294adaa577a925c9bd92bd2e18917669c97b2e90a39baec17d75cc9b74f52a74
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.232.0 (2025-08-15)
5
+ ------------------
6
+
7
+ * Feature - AWS Glue Zero ETL now supports On-demand snapshot load
8
+
4
9
  1.231.0 (2025-08-14)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.231.0
1
+ 1.232.0
@@ -2984,6 +2984,7 @@ module Aws::Glue
2984
2984
  # source_properties: {
2985
2985
  # "IntegrationString" => "IntegrationString",
2986
2986
  # },
2987
+ # continuous_sync: false,
2987
2988
  # },
2988
2989
  # })
2989
2990
  #
@@ -3009,6 +3010,7 @@ module Aws::Glue
3009
3010
  # resp.integration_config.refresh_interval #=> String
3010
3011
  # resp.integration_config.source_properties #=> Hash
3011
3012
  # resp.integration_config.source_properties["IntegrationString"] #=> String
3013
+ # resp.integration_config.continuous_sync #=> Boolean
3012
3014
  #
3013
3015
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateIntegration AWS API Documentation
3014
3016
  #
@@ -6159,6 +6161,7 @@ module Aws::Glue
6159
6161
  # resp.inbound_integrations[0].integration_config.refresh_interval #=> String
6160
6162
  # resp.inbound_integrations[0].integration_config.source_properties #=> Hash
6161
6163
  # resp.inbound_integrations[0].integration_config.source_properties["IntegrationString"] #=> String
6164
+ # resp.inbound_integrations[0].integration_config.continuous_sync #=> Boolean
6162
6165
  # resp.inbound_integrations[0].errors #=> Array
6163
6166
  # resp.inbound_integrations[0].errors[0].error_code #=> String
6164
6167
  # resp.inbound_integrations[0].errors[0].error_message #=> String
@@ -6228,6 +6231,7 @@ module Aws::Glue
6228
6231
  # resp.integrations[0].integration_config.refresh_interval #=> String
6229
6232
  # resp.integrations[0].integration_config.source_properties #=> Hash
6230
6233
  # resp.integrations[0].integration_config.source_properties["IntegrationString"] #=> String
6234
+ # resp.integrations[0].integration_config.continuous_sync #=> Boolean
6231
6235
  # resp.integrations[0].errors #=> Array
6232
6236
  # resp.integrations[0].errors[0].error_code #=> String
6233
6237
  # resp.integrations[0].errors[0].error_message #=> String
@@ -13656,6 +13660,9 @@ module Aws::Glue
13656
13660
  # @option params [String] :data_filter
13657
13661
  # Selects source tables for the integration using Maxwell filter syntax.
13658
13662
  #
13663
+ # @option params [Types::IntegrationConfig] :integration_config
13664
+ # Properties associated with the integration.
13665
+ #
13659
13666
  # @option params [String] :integration_name
13660
13667
  # A unique name for an integration in Glue.
13661
13668
  #
@@ -13673,6 +13680,7 @@ module Aws::Glue
13673
13680
  # * {Types::ModifyIntegrationResponse#create_time #create_time} => Time
13674
13681
  # * {Types::ModifyIntegrationResponse#errors #errors} => Array<Types::IntegrationError>
13675
13682
  # * {Types::ModifyIntegrationResponse#data_filter #data_filter} => String
13683
+ # * {Types::ModifyIntegrationResponse#integration_config #integration_config} => Types::IntegrationConfig
13676
13684
  #
13677
13685
  # @example Request syntax with placeholder values
13678
13686
  #
@@ -13680,6 +13688,13 @@ module Aws::Glue
13680
13688
  # integration_identifier: "String128", # required
13681
13689
  # description: "IntegrationDescription",
13682
13690
  # data_filter: "String2048",
13691
+ # integration_config: {
13692
+ # refresh_interval: "String128",
13693
+ # source_properties: {
13694
+ # "IntegrationString" => "IntegrationString",
13695
+ # },
13696
+ # continuous_sync: false,
13697
+ # },
13683
13698
  # integration_name: "String128",
13684
13699
  # })
13685
13700
  #
@@ -13702,6 +13717,10 @@ module Aws::Glue
13702
13717
  # resp.errors[0].error_code #=> String
13703
13718
  # resp.errors[0].error_message #=> String
13704
13719
  # resp.data_filter #=> String
13720
+ # resp.integration_config.refresh_interval #=> String
13721
+ # resp.integration_config.source_properties #=> Hash
13722
+ # resp.integration_config.source_properties["IntegrationString"] #=> String
13723
+ # resp.integration_config.continuous_sync #=> Boolean
13705
13724
  #
13706
13725
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ModifyIntegration AWS API Documentation
13707
13726
  #
@@ -17777,7 +17796,7 @@ module Aws::Glue
17777
17796
  tracer: tracer
17778
17797
  )
17779
17798
  context[:gem_name] = 'aws-sdk-glue'
17780
- context[:gem_version] = '1.231.0'
17799
+ context[:gem_version] = '1.232.0'
17781
17800
  Seahorse::Client::Request.new(handlers, context)
17782
17801
  end
17783
17802
 
@@ -279,6 +279,7 @@ module Aws::Glue
279
279
  ContextKey = Shapes::StringShape.new(name: 'ContextKey')
280
280
  ContextValue = Shapes::StringShape.new(name: 'ContextValue')
281
281
  ContextWords = Shapes::ListShape.new(name: 'ContextWords')
282
+ ContinuousSync = Shapes::BooleanShape.new(name: 'ContinuousSync')
282
283
  Crawl = Shapes::StructureShape.new(name: 'Crawl')
283
284
  CrawlId = Shapes::StringShape.new(name: 'CrawlId')
284
285
  CrawlList = Shapes::ListShape.new(name: 'CrawlList')
@@ -4977,6 +4978,7 @@ module Aws::Glue
4977
4978
 
4978
4979
  IntegrationConfig.add_member(:refresh_interval, Shapes::ShapeRef.new(shape: String128, location_name: "RefreshInterval"))
4979
4980
  IntegrationConfig.add_member(:source_properties, Shapes::ShapeRef.new(shape: IntegrationSourcePropertiesMap, location_name: "SourceProperties"))
4981
+ IntegrationConfig.add_member(:continuous_sync, Shapes::ShapeRef.new(shape: ContinuousSync, location_name: "ContinuousSync"))
4980
4982
  IntegrationConfig.struct_class = Types::IntegrationConfig
4981
4983
 
4982
4984
  IntegrationConflictOperationFault.add_member(:message, Shapes::ShapeRef.new(shape: IntegrationErrorMessage, location_name: "Message"))
@@ -5643,6 +5645,7 @@ module Aws::Glue
5643
5645
  ModifyIntegrationRequest.add_member(:integration_identifier, Shapes::ShapeRef.new(shape: String128, required: true, location_name: "IntegrationIdentifier"))
5644
5646
  ModifyIntegrationRequest.add_member(:description, Shapes::ShapeRef.new(shape: IntegrationDescription, location_name: "Description"))
5645
5647
  ModifyIntegrationRequest.add_member(:data_filter, Shapes::ShapeRef.new(shape: String2048, location_name: "DataFilter"))
5648
+ ModifyIntegrationRequest.add_member(:integration_config, Shapes::ShapeRef.new(shape: IntegrationConfig, location_name: "IntegrationConfig"))
5646
5649
  ModifyIntegrationRequest.add_member(:integration_name, Shapes::ShapeRef.new(shape: String128, location_name: "IntegrationName"))
5647
5650
  ModifyIntegrationRequest.struct_class = Types::ModifyIntegrationRequest
5648
5651
 
@@ -5658,6 +5661,7 @@ module Aws::Glue
5658
5661
  ModifyIntegrationResponse.add_member(:create_time, Shapes::ShapeRef.new(shape: IntegrationTimestamp, required: true, location_name: "CreateTime"))
5659
5662
  ModifyIntegrationResponse.add_member(:errors, Shapes::ShapeRef.new(shape: IntegrationErrorList, location_name: "Errors"))
5660
5663
  ModifyIntegrationResponse.add_member(:data_filter, Shapes::ShapeRef.new(shape: String2048, location_name: "DataFilter"))
5664
+ ModifyIntegrationResponse.add_member(:integration_config, Shapes::ShapeRef.new(shape: IntegrationConfig, location_name: "IntegrationConfig"))
5661
5665
  ModifyIntegrationResponse.struct_class = Types::ModifyIntegrationResponse
5662
5666
 
5663
5667
  MongoDBTarget.add_member(:connection_name, Shapes::ShapeRef.new(shape: ConnectionName, location_name: "ConnectionName"))
@@ -16772,11 +16772,18 @@ module Aws::Glue
16772
16772
  # during data integration operations.
16773
16773
  # @return [Hash<String,String>]
16774
16774
  #
16775
+ # @!attribute [rw] continuous_sync
16776
+ # Enables continuous synchronization for on-demand data extractions
16777
+ # from SaaS applications to Amazon Web Services data services like
16778
+ # Amazon Redshift and Amazon S3.
16779
+ # @return [Boolean]
16780
+ #
16775
16781
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/IntegrationConfig AWS API Documentation
16776
16782
  #
16777
16783
  class IntegrationConfig < Struct.new(
16778
16784
  :refresh_interval,
16779
- :source_properties)
16785
+ :source_properties,
16786
+ :continuous_sync)
16780
16787
  SENSITIVE = []
16781
16788
  include Aws::Structure
16782
16789
  end
@@ -16861,11 +16868,18 @@ module Aws::Glue
16861
16868
  #
16862
16869
  # @!attribute [rw] function_spec
16863
16870
  # Specifies the function used to partition data on the target. The
16864
- # only accepted value for this parameter is `'identity'` (string).
16865
- # The `'identity'` function ensures that the data partitioning on
16866
- # the target follows the same scheme as the source. In other words,
16867
- # the partitioning structure of the source data is preserved in the
16868
- # target destination.
16871
+ # accepted values for this parameter are:
16872
+ #
16873
+ # * `identity` - Uses source values directly without transformation
16874
+ #
16875
+ # * `year` - Extracts the year from timestamp values (e.g., 2023)
16876
+ #
16877
+ # * `month` - Extracts the month from timestamp values (e.g., 2023-01)
16878
+ #
16879
+ # * `day` - Extracts the day from timestamp values (e.g., 2023-01-15)
16880
+ #
16881
+ # * `hour` - Extracts the hour from timestamp values (e.g.,
16882
+ # 2023-01-15-14)
16869
16883
  # @return [String]
16870
16884
  #
16871
16885
  # @!attribute [rw] conversion_spec
@@ -20520,6 +20534,10 @@ module Aws::Glue
20520
20534
  # syntax.
20521
20535
  # @return [String]
20522
20536
  #
20537
+ # @!attribute [rw] integration_config
20538
+ # Properties associated with the integration.
20539
+ # @return [Types::IntegrationConfig]
20540
+ #
20523
20541
  # @!attribute [rw] integration_name
20524
20542
  # A unique name for an integration in Glue.
20525
20543
  # @return [String]
@@ -20530,6 +20548,7 @@ module Aws::Glue
20530
20548
  :integration_identifier,
20531
20549
  :description,
20532
20550
  :data_filter,
20551
+ :integration_config,
20533
20552
  :integration_name)
20534
20553
  SENSITIVE = []
20535
20554
  include Aws::Structure
@@ -20603,6 +20622,10 @@ module Aws::Glue
20603
20622
  # syntax.
20604
20623
  # @return [String]
20605
20624
  #
20625
+ # @!attribute [rw] integration_config
20626
+ # Properties associated with the integration.
20627
+ # @return [Types::IntegrationConfig]
20628
+ #
20606
20629
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ModifyIntegrationResponse AWS API Documentation
20607
20630
  #
20608
20631
  class ModifyIntegrationResponse < Struct.new(
@@ -20617,7 +20640,8 @@ module Aws::Glue
20617
20640
  :status,
20618
20641
  :create_time,
20619
20642
  :errors,
20620
- :data_filter)
20643
+ :data_filter,
20644
+ :integration_config)
20621
20645
  SENSITIVE = []
20622
20646
  include Aws::Structure
20623
20647
  end
data/lib/aws-sdk-glue.rb CHANGED
@@ -54,7 +54,7 @@ module Aws::Glue
54
54
  autoload :EndpointProvider, 'aws-sdk-glue/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-glue/endpoints'
56
56
 
57
- GEM_VERSION = '1.231.0'
57
+ GEM_VERSION = '1.232.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -902,7 +902,8 @@ module Aws
902
902
  ],
903
903
  ?integration_config: {
904
904
  refresh_interval: ::String?,
905
- source_properties: Hash[::String, ::String]?
905
+ source_properties: Hash[::String, ::String]?,
906
+ continuous_sync: bool?
906
907
  }
907
908
  ) -> _CreateIntegrationResponseSuccess
908
909
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateIntegrationResponseSuccess
@@ -5218,12 +5219,18 @@ module Aws
5218
5219
  def create_time: () -> ::Time
5219
5220
  def errors: () -> ::Array[Types::IntegrationError]
5220
5221
  def data_filter: () -> ::String
5222
+ def integration_config: () -> Types::IntegrationConfig
5221
5223
  end
5222
5224
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#modify_integration-instance_method
5223
5225
  def modify_integration: (
5224
5226
  integration_identifier: ::String,
5225
5227
  ?description: ::String,
5226
5228
  ?data_filter: ::String,
5229
+ ?integration_config: {
5230
+ refresh_interval: ::String?,
5231
+ source_properties: Hash[::String, ::String]?,
5232
+ continuous_sync: bool?
5233
+ },
5227
5234
  ?integration_name: ::String
5228
5235
  ) -> _ModifyIntegrationResponseSuccess
5229
5236
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyIntegrationResponseSuccess
data/sig/types.rbs CHANGED
@@ -4151,6 +4151,7 @@ module Aws::Glue
4151
4151
  class IntegrationConfig
4152
4152
  attr_accessor refresh_interval: ::String
4153
4153
  attr_accessor source_properties: ::Hash[::String, ::String]
4154
+ attr_accessor continuous_sync: bool
4154
4155
  SENSITIVE: []
4155
4156
  end
4156
4157
 
@@ -4954,6 +4955,7 @@ module Aws::Glue
4954
4955
  attr_accessor integration_identifier: ::String
4955
4956
  attr_accessor description: ::String
4956
4957
  attr_accessor data_filter: ::String
4958
+ attr_accessor integration_config: Types::IntegrationConfig
4957
4959
  attr_accessor integration_name: ::String
4958
4960
  SENSITIVE: []
4959
4961
  end
@@ -4971,6 +4973,7 @@ module Aws::Glue
4971
4973
  attr_accessor create_time: ::Time
4972
4974
  attr_accessor errors: ::Array[Types::IntegrationError]
4973
4975
  attr_accessor data_filter: ::String
4976
+ attr_accessor integration_config: Types::IntegrationConfig
4974
4977
  SENSITIVE: []
4975
4978
  end
4976
4979
 
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.231.0
4
+ version: 1.232.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services