aws-sdk-glue 1.240.0 → 1.241.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 +104 -12
- data/lib/aws-sdk-glue/client_api.rb +99 -24
- data/lib/aws-sdk-glue/types.rb +138 -4
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/client.rbs +37 -1
- data/sig/types.rbs +39 -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: 5c571088da7877e68c753ca2a14170e534b6fa2d2f6966a7ddcbb3347bdbb978
|
|
4
|
+
data.tar.gz: c1444fef632df415a97723733fd5f9643a08647ef13d2ede8f434105ab37cf3c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 30539120dd8a03f70bd17b54ae67bd9d65fc328e851f35723df3c16216e7c38d4847b815901862869411ef7f552facd89271ef67e0e6554f355a42b03fbacda0
|
|
7
|
+
data.tar.gz: fe099c2b6d903bbd0bfd8292c8bf0ad73f950eab09c967ec437e3ff0d7a86d84036f7034a9be66f9cf4acde752699df4d1fd4d6564a815ce2395ef8862a57818
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.241.0 (2025-11-17)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Amazon Glue Releasing 2 the new API ListIntegrationResourceProperties and DeleteIntegrationResourceProperty along with minor improvement on existing API(s).
|
|
8
|
+
|
|
4
9
|
1.240.0 (2025-10-30)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.241.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
|
@@ -2985,8 +2985,8 @@ module Aws::Glue
|
|
|
2985
2985
|
#
|
|
2986
2986
|
# resp = client.create_integration({
|
|
2987
2987
|
# integration_name: "String128", # required
|
|
2988
|
-
# source_arn: "
|
|
2989
|
-
# target_arn: "
|
|
2988
|
+
# source_arn: "String512", # required
|
|
2989
|
+
# target_arn: "String512", # required
|
|
2990
2990
|
# description: "IntegrationDescription",
|
|
2991
2991
|
# data_filter: "String2048",
|
|
2992
2992
|
# kms_key_id: "String2048",
|
|
@@ -3058,16 +3058,21 @@ module Aws::Glue
|
|
|
3058
3058
|
# @option params [Types::TargetProcessingProperties] :target_processing_properties
|
|
3059
3059
|
# The resource properties associated with the integration target.
|
|
3060
3060
|
#
|
|
3061
|
+
# @option params [Array<Types::Tag>] :tags
|
|
3062
|
+
# Metadata assigned to the resource consisting of a list of key-value
|
|
3063
|
+
# pairs.
|
|
3064
|
+
#
|
|
3061
3065
|
# @return [Types::CreateIntegrationResourcePropertyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3062
3066
|
#
|
|
3063
3067
|
# * {Types::CreateIntegrationResourcePropertyResponse#resource_arn #resource_arn} => String
|
|
3068
|
+
# * {Types::CreateIntegrationResourcePropertyResponse#resource_property_arn #resource_property_arn} => String
|
|
3064
3069
|
# * {Types::CreateIntegrationResourcePropertyResponse#source_processing_properties #source_processing_properties} => Types::SourceProcessingProperties
|
|
3065
3070
|
# * {Types::CreateIntegrationResourcePropertyResponse#target_processing_properties #target_processing_properties} => Types::TargetProcessingProperties
|
|
3066
3071
|
#
|
|
3067
3072
|
# @example Request syntax with placeholder values
|
|
3068
3073
|
#
|
|
3069
3074
|
# resp = client.create_integration_resource_property({
|
|
3070
|
-
# resource_arn: "
|
|
3075
|
+
# resource_arn: "String512", # required
|
|
3071
3076
|
# source_processing_properties: {
|
|
3072
3077
|
# role_arn: "String128",
|
|
3073
3078
|
# },
|
|
@@ -3077,11 +3082,18 @@ module Aws::Glue
|
|
|
3077
3082
|
# connection_name: "String128",
|
|
3078
3083
|
# event_bus_arn: "String2048",
|
|
3079
3084
|
# },
|
|
3085
|
+
# tags: [
|
|
3086
|
+
# {
|
|
3087
|
+
# key: "TagKey",
|
|
3088
|
+
# value: "TagValue",
|
|
3089
|
+
# },
|
|
3090
|
+
# ],
|
|
3080
3091
|
# })
|
|
3081
3092
|
#
|
|
3082
3093
|
# @example Response structure
|
|
3083
3094
|
#
|
|
3084
3095
|
# resp.resource_arn #=> String
|
|
3096
|
+
# resp.resource_property_arn #=> String
|
|
3085
3097
|
# resp.source_processing_properties.role_arn #=> String
|
|
3086
3098
|
# resp.target_processing_properties.role_arn #=> String
|
|
3087
3099
|
# resp.target_processing_properties.kms_arn #=> String
|
|
@@ -3130,7 +3142,7 @@ module Aws::Glue
|
|
|
3130
3142
|
# @example Request syntax with placeholder values
|
|
3131
3143
|
#
|
|
3132
3144
|
# resp = client.create_integration_table_properties({
|
|
3133
|
-
# resource_arn: "
|
|
3145
|
+
# resource_arn: "String512", # required
|
|
3134
3146
|
# table_name: "String128", # required
|
|
3135
3147
|
# source_table_config: {
|
|
3136
3148
|
# fields: ["String128"],
|
|
@@ -5241,6 +5253,29 @@ module Aws::Glue
|
|
|
5241
5253
|
req.send_request(options)
|
|
5242
5254
|
end
|
|
5243
5255
|
|
|
5256
|
+
# This API is used for deleting the `ResourceProperty` of the Glue
|
|
5257
|
+
# connection (for the source) or Glue database ARN (for the target).
|
|
5258
|
+
#
|
|
5259
|
+
# @option params [required, String] :resource_arn
|
|
5260
|
+
# The connection ARN of the source, or the database ARN of the target.
|
|
5261
|
+
#
|
|
5262
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
5263
|
+
#
|
|
5264
|
+
# @example Request syntax with placeholder values
|
|
5265
|
+
#
|
|
5266
|
+
# resp = client.delete_integration_resource_property({
|
|
5267
|
+
# resource_arn: "String512", # required
|
|
5268
|
+
# })
|
|
5269
|
+
#
|
|
5270
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DeleteIntegrationResourceProperty AWS API Documentation
|
|
5271
|
+
#
|
|
5272
|
+
# @overload delete_integration_resource_property(params = {})
|
|
5273
|
+
# @param [Hash] params ({})
|
|
5274
|
+
def delete_integration_resource_property(params = {}, options = {})
|
|
5275
|
+
req = build_request(:delete_integration_resource_property, params)
|
|
5276
|
+
req.send_request(options)
|
|
5277
|
+
end
|
|
5278
|
+
|
|
5244
5279
|
# Deletes the table properties that have been created for the tables
|
|
5245
5280
|
# that need to be replicated.
|
|
5246
5281
|
#
|
|
@@ -5255,7 +5290,7 @@ module Aws::Glue
|
|
|
5255
5290
|
# @example Request syntax with placeholder values
|
|
5256
5291
|
#
|
|
5257
5292
|
# resp = client.delete_integration_table_properties({
|
|
5258
|
-
# resource_arn: "
|
|
5293
|
+
# resource_arn: "String512", # required
|
|
5259
5294
|
# table_name: "String128", # required
|
|
5260
5295
|
# })
|
|
5261
5296
|
#
|
|
@@ -6167,7 +6202,7 @@ module Aws::Glue
|
|
|
6167
6202
|
# integration_arn: "String128",
|
|
6168
6203
|
# marker: "String128",
|
|
6169
6204
|
# max_records: 1,
|
|
6170
|
-
# target_arn: "
|
|
6205
|
+
# target_arn: "String512",
|
|
6171
6206
|
# })
|
|
6172
6207
|
#
|
|
6173
6208
|
# @example Response structure
|
|
@@ -8362,18 +8397,20 @@ module Aws::Glue
|
|
|
8362
8397
|
# @return [Types::GetIntegrationResourcePropertyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
8363
8398
|
#
|
|
8364
8399
|
# * {Types::GetIntegrationResourcePropertyResponse#resource_arn #resource_arn} => String
|
|
8400
|
+
# * {Types::GetIntegrationResourcePropertyResponse#resource_property_arn #resource_property_arn} => String
|
|
8365
8401
|
# * {Types::GetIntegrationResourcePropertyResponse#source_processing_properties #source_processing_properties} => Types::SourceProcessingProperties
|
|
8366
8402
|
# * {Types::GetIntegrationResourcePropertyResponse#target_processing_properties #target_processing_properties} => Types::TargetProcessingProperties
|
|
8367
8403
|
#
|
|
8368
8404
|
# @example Request syntax with placeholder values
|
|
8369
8405
|
#
|
|
8370
8406
|
# resp = client.get_integration_resource_property({
|
|
8371
|
-
# resource_arn: "
|
|
8407
|
+
# resource_arn: "String512", # required
|
|
8372
8408
|
# })
|
|
8373
8409
|
#
|
|
8374
8410
|
# @example Response structure
|
|
8375
8411
|
#
|
|
8376
8412
|
# resp.resource_arn #=> String
|
|
8413
|
+
# resp.resource_property_arn #=> String
|
|
8377
8414
|
# resp.source_processing_properties.role_arn #=> String
|
|
8378
8415
|
# resp.target_processing_properties.role_arn #=> String
|
|
8379
8416
|
# resp.target_processing_properties.kms_arn #=> String
|
|
@@ -8415,7 +8452,7 @@ module Aws::Glue
|
|
|
8415
8452
|
# @example Request syntax with placeholder values
|
|
8416
8453
|
#
|
|
8417
8454
|
# resp = client.get_integration_table_properties({
|
|
8418
|
-
# resource_arn: "
|
|
8455
|
+
# resource_arn: "String512", # required
|
|
8419
8456
|
# table_name: "String128", # required
|
|
8420
8457
|
# })
|
|
8421
8458
|
#
|
|
@@ -13147,6 +13184,58 @@ module Aws::Glue
|
|
|
13147
13184
|
req.send_request(options)
|
|
13148
13185
|
end
|
|
13149
13186
|
|
|
13187
|
+
# List integration resource properties for a single customer. It
|
|
13188
|
+
# supports the filters, maxRecords and markers.
|
|
13189
|
+
#
|
|
13190
|
+
# @option params [String] :marker
|
|
13191
|
+
# This is the pagination token for next page, initial value is `null`.
|
|
13192
|
+
#
|
|
13193
|
+
# @option params [Array<Types::IntegrationResourcePropertyFilter>] :filters
|
|
13194
|
+
# A list of filters, supported filter Key is `SourceArn` and
|
|
13195
|
+
# `TargetArn`.
|
|
13196
|
+
#
|
|
13197
|
+
# @option params [Integer] :max_records
|
|
13198
|
+
# This is total number of items to be evaluated.
|
|
13199
|
+
#
|
|
13200
|
+
# @return [Types::ListIntegrationResourcePropertiesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
13201
|
+
#
|
|
13202
|
+
# * {Types::ListIntegrationResourcePropertiesResponse#integration_resource_property_list #integration_resource_property_list} => Array<Types::IntegrationResourceProperty>
|
|
13203
|
+
# * {Types::ListIntegrationResourcePropertiesResponse#marker #marker} => String
|
|
13204
|
+
#
|
|
13205
|
+
# @example Request syntax with placeholder values
|
|
13206
|
+
#
|
|
13207
|
+
# resp = client.list_integration_resource_properties({
|
|
13208
|
+
# marker: "String1024",
|
|
13209
|
+
# filters: [
|
|
13210
|
+
# {
|
|
13211
|
+
# name: "String128",
|
|
13212
|
+
# values: ["String128"],
|
|
13213
|
+
# },
|
|
13214
|
+
# ],
|
|
13215
|
+
# max_records: 1,
|
|
13216
|
+
# })
|
|
13217
|
+
#
|
|
13218
|
+
# @example Response structure
|
|
13219
|
+
#
|
|
13220
|
+
# resp.integration_resource_property_list #=> Array
|
|
13221
|
+
# resp.integration_resource_property_list[0].resource_arn #=> String
|
|
13222
|
+
# resp.integration_resource_property_list[0].resource_property_arn #=> String
|
|
13223
|
+
# resp.integration_resource_property_list[0].source_processing_properties.role_arn #=> String
|
|
13224
|
+
# resp.integration_resource_property_list[0].target_processing_properties.role_arn #=> String
|
|
13225
|
+
# resp.integration_resource_property_list[0].target_processing_properties.kms_arn #=> String
|
|
13226
|
+
# resp.integration_resource_property_list[0].target_processing_properties.connection_name #=> String
|
|
13227
|
+
# resp.integration_resource_property_list[0].target_processing_properties.event_bus_arn #=> String
|
|
13228
|
+
# resp.marker #=> String
|
|
13229
|
+
#
|
|
13230
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListIntegrationResourceProperties AWS API Documentation
|
|
13231
|
+
#
|
|
13232
|
+
# @overload list_integration_resource_properties(params = {})
|
|
13233
|
+
# @param [Hash] params ({})
|
|
13234
|
+
def list_integration_resource_properties(params = {}, options = {})
|
|
13235
|
+
req = build_request(:list_integration_resource_properties, params)
|
|
13236
|
+
req.send_request(options)
|
|
13237
|
+
end
|
|
13238
|
+
|
|
13150
13239
|
# Retrieves the names of all job resources in this Amazon Web Services
|
|
13151
13240
|
# account, or the resources with the specified tag. This operation
|
|
13152
13241
|
# allows you to see which resources are available in your account, and
|
|
@@ -13790,7 +13879,8 @@ module Aws::Glue
|
|
|
13790
13879
|
# Selects source tables for the integration using Maxwell filter syntax.
|
|
13791
13880
|
#
|
|
13792
13881
|
# @option params [Types::IntegrationConfig] :integration_config
|
|
13793
|
-
#
|
|
13882
|
+
# The configuration settings for the integration. Currently, only the
|
|
13883
|
+
# RefreshInterval can be modified.
|
|
13794
13884
|
#
|
|
13795
13885
|
# @option params [String] :integration_name
|
|
13796
13886
|
# A unique name for an integration in Glue.
|
|
@@ -16816,13 +16906,14 @@ module Aws::Glue
|
|
|
16816
16906
|
# @return [Types::UpdateIntegrationResourcePropertyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
16817
16907
|
#
|
|
16818
16908
|
# * {Types::UpdateIntegrationResourcePropertyResponse#resource_arn #resource_arn} => String
|
|
16909
|
+
# * {Types::UpdateIntegrationResourcePropertyResponse#resource_property_arn #resource_property_arn} => String
|
|
16819
16910
|
# * {Types::UpdateIntegrationResourcePropertyResponse#source_processing_properties #source_processing_properties} => Types::SourceProcessingProperties
|
|
16820
16911
|
# * {Types::UpdateIntegrationResourcePropertyResponse#target_processing_properties #target_processing_properties} => Types::TargetProcessingProperties
|
|
16821
16912
|
#
|
|
16822
16913
|
# @example Request syntax with placeholder values
|
|
16823
16914
|
#
|
|
16824
16915
|
# resp = client.update_integration_resource_property({
|
|
16825
|
-
# resource_arn: "
|
|
16916
|
+
# resource_arn: "String512", # required
|
|
16826
16917
|
# source_processing_properties: {
|
|
16827
16918
|
# role_arn: "String128",
|
|
16828
16919
|
# },
|
|
@@ -16837,6 +16928,7 @@ module Aws::Glue
|
|
|
16837
16928
|
# @example Response structure
|
|
16838
16929
|
#
|
|
16839
16930
|
# resp.resource_arn #=> String
|
|
16931
|
+
# resp.resource_property_arn #=> String
|
|
16840
16932
|
# resp.source_processing_properties.role_arn #=> String
|
|
16841
16933
|
# resp.target_processing_properties.role_arn #=> String
|
|
16842
16934
|
# resp.target_processing_properties.kms_arn #=> String
|
|
@@ -16880,7 +16972,7 @@ module Aws::Glue
|
|
|
16880
16972
|
# @example Request syntax with placeholder values
|
|
16881
16973
|
#
|
|
16882
16974
|
# resp = client.update_integration_table_properties({
|
|
16883
|
-
# resource_arn: "
|
|
16975
|
+
# resource_arn: "String512", # required
|
|
16884
16976
|
# table_name: "String128", # required
|
|
16885
16977
|
# source_table_config: {
|
|
16886
16978
|
# fields: ["String128"],
|
|
@@ -17960,7 +18052,7 @@ module Aws::Glue
|
|
|
17960
18052
|
tracer: tracer
|
|
17961
18053
|
)
|
|
17962
18054
|
context[:gem_name] = 'aws-sdk-glue'
|
|
17963
|
-
context[:gem_version] = '1.
|
|
18055
|
+
context[:gem_version] = '1.241.0'
|
|
17964
18056
|
Seahorse::Client::Request.new(handlers, context)
|
|
17965
18057
|
end
|
|
17966
18058
|
|
|
@@ -484,6 +484,8 @@ module Aws::Glue
|
|
|
484
484
|
DeleteGlueIdentityCenterConfigurationRequest = Shapes::StructureShape.new(name: 'DeleteGlueIdentityCenterConfigurationRequest')
|
|
485
485
|
DeleteGlueIdentityCenterConfigurationResponse = Shapes::StructureShape.new(name: 'DeleteGlueIdentityCenterConfigurationResponse')
|
|
486
486
|
DeleteIntegrationRequest = Shapes::StructureShape.new(name: 'DeleteIntegrationRequest')
|
|
487
|
+
DeleteIntegrationResourcePropertyRequest = Shapes::StructureShape.new(name: 'DeleteIntegrationResourcePropertyRequest')
|
|
488
|
+
DeleteIntegrationResourcePropertyResponse = Shapes::StructureShape.new(name: 'DeleteIntegrationResourcePropertyResponse')
|
|
487
489
|
DeleteIntegrationResponse = Shapes::StructureShape.new(name: 'DeleteIntegrationResponse')
|
|
488
490
|
DeleteIntegrationTablePropertiesRequest = Shapes::StructureShape.new(name: 'DeleteIntegrationTablePropertiesRequest')
|
|
489
491
|
DeleteIntegrationTablePropertiesResponse = Shapes::StructureShape.new(name: 'DeleteIntegrationTablePropertiesResponse')
|
|
@@ -881,6 +883,11 @@ module Aws::Glue
|
|
|
881
883
|
IntegrationPartition = Shapes::StructureShape.new(name: 'IntegrationPartition')
|
|
882
884
|
IntegrationPartitionSpecList = Shapes::ListShape.new(name: 'IntegrationPartitionSpecList')
|
|
883
885
|
IntegrationQuotaExceededFault = Shapes::StructureShape.new(name: 'IntegrationQuotaExceededFault')
|
|
886
|
+
IntegrationResourceProperty = Shapes::StructureShape.new(name: 'IntegrationResourceProperty')
|
|
887
|
+
IntegrationResourcePropertyFilter = Shapes::StructureShape.new(name: 'IntegrationResourcePropertyFilter')
|
|
888
|
+
IntegrationResourcePropertyFilterList = Shapes::ListShape.new(name: 'IntegrationResourcePropertyFilterList')
|
|
889
|
+
IntegrationResourcePropertyFilterValues = Shapes::ListShape.new(name: 'IntegrationResourcePropertyFilterValues')
|
|
890
|
+
IntegrationResourcePropertyList = Shapes::ListShape.new(name: 'IntegrationResourcePropertyList')
|
|
884
891
|
IntegrationSourcePropertiesMap = Shapes::MapShape.new(name: 'IntegrationSourcePropertiesMap')
|
|
885
892
|
IntegrationStatus = Shapes::StringShape.new(name: 'IntegrationStatus')
|
|
886
893
|
IntegrationString = Shapes::StringShape.new(name: 'IntegrationString')
|
|
@@ -975,6 +982,8 @@ module Aws::Glue
|
|
|
975
982
|
ListDevEndpointsResponse = Shapes::StructureShape.new(name: 'ListDevEndpointsResponse')
|
|
976
983
|
ListEntitiesRequest = Shapes::StructureShape.new(name: 'ListEntitiesRequest')
|
|
977
984
|
ListEntitiesResponse = Shapes::StructureShape.new(name: 'ListEntitiesResponse')
|
|
985
|
+
ListIntegrationResourcePropertiesRequest = Shapes::StructureShape.new(name: 'ListIntegrationResourcePropertiesRequest')
|
|
986
|
+
ListIntegrationResourcePropertiesResponse = Shapes::StructureShape.new(name: 'ListIntegrationResourcePropertiesResponse')
|
|
978
987
|
ListJobsRequest = Shapes::StructureShape.new(name: 'ListJobsRequest')
|
|
979
988
|
ListJobsResponse = Shapes::StructureShape.new(name: 'ListJobsResponse')
|
|
980
989
|
ListMLTransformsRequest = Shapes::StructureShape.new(name: 'ListMLTransformsRequest')
|
|
@@ -1403,8 +1412,10 @@ module Aws::Glue
|
|
|
1403
1412
|
StorageDescriptor = Shapes::StructureShape.new(name: 'StorageDescriptor')
|
|
1404
1413
|
StreamingDataPreviewOptions = Shapes::StructureShape.new(name: 'StreamingDataPreviewOptions')
|
|
1405
1414
|
String = Shapes::StringShape.new(name: 'String')
|
|
1415
|
+
String1024 = Shapes::StringShape.new(name: 'String1024')
|
|
1406
1416
|
String128 = Shapes::StringShape.new(name: 'String128')
|
|
1407
1417
|
String2048 = Shapes::StringShape.new(name: 'String2048')
|
|
1418
|
+
String512 = Shapes::StringShape.new(name: 'String512')
|
|
1408
1419
|
StringColumnStatisticsData = Shapes::StructureShape.new(name: 'StringColumnStatisticsData')
|
|
1409
1420
|
StringList = Shapes::ListShape.new(name: 'StringList')
|
|
1410
1421
|
StringToStringMap = Shapes::MapShape.new(name: 'StringToStringMap')
|
|
@@ -2815,8 +2826,8 @@ module Aws::Glue
|
|
|
2815
2826
|
CreateIcebergTableInput.struct_class = Types::CreateIcebergTableInput
|
|
2816
2827
|
|
|
2817
2828
|
CreateIntegrationRequest.add_member(:integration_name, Shapes::ShapeRef.new(shape: String128, required: true, location_name: "IntegrationName"))
|
|
2818
|
-
CreateIntegrationRequest.add_member(:source_arn, Shapes::ShapeRef.new(shape:
|
|
2819
|
-
CreateIntegrationRequest.add_member(:target_arn, Shapes::ShapeRef.new(shape:
|
|
2829
|
+
CreateIntegrationRequest.add_member(:source_arn, Shapes::ShapeRef.new(shape: String512, required: true, location_name: "SourceArn"))
|
|
2830
|
+
CreateIntegrationRequest.add_member(:target_arn, Shapes::ShapeRef.new(shape: String512, required: true, location_name: "TargetArn"))
|
|
2820
2831
|
CreateIntegrationRequest.add_member(:description, Shapes::ShapeRef.new(shape: IntegrationDescription, location_name: "Description"))
|
|
2821
2832
|
CreateIntegrationRequest.add_member(:data_filter, Shapes::ShapeRef.new(shape: String2048, location_name: "DataFilter"))
|
|
2822
2833
|
CreateIntegrationRequest.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String2048, location_name: "KmsKeyId"))
|
|
@@ -2825,18 +2836,20 @@ module Aws::Glue
|
|
|
2825
2836
|
CreateIntegrationRequest.add_member(:integration_config, Shapes::ShapeRef.new(shape: IntegrationConfig, location_name: "IntegrationConfig"))
|
|
2826
2837
|
CreateIntegrationRequest.struct_class = Types::CreateIntegrationRequest
|
|
2827
2838
|
|
|
2828
|
-
CreateIntegrationResourcePropertyRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape:
|
|
2839
|
+
CreateIntegrationResourcePropertyRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: String512, required: true, location_name: "ResourceArn"))
|
|
2829
2840
|
CreateIntegrationResourcePropertyRequest.add_member(:source_processing_properties, Shapes::ShapeRef.new(shape: SourceProcessingProperties, location_name: "SourceProcessingProperties"))
|
|
2830
2841
|
CreateIntegrationResourcePropertyRequest.add_member(:target_processing_properties, Shapes::ShapeRef.new(shape: TargetProcessingProperties, location_name: "TargetProcessingProperties"))
|
|
2842
|
+
CreateIntegrationResourcePropertyRequest.add_member(:tags, Shapes::ShapeRef.new(shape: IntegrationTagsList, location_name: "Tags"))
|
|
2831
2843
|
CreateIntegrationResourcePropertyRequest.struct_class = Types::CreateIntegrationResourcePropertyRequest
|
|
2832
2844
|
|
|
2833
|
-
CreateIntegrationResourcePropertyResponse.add_member(:resource_arn, Shapes::ShapeRef.new(shape:
|
|
2845
|
+
CreateIntegrationResourcePropertyResponse.add_member(:resource_arn, Shapes::ShapeRef.new(shape: String512, required: true, location_name: "ResourceArn"))
|
|
2846
|
+
CreateIntegrationResourcePropertyResponse.add_member(:resource_property_arn, Shapes::ShapeRef.new(shape: String512, location_name: "ResourcePropertyArn"))
|
|
2834
2847
|
CreateIntegrationResourcePropertyResponse.add_member(:source_processing_properties, Shapes::ShapeRef.new(shape: SourceProcessingProperties, location_name: "SourceProcessingProperties"))
|
|
2835
2848
|
CreateIntegrationResourcePropertyResponse.add_member(:target_processing_properties, Shapes::ShapeRef.new(shape: TargetProcessingProperties, location_name: "TargetProcessingProperties"))
|
|
2836
2849
|
CreateIntegrationResourcePropertyResponse.struct_class = Types::CreateIntegrationResourcePropertyResponse
|
|
2837
2850
|
|
|
2838
|
-
CreateIntegrationResponse.add_member(:source_arn, Shapes::ShapeRef.new(shape:
|
|
2839
|
-
CreateIntegrationResponse.add_member(:target_arn, Shapes::ShapeRef.new(shape:
|
|
2851
|
+
CreateIntegrationResponse.add_member(:source_arn, Shapes::ShapeRef.new(shape: String512, required: true, location_name: "SourceArn"))
|
|
2852
|
+
CreateIntegrationResponse.add_member(:target_arn, Shapes::ShapeRef.new(shape: String512, required: true, location_name: "TargetArn"))
|
|
2840
2853
|
CreateIntegrationResponse.add_member(:integration_name, Shapes::ShapeRef.new(shape: String128, required: true, location_name: "IntegrationName"))
|
|
2841
2854
|
CreateIntegrationResponse.add_member(:description, Shapes::ShapeRef.new(shape: IntegrationDescription, location_name: "Description"))
|
|
2842
2855
|
CreateIntegrationResponse.add_member(:integration_arn, Shapes::ShapeRef.new(shape: String128, required: true, location_name: "IntegrationArn"))
|
|
@@ -2850,7 +2863,7 @@ module Aws::Glue
|
|
|
2850
2863
|
CreateIntegrationResponse.add_member(:integration_config, Shapes::ShapeRef.new(shape: IntegrationConfig, location_name: "IntegrationConfig"))
|
|
2851
2864
|
CreateIntegrationResponse.struct_class = Types::CreateIntegrationResponse
|
|
2852
2865
|
|
|
2853
|
-
CreateIntegrationTablePropertiesRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape:
|
|
2866
|
+
CreateIntegrationTablePropertiesRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: String512, required: true, location_name: "ResourceArn"))
|
|
2854
2867
|
CreateIntegrationTablePropertiesRequest.add_member(:table_name, Shapes::ShapeRef.new(shape: String128, required: true, location_name: "TableName"))
|
|
2855
2868
|
CreateIntegrationTablePropertiesRequest.add_member(:source_table_config, Shapes::ShapeRef.new(shape: SourceTableConfig, location_name: "SourceTableConfig"))
|
|
2856
2869
|
CreateIntegrationTablePropertiesRequest.add_member(:target_table_config, Shapes::ShapeRef.new(shape: TargetTableConfig, location_name: "TargetTableConfig"))
|
|
@@ -3452,8 +3465,13 @@ module Aws::Glue
|
|
|
3452
3465
|
DeleteIntegrationRequest.add_member(:integration_identifier, Shapes::ShapeRef.new(shape: String128, required: true, location_name: "IntegrationIdentifier"))
|
|
3453
3466
|
DeleteIntegrationRequest.struct_class = Types::DeleteIntegrationRequest
|
|
3454
3467
|
|
|
3455
|
-
|
|
3456
|
-
|
|
3468
|
+
DeleteIntegrationResourcePropertyRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: String512, required: true, location_name: "ResourceArn"))
|
|
3469
|
+
DeleteIntegrationResourcePropertyRequest.struct_class = Types::DeleteIntegrationResourcePropertyRequest
|
|
3470
|
+
|
|
3471
|
+
DeleteIntegrationResourcePropertyResponse.struct_class = Types::DeleteIntegrationResourcePropertyResponse
|
|
3472
|
+
|
|
3473
|
+
DeleteIntegrationResponse.add_member(:source_arn, Shapes::ShapeRef.new(shape: String512, required: true, location_name: "SourceArn"))
|
|
3474
|
+
DeleteIntegrationResponse.add_member(:target_arn, Shapes::ShapeRef.new(shape: String512, required: true, location_name: "TargetArn"))
|
|
3457
3475
|
DeleteIntegrationResponse.add_member(:integration_name, Shapes::ShapeRef.new(shape: String128, required: true, location_name: "IntegrationName"))
|
|
3458
3476
|
DeleteIntegrationResponse.add_member(:description, Shapes::ShapeRef.new(shape: IntegrationDescription, location_name: "Description"))
|
|
3459
3477
|
DeleteIntegrationResponse.add_member(:integration_arn, Shapes::ShapeRef.new(shape: String128, required: true, location_name: "IntegrationArn"))
|
|
@@ -3466,7 +3484,7 @@ module Aws::Glue
|
|
|
3466
3484
|
DeleteIntegrationResponse.add_member(:data_filter, Shapes::ShapeRef.new(shape: String2048, location_name: "DataFilter"))
|
|
3467
3485
|
DeleteIntegrationResponse.struct_class = Types::DeleteIntegrationResponse
|
|
3468
3486
|
|
|
3469
|
-
DeleteIntegrationTablePropertiesRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape:
|
|
3487
|
+
DeleteIntegrationTablePropertiesRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: String512, required: true, location_name: "ResourceArn"))
|
|
3470
3488
|
DeleteIntegrationTablePropertiesRequest.add_member(:table_name, Shapes::ShapeRef.new(shape: String128, required: true, location_name: "TableName"))
|
|
3471
3489
|
DeleteIntegrationTablePropertiesRequest.struct_class = Types::DeleteIntegrationTablePropertiesRequest
|
|
3472
3490
|
|
|
@@ -3627,7 +3645,7 @@ module Aws::Glue
|
|
|
3627
3645
|
DescribeInboundIntegrationsRequest.add_member(:integration_arn, Shapes::ShapeRef.new(shape: String128, location_name: "IntegrationArn"))
|
|
3628
3646
|
DescribeInboundIntegrationsRequest.add_member(:marker, Shapes::ShapeRef.new(shape: String128, location_name: "Marker"))
|
|
3629
3647
|
DescribeInboundIntegrationsRequest.add_member(:max_records, Shapes::ShapeRef.new(shape: IntegrationInteger, location_name: "MaxRecords"))
|
|
3630
|
-
DescribeInboundIntegrationsRequest.add_member(:target_arn, Shapes::ShapeRef.new(shape:
|
|
3648
|
+
DescribeInboundIntegrationsRequest.add_member(:target_arn, Shapes::ShapeRef.new(shape: String512, location_name: "TargetArn"))
|
|
3631
3649
|
DescribeInboundIntegrationsRequest.struct_class = Types::DescribeInboundIntegrationsRequest
|
|
3632
3650
|
|
|
3633
3651
|
DescribeInboundIntegrationsResponse.add_member(:inbound_integrations, Shapes::ShapeRef.new(shape: InboundIntegrationsList, location_name: "InboundIntegrations"))
|
|
@@ -4269,19 +4287,20 @@ module Aws::Glue
|
|
|
4269
4287
|
GetGlueIdentityCenterConfigurationResponse.add_member(:user_background_sessions_enabled, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "UserBackgroundSessionsEnabled"))
|
|
4270
4288
|
GetGlueIdentityCenterConfigurationResponse.struct_class = Types::GetGlueIdentityCenterConfigurationResponse
|
|
4271
4289
|
|
|
4272
|
-
GetIntegrationResourcePropertyRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape:
|
|
4290
|
+
GetIntegrationResourcePropertyRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: String512, required: true, location_name: "ResourceArn"))
|
|
4273
4291
|
GetIntegrationResourcePropertyRequest.struct_class = Types::GetIntegrationResourcePropertyRequest
|
|
4274
4292
|
|
|
4275
|
-
GetIntegrationResourcePropertyResponse.add_member(:resource_arn, Shapes::ShapeRef.new(shape:
|
|
4293
|
+
GetIntegrationResourcePropertyResponse.add_member(:resource_arn, Shapes::ShapeRef.new(shape: String512, location_name: "ResourceArn"))
|
|
4294
|
+
GetIntegrationResourcePropertyResponse.add_member(:resource_property_arn, Shapes::ShapeRef.new(shape: String512, location_name: "ResourcePropertyArn"))
|
|
4276
4295
|
GetIntegrationResourcePropertyResponse.add_member(:source_processing_properties, Shapes::ShapeRef.new(shape: SourceProcessingProperties, location_name: "SourceProcessingProperties"))
|
|
4277
4296
|
GetIntegrationResourcePropertyResponse.add_member(:target_processing_properties, Shapes::ShapeRef.new(shape: TargetProcessingProperties, location_name: "TargetProcessingProperties"))
|
|
4278
4297
|
GetIntegrationResourcePropertyResponse.struct_class = Types::GetIntegrationResourcePropertyResponse
|
|
4279
4298
|
|
|
4280
|
-
GetIntegrationTablePropertiesRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape:
|
|
4299
|
+
GetIntegrationTablePropertiesRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: String512, required: true, location_name: "ResourceArn"))
|
|
4281
4300
|
GetIntegrationTablePropertiesRequest.add_member(:table_name, Shapes::ShapeRef.new(shape: String128, required: true, location_name: "TableName"))
|
|
4282
4301
|
GetIntegrationTablePropertiesRequest.struct_class = Types::GetIntegrationTablePropertiesRequest
|
|
4283
4302
|
|
|
4284
|
-
GetIntegrationTablePropertiesResponse.add_member(:resource_arn, Shapes::ShapeRef.new(shape:
|
|
4303
|
+
GetIntegrationTablePropertiesResponse.add_member(:resource_arn, Shapes::ShapeRef.new(shape: String512, location_name: "ResourceArn"))
|
|
4285
4304
|
GetIntegrationTablePropertiesResponse.add_member(:table_name, Shapes::ShapeRef.new(shape: String128, location_name: "TableName"))
|
|
4286
4305
|
GetIntegrationTablePropertiesResponse.add_member(:source_table_config, Shapes::ShapeRef.new(shape: SourceTableConfig, location_name: "SourceTableConfig"))
|
|
4287
4306
|
GetIntegrationTablePropertiesResponse.add_member(:target_table_config, Shapes::ShapeRef.new(shape: TargetTableConfig, location_name: "TargetTableConfig"))
|
|
@@ -4961,8 +4980,8 @@ module Aws::Glue
|
|
|
4961
4980
|
ImportLabelsTaskRunProperties.add_member(:replace, Shapes::ShapeRef.new(shape: ReplaceBoolean, location_name: "Replace"))
|
|
4962
4981
|
ImportLabelsTaskRunProperties.struct_class = Types::ImportLabelsTaskRunProperties
|
|
4963
4982
|
|
|
4964
|
-
InboundIntegration.add_member(:source_arn, Shapes::ShapeRef.new(shape:
|
|
4965
|
-
InboundIntegration.add_member(:target_arn, Shapes::ShapeRef.new(shape:
|
|
4983
|
+
InboundIntegration.add_member(:source_arn, Shapes::ShapeRef.new(shape: String512, required: true, location_name: "SourceArn"))
|
|
4984
|
+
InboundIntegration.add_member(:target_arn, Shapes::ShapeRef.new(shape: String512, required: true, location_name: "TargetArn"))
|
|
4966
4985
|
InboundIntegration.add_member(:integration_arn, Shapes::ShapeRef.new(shape: String128, required: true, location_name: "IntegrationArn"))
|
|
4967
4986
|
InboundIntegration.add_member(:status, Shapes::ShapeRef.new(shape: IntegrationStatus, required: true, location_name: "Status"))
|
|
4968
4987
|
InboundIntegration.add_member(:create_time, Shapes::ShapeRef.new(shape: IntegrationTimestamp, required: true, location_name: "CreateTime"))
|
|
@@ -4976,8 +4995,8 @@ module Aws::Glue
|
|
|
4976
4995
|
|
|
4977
4996
|
IntegerList.member = Shapes::ShapeRef.new(shape: Integer)
|
|
4978
4997
|
|
|
4979
|
-
Integration.add_member(:source_arn, Shapes::ShapeRef.new(shape:
|
|
4980
|
-
Integration.add_member(:target_arn, Shapes::ShapeRef.new(shape:
|
|
4998
|
+
Integration.add_member(:source_arn, Shapes::ShapeRef.new(shape: String512, required: true, location_name: "SourceArn"))
|
|
4999
|
+
Integration.add_member(:target_arn, Shapes::ShapeRef.new(shape: String512, required: true, location_name: "TargetArn"))
|
|
4981
5000
|
Integration.add_member(:description, Shapes::ShapeRef.new(shape: IntegrationDescription, location_name: "Description"))
|
|
4982
5001
|
Integration.add_member(:integration_name, Shapes::ShapeRef.new(shape: String128, required: true, location_name: "IntegrationName"))
|
|
4983
5002
|
Integration.add_member(:integration_arn, Shapes::ShapeRef.new(shape: String128, required: true, location_name: "IntegrationArn"))
|
|
@@ -5029,6 +5048,22 @@ module Aws::Glue
|
|
|
5029
5048
|
IntegrationQuotaExceededFault.add_member(:message, Shapes::ShapeRef.new(shape: IntegrationErrorMessage, location_name: "Message"))
|
|
5030
5049
|
IntegrationQuotaExceededFault.struct_class = Types::IntegrationQuotaExceededFault
|
|
5031
5050
|
|
|
5051
|
+
IntegrationResourceProperty.add_member(:resource_arn, Shapes::ShapeRef.new(shape: String512, required: true, location_name: "ResourceArn"))
|
|
5052
|
+
IntegrationResourceProperty.add_member(:resource_property_arn, Shapes::ShapeRef.new(shape: String512, location_name: "ResourcePropertyArn"))
|
|
5053
|
+
IntegrationResourceProperty.add_member(:source_processing_properties, Shapes::ShapeRef.new(shape: SourceProcessingProperties, location_name: "SourceProcessingProperties"))
|
|
5054
|
+
IntegrationResourceProperty.add_member(:target_processing_properties, Shapes::ShapeRef.new(shape: TargetProcessingProperties, location_name: "TargetProcessingProperties"))
|
|
5055
|
+
IntegrationResourceProperty.struct_class = Types::IntegrationResourceProperty
|
|
5056
|
+
|
|
5057
|
+
IntegrationResourcePropertyFilter.add_member(:name, Shapes::ShapeRef.new(shape: String128, location_name: "Name"))
|
|
5058
|
+
IntegrationResourcePropertyFilter.add_member(:values, Shapes::ShapeRef.new(shape: IntegrationResourcePropertyFilterValues, location_name: "Values"))
|
|
5059
|
+
IntegrationResourcePropertyFilter.struct_class = Types::IntegrationResourcePropertyFilter
|
|
5060
|
+
|
|
5061
|
+
IntegrationResourcePropertyFilterList.member = Shapes::ShapeRef.new(shape: IntegrationResourcePropertyFilter)
|
|
5062
|
+
|
|
5063
|
+
IntegrationResourcePropertyFilterValues.member = Shapes::ShapeRef.new(shape: String128)
|
|
5064
|
+
|
|
5065
|
+
IntegrationResourcePropertyList.member = Shapes::ShapeRef.new(shape: IntegrationResourceProperty)
|
|
5066
|
+
|
|
5032
5067
|
IntegrationSourcePropertiesMap.key = Shapes::ShapeRef.new(shape: IntegrationString)
|
|
5033
5068
|
IntegrationSourcePropertiesMap.value = Shapes::ShapeRef.new(shape: IntegrationString)
|
|
5034
5069
|
|
|
@@ -5446,6 +5481,15 @@ module Aws::Glue
|
|
|
5446
5481
|
ListEntitiesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
|
5447
5482
|
ListEntitiesResponse.struct_class = Types::ListEntitiesResponse
|
|
5448
5483
|
|
|
5484
|
+
ListIntegrationResourcePropertiesRequest.add_member(:marker, Shapes::ShapeRef.new(shape: String1024, location_name: "Marker"))
|
|
5485
|
+
ListIntegrationResourcePropertiesRequest.add_member(:filters, Shapes::ShapeRef.new(shape: IntegrationResourcePropertyFilterList, location_name: "Filters"))
|
|
5486
|
+
ListIntegrationResourcePropertiesRequest.add_member(:max_records, Shapes::ShapeRef.new(shape: IntegrationInteger, location_name: "MaxRecords"))
|
|
5487
|
+
ListIntegrationResourcePropertiesRequest.struct_class = Types::ListIntegrationResourcePropertiesRequest
|
|
5488
|
+
|
|
5489
|
+
ListIntegrationResourcePropertiesResponse.add_member(:integration_resource_property_list, Shapes::ShapeRef.new(shape: IntegrationResourcePropertyList, location_name: "IntegrationResourcePropertyList"))
|
|
5490
|
+
ListIntegrationResourcePropertiesResponse.add_member(:marker, Shapes::ShapeRef.new(shape: String1024, location_name: "Marker"))
|
|
5491
|
+
ListIntegrationResourcePropertiesResponse.struct_class = Types::ListIntegrationResourcePropertiesResponse
|
|
5492
|
+
|
|
5449
5493
|
ListJobsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: GenericString, location_name: "NextToken"))
|
|
5450
5494
|
ListJobsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PageSize, location_name: "MaxResults"))
|
|
5451
5495
|
ListJobsRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "Tags"))
|
|
@@ -5670,8 +5714,8 @@ module Aws::Glue
|
|
|
5670
5714
|
ModifyIntegrationRequest.add_member(:integration_name, Shapes::ShapeRef.new(shape: String128, location_name: "IntegrationName"))
|
|
5671
5715
|
ModifyIntegrationRequest.struct_class = Types::ModifyIntegrationRequest
|
|
5672
5716
|
|
|
5673
|
-
ModifyIntegrationResponse.add_member(:source_arn, Shapes::ShapeRef.new(shape:
|
|
5674
|
-
ModifyIntegrationResponse.add_member(:target_arn, Shapes::ShapeRef.new(shape:
|
|
5717
|
+
ModifyIntegrationResponse.add_member(:source_arn, Shapes::ShapeRef.new(shape: String512, required: true, location_name: "SourceArn"))
|
|
5718
|
+
ModifyIntegrationResponse.add_member(:target_arn, Shapes::ShapeRef.new(shape: String512, required: true, location_name: "TargetArn"))
|
|
5675
5719
|
ModifyIntegrationResponse.add_member(:integration_name, Shapes::ShapeRef.new(shape: String128, required: true, location_name: "IntegrationName"))
|
|
5676
5720
|
ModifyIntegrationResponse.add_member(:description, Shapes::ShapeRef.new(shape: IntegrationDescription, location_name: "Description"))
|
|
5677
5721
|
ModifyIntegrationResponse.add_member(:integration_arn, Shapes::ShapeRef.new(shape: String128, required: true, location_name: "IntegrationArn"))
|
|
@@ -7357,17 +7401,18 @@ module Aws::Glue
|
|
|
7357
7401
|
UpdateIcebergTableInput.add_member(:updates, Shapes::ShapeRef.new(shape: IcebergTableUpdateList, required: true, location_name: "Updates"))
|
|
7358
7402
|
UpdateIcebergTableInput.struct_class = Types::UpdateIcebergTableInput
|
|
7359
7403
|
|
|
7360
|
-
UpdateIntegrationResourcePropertyRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape:
|
|
7404
|
+
UpdateIntegrationResourcePropertyRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: String512, required: true, location_name: "ResourceArn"))
|
|
7361
7405
|
UpdateIntegrationResourcePropertyRequest.add_member(:source_processing_properties, Shapes::ShapeRef.new(shape: SourceProcessingProperties, location_name: "SourceProcessingProperties"))
|
|
7362
7406
|
UpdateIntegrationResourcePropertyRequest.add_member(:target_processing_properties, Shapes::ShapeRef.new(shape: TargetProcessingProperties, location_name: "TargetProcessingProperties"))
|
|
7363
7407
|
UpdateIntegrationResourcePropertyRequest.struct_class = Types::UpdateIntegrationResourcePropertyRequest
|
|
7364
7408
|
|
|
7365
|
-
UpdateIntegrationResourcePropertyResponse.add_member(:resource_arn, Shapes::ShapeRef.new(shape:
|
|
7409
|
+
UpdateIntegrationResourcePropertyResponse.add_member(:resource_arn, Shapes::ShapeRef.new(shape: String512, location_name: "ResourceArn"))
|
|
7410
|
+
UpdateIntegrationResourcePropertyResponse.add_member(:resource_property_arn, Shapes::ShapeRef.new(shape: String512, location_name: "ResourcePropertyArn"))
|
|
7366
7411
|
UpdateIntegrationResourcePropertyResponse.add_member(:source_processing_properties, Shapes::ShapeRef.new(shape: SourceProcessingProperties, location_name: "SourceProcessingProperties"))
|
|
7367
7412
|
UpdateIntegrationResourcePropertyResponse.add_member(:target_processing_properties, Shapes::ShapeRef.new(shape: TargetProcessingProperties, location_name: "TargetProcessingProperties"))
|
|
7368
7413
|
UpdateIntegrationResourcePropertyResponse.struct_class = Types::UpdateIntegrationResourcePropertyResponse
|
|
7369
7414
|
|
|
7370
|
-
UpdateIntegrationTablePropertiesRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape:
|
|
7415
|
+
UpdateIntegrationTablePropertiesRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: String512, required: true, location_name: "ResourceArn"))
|
|
7371
7416
|
UpdateIntegrationTablePropertiesRequest.add_member(:table_name, Shapes::ShapeRef.new(shape: String128, required: true, location_name: "TableName"))
|
|
7372
7417
|
UpdateIntegrationTablePropertiesRequest.add_member(:source_table_config, Shapes::ShapeRef.new(shape: SourceTableConfig, location_name: "SourceTableConfig"))
|
|
7373
7418
|
UpdateIntegrationTablePropertiesRequest.add_member(:target_table_config, Shapes::ShapeRef.new(shape: TargetTableConfig, location_name: "TargetTableConfig"))
|
|
@@ -8569,6 +8614,21 @@ module Aws::Glue
|
|
|
8569
8614
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
|
8570
8615
|
end)
|
|
8571
8616
|
|
|
8617
|
+
api.add_operation(:delete_integration_resource_property, Seahorse::Model::Operation.new.tap do |o|
|
|
8618
|
+
o.name = "DeleteIntegrationResourceProperty"
|
|
8619
|
+
o.http_method = "POST"
|
|
8620
|
+
o.http_request_uri = "/"
|
|
8621
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteIntegrationResourcePropertyRequest)
|
|
8622
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteIntegrationResourcePropertyResponse)
|
|
8623
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
8624
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
8625
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
8626
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
8627
|
+
o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
|
|
8628
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
|
8629
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
|
8630
|
+
end)
|
|
8631
|
+
|
|
8572
8632
|
api.add_operation(:delete_integration_table_properties, Seahorse::Model::Operation.new.tap do |o|
|
|
8573
8633
|
o.name = "DeleteIntegrationTableProperties"
|
|
8574
8634
|
o.http_method = "POST"
|
|
@@ -10200,6 +10260,21 @@ module Aws::Glue
|
|
|
10200
10260
|
)
|
|
10201
10261
|
end)
|
|
10202
10262
|
|
|
10263
|
+
api.add_operation(:list_integration_resource_properties, Seahorse::Model::Operation.new.tap do |o|
|
|
10264
|
+
o.name = "ListIntegrationResourceProperties"
|
|
10265
|
+
o.http_method = "POST"
|
|
10266
|
+
o.http_request_uri = "/"
|
|
10267
|
+
o.input = Shapes::ShapeRef.new(shape: ListIntegrationResourcePropertiesRequest)
|
|
10268
|
+
o.output = Shapes::ShapeRef.new(shape: ListIntegrationResourcePropertiesResponse)
|
|
10269
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
10270
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
10271
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
10272
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
10273
|
+
o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
|
|
10274
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
|
10275
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
|
10276
|
+
end)
|
|
10277
|
+
|
|
10203
10278
|
api.add_operation(:list_jobs, Seahorse::Model::Operation.new.tap do |o|
|
|
10204
10279
|
o.name = "ListJobs"
|
|
10205
10280
|
o.http_method = "POST"
|
data/lib/aws-sdk-glue/types.rb
CHANGED
|
@@ -5984,12 +5984,18 @@ module Aws::Glue
|
|
|
5984
5984
|
# The resource properties associated with the integration target.
|
|
5985
5985
|
# @return [Types::TargetProcessingProperties]
|
|
5986
5986
|
#
|
|
5987
|
+
# @!attribute [rw] tags
|
|
5988
|
+
# Metadata assigned to the resource consisting of a list of key-value
|
|
5989
|
+
# pairs.
|
|
5990
|
+
# @return [Array<Types::Tag>]
|
|
5991
|
+
#
|
|
5987
5992
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateIntegrationResourcePropertyRequest AWS API Documentation
|
|
5988
5993
|
#
|
|
5989
5994
|
class CreateIntegrationResourcePropertyRequest < Struct.new(
|
|
5990
5995
|
:resource_arn,
|
|
5991
5996
|
:source_processing_properties,
|
|
5992
|
-
:target_processing_properties
|
|
5997
|
+
:target_processing_properties,
|
|
5998
|
+
:tags)
|
|
5993
5999
|
SENSITIVE = []
|
|
5994
6000
|
include Aws::Structure
|
|
5995
6001
|
end
|
|
@@ -5998,6 +6004,12 @@ module Aws::Glue
|
|
|
5998
6004
|
# The connection ARN of the source, or the database ARN of the target.
|
|
5999
6005
|
# @return [String]
|
|
6000
6006
|
#
|
|
6007
|
+
# @!attribute [rw] resource_property_arn
|
|
6008
|
+
# The resource ARN created through this create API. The format is
|
|
6009
|
+
# something like
|
|
6010
|
+
# arn:aws:glue:<region>:<account\_id>:integrationresourceproperty/*
|
|
6011
|
+
# @return [String]
|
|
6012
|
+
#
|
|
6001
6013
|
# @!attribute [rw] source_processing_properties
|
|
6002
6014
|
# The resource properties associated with the integration source.
|
|
6003
6015
|
# @return [Types::SourceProcessingProperties]
|
|
@@ -6010,6 +6022,7 @@ module Aws::Glue
|
|
|
6010
6022
|
#
|
|
6011
6023
|
class CreateIntegrationResourcePropertyResponse < Struct.new(
|
|
6012
6024
|
:resource_arn,
|
|
6025
|
+
:resource_property_arn,
|
|
6013
6026
|
:source_processing_properties,
|
|
6014
6027
|
:target_processing_properties)
|
|
6015
6028
|
SENSITIVE = []
|
|
@@ -9176,6 +9189,22 @@ module Aws::Glue
|
|
|
9176
9189
|
include Aws::Structure
|
|
9177
9190
|
end
|
|
9178
9191
|
|
|
9192
|
+
# @!attribute [rw] resource_arn
|
|
9193
|
+
# The connection ARN of the source, or the database ARN of the target.
|
|
9194
|
+
# @return [String]
|
|
9195
|
+
#
|
|
9196
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DeleteIntegrationResourcePropertyRequest AWS API Documentation
|
|
9197
|
+
#
|
|
9198
|
+
class DeleteIntegrationResourcePropertyRequest < Struct.new(
|
|
9199
|
+
:resource_arn)
|
|
9200
|
+
SENSITIVE = []
|
|
9201
|
+
include Aws::Structure
|
|
9202
|
+
end
|
|
9203
|
+
|
|
9204
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DeleteIntegrationResourcePropertyResponse AWS API Documentation
|
|
9205
|
+
#
|
|
9206
|
+
class DeleteIntegrationResourcePropertyResponse < Aws::EmptyStructure; end
|
|
9207
|
+
|
|
9179
9208
|
# @!attribute [rw] source_arn
|
|
9180
9209
|
# The ARN of the source for the integration.
|
|
9181
9210
|
# @return [String]
|
|
@@ -13125,6 +13154,12 @@ module Aws::Glue
|
|
|
13125
13154
|
# The connection ARN of the source, or the database ARN of the target.
|
|
13126
13155
|
# @return [String]
|
|
13127
13156
|
#
|
|
13157
|
+
# @!attribute [rw] resource_property_arn
|
|
13158
|
+
# The resource ARN created through this create API. The format is
|
|
13159
|
+
# something like
|
|
13160
|
+
# arn:aws:glue:<region>:<account\_id>:integrationresourceproperty/*
|
|
13161
|
+
# @return [String]
|
|
13162
|
+
#
|
|
13128
13163
|
# @!attribute [rw] source_processing_properties
|
|
13129
13164
|
# The resource properties associated with the integration source.
|
|
13130
13165
|
# @return [Types::SourceProcessingProperties]
|
|
@@ -13137,6 +13172,7 @@ module Aws::Glue
|
|
|
13137
13172
|
#
|
|
13138
13173
|
class GetIntegrationResourcePropertyResponse < Struct.new(
|
|
13139
13174
|
:resource_arn,
|
|
13175
|
+
:resource_property_arn,
|
|
13140
13176
|
:source_processing_properties,
|
|
13141
13177
|
:target_processing_properties)
|
|
13142
13178
|
SENSITIVE = []
|
|
@@ -16862,7 +16898,6 @@ module Aws::Glue
|
|
|
16862
16898
|
# to align the refresh rate with your specific data update patterns,
|
|
16863
16899
|
# system load considerations, and performance optimization goals. Time
|
|
16864
16900
|
# increment can be set from 15 minutes to 8640 minutes (six days).
|
|
16865
|
-
# Currently supports creation of `RefreshInterval` only.
|
|
16866
16901
|
# @return [String]
|
|
16867
16902
|
#
|
|
16868
16903
|
# @!attribute [rw] source_properties
|
|
@@ -17036,6 +17071,57 @@ module Aws::Glue
|
|
|
17036
17071
|
include Aws::Structure
|
|
17037
17072
|
end
|
|
17038
17073
|
|
|
17074
|
+
# A structure representing an integration resource property.
|
|
17075
|
+
#
|
|
17076
|
+
# @!attribute [rw] resource_arn
|
|
17077
|
+
# The connection ARN of the source, or the database ARN of the target.
|
|
17078
|
+
# @return [String]
|
|
17079
|
+
#
|
|
17080
|
+
# @!attribute [rw] resource_property_arn
|
|
17081
|
+
# The resource ARN created through this create API. The format is
|
|
17082
|
+
# something like
|
|
17083
|
+
# arn:aws:glue:<region>:<account\_id>:integrationresourceproperty/*
|
|
17084
|
+
# @return [String]
|
|
17085
|
+
#
|
|
17086
|
+
# @!attribute [rw] source_processing_properties
|
|
17087
|
+
# The resource properties associated with the integration source.
|
|
17088
|
+
# @return [Types::SourceProcessingProperties]
|
|
17089
|
+
#
|
|
17090
|
+
# @!attribute [rw] target_processing_properties
|
|
17091
|
+
# The resource properties associated with the integration target.
|
|
17092
|
+
# @return [Types::TargetProcessingProperties]
|
|
17093
|
+
#
|
|
17094
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/IntegrationResourceProperty AWS API Documentation
|
|
17095
|
+
#
|
|
17096
|
+
class IntegrationResourceProperty < Struct.new(
|
|
17097
|
+
:resource_arn,
|
|
17098
|
+
:resource_property_arn,
|
|
17099
|
+
:source_processing_properties,
|
|
17100
|
+
:target_processing_properties)
|
|
17101
|
+
SENSITIVE = []
|
|
17102
|
+
include Aws::Structure
|
|
17103
|
+
end
|
|
17104
|
+
|
|
17105
|
+
# A filter for integration resource properties.
|
|
17106
|
+
#
|
|
17107
|
+
# @!attribute [rw] name
|
|
17108
|
+
# The name of the filter. Supported filter keys are `SourceArn` and
|
|
17109
|
+
# `TargetArn`.
|
|
17110
|
+
# @return [String]
|
|
17111
|
+
#
|
|
17112
|
+
# @!attribute [rw] values
|
|
17113
|
+
# A list of filter values.
|
|
17114
|
+
# @return [Array<String>]
|
|
17115
|
+
#
|
|
17116
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/IntegrationResourcePropertyFilter AWS API Documentation
|
|
17117
|
+
#
|
|
17118
|
+
class IntegrationResourcePropertyFilter < Struct.new(
|
|
17119
|
+
:name,
|
|
17120
|
+
:values)
|
|
17121
|
+
SENSITIVE = []
|
|
17122
|
+
include Aws::Structure
|
|
17123
|
+
end
|
|
17124
|
+
|
|
17039
17125
|
# An internal server error occurred.
|
|
17040
17126
|
#
|
|
17041
17127
|
# @!attribute [rw] message
|
|
@@ -19572,6 +19658,46 @@ module Aws::Glue
|
|
|
19572
19658
|
include Aws::Structure
|
|
19573
19659
|
end
|
|
19574
19660
|
|
|
19661
|
+
# @!attribute [rw] marker
|
|
19662
|
+
# This is the pagination token for next page, initial value is `null`.
|
|
19663
|
+
# @return [String]
|
|
19664
|
+
#
|
|
19665
|
+
# @!attribute [rw] filters
|
|
19666
|
+
# A list of filters, supported filter Key is `SourceArn` and
|
|
19667
|
+
# `TargetArn`.
|
|
19668
|
+
# @return [Array<Types::IntegrationResourcePropertyFilter>]
|
|
19669
|
+
#
|
|
19670
|
+
# @!attribute [rw] max_records
|
|
19671
|
+
# This is total number of items to be evaluated.
|
|
19672
|
+
# @return [Integer]
|
|
19673
|
+
#
|
|
19674
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListIntegrationResourcePropertiesRequest AWS API Documentation
|
|
19675
|
+
#
|
|
19676
|
+
class ListIntegrationResourcePropertiesRequest < Struct.new(
|
|
19677
|
+
:marker,
|
|
19678
|
+
:filters,
|
|
19679
|
+
:max_records)
|
|
19680
|
+
SENSITIVE = []
|
|
19681
|
+
include Aws::Structure
|
|
19682
|
+
end
|
|
19683
|
+
|
|
19684
|
+
# @!attribute [rw] integration_resource_property_list
|
|
19685
|
+
# A list of integration resource property meeting the filter criteria.
|
|
19686
|
+
# @return [Array<Types::IntegrationResourceProperty>]
|
|
19687
|
+
#
|
|
19688
|
+
# @!attribute [rw] marker
|
|
19689
|
+
# This is the pagination token for the next page.
|
|
19690
|
+
# @return [String]
|
|
19691
|
+
#
|
|
19692
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListIntegrationResourcePropertiesResponse AWS API Documentation
|
|
19693
|
+
#
|
|
19694
|
+
class ListIntegrationResourcePropertiesResponse < Struct.new(
|
|
19695
|
+
:integration_resource_property_list,
|
|
19696
|
+
:marker)
|
|
19697
|
+
SENSITIVE = []
|
|
19698
|
+
include Aws::Structure
|
|
19699
|
+
end
|
|
19700
|
+
|
|
19575
19701
|
# @!attribute [rw] next_token
|
|
19576
19702
|
# A continuation token, if this is a continuation request.
|
|
19577
19703
|
# @return [String]
|
|
@@ -20635,7 +20761,8 @@ module Aws::Glue
|
|
|
20635
20761
|
# @return [String]
|
|
20636
20762
|
#
|
|
20637
20763
|
# @!attribute [rw] integration_config
|
|
20638
|
-
#
|
|
20764
|
+
# The configuration settings for the integration. Currently, only the
|
|
20765
|
+
# RefreshInterval can be modified.
|
|
20639
20766
|
# @return [Types::IntegrationConfig]
|
|
20640
20767
|
#
|
|
20641
20768
|
# @!attribute [rw] integration_name
|
|
@@ -20723,7 +20850,7 @@ module Aws::Glue
|
|
|
20723
20850
|
# @return [String]
|
|
20724
20851
|
#
|
|
20725
20852
|
# @!attribute [rw] integration_config
|
|
20726
|
-
#
|
|
20853
|
+
# The updated configuration settings for the integration.
|
|
20727
20854
|
# @return [Types::IntegrationConfig]
|
|
20728
20855
|
#
|
|
20729
20856
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ModifyIntegrationResponse AWS API Documentation
|
|
@@ -28724,6 +28851,12 @@ module Aws::Glue
|
|
|
28724
28851
|
# The connection ARN of the source, or the database ARN of the target.
|
|
28725
28852
|
# @return [String]
|
|
28726
28853
|
#
|
|
28854
|
+
# @!attribute [rw] resource_property_arn
|
|
28855
|
+
# The resource ARN created through this create API. The format is
|
|
28856
|
+
# something like
|
|
28857
|
+
# arn:aws:glue:<region>:<account\_id>:integrationresourceproperty/*
|
|
28858
|
+
# @return [String]
|
|
28859
|
+
#
|
|
28727
28860
|
# @!attribute [rw] source_processing_properties
|
|
28728
28861
|
# The resource properties associated with the integration source.
|
|
28729
28862
|
# @return [Types::SourceProcessingProperties]
|
|
@@ -28736,6 +28869,7 @@ module Aws::Glue
|
|
|
28736
28869
|
#
|
|
28737
28870
|
class UpdateIntegrationResourcePropertyResponse < Struct.new(
|
|
28738
28871
|
:resource_arn,
|
|
28872
|
+
:resource_property_arn,
|
|
28739
28873
|
:source_processing_properties,
|
|
28740
28874
|
:target_processing_properties)
|
|
28741
28875
|
SENSITIVE = []
|
data/lib/aws-sdk-glue.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -912,6 +912,7 @@ module Aws
|
|
|
912
912
|
interface _CreateIntegrationResourcePropertyResponseSuccess
|
|
913
913
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateIntegrationResourcePropertyResponse]
|
|
914
914
|
def resource_arn: () -> ::String
|
|
915
|
+
def resource_property_arn: () -> ::String
|
|
915
916
|
def source_processing_properties: () -> Types::SourceProcessingProperties
|
|
916
917
|
def target_processing_properties: () -> Types::TargetProcessingProperties
|
|
917
918
|
end
|
|
@@ -926,7 +927,13 @@ module Aws
|
|
|
926
927
|
kms_arn: ::String?,
|
|
927
928
|
connection_name: ::String?,
|
|
928
929
|
event_bus_arn: ::String?
|
|
929
|
-
}
|
|
930
|
+
},
|
|
931
|
+
?tags: Array[
|
|
932
|
+
{
|
|
933
|
+
key: ::String?,
|
|
934
|
+
value: ::String?
|
|
935
|
+
},
|
|
936
|
+
]
|
|
930
937
|
) -> _CreateIntegrationResourcePropertyResponseSuccess
|
|
931
938
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateIntegrationResourcePropertyResponseSuccess
|
|
932
939
|
|
|
@@ -3227,6 +3234,15 @@ module Aws
|
|
|
3227
3234
|
) -> _DeleteIntegrationResponseSuccess
|
|
3228
3235
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteIntegrationResponseSuccess
|
|
3229
3236
|
|
|
3237
|
+
interface _DeleteIntegrationResourcePropertyResponseSuccess
|
|
3238
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteIntegrationResourcePropertyResponse]
|
|
3239
|
+
end
|
|
3240
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#delete_integration_resource_property-instance_method
|
|
3241
|
+
def delete_integration_resource_property: (
|
|
3242
|
+
resource_arn: ::String
|
|
3243
|
+
) -> _DeleteIntegrationResourcePropertyResponseSuccess
|
|
3244
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteIntegrationResourcePropertyResponseSuccess
|
|
3245
|
+
|
|
3230
3246
|
interface _DeleteIntegrationTablePropertiesResponseSuccess
|
|
3231
3247
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteIntegrationTablePropertiesResponse]
|
|
3232
3248
|
end
|
|
@@ -3955,6 +3971,7 @@ module Aws
|
|
|
3955
3971
|
interface _GetIntegrationResourcePropertyResponseSuccess
|
|
3956
3972
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetIntegrationResourcePropertyResponse]
|
|
3957
3973
|
def resource_arn: () -> ::String
|
|
3974
|
+
def resource_property_arn: () -> ::String
|
|
3958
3975
|
def source_processing_properties: () -> Types::SourceProcessingProperties
|
|
3959
3976
|
def target_processing_properties: () -> Types::TargetProcessingProperties
|
|
3960
3977
|
end
|
|
@@ -5065,6 +5082,24 @@ module Aws
|
|
|
5065
5082
|
) -> _ListEntitiesResponseSuccess
|
|
5066
5083
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEntitiesResponseSuccess
|
|
5067
5084
|
|
|
5085
|
+
interface _ListIntegrationResourcePropertiesResponseSuccess
|
|
5086
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListIntegrationResourcePropertiesResponse]
|
|
5087
|
+
def integration_resource_property_list: () -> ::Array[Types::IntegrationResourceProperty]
|
|
5088
|
+
def marker: () -> ::String
|
|
5089
|
+
end
|
|
5090
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#list_integration_resource_properties-instance_method
|
|
5091
|
+
def list_integration_resource_properties: (
|
|
5092
|
+
?marker: ::String,
|
|
5093
|
+
?filters: Array[
|
|
5094
|
+
{
|
|
5095
|
+
name: ::String?,
|
|
5096
|
+
values: Array[::String]?
|
|
5097
|
+
},
|
|
5098
|
+
],
|
|
5099
|
+
?max_records: ::Integer
|
|
5100
|
+
) -> _ListIntegrationResourcePropertiesResponseSuccess
|
|
5101
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListIntegrationResourcePropertiesResponseSuccess
|
|
5102
|
+
|
|
5068
5103
|
interface _ListJobsResponseSuccess
|
|
5069
5104
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListJobsResponse]
|
|
5070
5105
|
def job_names: () -> ::Array[::String]
|
|
@@ -6356,6 +6391,7 @@ module Aws
|
|
|
6356
6391
|
interface _UpdateIntegrationResourcePropertyResponseSuccess
|
|
6357
6392
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateIntegrationResourcePropertyResponse]
|
|
6358
6393
|
def resource_arn: () -> ::String
|
|
6394
|
+
def resource_property_arn: () -> ::String
|
|
6359
6395
|
def source_processing_properties: () -> Types::SourceProcessingProperties
|
|
6360
6396
|
def target_processing_properties: () -> Types::TargetProcessingProperties
|
|
6361
6397
|
end
|
data/sig/types.rbs
CHANGED
|
@@ -1398,11 +1398,13 @@ module Aws::Glue
|
|
|
1398
1398
|
attr_accessor resource_arn: ::String
|
|
1399
1399
|
attr_accessor source_processing_properties: Types::SourceProcessingProperties
|
|
1400
1400
|
attr_accessor target_processing_properties: Types::TargetProcessingProperties
|
|
1401
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
1401
1402
|
SENSITIVE: []
|
|
1402
1403
|
end
|
|
1403
1404
|
|
|
1404
1405
|
class CreateIntegrationResourcePropertyResponse
|
|
1405
1406
|
attr_accessor resource_arn: ::String
|
|
1407
|
+
attr_accessor resource_property_arn: ::String
|
|
1406
1408
|
attr_accessor source_processing_properties: Types::SourceProcessingProperties
|
|
1407
1409
|
attr_accessor target_processing_properties: Types::TargetProcessingProperties
|
|
1408
1410
|
SENSITIVE: []
|
|
@@ -2152,6 +2154,14 @@ module Aws::Glue
|
|
|
2152
2154
|
SENSITIVE: []
|
|
2153
2155
|
end
|
|
2154
2156
|
|
|
2157
|
+
class DeleteIntegrationResourcePropertyRequest
|
|
2158
|
+
attr_accessor resource_arn: ::String
|
|
2159
|
+
SENSITIVE: []
|
|
2160
|
+
end
|
|
2161
|
+
|
|
2162
|
+
class DeleteIntegrationResourcePropertyResponse < Aws::EmptyStructure
|
|
2163
|
+
end
|
|
2164
|
+
|
|
2155
2165
|
class DeleteIntegrationResponse
|
|
2156
2166
|
attr_accessor source_arn: ::String
|
|
2157
2167
|
attr_accessor target_arn: ::String
|
|
@@ -3236,6 +3246,7 @@ module Aws::Glue
|
|
|
3236
3246
|
|
|
3237
3247
|
class GetIntegrationResourcePropertyResponse
|
|
3238
3248
|
attr_accessor resource_arn: ::String
|
|
3249
|
+
attr_accessor resource_property_arn: ::String
|
|
3239
3250
|
attr_accessor source_processing_properties: Types::SourceProcessingProperties
|
|
3240
3251
|
attr_accessor target_processing_properties: Types::TargetProcessingProperties
|
|
3241
3252
|
SENSITIVE: []
|
|
@@ -4206,6 +4217,20 @@ module Aws::Glue
|
|
|
4206
4217
|
SENSITIVE: []
|
|
4207
4218
|
end
|
|
4208
4219
|
|
|
4220
|
+
class IntegrationResourceProperty
|
|
4221
|
+
attr_accessor resource_arn: ::String
|
|
4222
|
+
attr_accessor resource_property_arn: ::String
|
|
4223
|
+
attr_accessor source_processing_properties: Types::SourceProcessingProperties
|
|
4224
|
+
attr_accessor target_processing_properties: Types::TargetProcessingProperties
|
|
4225
|
+
SENSITIVE: []
|
|
4226
|
+
end
|
|
4227
|
+
|
|
4228
|
+
class IntegrationResourcePropertyFilter
|
|
4229
|
+
attr_accessor name: ::String
|
|
4230
|
+
attr_accessor values: ::Array[::String]
|
|
4231
|
+
SENSITIVE: []
|
|
4232
|
+
end
|
|
4233
|
+
|
|
4209
4234
|
class InternalServerException
|
|
4210
4235
|
attr_accessor message: ::String
|
|
4211
4236
|
SENSITIVE: []
|
|
@@ -4704,6 +4729,19 @@ module Aws::Glue
|
|
|
4704
4729
|
SENSITIVE: []
|
|
4705
4730
|
end
|
|
4706
4731
|
|
|
4732
|
+
class ListIntegrationResourcePropertiesRequest
|
|
4733
|
+
attr_accessor marker: ::String
|
|
4734
|
+
attr_accessor filters: ::Array[Types::IntegrationResourcePropertyFilter]
|
|
4735
|
+
attr_accessor max_records: ::Integer
|
|
4736
|
+
SENSITIVE: []
|
|
4737
|
+
end
|
|
4738
|
+
|
|
4739
|
+
class ListIntegrationResourcePropertiesResponse
|
|
4740
|
+
attr_accessor integration_resource_property_list: ::Array[Types::IntegrationResourceProperty]
|
|
4741
|
+
attr_accessor marker: ::String
|
|
4742
|
+
SENSITIVE: []
|
|
4743
|
+
end
|
|
4744
|
+
|
|
4707
4745
|
class ListJobsRequest
|
|
4708
4746
|
attr_accessor next_token: ::String
|
|
4709
4747
|
attr_accessor max_results: ::Integer
|
|
@@ -7024,6 +7062,7 @@ module Aws::Glue
|
|
|
7024
7062
|
|
|
7025
7063
|
class UpdateIntegrationResourcePropertyResponse
|
|
7026
7064
|
attr_accessor resource_arn: ::String
|
|
7065
|
+
attr_accessor resource_property_arn: ::String
|
|
7027
7066
|
attr_accessor source_processing_properties: Types::SourceProcessingProperties
|
|
7028
7067
|
attr_accessor target_processing_properties: Types::TargetProcessingProperties
|
|
7029
7068
|
SENSITIVE: []
|