aws-sdk-glue 1.271.0 → 1.273.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glue/client.rb +66 -2
- data/lib/aws-sdk-glue/client_api.rb +51 -3
- data/lib/aws-sdk-glue/types.rb +101 -1
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/client.rbs +18 -0
- data/sig/params.rbs +2 -1
- data/sig/types.rbs +28 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f06c18d41fd603cb9e82e9c9001a7664a914bfd947c6051b785cdca7cf367bcf
|
|
4
|
+
data.tar.gz: a8b9805f43e1e2704bc486014bd28de19383ecfc5d8960bd2f542fd88454d3f2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a95697d55d057f221ad9beefb3004ad5790d03445a463649ce444262e569073060149a918241dbe4eeb8347b801c3f548ce3500ab870687e8f8d035a894f210a
|
|
7
|
+
data.tar.gz: e01fce9a34bd476f4462c61976d88fa4d943e1173346bdcc3f52407301a09683dde1ada48cc80fac123eed543358afff598518b67e11ee1bc8a15a5874af674a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.273.0 (2026-09-14)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Amazon Glue releasing the new API ListIntegrationTableProperties and adding IntegrationArn to TargetTableConfig
|
|
8
|
+
|
|
9
|
+
1.272.0 (2026-09-11)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
4
14
|
1.271.0 (2026-09-09)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.273.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
|
@@ -3506,6 +3506,7 @@ module Aws::Glue
|
|
|
3506
3506
|
# },
|
|
3507
3507
|
# ],
|
|
3508
3508
|
# target_table_name: "String128",
|
|
3509
|
+
# integration_arn: "String128",
|
|
3509
3510
|
# },
|
|
3510
3511
|
# })
|
|
3511
3512
|
#
|
|
@@ -9565,6 +9566,7 @@ module Aws::Glue
|
|
|
9565
9566
|
# resp.target_table_config.partition_spec[0].function_spec #=> String
|
|
9566
9567
|
# resp.target_table_config.partition_spec[0].conversion_spec #=> String
|
|
9567
9568
|
# resp.target_table_config.target_table_name #=> String
|
|
9569
|
+
# resp.target_table_config.integration_arn #=> String
|
|
9568
9570
|
#
|
|
9569
9571
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetIntegrationTableProperties AWS API Documentation
|
|
9570
9572
|
#
|
|
@@ -14820,7 +14822,7 @@ module Aws::Glue
|
|
|
14820
14822
|
# @example Request syntax with placeholder values
|
|
14821
14823
|
#
|
|
14822
14824
|
# resp = client.list_integration_resource_properties({
|
|
14823
|
-
# marker: "
|
|
14825
|
+
# marker: "String4096",
|
|
14824
14826
|
# filters: [
|
|
14825
14827
|
# {
|
|
14826
14828
|
# name: "String128",
|
|
@@ -14851,6 +14853,67 @@ module Aws::Glue
|
|
|
14851
14853
|
req.send_request(options)
|
|
14852
14854
|
end
|
|
14853
14855
|
|
|
14856
|
+
# Lists the integration table properties in your account. This operation
|
|
14857
|
+
# supports filtering and pagination.
|
|
14858
|
+
#
|
|
14859
|
+
# @option params [String] :marker
|
|
14860
|
+
# The pagination token for the next page of results. The initial value
|
|
14861
|
+
# is `null`.
|
|
14862
|
+
#
|
|
14863
|
+
# @option params [Array<Types::IntegrationTablePropertiesFilter>] :filters
|
|
14864
|
+
# A list of filters. Supported filter keys are `SourceArn`, `TargetArn`,
|
|
14865
|
+
# `SourceTableName`, and `TargetTableName`.
|
|
14866
|
+
#
|
|
14867
|
+
# @option params [Integer] :max_records
|
|
14868
|
+
# The maximum number of records to return in the response.
|
|
14869
|
+
#
|
|
14870
|
+
# @return [Types::ListIntegrationTablePropertiesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
14871
|
+
#
|
|
14872
|
+
# * {Types::ListIntegrationTablePropertiesResponse#integration_table_properties_list #integration_table_properties_list} => Array<Types::IntegrationTableProperties>
|
|
14873
|
+
# * {Types::ListIntegrationTablePropertiesResponse#marker #marker} => String
|
|
14874
|
+
#
|
|
14875
|
+
# @example Request syntax with placeholder values
|
|
14876
|
+
#
|
|
14877
|
+
# resp = client.list_integration_table_properties({
|
|
14878
|
+
# marker: "String4096",
|
|
14879
|
+
# filters: [
|
|
14880
|
+
# {
|
|
14881
|
+
# name: "String128",
|
|
14882
|
+
# values: ["String128"],
|
|
14883
|
+
# },
|
|
14884
|
+
# ],
|
|
14885
|
+
# max_records: 1,
|
|
14886
|
+
# })
|
|
14887
|
+
#
|
|
14888
|
+
# @example Response structure
|
|
14889
|
+
#
|
|
14890
|
+
# resp.integration_table_properties_list #=> Array
|
|
14891
|
+
# resp.integration_table_properties_list[0].resource_arn #=> String
|
|
14892
|
+
# resp.integration_table_properties_list[0].table_name #=> String
|
|
14893
|
+
# resp.integration_table_properties_list[0].source_table_config.fields #=> Array
|
|
14894
|
+
# resp.integration_table_properties_list[0].source_table_config.fields[0] #=> String
|
|
14895
|
+
# resp.integration_table_properties_list[0].source_table_config.filter_predicate #=> String
|
|
14896
|
+
# resp.integration_table_properties_list[0].source_table_config.primary_key #=> Array
|
|
14897
|
+
# resp.integration_table_properties_list[0].source_table_config.primary_key[0] #=> String
|
|
14898
|
+
# resp.integration_table_properties_list[0].source_table_config.record_update_field #=> String
|
|
14899
|
+
# resp.integration_table_properties_list[0].target_table_config.unnest_spec #=> String, one of "TOPLEVEL", "FULL", "NOUNNEST"
|
|
14900
|
+
# resp.integration_table_properties_list[0].target_table_config.partition_spec #=> Array
|
|
14901
|
+
# resp.integration_table_properties_list[0].target_table_config.partition_spec[0].field_name #=> String
|
|
14902
|
+
# resp.integration_table_properties_list[0].target_table_config.partition_spec[0].function_spec #=> String
|
|
14903
|
+
# resp.integration_table_properties_list[0].target_table_config.partition_spec[0].conversion_spec #=> String
|
|
14904
|
+
# resp.integration_table_properties_list[0].target_table_config.target_table_name #=> String
|
|
14905
|
+
# resp.integration_table_properties_list[0].target_table_config.integration_arn #=> String
|
|
14906
|
+
# resp.marker #=> String
|
|
14907
|
+
#
|
|
14908
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListIntegrationTableProperties AWS API Documentation
|
|
14909
|
+
#
|
|
14910
|
+
# @overload list_integration_table_properties(params = {})
|
|
14911
|
+
# @param [Hash] params ({})
|
|
14912
|
+
def list_integration_table_properties(params = {}, options = {})
|
|
14913
|
+
req = build_request(:list_integration_table_properties, params)
|
|
14914
|
+
req.send_request(options)
|
|
14915
|
+
end
|
|
14916
|
+
|
|
14854
14917
|
# Lists the items in an iterable form on an asset in Glue Data Catalog.
|
|
14855
14918
|
# For example, lists the columns of a table asset.
|
|
14856
14919
|
#
|
|
@@ -20020,6 +20083,7 @@ module Aws::Glue
|
|
|
20020
20083
|
# },
|
|
20021
20084
|
# ],
|
|
20022
20085
|
# target_table_name: "String128",
|
|
20086
|
+
# integration_arn: "String128",
|
|
20023
20087
|
# },
|
|
20024
20088
|
# })
|
|
20025
20089
|
#
|
|
@@ -21102,7 +21166,7 @@ module Aws::Glue
|
|
|
21102
21166
|
tracer: tracer
|
|
21103
21167
|
)
|
|
21104
21168
|
context[:gem_name] = 'aws-sdk-glue'
|
|
21105
|
-
context[:gem_version] = '1.
|
|
21169
|
+
context[:gem_version] = '1.273.0'
|
|
21106
21170
|
Seahorse::Client::Request.new(handlers, context)
|
|
21107
21171
|
end
|
|
21108
21172
|
|
|
@@ -1020,6 +1020,11 @@ module Aws::Glue
|
|
|
1020
1020
|
IntegrationSourcePropertiesMap = Shapes::MapShape.new(name: 'IntegrationSourcePropertiesMap')
|
|
1021
1021
|
IntegrationStatus = Shapes::StringShape.new(name: 'IntegrationStatus')
|
|
1022
1022
|
IntegrationString = Shapes::StringShape.new(name: 'IntegrationString')
|
|
1023
|
+
IntegrationTableProperties = Shapes::StructureShape.new(name: 'IntegrationTableProperties')
|
|
1024
|
+
IntegrationTablePropertiesFilter = Shapes::StructureShape.new(name: 'IntegrationTablePropertiesFilter')
|
|
1025
|
+
IntegrationTablePropertiesFilterList = Shapes::ListShape.new(name: 'IntegrationTablePropertiesFilterList')
|
|
1026
|
+
IntegrationTablePropertiesFilterValues = Shapes::ListShape.new(name: 'IntegrationTablePropertiesFilterValues')
|
|
1027
|
+
IntegrationTablePropertiesList = Shapes::ListShape.new(name: 'IntegrationTablePropertiesList')
|
|
1023
1028
|
IntegrationTagsList = Shapes::ListShape.new(name: 'IntegrationTagsList')
|
|
1024
1029
|
IntegrationTimestamp = Shapes::TimestampShape.new(name: 'IntegrationTimestamp')
|
|
1025
1030
|
IntegrationType = Shapes::StringShape.new(name: 'IntegrationType')
|
|
@@ -1143,6 +1148,8 @@ module Aws::Glue
|
|
|
1143
1148
|
ListGlossaryTermsResponse = Shapes::StructureShape.new(name: 'ListGlossaryTermsResponse')
|
|
1144
1149
|
ListIntegrationResourcePropertiesRequest = Shapes::StructureShape.new(name: 'ListIntegrationResourcePropertiesRequest')
|
|
1145
1150
|
ListIntegrationResourcePropertiesResponse = Shapes::StructureShape.new(name: 'ListIntegrationResourcePropertiesResponse')
|
|
1151
|
+
ListIntegrationTablePropertiesRequest = Shapes::StructureShape.new(name: 'ListIntegrationTablePropertiesRequest')
|
|
1152
|
+
ListIntegrationTablePropertiesResponse = Shapes::StructureShape.new(name: 'ListIntegrationTablePropertiesResponse')
|
|
1146
1153
|
ListIterableFormsRequest = Shapes::StructureShape.new(name: 'ListIterableFormsRequest')
|
|
1147
1154
|
ListIterableFormsResponse = Shapes::StructureShape.new(name: 'ListIterableFormsResponse')
|
|
1148
1155
|
ListJobsRequest = Shapes::StructureShape.new(name: 'ListJobsRequest')
|
|
@@ -1644,9 +1651,9 @@ module Aws::Glue
|
|
|
1644
1651
|
StorageDescriptor = Shapes::StructureShape.new(name: 'StorageDescriptor')
|
|
1645
1652
|
StreamingDataPreviewOptions = Shapes::StructureShape.new(name: 'StreamingDataPreviewOptions')
|
|
1646
1653
|
String = Shapes::StringShape.new(name: 'String')
|
|
1647
|
-
String1024 = Shapes::StringShape.new(name: 'String1024')
|
|
1648
1654
|
String128 = Shapes::StringShape.new(name: 'String128')
|
|
1649
1655
|
String2048 = Shapes::StringShape.new(name: 'String2048')
|
|
1656
|
+
String4096 = Shapes::StringShape.new(name: 'String4096')
|
|
1650
1657
|
String512 = Shapes::StringShape.new(name: 'String512')
|
|
1651
1658
|
StringColumnStatisticsData = Shapes::StructureShape.new(name: 'StringColumnStatisticsData')
|
|
1652
1659
|
StringList = Shapes::ListShape.new(name: 'StringList')
|
|
@@ -5761,6 +5768,22 @@ module Aws::Glue
|
|
|
5761
5768
|
IntegrationSourcePropertiesMap.key = Shapes::ShapeRef.new(shape: IntegrationString)
|
|
5762
5769
|
IntegrationSourcePropertiesMap.value = Shapes::ShapeRef.new(shape: IntegrationString)
|
|
5763
5770
|
|
|
5771
|
+
IntegrationTableProperties.add_member(:resource_arn, Shapes::ShapeRef.new(shape: String512, required: true, location_name: "ResourceArn"))
|
|
5772
|
+
IntegrationTableProperties.add_member(:table_name, Shapes::ShapeRef.new(shape: String128, required: true, location_name: "TableName"))
|
|
5773
|
+
IntegrationTableProperties.add_member(:source_table_config, Shapes::ShapeRef.new(shape: SourceTableConfig, location_name: "SourceTableConfig"))
|
|
5774
|
+
IntegrationTableProperties.add_member(:target_table_config, Shapes::ShapeRef.new(shape: TargetTableConfig, location_name: "TargetTableConfig"))
|
|
5775
|
+
IntegrationTableProperties.struct_class = Types::IntegrationTableProperties
|
|
5776
|
+
|
|
5777
|
+
IntegrationTablePropertiesFilter.add_member(:name, Shapes::ShapeRef.new(shape: String128, location_name: "Name"))
|
|
5778
|
+
IntegrationTablePropertiesFilter.add_member(:values, Shapes::ShapeRef.new(shape: IntegrationTablePropertiesFilterValues, location_name: "Values"))
|
|
5779
|
+
IntegrationTablePropertiesFilter.struct_class = Types::IntegrationTablePropertiesFilter
|
|
5780
|
+
|
|
5781
|
+
IntegrationTablePropertiesFilterList.member = Shapes::ShapeRef.new(shape: IntegrationTablePropertiesFilter)
|
|
5782
|
+
|
|
5783
|
+
IntegrationTablePropertiesFilterValues.member = Shapes::ShapeRef.new(shape: String128)
|
|
5784
|
+
|
|
5785
|
+
IntegrationTablePropertiesList.member = Shapes::ShapeRef.new(shape: IntegrationTableProperties)
|
|
5786
|
+
|
|
5764
5787
|
IntegrationTagsList.member = Shapes::ShapeRef.new(shape: Tag)
|
|
5765
5788
|
|
|
5766
5789
|
IntegrationsList.member = Shapes::ShapeRef.new(shape: Integration)
|
|
@@ -6248,15 +6271,24 @@ module Aws::Glue
|
|
|
6248
6271
|
ListGlossaryTermsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location_name: "NextToken"))
|
|
6249
6272
|
ListGlossaryTermsResponse.struct_class = Types::ListGlossaryTermsResponse
|
|
6250
6273
|
|
|
6251
|
-
ListIntegrationResourcePropertiesRequest.add_member(:marker, Shapes::ShapeRef.new(shape:
|
|
6274
|
+
ListIntegrationResourcePropertiesRequest.add_member(:marker, Shapes::ShapeRef.new(shape: String4096, location_name: "Marker"))
|
|
6252
6275
|
ListIntegrationResourcePropertiesRequest.add_member(:filters, Shapes::ShapeRef.new(shape: IntegrationResourcePropertyFilterList, location_name: "Filters"))
|
|
6253
6276
|
ListIntegrationResourcePropertiesRequest.add_member(:max_records, Shapes::ShapeRef.new(shape: IntegrationInteger, location_name: "MaxRecords"))
|
|
6254
6277
|
ListIntegrationResourcePropertiesRequest.struct_class = Types::ListIntegrationResourcePropertiesRequest
|
|
6255
6278
|
|
|
6256
6279
|
ListIntegrationResourcePropertiesResponse.add_member(:integration_resource_property_list, Shapes::ShapeRef.new(shape: IntegrationResourcePropertyList, location_name: "IntegrationResourcePropertyList"))
|
|
6257
|
-
ListIntegrationResourcePropertiesResponse.add_member(:marker, Shapes::ShapeRef.new(shape:
|
|
6280
|
+
ListIntegrationResourcePropertiesResponse.add_member(:marker, Shapes::ShapeRef.new(shape: String4096, location_name: "Marker"))
|
|
6258
6281
|
ListIntegrationResourcePropertiesResponse.struct_class = Types::ListIntegrationResourcePropertiesResponse
|
|
6259
6282
|
|
|
6283
|
+
ListIntegrationTablePropertiesRequest.add_member(:marker, Shapes::ShapeRef.new(shape: String4096, location_name: "Marker"))
|
|
6284
|
+
ListIntegrationTablePropertiesRequest.add_member(:filters, Shapes::ShapeRef.new(shape: IntegrationTablePropertiesFilterList, location_name: "Filters"))
|
|
6285
|
+
ListIntegrationTablePropertiesRequest.add_member(:max_records, Shapes::ShapeRef.new(shape: IntegrationInteger, location_name: "MaxRecords"))
|
|
6286
|
+
ListIntegrationTablePropertiesRequest.struct_class = Types::ListIntegrationTablePropertiesRequest
|
|
6287
|
+
|
|
6288
|
+
ListIntegrationTablePropertiesResponse.add_member(:integration_table_properties_list, Shapes::ShapeRef.new(shape: IntegrationTablePropertiesList, location_name: "IntegrationTablePropertiesList"))
|
|
6289
|
+
ListIntegrationTablePropertiesResponse.add_member(:marker, Shapes::ShapeRef.new(shape: String4096, location_name: "Marker"))
|
|
6290
|
+
ListIntegrationTablePropertiesResponse.struct_class = Types::ListIntegrationTablePropertiesResponse
|
|
6291
|
+
|
|
6260
6292
|
ListIterableFormsRequest.add_member(:asset_identifier, Shapes::ShapeRef.new(shape: AssetId, required: true, location_name: "AssetIdentifier"))
|
|
6261
6293
|
ListIterableFormsRequest.add_member(:iterable_form_name, Shapes::ShapeRef.new(shape: IterableFormName, required: true, location_name: "IterableFormName"))
|
|
6262
6294
|
ListIterableFormsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PageSize, location_name: "MaxResults"))
|
|
@@ -8134,6 +8166,7 @@ module Aws::Glue
|
|
|
8134
8166
|
TargetTableConfig.add_member(:unnest_spec, Shapes::ShapeRef.new(shape: UnnestSpec, location_name: "UnnestSpec"))
|
|
8135
8167
|
TargetTableConfig.add_member(:partition_spec, Shapes::ShapeRef.new(shape: IntegrationPartitionSpecList, location_name: "PartitionSpec"))
|
|
8136
8168
|
TargetTableConfig.add_member(:target_table_name, Shapes::ShapeRef.new(shape: String128, location_name: "TargetTableName"))
|
|
8169
|
+
TargetTableConfig.add_member(:integration_arn, Shapes::ShapeRef.new(shape: String128, location_name: "IntegrationArn"))
|
|
8137
8170
|
TargetTableConfig.struct_class = Types::TargetTableConfig
|
|
8138
8171
|
|
|
8139
8172
|
TaskRun.add_member(:transform_id, Shapes::ShapeRef.new(shape: HashString, location_name: "TransformId"))
|
|
@@ -11714,6 +11747,21 @@ module Aws::Glue
|
|
|
11714
11747
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
|
11715
11748
|
end)
|
|
11716
11749
|
|
|
11750
|
+
api.add_operation(:list_integration_table_properties, Seahorse::Model::Operation.new.tap do |o|
|
|
11751
|
+
o.name = "ListIntegrationTableProperties"
|
|
11752
|
+
o.http_method = "POST"
|
|
11753
|
+
o.http_request_uri = "/"
|
|
11754
|
+
o.input = Shapes::ShapeRef.new(shape: ListIntegrationTablePropertiesRequest)
|
|
11755
|
+
o.output = Shapes::ShapeRef.new(shape: ListIntegrationTablePropertiesResponse)
|
|
11756
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
11757
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
11758
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
11759
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
11760
|
+
o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
|
|
11761
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
|
11762
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
|
11763
|
+
end)
|
|
11764
|
+
|
|
11717
11765
|
api.add_operation(:list_iterable_forms, Seahorse::Model::Operation.new.tap do |o|
|
|
11718
11766
|
o.name = "ListIterableForms"
|
|
11719
11767
|
o.http_method = "POST"
|
data/lib/aws-sdk-glue/types.rb
CHANGED
|
@@ -19167,6 +19167,58 @@ module Aws::Glue
|
|
|
19167
19167
|
include Aws::Structure
|
|
19168
19168
|
end
|
|
19169
19169
|
|
|
19170
|
+
# The properties of a single integration table, including the resource
|
|
19171
|
+
# ARN, the table name, and the source or target table configuration.
|
|
19172
|
+
#
|
|
19173
|
+
# @!attribute [rw] resource_arn
|
|
19174
|
+
# The connection ARN of the source, or the database ARN of the target.
|
|
19175
|
+
# @return [String]
|
|
19176
|
+
#
|
|
19177
|
+
# @!attribute [rw] table_name
|
|
19178
|
+
# The name of the source table to be replicated.
|
|
19179
|
+
# @return [String]
|
|
19180
|
+
#
|
|
19181
|
+
# @!attribute [rw] source_table_config
|
|
19182
|
+
# A structure for the source table configuration.
|
|
19183
|
+
# @return [Types::SourceTableConfig]
|
|
19184
|
+
#
|
|
19185
|
+
# @!attribute [rw] target_table_config
|
|
19186
|
+
# A structure for the target table configuration.
|
|
19187
|
+
# @return [Types::TargetTableConfig]
|
|
19188
|
+
#
|
|
19189
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/IntegrationTableProperties AWS API Documentation
|
|
19190
|
+
#
|
|
19191
|
+
class IntegrationTableProperties < Struct.new(
|
|
19192
|
+
:resource_arn,
|
|
19193
|
+
:table_name,
|
|
19194
|
+
:source_table_config,
|
|
19195
|
+
:target_table_config)
|
|
19196
|
+
SENSITIVE = []
|
|
19197
|
+
include Aws::Structure
|
|
19198
|
+
end
|
|
19199
|
+
|
|
19200
|
+
# A key-value filter used to narrow the list of integration table
|
|
19201
|
+
# properties returned by ListIntegrationTableProperties. Specify a
|
|
19202
|
+
# filter key and one or more values to match.
|
|
19203
|
+
#
|
|
19204
|
+
# @!attribute [rw] name
|
|
19205
|
+
# The name of the filter. Supported filter keys are `SourceArn`,
|
|
19206
|
+
# `TargetArn`, `SourceTableName`, and `TargetTableName`.
|
|
19207
|
+
# @return [String]
|
|
19208
|
+
#
|
|
19209
|
+
# @!attribute [rw] values
|
|
19210
|
+
# A list of filter values.
|
|
19211
|
+
# @return [Array<String>]
|
|
19212
|
+
#
|
|
19213
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/IntegrationTablePropertiesFilter AWS API Documentation
|
|
19214
|
+
#
|
|
19215
|
+
class IntegrationTablePropertiesFilter < Struct.new(
|
|
19216
|
+
:name,
|
|
19217
|
+
:values)
|
|
19218
|
+
SENSITIVE = []
|
|
19219
|
+
include Aws::Structure
|
|
19220
|
+
end
|
|
19221
|
+
|
|
19170
19222
|
# An internal server error occurred.
|
|
19171
19223
|
#
|
|
19172
19224
|
# @!attribute [rw] message
|
|
@@ -22040,6 +22092,48 @@ module Aws::Glue
|
|
|
22040
22092
|
include Aws::Structure
|
|
22041
22093
|
end
|
|
22042
22094
|
|
|
22095
|
+
# @!attribute [rw] marker
|
|
22096
|
+
# The pagination token for the next page of results. The initial value
|
|
22097
|
+
# is `null`.
|
|
22098
|
+
# @return [String]
|
|
22099
|
+
#
|
|
22100
|
+
# @!attribute [rw] filters
|
|
22101
|
+
# A list of filters. Supported filter keys are `SourceArn`,
|
|
22102
|
+
# `TargetArn`, `SourceTableName`, and `TargetTableName`.
|
|
22103
|
+
# @return [Array<Types::IntegrationTablePropertiesFilter>]
|
|
22104
|
+
#
|
|
22105
|
+
# @!attribute [rw] max_records
|
|
22106
|
+
# The maximum number of records to return in the response.
|
|
22107
|
+
# @return [Integer]
|
|
22108
|
+
#
|
|
22109
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListIntegrationTablePropertiesRequest AWS API Documentation
|
|
22110
|
+
#
|
|
22111
|
+
class ListIntegrationTablePropertiesRequest < Struct.new(
|
|
22112
|
+
:marker,
|
|
22113
|
+
:filters,
|
|
22114
|
+
:max_records)
|
|
22115
|
+
SENSITIVE = []
|
|
22116
|
+
include Aws::Structure
|
|
22117
|
+
end
|
|
22118
|
+
|
|
22119
|
+
# @!attribute [rw] integration_table_properties_list
|
|
22120
|
+
# A list of integration table properties meeting the filter criteria.
|
|
22121
|
+
# @return [Array<Types::IntegrationTableProperties>]
|
|
22122
|
+
#
|
|
22123
|
+
# @!attribute [rw] marker
|
|
22124
|
+
# The pagination token for the next page. Returns `null` if there are
|
|
22125
|
+
# no more results.
|
|
22126
|
+
# @return [String]
|
|
22127
|
+
#
|
|
22128
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListIntegrationTablePropertiesResponse AWS API Documentation
|
|
22129
|
+
#
|
|
22130
|
+
class ListIntegrationTablePropertiesResponse < Struct.new(
|
|
22131
|
+
:integration_table_properties_list,
|
|
22132
|
+
:marker)
|
|
22133
|
+
SENSITIVE = []
|
|
22134
|
+
include Aws::Structure
|
|
22135
|
+
end
|
|
22136
|
+
|
|
22043
22137
|
# @!attribute [rw] asset_identifier
|
|
22044
22138
|
# The unique identifier of the asset.
|
|
22045
22139
|
# @return [String]
|
|
@@ -31028,12 +31122,18 @@ module Aws::Glue
|
|
|
31028
31122
|
# The optional name of a target table.
|
|
31029
31123
|
# @return [String]
|
|
31030
31124
|
#
|
|
31125
|
+
# @!attribute [rw] integration_arn
|
|
31126
|
+
# The ARN of the integration that owns this target table
|
|
31127
|
+
# configuration.
|
|
31128
|
+
# @return [String]
|
|
31129
|
+
#
|
|
31031
31130
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/TargetTableConfig AWS API Documentation
|
|
31032
31131
|
#
|
|
31033
31132
|
class TargetTableConfig < Struct.new(
|
|
31034
31133
|
:unnest_spec,
|
|
31035
31134
|
:partition_spec,
|
|
31036
|
-
:target_table_name
|
|
31135
|
+
:target_table_name,
|
|
31136
|
+
:integration_arn)
|
|
31037
31137
|
SENSITIVE = []
|
|
31038
31138
|
include Aws::Structure
|
|
31039
31139
|
end
|
data/lib/aws-sdk-glue.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -3306,6 +3306,24 @@ module Aws
|
|
|
3306
3306
|
) -> _ListIntegrationResourcePropertiesResponseSuccess
|
|
3307
3307
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListIntegrationResourcePropertiesResponseSuccess
|
|
3308
3308
|
|
|
3309
|
+
interface _ListIntegrationTablePropertiesResponseSuccess
|
|
3310
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListIntegrationTablePropertiesResponse]
|
|
3311
|
+
def integration_table_properties_list: () -> ::Array[Types::IntegrationTableProperties]
|
|
3312
|
+
def marker: () -> ::String
|
|
3313
|
+
end
|
|
3314
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#list_integration_table_properties-instance_method
|
|
3315
|
+
def list_integration_table_properties: (
|
|
3316
|
+
?marker: ::String,
|
|
3317
|
+
?filters: Array[
|
|
3318
|
+
{
|
|
3319
|
+
name: ::String?,
|
|
3320
|
+
values: Array[::String]?
|
|
3321
|
+
}
|
|
3322
|
+
],
|
|
3323
|
+
?max_records: ::Integer
|
|
3324
|
+
) -> _ListIntegrationTablePropertiesResponseSuccess
|
|
3325
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListIntegrationTablePropertiesResponseSuccess
|
|
3326
|
+
|
|
3309
3327
|
interface _ListIterableFormsResponseSuccess
|
|
3310
3328
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListIterableFormsResponse]
|
|
3311
3329
|
def items: () -> ::Array[Types::IterableFormListItem]
|
data/sig/params.rbs
CHANGED
data/sig/types.rbs
CHANGED
|
@@ -4781,6 +4781,20 @@ module Aws::Glue
|
|
|
4781
4781
|
SENSITIVE: []
|
|
4782
4782
|
end
|
|
4783
4783
|
|
|
4784
|
+
class IntegrationTableProperties
|
|
4785
|
+
attr_accessor resource_arn: ::String
|
|
4786
|
+
attr_accessor table_name: ::String
|
|
4787
|
+
attr_accessor source_table_config: Types::SourceTableConfig
|
|
4788
|
+
attr_accessor target_table_config: Types::TargetTableConfig
|
|
4789
|
+
SENSITIVE: []
|
|
4790
|
+
end
|
|
4791
|
+
|
|
4792
|
+
class IntegrationTablePropertiesFilter
|
|
4793
|
+
attr_accessor name: ::String
|
|
4794
|
+
attr_accessor values: ::Array[::String]
|
|
4795
|
+
SENSITIVE: []
|
|
4796
|
+
end
|
|
4797
|
+
|
|
4784
4798
|
class InternalServerException
|
|
4785
4799
|
attr_accessor message: ::String
|
|
4786
4800
|
SENSITIVE: []
|
|
@@ -5380,6 +5394,19 @@ module Aws::Glue
|
|
|
5380
5394
|
SENSITIVE: []
|
|
5381
5395
|
end
|
|
5382
5396
|
|
|
5397
|
+
class ListIntegrationTablePropertiesRequest
|
|
5398
|
+
attr_accessor marker: ::String
|
|
5399
|
+
attr_accessor filters: ::Array[Types::IntegrationTablePropertiesFilter]
|
|
5400
|
+
attr_accessor max_records: ::Integer
|
|
5401
|
+
SENSITIVE: []
|
|
5402
|
+
end
|
|
5403
|
+
|
|
5404
|
+
class ListIntegrationTablePropertiesResponse
|
|
5405
|
+
attr_accessor integration_table_properties_list: ::Array[Types::IntegrationTableProperties]
|
|
5406
|
+
attr_accessor marker: ::String
|
|
5407
|
+
SENSITIVE: []
|
|
5408
|
+
end
|
|
5409
|
+
|
|
5383
5410
|
class ListIterableFormsRequest
|
|
5384
5411
|
attr_accessor asset_identifier: ::String
|
|
5385
5412
|
attr_accessor iterable_form_name: ::String
|
|
@@ -7680,6 +7707,7 @@ module Aws::Glue
|
|
|
7680
7707
|
attr_accessor unnest_spec: ("TOPLEVEL" | "FULL" | "NOUNNEST")
|
|
7681
7708
|
attr_accessor partition_spec: ::Array[Types::IntegrationPartition]
|
|
7682
7709
|
attr_accessor target_table_name: ::String
|
|
7710
|
+
attr_accessor integration_arn: ::String
|
|
7683
7711
|
SENSITIVE: []
|
|
7684
7712
|
end
|
|
7685
7713
|
|
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.
|
|
4
|
+
version: 1.273.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.256.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.256.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|