aws-sdk-glue 1.223.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glue/client.rb +10 -1
- data/lib/aws-sdk-glue/client_api.rb +5 -0
- data/lib/aws-sdk-glue/types.rb +9 -1
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/types.rbs +1 -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: e029c9c762ebf1f287421f61206c832add7597be6c83ab7754e6fb3541f760c8
|
4
|
+
data.tar.gz: 1acd198d202ed127e093364d4a502db4116052b900caa2a756b67491334454d1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2a4d79c58f95ad264ac5ab215a56907d767862d92cab85795f6a2ce4ff73311ee37a1fa8146934d5fd6c8e2c34ca930ecef0058f43a5c81cb301fd03ae334086
|
7
|
+
data.tar.gz: 8dc17094af367f28fadc22714914f8fceb765113aa3411a672741e407d7871c272537215125a9fa524223431a3be93c666a0ff22f9a4f35e1d9c9b72b96aa2b7
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.224.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
@@ -3874,6 +3874,9 @@ module Aws::Glue
|
|
3874
3874
|
# ],
|
3875
3875
|
# integration_config: {
|
3876
3876
|
# refresh_interval: "String128",
|
3877
|
+
# source_properties: {
|
3878
|
+
# "IntegrationString" => "IntegrationString",
|
3879
|
+
# },
|
3877
3880
|
# },
|
3878
3881
|
# })
|
3879
3882
|
#
|
@@ -3897,6 +3900,8 @@ module Aws::Glue
|
|
3897
3900
|
# resp.errors[0].error_message #=> String
|
3898
3901
|
# resp.data_filter #=> String
|
3899
3902
|
# resp.integration_config.refresh_interval #=> String
|
3903
|
+
# resp.integration_config.source_properties #=> Hash
|
3904
|
+
# resp.integration_config.source_properties["IntegrationString"] #=> String
|
3900
3905
|
#
|
3901
3906
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateIntegration AWS API Documentation
|
3902
3907
|
#
|
@@ -7026,6 +7031,8 @@ module Aws::Glue
|
|
7026
7031
|
# resp.inbound_integrations[0].status #=> String, one of "CREATING", "ACTIVE", "MODIFYING", "FAILED", "DELETING", "SYNCING", "NEEDS_ATTENTION"
|
7027
7032
|
# resp.inbound_integrations[0].create_time #=> Time
|
7028
7033
|
# resp.inbound_integrations[0].integration_config.refresh_interval #=> String
|
7034
|
+
# resp.inbound_integrations[0].integration_config.source_properties #=> Hash
|
7035
|
+
# resp.inbound_integrations[0].integration_config.source_properties["IntegrationString"] #=> String
|
7029
7036
|
# resp.inbound_integrations[0].errors #=> Array
|
7030
7037
|
# resp.inbound_integrations[0].errors[0].error_code #=> String
|
7031
7038
|
# resp.inbound_integrations[0].errors[0].error_message #=> String
|
@@ -7093,6 +7100,8 @@ module Aws::Glue
|
|
7093
7100
|
# resp.integrations[0].status #=> String, one of "CREATING", "ACTIVE", "MODIFYING", "FAILED", "DELETING", "SYNCING", "NEEDS_ATTENTION"
|
7094
7101
|
# resp.integrations[0].create_time #=> Time
|
7095
7102
|
# resp.integrations[0].integration_config.refresh_interval #=> String
|
7103
|
+
# resp.integrations[0].integration_config.source_properties #=> Hash
|
7104
|
+
# resp.integrations[0].integration_config.source_properties["IntegrationString"] #=> String
|
7096
7105
|
# resp.integrations[0].errors #=> Array
|
7097
7106
|
# resp.integrations[0].errors[0].error_code #=> String
|
7098
7107
|
# resp.integrations[0].errors[0].error_message #=> String
|
@@ -20448,7 +20457,7 @@ module Aws::Glue
|
|
20448
20457
|
tracer: tracer
|
20449
20458
|
)
|
20450
20459
|
context[:gem_name] = 'aws-sdk-glue'
|
20451
|
-
context[:gem_version] = '1.
|
20460
|
+
context[:gem_version] = '1.224.0'
|
20452
20461
|
Seahorse::Client::Request.new(handlers, context)
|
20453
20462
|
end
|
20454
20463
|
|
@@ -858,6 +858,7 @@ module Aws::Glue
|
|
858
858
|
IntegrationPartition = Shapes::StructureShape.new(name: 'IntegrationPartition')
|
859
859
|
IntegrationPartitionSpecList = Shapes::ListShape.new(name: 'IntegrationPartitionSpecList')
|
860
860
|
IntegrationQuotaExceededFault = Shapes::StructureShape.new(name: 'IntegrationQuotaExceededFault')
|
861
|
+
IntegrationSourcePropertiesMap = Shapes::MapShape.new(name: 'IntegrationSourcePropertiesMap')
|
861
862
|
IntegrationStatus = Shapes::StringShape.new(name: 'IntegrationStatus')
|
862
863
|
IntegrationString = Shapes::StringShape.new(name: 'IntegrationString')
|
863
864
|
IntegrationTagsList = Shapes::ListShape.new(name: 'IntegrationTagsList')
|
@@ -4862,6 +4863,7 @@ module Aws::Glue
|
|
4862
4863
|
IntegrationAdditionalEncryptionContextMap.value = Shapes::ShapeRef.new(shape: IntegrationString)
|
4863
4864
|
|
4864
4865
|
IntegrationConfig.add_member(:refresh_interval, Shapes::ShapeRef.new(shape: String128, location_name: "RefreshInterval"))
|
4866
|
+
IntegrationConfig.add_member(:source_properties, Shapes::ShapeRef.new(shape: IntegrationSourcePropertiesMap, location_name: "SourceProperties"))
|
4865
4867
|
IntegrationConfig.struct_class = Types::IntegrationConfig
|
4866
4868
|
|
4867
4869
|
IntegrationConflictOperationFault.add_member(:message, Shapes::ShapeRef.new(shape: IntegrationErrorMessage, location_name: "Message"))
|
@@ -4894,6 +4896,9 @@ module Aws::Glue
|
|
4894
4896
|
IntegrationQuotaExceededFault.add_member(:message, Shapes::ShapeRef.new(shape: IntegrationErrorMessage, location_name: "Message"))
|
4895
4897
|
IntegrationQuotaExceededFault.struct_class = Types::IntegrationQuotaExceededFault
|
4896
4898
|
|
4899
|
+
IntegrationSourcePropertiesMap.key = Shapes::ShapeRef.new(shape: IntegrationString)
|
4900
|
+
IntegrationSourcePropertiesMap.value = Shapes::ShapeRef.new(shape: IntegrationString)
|
4901
|
+
|
4897
4902
|
IntegrationTagsList.member = Shapes::ShapeRef.new(shape: Tag)
|
4898
4903
|
|
4899
4904
|
IntegrationsList.member = Shapes::ShapeRef.new(shape: Integration)
|
data/lib/aws-sdk-glue/types.rb
CHANGED
@@ -16280,10 +16280,18 @@ module Aws::Glue
|
|
16280
16280
|
# Currently supports creation of `RefreshInterval` only.
|
16281
16281
|
# @return [String]
|
16282
16282
|
#
|
16283
|
+
# @!attribute [rw] source_properties
|
16284
|
+
# A collection of key-value pairs that specify additional properties
|
16285
|
+
# for the integration source. These properties provide configuration
|
16286
|
+
# options that can be used to customize the behavior of the ODB source
|
16287
|
+
# during data integration operations.
|
16288
|
+
# @return [Hash<String,String>]
|
16289
|
+
#
|
16283
16290
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/IntegrationConfig AWS API Documentation
|
16284
16291
|
#
|
16285
16292
|
class IntegrationConfig < Struct.new(
|
16286
|
-
:refresh_interval
|
16293
|
+
:refresh_interval,
|
16294
|
+
:source_properties)
|
16287
16295
|
SENSITIVE = []
|
16288
16296
|
include Aws::Structure
|
16289
16297
|
end
|
data/lib/aws-sdk-glue.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -883,7 +883,8 @@ module Aws
|
|
883
883
|
},
|
884
884
|
],
|
885
885
|
?integration_config: {
|
886
|
-
refresh_interval: ::String
|
886
|
+
refresh_interval: ::String?,
|
887
|
+
source_properties: Hash[::String, ::String]?
|
887
888
|
}
|
888
889
|
) -> _CreateIntegrationResponseSuccess
|
889
890
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateIntegrationResponseSuccess
|
data/sig/types.rbs
CHANGED