aws-sdk-glue 1.230.0 → 1.232.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glue/client.rb +120 -1
- data/lib/aws-sdk-glue/client_api.rb +97 -0
- data/lib/aws-sdk-glue/types.rb +137 -7
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/client.rbs +47 -1
- data/sig/types.rbs +38 -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: 8d8586b1819e79d8d829f8cec07527b0cdb8106d374edf38d2c1d0342b43d126
|
4
|
+
data.tar.gz: e8794bacddc2d096608573607a1d9cf58a1f84c1b68bfea2d966e2db93854dab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ba5792aae269fc6c58770d82f3a2619a2aab34e9dd2b12f13699cbcaf84cfb6ca490377152e82a6893598a9087dc82e458403fa66b7712ee4fe62a209afe10be
|
7
|
+
data.tar.gz: 9efca7d6c486a1b8700cf3aa7eb0595ff7f1495ec9422ee30f7b2010e4bf27e2294adaa577a925c9bd92bd2e18917669c97b2e90a39baec17d75cc9b74f52a74
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.232.0 (2025-08-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - AWS Glue Zero ETL now supports On-demand snapshot load
|
8
|
+
|
9
|
+
1.231.0 (2025-08-14)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - AWS Glue now supports Trusted Identity Propagation.
|
13
|
+
|
4
14
|
1.230.0 (2025-08-07)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.232.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
@@ -2875,6 +2875,42 @@ module Aws::Glue
|
|
2875
2875
|
req.send_request(options)
|
2876
2876
|
end
|
2877
2877
|
|
2878
|
+
# Creates a new Glue Identity Center configuration to enable integration
|
2879
|
+
# between Glue and Amazon Web Services IAM Identity Center for
|
2880
|
+
# authentication and authorization.
|
2881
|
+
#
|
2882
|
+
# @option params [required, String] :instance_arn
|
2883
|
+
# The Amazon Resource Name (ARN) of the Identity Center instance to be
|
2884
|
+
# associated with the Glue configuration.
|
2885
|
+
#
|
2886
|
+
# @option params [Array<String>] :scopes
|
2887
|
+
# A list of Identity Center scopes that define the permissions and
|
2888
|
+
# access levels for the Glue configuration.
|
2889
|
+
#
|
2890
|
+
# @return [Types::CreateGlueIdentityCenterConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2891
|
+
#
|
2892
|
+
# * {Types::CreateGlueIdentityCenterConfigurationResponse#application_arn #application_arn} => String
|
2893
|
+
#
|
2894
|
+
# @example Request syntax with placeholder values
|
2895
|
+
#
|
2896
|
+
# resp = client.create_glue_identity_center_configuration({
|
2897
|
+
# instance_arn: "IdentityCenterInstanceArn", # required
|
2898
|
+
# scopes: ["IdentityCenterScope"],
|
2899
|
+
# })
|
2900
|
+
#
|
2901
|
+
# @example Response structure
|
2902
|
+
#
|
2903
|
+
# resp.application_arn #=> String
|
2904
|
+
#
|
2905
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateGlueIdentityCenterConfiguration AWS API Documentation
|
2906
|
+
#
|
2907
|
+
# @overload create_glue_identity_center_configuration(params = {})
|
2908
|
+
# @param [Hash] params ({})
|
2909
|
+
def create_glue_identity_center_configuration(params = {}, options = {})
|
2910
|
+
req = build_request(:create_glue_identity_center_configuration, params)
|
2911
|
+
req.send_request(options)
|
2912
|
+
end
|
2913
|
+
|
2878
2914
|
# Creates a Zero-ETL integration in the caller's account between two
|
2879
2915
|
# resources with Amazon Resource Names (ARNs): the `SourceArn` and
|
2880
2916
|
# `TargetArn`.
|
@@ -2948,6 +2984,7 @@ module Aws::Glue
|
|
2948
2984
|
# source_properties: {
|
2949
2985
|
# "IntegrationString" => "IntegrationString",
|
2950
2986
|
# },
|
2987
|
+
# continuous_sync: false,
|
2951
2988
|
# },
|
2952
2989
|
# })
|
2953
2990
|
#
|
@@ -2973,6 +3010,7 @@ module Aws::Glue
|
|
2973
3010
|
# resp.integration_config.refresh_interval #=> String
|
2974
3011
|
# resp.integration_config.source_properties #=> Hash
|
2975
3012
|
# resp.integration_config.source_properties["IntegrationString"] #=> String
|
3013
|
+
# resp.integration_config.continuous_sync #=> Boolean
|
2976
3014
|
#
|
2977
3015
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateIntegration AWS API Documentation
|
2978
3016
|
#
|
@@ -5114,6 +5152,20 @@ module Aws::Glue
|
|
5114
5152
|
req.send_request(options)
|
5115
5153
|
end
|
5116
5154
|
|
5155
|
+
# Deletes the existing Glue Identity Center configuration, removing the
|
5156
|
+
# integration between Glue and Amazon Web Services IAM Identity Center.
|
5157
|
+
#
|
5158
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
5159
|
+
#
|
5160
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DeleteGlueIdentityCenterConfiguration AWS API Documentation
|
5161
|
+
#
|
5162
|
+
# @overload delete_glue_identity_center_configuration(params = {})
|
5163
|
+
# @param [Hash] params ({})
|
5164
|
+
def delete_glue_identity_center_configuration(params = {}, options = {})
|
5165
|
+
req = build_request(:delete_glue_identity_center_configuration, params)
|
5166
|
+
req.send_request(options)
|
5167
|
+
end
|
5168
|
+
|
5117
5169
|
# Deletes the specified Zero-ETL integration.
|
5118
5170
|
#
|
5119
5171
|
# @option params [required, String] :integration_identifier
|
@@ -6109,6 +6161,7 @@ module Aws::Glue
|
|
6109
6161
|
# resp.inbound_integrations[0].integration_config.refresh_interval #=> String
|
6110
6162
|
# resp.inbound_integrations[0].integration_config.source_properties #=> Hash
|
6111
6163
|
# resp.inbound_integrations[0].integration_config.source_properties["IntegrationString"] #=> String
|
6164
|
+
# resp.inbound_integrations[0].integration_config.continuous_sync #=> Boolean
|
6112
6165
|
# resp.inbound_integrations[0].errors #=> Array
|
6113
6166
|
# resp.inbound_integrations[0].errors[0].error_code #=> String
|
6114
6167
|
# resp.inbound_integrations[0].errors[0].error_message #=> String
|
@@ -6178,6 +6231,7 @@ module Aws::Glue
|
|
6178
6231
|
# resp.integrations[0].integration_config.refresh_interval #=> String
|
6179
6232
|
# resp.integrations[0].integration_config.source_properties #=> Hash
|
6180
6233
|
# resp.integrations[0].integration_config.source_properties["IntegrationString"] #=> String
|
6234
|
+
# resp.integrations[0].integration_config.continuous_sync #=> Boolean
|
6181
6235
|
# resp.integrations[0].errors #=> Array
|
6182
6236
|
# resp.integrations[0].errors[0].error_code #=> String
|
6183
6237
|
# resp.integrations[0].errors[0].error_message #=> String
|
@@ -8219,6 +8273,32 @@ module Aws::Glue
|
|
8219
8273
|
req.send_request(options)
|
8220
8274
|
end
|
8221
8275
|
|
8276
|
+
# Retrieves the current Glue Identity Center configuration details,
|
8277
|
+
# including the associated Identity Center instance and application
|
8278
|
+
# information.
|
8279
|
+
#
|
8280
|
+
# @return [Types::GetGlueIdentityCenterConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8281
|
+
#
|
8282
|
+
# * {Types::GetGlueIdentityCenterConfigurationResponse#application_arn #application_arn} => String
|
8283
|
+
# * {Types::GetGlueIdentityCenterConfigurationResponse#instance_arn #instance_arn} => String
|
8284
|
+
# * {Types::GetGlueIdentityCenterConfigurationResponse#scopes #scopes} => Array<String>
|
8285
|
+
#
|
8286
|
+
# @example Response structure
|
8287
|
+
#
|
8288
|
+
# resp.application_arn #=> String
|
8289
|
+
# resp.instance_arn #=> String
|
8290
|
+
# resp.scopes #=> Array
|
8291
|
+
# resp.scopes[0] #=> String
|
8292
|
+
#
|
8293
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetGlueIdentityCenterConfiguration AWS API Documentation
|
8294
|
+
#
|
8295
|
+
# @overload get_glue_identity_center_configuration(params = {})
|
8296
|
+
# @param [Hash] params ({})
|
8297
|
+
def get_glue_identity_center_configuration(params = {}, options = {})
|
8298
|
+
req = build_request(:get_glue_identity_center_configuration, params)
|
8299
|
+
req.send_request(options)
|
8300
|
+
end
|
8301
|
+
|
8222
8302
|
# This API is used for fetching the `ResourceProperty` of the Glue
|
8223
8303
|
# connection (for the source) or Glue database ARN (for the target)
|
8224
8304
|
#
|
@@ -13580,6 +13660,9 @@ module Aws::Glue
|
|
13580
13660
|
# @option params [String] :data_filter
|
13581
13661
|
# Selects source tables for the integration using Maxwell filter syntax.
|
13582
13662
|
#
|
13663
|
+
# @option params [Types::IntegrationConfig] :integration_config
|
13664
|
+
# Properties associated with the integration.
|
13665
|
+
#
|
13583
13666
|
# @option params [String] :integration_name
|
13584
13667
|
# A unique name for an integration in Glue.
|
13585
13668
|
#
|
@@ -13597,6 +13680,7 @@ module Aws::Glue
|
|
13597
13680
|
# * {Types::ModifyIntegrationResponse#create_time #create_time} => Time
|
13598
13681
|
# * {Types::ModifyIntegrationResponse#errors #errors} => Array<Types::IntegrationError>
|
13599
13682
|
# * {Types::ModifyIntegrationResponse#data_filter #data_filter} => String
|
13683
|
+
# * {Types::ModifyIntegrationResponse#integration_config #integration_config} => Types::IntegrationConfig
|
13600
13684
|
#
|
13601
13685
|
# @example Request syntax with placeholder values
|
13602
13686
|
#
|
@@ -13604,6 +13688,13 @@ module Aws::Glue
|
|
13604
13688
|
# integration_identifier: "String128", # required
|
13605
13689
|
# description: "IntegrationDescription",
|
13606
13690
|
# data_filter: "String2048",
|
13691
|
+
# integration_config: {
|
13692
|
+
# refresh_interval: "String128",
|
13693
|
+
# source_properties: {
|
13694
|
+
# "IntegrationString" => "IntegrationString",
|
13695
|
+
# },
|
13696
|
+
# continuous_sync: false,
|
13697
|
+
# },
|
13607
13698
|
# integration_name: "String128",
|
13608
13699
|
# })
|
13609
13700
|
#
|
@@ -13626,6 +13717,10 @@ module Aws::Glue
|
|
13626
13717
|
# resp.errors[0].error_code #=> String
|
13627
13718
|
# resp.errors[0].error_message #=> String
|
13628
13719
|
# resp.data_filter #=> String
|
13720
|
+
# resp.integration_config.refresh_interval #=> String
|
13721
|
+
# resp.integration_config.source_properties #=> Hash
|
13722
|
+
# resp.integration_config.source_properties["IntegrationString"] #=> String
|
13723
|
+
# resp.integration_config.continuous_sync #=> Boolean
|
13629
13724
|
#
|
13630
13725
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ModifyIntegration AWS API Documentation
|
13631
13726
|
#
|
@@ -16514,6 +16609,30 @@ module Aws::Glue
|
|
16514
16609
|
req.send_request(options)
|
16515
16610
|
end
|
16516
16611
|
|
16612
|
+
# Updates the existing Glue Identity Center configuration, allowing
|
16613
|
+
# modification of scopes and permissions for the integration.
|
16614
|
+
#
|
16615
|
+
# @option params [Array<String>] :scopes
|
16616
|
+
# A list of Identity Center scopes that define the updated permissions
|
16617
|
+
# and access levels for the Glue configuration.
|
16618
|
+
#
|
16619
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
16620
|
+
#
|
16621
|
+
# @example Request syntax with placeholder values
|
16622
|
+
#
|
16623
|
+
# resp = client.update_glue_identity_center_configuration({
|
16624
|
+
# scopes: ["IdentityCenterScope"],
|
16625
|
+
# })
|
16626
|
+
#
|
16627
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateGlueIdentityCenterConfiguration AWS API Documentation
|
16628
|
+
#
|
16629
|
+
# @overload update_glue_identity_center_configuration(params = {})
|
16630
|
+
# @param [Hash] params ({})
|
16631
|
+
def update_glue_identity_center_configuration(params = {}, options = {})
|
16632
|
+
req = build_request(:update_glue_identity_center_configuration, params)
|
16633
|
+
req.send_request(options)
|
16634
|
+
end
|
16635
|
+
|
16517
16636
|
# This API can be used for updating the `ResourceProperty` of the Glue
|
16518
16637
|
# connection (for the source) or Glue database ARN (for the target).
|
16519
16638
|
# These properties can include the role to access the connection or
|
@@ -17677,7 +17796,7 @@ module Aws::Glue
|
|
17677
17796
|
tracer: tracer
|
17678
17797
|
)
|
17679
17798
|
context[:gem_name] = 'aws-sdk-glue'
|
17680
|
-
context[:gem_version] = '1.
|
17799
|
+
context[:gem_version] = '1.232.0'
|
17681
17800
|
Seahorse::Client::Request.new(handlers, context)
|
17682
17801
|
end
|
17683
17802
|
|
@@ -44,6 +44,7 @@ module Aws::Glue
|
|
44
44
|
AnnotationErrorList = Shapes::ListShape.new(name: 'AnnotationErrorList')
|
45
45
|
AnnotationList = Shapes::ListShape.new(name: 'AnnotationList')
|
46
46
|
ApiVersion = Shapes::StringShape.new(name: 'ApiVersion')
|
47
|
+
ApplicationArn = Shapes::StringShape.new(name: 'ApplicationArn')
|
47
48
|
ApplyMapping = Shapes::StructureShape.new(name: 'ApplyMapping')
|
48
49
|
ArnString = Shapes::StringShape.new(name: 'ArnString')
|
49
50
|
AthenaConnectorSource = Shapes::StructureShape.new(name: 'AthenaConnectorSource')
|
@@ -278,6 +279,7 @@ module Aws::Glue
|
|
278
279
|
ContextKey = Shapes::StringShape.new(name: 'ContextKey')
|
279
280
|
ContextValue = Shapes::StringShape.new(name: 'ContextValue')
|
280
281
|
ContextWords = Shapes::ListShape.new(name: 'ContextWords')
|
282
|
+
ContinuousSync = Shapes::BooleanShape.new(name: 'ContinuousSync')
|
281
283
|
Crawl = Shapes::StructureShape.new(name: 'Crawl')
|
282
284
|
CrawlId = Shapes::StringShape.new(name: 'CrawlId')
|
283
285
|
CrawlList = Shapes::ListShape.new(name: 'CrawlList')
|
@@ -322,6 +324,8 @@ module Aws::Glue
|
|
322
324
|
CreateDatabaseResponse = Shapes::StructureShape.new(name: 'CreateDatabaseResponse')
|
323
325
|
CreateDevEndpointRequest = Shapes::StructureShape.new(name: 'CreateDevEndpointRequest')
|
324
326
|
CreateDevEndpointResponse = Shapes::StructureShape.new(name: 'CreateDevEndpointResponse')
|
327
|
+
CreateGlueIdentityCenterConfigurationRequest = Shapes::StructureShape.new(name: 'CreateGlueIdentityCenterConfigurationRequest')
|
328
|
+
CreateGlueIdentityCenterConfigurationResponse = Shapes::StructureShape.new(name: 'CreateGlueIdentityCenterConfigurationResponse')
|
325
329
|
CreateGrokClassifierRequest = Shapes::StructureShape.new(name: 'CreateGrokClassifierRequest')
|
326
330
|
CreateIcebergTableInput = Shapes::StructureShape.new(name: 'CreateIcebergTableInput')
|
327
331
|
CreateIntegrationRequest = Shapes::StructureShape.new(name: 'CreateIntegrationRequest')
|
@@ -476,6 +480,8 @@ module Aws::Glue
|
|
476
480
|
DeleteDatabaseResponse = Shapes::StructureShape.new(name: 'DeleteDatabaseResponse')
|
477
481
|
DeleteDevEndpointRequest = Shapes::StructureShape.new(name: 'DeleteDevEndpointRequest')
|
478
482
|
DeleteDevEndpointResponse = Shapes::StructureShape.new(name: 'DeleteDevEndpointResponse')
|
483
|
+
DeleteGlueIdentityCenterConfigurationRequest = Shapes::StructureShape.new(name: 'DeleteGlueIdentityCenterConfigurationRequest')
|
484
|
+
DeleteGlueIdentityCenterConfigurationResponse = Shapes::StructureShape.new(name: 'DeleteGlueIdentityCenterConfigurationResponse')
|
479
485
|
DeleteIntegrationRequest = Shapes::StructureShape.new(name: 'DeleteIntegrationRequest')
|
480
486
|
DeleteIntegrationResponse = Shapes::StructureShape.new(name: 'DeleteIntegrationResponse')
|
481
487
|
DeleteIntegrationTablePropertiesRequest = Shapes::StructureShape.new(name: 'DeleteIntegrationTablePropertiesRequest')
|
@@ -690,6 +696,8 @@ module Aws::Glue
|
|
690
696
|
GetDevEndpointsResponse = Shapes::StructureShape.new(name: 'GetDevEndpointsResponse')
|
691
697
|
GetEntityRecordsRequest = Shapes::StructureShape.new(name: 'GetEntityRecordsRequest')
|
692
698
|
GetEntityRecordsResponse = Shapes::StructureShape.new(name: 'GetEntityRecordsResponse')
|
699
|
+
GetGlueIdentityCenterConfigurationRequest = Shapes::StructureShape.new(name: 'GetGlueIdentityCenterConfigurationRequest')
|
700
|
+
GetGlueIdentityCenterConfigurationResponse = Shapes::StructureShape.new(name: 'GetGlueIdentityCenterConfigurationResponse')
|
693
701
|
GetIntegrationResourcePropertyRequest = Shapes::StructureShape.new(name: 'GetIntegrationResourcePropertyRequest')
|
694
702
|
GetIntegrationResourcePropertyResponse = Shapes::StructureShape.new(name: 'GetIntegrationResourcePropertyResponse')
|
695
703
|
GetIntegrationTablePropertiesRequest = Shapes::StructureShape.new(name: 'GetIntegrationTablePropertiesRequest')
|
@@ -838,6 +846,9 @@ module Aws::Glue
|
|
838
846
|
IcebergTransformString = Shapes::StringShape.new(name: 'IcebergTransformString')
|
839
847
|
IdString = Shapes::StringShape.new(name: 'IdString')
|
840
848
|
IdempotentParameterMismatchException = Shapes::StructureShape.new(name: 'IdempotentParameterMismatchException')
|
849
|
+
IdentityCenterInstanceArn = Shapes::StringShape.new(name: 'IdentityCenterInstanceArn')
|
850
|
+
IdentityCenterScope = Shapes::StringShape.new(name: 'IdentityCenterScope')
|
851
|
+
IdentityCenterScopesList = Shapes::ListShape.new(name: 'IdentityCenterScopesList')
|
841
852
|
IdleTimeout = Shapes::IntegerShape.new(name: 'IdleTimeout')
|
842
853
|
IllegalBlueprintStateException = Shapes::StructureShape.new(name: 'IllegalBlueprintStateException')
|
843
854
|
IllegalSessionStateException = Shapes::StructureShape.new(name: 'IllegalSessionStateException')
|
@@ -1513,6 +1524,8 @@ module Aws::Glue
|
|
1513
1524
|
UpdateDatabaseResponse = Shapes::StructureShape.new(name: 'UpdateDatabaseResponse')
|
1514
1525
|
UpdateDevEndpointRequest = Shapes::StructureShape.new(name: 'UpdateDevEndpointRequest')
|
1515
1526
|
UpdateDevEndpointResponse = Shapes::StructureShape.new(name: 'UpdateDevEndpointResponse')
|
1527
|
+
UpdateGlueIdentityCenterConfigurationRequest = Shapes::StructureShape.new(name: 'UpdateGlueIdentityCenterConfigurationRequest')
|
1528
|
+
UpdateGlueIdentityCenterConfigurationResponse = Shapes::StructureShape.new(name: 'UpdateGlueIdentityCenterConfigurationResponse')
|
1516
1529
|
UpdateGrokClassifierRequest = Shapes::StructureShape.new(name: 'UpdateGrokClassifierRequest')
|
1517
1530
|
UpdateIcebergInput = Shapes::StructureShape.new(name: 'UpdateIcebergInput')
|
1518
1531
|
UpdateIcebergTableInput = Shapes::StructureShape.new(name: 'UpdateIcebergTableInput')
|
@@ -2776,6 +2789,13 @@ module Aws::Glue
|
|
2776
2789
|
CreateDevEndpointResponse.add_member(:arguments, Shapes::ShapeRef.new(shape: MapValue, location_name: "Arguments"))
|
2777
2790
|
CreateDevEndpointResponse.struct_class = Types::CreateDevEndpointResponse
|
2778
2791
|
|
2792
|
+
CreateGlueIdentityCenterConfigurationRequest.add_member(:instance_arn, Shapes::ShapeRef.new(shape: IdentityCenterInstanceArn, required: true, location_name: "InstanceArn"))
|
2793
|
+
CreateGlueIdentityCenterConfigurationRequest.add_member(:scopes, Shapes::ShapeRef.new(shape: IdentityCenterScopesList, location_name: "Scopes"))
|
2794
|
+
CreateGlueIdentityCenterConfigurationRequest.struct_class = Types::CreateGlueIdentityCenterConfigurationRequest
|
2795
|
+
|
2796
|
+
CreateGlueIdentityCenterConfigurationResponse.add_member(:application_arn, Shapes::ShapeRef.new(shape: ApplicationArn, location_name: "ApplicationArn"))
|
2797
|
+
CreateGlueIdentityCenterConfigurationResponse.struct_class = Types::CreateGlueIdentityCenterConfigurationResponse
|
2798
|
+
|
2779
2799
|
CreateGrokClassifierRequest.add_member(:classification, Shapes::ShapeRef.new(shape: Classification, required: true, location_name: "Classification"))
|
2780
2800
|
CreateGrokClassifierRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
|
2781
2801
|
CreateGrokClassifierRequest.add_member(:grok_pattern, Shapes::ShapeRef.new(shape: GrokPattern, required: true, location_name: "GrokPattern"))
|
@@ -3410,6 +3430,10 @@ module Aws::Glue
|
|
3410
3430
|
|
3411
3431
|
DeleteDevEndpointResponse.struct_class = Types::DeleteDevEndpointResponse
|
3412
3432
|
|
3433
|
+
DeleteGlueIdentityCenterConfigurationRequest.struct_class = Types::DeleteGlueIdentityCenterConfigurationRequest
|
3434
|
+
|
3435
|
+
DeleteGlueIdentityCenterConfigurationResponse.struct_class = Types::DeleteGlueIdentityCenterConfigurationResponse
|
3436
|
+
|
3413
3437
|
DeleteIntegrationRequest.add_member(:integration_identifier, Shapes::ShapeRef.new(shape: String128, required: true, location_name: "IntegrationIdentifier"))
|
3414
3438
|
DeleteIntegrationRequest.struct_class = Types::DeleteIntegrationRequest
|
3415
3439
|
|
@@ -4222,6 +4246,13 @@ module Aws::Glue
|
|
4222
4246
|
GetEntityRecordsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
4223
4247
|
GetEntityRecordsResponse.struct_class = Types::GetEntityRecordsResponse
|
4224
4248
|
|
4249
|
+
GetGlueIdentityCenterConfigurationRequest.struct_class = Types::GetGlueIdentityCenterConfigurationRequest
|
4250
|
+
|
4251
|
+
GetGlueIdentityCenterConfigurationResponse.add_member(:application_arn, Shapes::ShapeRef.new(shape: ApplicationArn, location_name: "ApplicationArn"))
|
4252
|
+
GetGlueIdentityCenterConfigurationResponse.add_member(:instance_arn, Shapes::ShapeRef.new(shape: IdentityCenterInstanceArn, location_name: "InstanceArn"))
|
4253
|
+
GetGlueIdentityCenterConfigurationResponse.add_member(:scopes, Shapes::ShapeRef.new(shape: OrchestrationStringList, location_name: "Scopes"))
|
4254
|
+
GetGlueIdentityCenterConfigurationResponse.struct_class = Types::GetGlueIdentityCenterConfigurationResponse
|
4255
|
+
|
4225
4256
|
GetIntegrationResourcePropertyRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: String128, required: true, location_name: "ResourceArn"))
|
4226
4257
|
GetIntegrationResourcePropertyRequest.struct_class = Types::GetIntegrationResourcePropertyRequest
|
4227
4258
|
|
@@ -4892,6 +4923,8 @@ module Aws::Glue
|
|
4892
4923
|
IdempotentParameterMismatchException.add_member(:message, Shapes::ShapeRef.new(shape: MessageString, location_name: "Message"))
|
4893
4924
|
IdempotentParameterMismatchException.struct_class = Types::IdempotentParameterMismatchException
|
4894
4925
|
|
4926
|
+
IdentityCenterScopesList.member = Shapes::ShapeRef.new(shape: IdentityCenterScope)
|
4927
|
+
|
4895
4928
|
IllegalBlueprintStateException.add_member(:message, Shapes::ShapeRef.new(shape: MessageString, location_name: "Message"))
|
4896
4929
|
IllegalBlueprintStateException.struct_class = Types::IllegalBlueprintStateException
|
4897
4930
|
|
@@ -4945,6 +4978,7 @@ module Aws::Glue
|
|
4945
4978
|
|
4946
4979
|
IntegrationConfig.add_member(:refresh_interval, Shapes::ShapeRef.new(shape: String128, location_name: "RefreshInterval"))
|
4947
4980
|
IntegrationConfig.add_member(:source_properties, Shapes::ShapeRef.new(shape: IntegrationSourcePropertiesMap, location_name: "SourceProperties"))
|
4981
|
+
IntegrationConfig.add_member(:continuous_sync, Shapes::ShapeRef.new(shape: ContinuousSync, location_name: "ContinuousSync"))
|
4948
4982
|
IntegrationConfig.struct_class = Types::IntegrationConfig
|
4949
4983
|
|
4950
4984
|
IntegrationConflictOperationFault.add_member(:message, Shapes::ShapeRef.new(shape: IntegrationErrorMessage, location_name: "Message"))
|
@@ -5611,6 +5645,7 @@ module Aws::Glue
|
|
5611
5645
|
ModifyIntegrationRequest.add_member(:integration_identifier, Shapes::ShapeRef.new(shape: String128, required: true, location_name: "IntegrationIdentifier"))
|
5612
5646
|
ModifyIntegrationRequest.add_member(:description, Shapes::ShapeRef.new(shape: IntegrationDescription, location_name: "Description"))
|
5613
5647
|
ModifyIntegrationRequest.add_member(:data_filter, Shapes::ShapeRef.new(shape: String2048, location_name: "DataFilter"))
|
5648
|
+
ModifyIntegrationRequest.add_member(:integration_config, Shapes::ShapeRef.new(shape: IntegrationConfig, location_name: "IntegrationConfig"))
|
5614
5649
|
ModifyIntegrationRequest.add_member(:integration_name, Shapes::ShapeRef.new(shape: String128, location_name: "IntegrationName"))
|
5615
5650
|
ModifyIntegrationRequest.struct_class = Types::ModifyIntegrationRequest
|
5616
5651
|
|
@@ -5626,6 +5661,7 @@ module Aws::Glue
|
|
5626
5661
|
ModifyIntegrationResponse.add_member(:create_time, Shapes::ShapeRef.new(shape: IntegrationTimestamp, required: true, location_name: "CreateTime"))
|
5627
5662
|
ModifyIntegrationResponse.add_member(:errors, Shapes::ShapeRef.new(shape: IntegrationErrorList, location_name: "Errors"))
|
5628
5663
|
ModifyIntegrationResponse.add_member(:data_filter, Shapes::ShapeRef.new(shape: String2048, location_name: "DataFilter"))
|
5664
|
+
ModifyIntegrationResponse.add_member(:integration_config, Shapes::ShapeRef.new(shape: IntegrationConfig, location_name: "IntegrationConfig"))
|
5629
5665
|
ModifyIntegrationResponse.struct_class = Types::ModifyIntegrationResponse
|
5630
5666
|
|
5631
5667
|
MongoDBTarget.add_member(:connection_name, Shapes::ShapeRef.new(shape: ConnectionName, location_name: "ConnectionName"))
|
@@ -7282,6 +7318,11 @@ module Aws::Glue
|
|
7282
7318
|
|
7283
7319
|
UpdateDevEndpointResponse.struct_class = Types::UpdateDevEndpointResponse
|
7284
7320
|
|
7321
|
+
UpdateGlueIdentityCenterConfigurationRequest.add_member(:scopes, Shapes::ShapeRef.new(shape: IdentityCenterScopesList, location_name: "Scopes"))
|
7322
|
+
UpdateGlueIdentityCenterConfigurationRequest.struct_class = Types::UpdateGlueIdentityCenterConfigurationRequest
|
7323
|
+
|
7324
|
+
UpdateGlueIdentityCenterConfigurationResponse.struct_class = Types::UpdateGlueIdentityCenterConfigurationResponse
|
7325
|
+
|
7285
7326
|
UpdateGrokClassifierRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
|
7286
7327
|
UpdateGrokClassifierRequest.add_member(:classification, Shapes::ShapeRef.new(shape: Classification, location_name: "Classification"))
|
7287
7328
|
UpdateGrokClassifierRequest.add_member(:grok_pattern, Shapes::ShapeRef.new(shape: GrokPattern, location_name: "GrokPattern"))
|
@@ -8038,6 +8079,20 @@ module Aws::Glue
|
|
8038
8079
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNumberLimitExceededException)
|
8039
8080
|
end)
|
8040
8081
|
|
8082
|
+
api.add_operation(:create_glue_identity_center_configuration, Seahorse::Model::Operation.new.tap do |o|
|
8083
|
+
o.name = "CreateGlueIdentityCenterConfiguration"
|
8084
|
+
o.http_method = "POST"
|
8085
|
+
o.http_request_uri = "/"
|
8086
|
+
o.input = Shapes::ShapeRef.new(shape: CreateGlueIdentityCenterConfigurationRequest)
|
8087
|
+
o.output = Shapes::ShapeRef.new(shape: CreateGlueIdentityCenterConfigurationResponse)
|
8088
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
8089
|
+
o.errors << Shapes::ShapeRef.new(shape: AlreadyExistsException)
|
8090
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
8091
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
|
8092
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
8093
|
+
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
8094
|
+
end)
|
8095
|
+
|
8041
8096
|
api.add_operation(:create_integration, Seahorse::Model::Operation.new.tap do |o|
|
8042
8097
|
o.name = "CreateIntegration"
|
8043
8098
|
o.http_method = "POST"
|
@@ -8459,6 +8514,20 @@ module Aws::Glue
|
|
8459
8514
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
8460
8515
|
end)
|
8461
8516
|
|
8517
|
+
api.add_operation(:delete_glue_identity_center_configuration, Seahorse::Model::Operation.new.tap do |o|
|
8518
|
+
o.name = "DeleteGlueIdentityCenterConfiguration"
|
8519
|
+
o.http_method = "POST"
|
8520
|
+
o.http_request_uri = "/"
|
8521
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteGlueIdentityCenterConfigurationRequest)
|
8522
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteGlueIdentityCenterConfigurationResponse)
|
8523
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
8524
|
+
o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
|
8525
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
8526
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
|
8527
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
8528
|
+
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
8529
|
+
end)
|
8530
|
+
|
8462
8531
|
api.add_operation(:delete_integration, Seahorse::Model::Operation.new.tap do |o|
|
8463
8532
|
o.name = "DeleteIntegration"
|
8464
8533
|
o.http_method = "POST"
|
@@ -9200,6 +9269,20 @@ module Aws::Glue
|
|
9200
9269
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
9201
9270
|
end)
|
9202
9271
|
|
9272
|
+
api.add_operation(:get_glue_identity_center_configuration, Seahorse::Model::Operation.new.tap do |o|
|
9273
|
+
o.name = "GetGlueIdentityCenterConfiguration"
|
9274
|
+
o.http_method = "POST"
|
9275
|
+
o.http_request_uri = "/"
|
9276
|
+
o.input = Shapes::ShapeRef.new(shape: GetGlueIdentityCenterConfigurationRequest)
|
9277
|
+
o.output = Shapes::ShapeRef.new(shape: GetGlueIdentityCenterConfigurationResponse)
|
9278
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
9279
|
+
o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
|
9280
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
9281
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
|
9282
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
9283
|
+
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
9284
|
+
end)
|
9285
|
+
|
9203
9286
|
api.add_operation(:get_integration_resource_property, Seahorse::Model::Operation.new.tap do |o|
|
9204
9287
|
o.name = "GetIntegrationResourceProperty"
|
9205
9288
|
o.http_method = "POST"
|
@@ -10942,6 +11025,20 @@ module Aws::Glue
|
|
10942
11025
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
10943
11026
|
end)
|
10944
11027
|
|
11028
|
+
api.add_operation(:update_glue_identity_center_configuration, Seahorse::Model::Operation.new.tap do |o|
|
11029
|
+
o.name = "UpdateGlueIdentityCenterConfiguration"
|
11030
|
+
o.http_method = "POST"
|
11031
|
+
o.http_request_uri = "/"
|
11032
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateGlueIdentityCenterConfigurationRequest)
|
11033
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateGlueIdentityCenterConfigurationResponse)
|
11034
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
11035
|
+
o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
|
11036
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
11037
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
|
11038
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
11039
|
+
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
11040
|
+
end)
|
11041
|
+
|
10945
11042
|
api.add_operation(:update_integration_resource_property, Seahorse::Model::Operation.new.tap do |o|
|
10946
11043
|
o.name = "UpdateIntegrationResourceProperty"
|
10947
11044
|
o.http_method = "POST"
|
data/lib/aws-sdk-glue/types.rb
CHANGED
@@ -5792,6 +5792,42 @@ module Aws::Glue
|
|
5792
5792
|
include Aws::Structure
|
5793
5793
|
end
|
5794
5794
|
|
5795
|
+
# Request to create a new Glue Identity Center configuration.
|
5796
|
+
#
|
5797
|
+
# @!attribute [rw] instance_arn
|
5798
|
+
# The Amazon Resource Name (ARN) of the Identity Center instance to be
|
5799
|
+
# associated with the Glue configuration.
|
5800
|
+
# @return [String]
|
5801
|
+
#
|
5802
|
+
# @!attribute [rw] scopes
|
5803
|
+
# A list of Identity Center scopes that define the permissions and
|
5804
|
+
# access levels for the Glue configuration.
|
5805
|
+
# @return [Array<String>]
|
5806
|
+
#
|
5807
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateGlueIdentityCenterConfigurationRequest AWS API Documentation
|
5808
|
+
#
|
5809
|
+
class CreateGlueIdentityCenterConfigurationRequest < Struct.new(
|
5810
|
+
:instance_arn,
|
5811
|
+
:scopes)
|
5812
|
+
SENSITIVE = []
|
5813
|
+
include Aws::Structure
|
5814
|
+
end
|
5815
|
+
|
5816
|
+
# Response from creating a new Glue Identity Center configuration.
|
5817
|
+
#
|
5818
|
+
# @!attribute [rw] application_arn
|
5819
|
+
# The Amazon Resource Name (ARN) of the Identity Center application
|
5820
|
+
# that was created for the Glue configuration.
|
5821
|
+
# @return [String]
|
5822
|
+
#
|
5823
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateGlueIdentityCenterConfigurationResponse AWS API Documentation
|
5824
|
+
#
|
5825
|
+
class CreateGlueIdentityCenterConfigurationResponse < Struct.new(
|
5826
|
+
:application_arn)
|
5827
|
+
SENSITIVE = []
|
5828
|
+
include Aws::Structure
|
5829
|
+
end
|
5830
|
+
|
5795
5831
|
# Specifies a `grok` classifier for `CreateClassifier` to create.
|
5796
5832
|
#
|
5797
5833
|
# @!attribute [rw] classification
|
@@ -9038,6 +9074,20 @@ module Aws::Glue
|
|
9038
9074
|
#
|
9039
9075
|
class DeleteDevEndpointResponse < Aws::EmptyStructure; end
|
9040
9076
|
|
9077
|
+
# Request to delete the existing Glue Identity Center configuration.
|
9078
|
+
#
|
9079
|
+
# @api private
|
9080
|
+
#
|
9081
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DeleteGlueIdentityCenterConfigurationRequest AWS API Documentation
|
9082
|
+
#
|
9083
|
+
class DeleteGlueIdentityCenterConfigurationRequest < Aws::EmptyStructure; end
|
9084
|
+
|
9085
|
+
# Response from deleting the Glue Identity Center configuration.
|
9086
|
+
#
|
9087
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DeleteGlueIdentityCenterConfigurationResponse AWS API Documentation
|
9088
|
+
#
|
9089
|
+
class DeleteGlueIdentityCenterConfigurationResponse < Aws::EmptyStructure; end
|
9090
|
+
|
9041
9091
|
# @!attribute [rw] integration_identifier
|
9042
9092
|
# The Amazon Resource Name (ARN) for the integration.
|
9043
9093
|
# @return [String]
|
@@ -12942,6 +12992,41 @@ module Aws::Glue
|
|
12942
12992
|
include Aws::Structure
|
12943
12993
|
end
|
12944
12994
|
|
12995
|
+
# Request to retrieve the Glue Identity Center configuration.
|
12996
|
+
#
|
12997
|
+
# @api private
|
12998
|
+
#
|
12999
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetGlueIdentityCenterConfigurationRequest AWS API Documentation
|
13000
|
+
#
|
13001
|
+
class GetGlueIdentityCenterConfigurationRequest < Aws::EmptyStructure; end
|
13002
|
+
|
13003
|
+
# Response containing the Glue Identity Center configuration details.
|
13004
|
+
#
|
13005
|
+
# @!attribute [rw] application_arn
|
13006
|
+
# The Amazon Resource Name (ARN) of the Identity Center application
|
13007
|
+
# associated with the Glue configuration.
|
13008
|
+
# @return [String]
|
13009
|
+
#
|
13010
|
+
# @!attribute [rw] instance_arn
|
13011
|
+
# The Amazon Resource Name (ARN) of the Identity Center instance
|
13012
|
+
# associated with the Glue configuration.
|
13013
|
+
# @return [String]
|
13014
|
+
#
|
13015
|
+
# @!attribute [rw] scopes
|
13016
|
+
# A list of Identity Center scopes that define the permissions and
|
13017
|
+
# access levels for the Glue configuration.
|
13018
|
+
# @return [Array<String>]
|
13019
|
+
#
|
13020
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetGlueIdentityCenterConfigurationResponse AWS API Documentation
|
13021
|
+
#
|
13022
|
+
class GetGlueIdentityCenterConfigurationResponse < Struct.new(
|
13023
|
+
:application_arn,
|
13024
|
+
:instance_arn,
|
13025
|
+
:scopes)
|
13026
|
+
SENSITIVE = []
|
13027
|
+
include Aws::Structure
|
13028
|
+
end
|
13029
|
+
|
12945
13030
|
# @!attribute [rw] resource_arn
|
12946
13031
|
# The connection ARN of the source, or the database ARN of the target.
|
12947
13032
|
# @return [String]
|
@@ -16687,11 +16772,18 @@ module Aws::Glue
|
|
16687
16772
|
# during data integration operations.
|
16688
16773
|
# @return [Hash<String,String>]
|
16689
16774
|
#
|
16775
|
+
# @!attribute [rw] continuous_sync
|
16776
|
+
# Enables continuous synchronization for on-demand data extractions
|
16777
|
+
# from SaaS applications to Amazon Web Services data services like
|
16778
|
+
# Amazon Redshift and Amazon S3.
|
16779
|
+
# @return [Boolean]
|
16780
|
+
#
|
16690
16781
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/IntegrationConfig AWS API Documentation
|
16691
16782
|
#
|
16692
16783
|
class IntegrationConfig < Struct.new(
|
16693
16784
|
:refresh_interval,
|
16694
|
-
:source_properties
|
16785
|
+
:source_properties,
|
16786
|
+
:continuous_sync)
|
16695
16787
|
SENSITIVE = []
|
16696
16788
|
include Aws::Structure
|
16697
16789
|
end
|
@@ -16776,11 +16868,18 @@ module Aws::Glue
|
|
16776
16868
|
#
|
16777
16869
|
# @!attribute [rw] function_spec
|
16778
16870
|
# Specifies the function used to partition data on the target. The
|
16779
|
-
#
|
16780
|
-
#
|
16781
|
-
#
|
16782
|
-
#
|
16783
|
-
#
|
16871
|
+
# accepted values for this parameter are:
|
16872
|
+
#
|
16873
|
+
# * `identity` - Uses source values directly without transformation
|
16874
|
+
#
|
16875
|
+
# * `year` - Extracts the year from timestamp values (e.g., 2023)
|
16876
|
+
#
|
16877
|
+
# * `month` - Extracts the month from timestamp values (e.g., 2023-01)
|
16878
|
+
#
|
16879
|
+
# * `day` - Extracts the day from timestamp values (e.g., 2023-01-15)
|
16880
|
+
#
|
16881
|
+
# * `hour` - Extracts the hour from timestamp values (e.g.,
|
16882
|
+
# 2023-01-15-14)
|
16784
16883
|
# @return [String]
|
16785
16884
|
#
|
16786
16885
|
# @!attribute [rw] conversion_spec
|
@@ -20435,6 +20534,10 @@ module Aws::Glue
|
|
20435
20534
|
# syntax.
|
20436
20535
|
# @return [String]
|
20437
20536
|
#
|
20537
|
+
# @!attribute [rw] integration_config
|
20538
|
+
# Properties associated with the integration.
|
20539
|
+
# @return [Types::IntegrationConfig]
|
20540
|
+
#
|
20438
20541
|
# @!attribute [rw] integration_name
|
20439
20542
|
# A unique name for an integration in Glue.
|
20440
20543
|
# @return [String]
|
@@ -20445,6 +20548,7 @@ module Aws::Glue
|
|
20445
20548
|
:integration_identifier,
|
20446
20549
|
:description,
|
20447
20550
|
:data_filter,
|
20551
|
+
:integration_config,
|
20448
20552
|
:integration_name)
|
20449
20553
|
SENSITIVE = []
|
20450
20554
|
include Aws::Structure
|
@@ -20518,6 +20622,10 @@ module Aws::Glue
|
|
20518
20622
|
# syntax.
|
20519
20623
|
# @return [String]
|
20520
20624
|
#
|
20625
|
+
# @!attribute [rw] integration_config
|
20626
|
+
# Properties associated with the integration.
|
20627
|
+
# @return [Types::IntegrationConfig]
|
20628
|
+
#
|
20521
20629
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ModifyIntegrationResponse AWS API Documentation
|
20522
20630
|
#
|
20523
20631
|
class ModifyIntegrationResponse < Struct.new(
|
@@ -20532,7 +20640,8 @@ module Aws::Glue
|
|
20532
20640
|
:status,
|
20533
20641
|
:create_time,
|
20534
20642
|
:errors,
|
20535
|
-
:data_filter
|
20643
|
+
:data_filter,
|
20644
|
+
:integration_config)
|
20536
20645
|
SENSITIVE = []
|
20537
20646
|
include Aws::Structure
|
20538
20647
|
end
|
@@ -28395,6 +28504,27 @@ module Aws::Glue
|
|
28395
28504
|
#
|
28396
28505
|
class UpdateDevEndpointResponse < Aws::EmptyStructure; end
|
28397
28506
|
|
28507
|
+
# Request to update an existing Glue Identity Center configuration.
|
28508
|
+
#
|
28509
|
+
# @!attribute [rw] scopes
|
28510
|
+
# A list of Identity Center scopes that define the updated permissions
|
28511
|
+
# and access levels for the Glue configuration.
|
28512
|
+
# @return [Array<String>]
|
28513
|
+
#
|
28514
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateGlueIdentityCenterConfigurationRequest AWS API Documentation
|
28515
|
+
#
|
28516
|
+
class UpdateGlueIdentityCenterConfigurationRequest < Struct.new(
|
28517
|
+
:scopes)
|
28518
|
+
SENSITIVE = []
|
28519
|
+
include Aws::Structure
|
28520
|
+
end
|
28521
|
+
|
28522
|
+
# Response from updating an existing Glue Identity Center configuration.
|
28523
|
+
#
|
28524
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateGlueIdentityCenterConfigurationResponse AWS API Documentation
|
28525
|
+
#
|
28526
|
+
class UpdateGlueIdentityCenterConfigurationResponse < Aws::EmptyStructure; end
|
28527
|
+
|
28398
28528
|
# Specifies a grok classifier to update when passed to
|
28399
28529
|
# `UpdateClassifier`.
|
28400
28530
|
#
|
data/lib/aws-sdk-glue.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -858,6 +858,17 @@ module Aws
|
|
858
858
|
) -> _CreateDevEndpointResponseSuccess
|
859
859
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDevEndpointResponseSuccess
|
860
860
|
|
861
|
+
interface _CreateGlueIdentityCenterConfigurationResponseSuccess
|
862
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateGlueIdentityCenterConfigurationResponse]
|
863
|
+
def application_arn: () -> ::String
|
864
|
+
end
|
865
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#create_glue_identity_center_configuration-instance_method
|
866
|
+
def create_glue_identity_center_configuration: (
|
867
|
+
instance_arn: ::String,
|
868
|
+
?scopes: Array[::String]
|
869
|
+
) -> _CreateGlueIdentityCenterConfigurationResponseSuccess
|
870
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGlueIdentityCenterConfigurationResponseSuccess
|
871
|
+
|
861
872
|
interface _CreateIntegrationResponseSuccess
|
862
873
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateIntegrationResponse]
|
863
874
|
def source_arn: () -> ::String
|
@@ -891,7 +902,8 @@ module Aws
|
|
891
902
|
],
|
892
903
|
?integration_config: {
|
893
904
|
refresh_interval: ::String?,
|
894
|
-
source_properties: Hash[::String, ::String]
|
905
|
+
source_properties: Hash[::String, ::String]?,
|
906
|
+
continuous_sync: bool?
|
895
907
|
}
|
896
908
|
) -> _CreateIntegrationResponseSuccess
|
897
909
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateIntegrationResponseSuccess
|
@@ -3185,6 +3197,14 @@ module Aws
|
|
3185
3197
|
) -> _DeleteDevEndpointResponseSuccess
|
3186
3198
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDevEndpointResponseSuccess
|
3187
3199
|
|
3200
|
+
interface _DeleteGlueIdentityCenterConfigurationResponseSuccess
|
3201
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteGlueIdentityCenterConfigurationResponse]
|
3202
|
+
end
|
3203
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#delete_glue_identity_center_configuration-instance_method
|
3204
|
+
def delete_glue_identity_center_configuration: (
|
3205
|
+
) -> _DeleteGlueIdentityCenterConfigurationResponseSuccess
|
3206
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteGlueIdentityCenterConfigurationResponseSuccess
|
3207
|
+
|
3188
3208
|
interface _DeleteIntegrationResponseSuccess
|
3189
3209
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteIntegrationResponse]
|
3190
3210
|
def source_arn: () -> ::String
|
@@ -3919,6 +3939,17 @@ module Aws
|
|
3919
3939
|
) -> _GetEntityRecordsResponseSuccess
|
3920
3940
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEntityRecordsResponseSuccess
|
3921
3941
|
|
3942
|
+
interface _GetGlueIdentityCenterConfigurationResponseSuccess
|
3943
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetGlueIdentityCenterConfigurationResponse]
|
3944
|
+
def application_arn: () -> ::String
|
3945
|
+
def instance_arn: () -> ::String
|
3946
|
+
def scopes: () -> ::Array[::String]
|
3947
|
+
end
|
3948
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#get_glue_identity_center_configuration-instance_method
|
3949
|
+
def get_glue_identity_center_configuration: (
|
3950
|
+
) -> _GetGlueIdentityCenterConfigurationResponseSuccess
|
3951
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetGlueIdentityCenterConfigurationResponseSuccess
|
3952
|
+
|
3922
3953
|
interface _GetIntegrationResourcePropertyResponseSuccess
|
3923
3954
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetIntegrationResourcePropertyResponse]
|
3924
3955
|
def resource_arn: () -> ::String
|
@@ -5188,12 +5219,18 @@ module Aws
|
|
5188
5219
|
def create_time: () -> ::Time
|
5189
5220
|
def errors: () -> ::Array[Types::IntegrationError]
|
5190
5221
|
def data_filter: () -> ::String
|
5222
|
+
def integration_config: () -> Types::IntegrationConfig
|
5191
5223
|
end
|
5192
5224
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#modify_integration-instance_method
|
5193
5225
|
def modify_integration: (
|
5194
5226
|
integration_identifier: ::String,
|
5195
5227
|
?description: ::String,
|
5196
5228
|
?data_filter: ::String,
|
5229
|
+
?integration_config: {
|
5230
|
+
refresh_interval: ::String?,
|
5231
|
+
source_properties: Hash[::String, ::String]?,
|
5232
|
+
continuous_sync: bool?
|
5233
|
+
},
|
5197
5234
|
?integration_name: ::String
|
5198
5235
|
) -> _ModifyIntegrationResponseSuccess
|
5199
5236
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyIntegrationResponseSuccess
|
@@ -6246,6 +6283,15 @@ module Aws
|
|
6246
6283
|
) -> _UpdateDevEndpointResponseSuccess
|
6247
6284
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDevEndpointResponseSuccess
|
6248
6285
|
|
6286
|
+
interface _UpdateGlueIdentityCenterConfigurationResponseSuccess
|
6287
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateGlueIdentityCenterConfigurationResponse]
|
6288
|
+
end
|
6289
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#update_glue_identity_center_configuration-instance_method
|
6290
|
+
def update_glue_identity_center_configuration: (
|
6291
|
+
?scopes: Array[::String]
|
6292
|
+
) -> _UpdateGlueIdentityCenterConfigurationResponseSuccess
|
6293
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGlueIdentityCenterConfigurationResponseSuccess
|
6294
|
+
|
6249
6295
|
interface _UpdateIntegrationResourcePropertyResponseSuccess
|
6250
6296
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateIntegrationResourcePropertyResponse]
|
6251
6297
|
def resource_arn: () -> ::String
|
data/sig/types.rbs
CHANGED
@@ -1351,6 +1351,17 @@ module Aws::Glue
|
|
1351
1351
|
SENSITIVE: []
|
1352
1352
|
end
|
1353
1353
|
|
1354
|
+
class CreateGlueIdentityCenterConfigurationRequest
|
1355
|
+
attr_accessor instance_arn: ::String
|
1356
|
+
attr_accessor scopes: ::Array[::String]
|
1357
|
+
SENSITIVE: []
|
1358
|
+
end
|
1359
|
+
|
1360
|
+
class CreateGlueIdentityCenterConfigurationResponse
|
1361
|
+
attr_accessor application_arn: ::String
|
1362
|
+
SENSITIVE: []
|
1363
|
+
end
|
1364
|
+
|
1354
1365
|
class CreateGrokClassifierRequest
|
1355
1366
|
attr_accessor classification: ::String
|
1356
1367
|
attr_accessor name: ::String
|
@@ -2116,6 +2127,12 @@ module Aws::Glue
|
|
2116
2127
|
class DeleteDevEndpointResponse < Aws::EmptyStructure
|
2117
2128
|
end
|
2118
2129
|
|
2130
|
+
class DeleteGlueIdentityCenterConfigurationRequest < Aws::EmptyStructure
|
2131
|
+
end
|
2132
|
+
|
2133
|
+
class DeleteGlueIdentityCenterConfigurationResponse < Aws::EmptyStructure
|
2134
|
+
end
|
2135
|
+
|
2119
2136
|
class DeleteIntegrationRequest
|
2120
2137
|
attr_accessor integration_identifier: ::String
|
2121
2138
|
SENSITIVE: []
|
@@ -3187,6 +3204,16 @@ module Aws::Glue
|
|
3187
3204
|
SENSITIVE: [:records]
|
3188
3205
|
end
|
3189
3206
|
|
3207
|
+
class GetGlueIdentityCenterConfigurationRequest < Aws::EmptyStructure
|
3208
|
+
end
|
3209
|
+
|
3210
|
+
class GetGlueIdentityCenterConfigurationResponse
|
3211
|
+
attr_accessor application_arn: ::String
|
3212
|
+
attr_accessor instance_arn: ::String
|
3213
|
+
attr_accessor scopes: ::Array[::String]
|
3214
|
+
SENSITIVE: []
|
3215
|
+
end
|
3216
|
+
|
3190
3217
|
class GetIntegrationResourcePropertyRequest
|
3191
3218
|
attr_accessor resource_arn: ::String
|
3192
3219
|
SENSITIVE: []
|
@@ -4124,6 +4151,7 @@ module Aws::Glue
|
|
4124
4151
|
class IntegrationConfig
|
4125
4152
|
attr_accessor refresh_interval: ::String
|
4126
4153
|
attr_accessor source_properties: ::Hash[::String, ::String]
|
4154
|
+
attr_accessor continuous_sync: bool
|
4127
4155
|
SENSITIVE: []
|
4128
4156
|
end
|
4129
4157
|
|
@@ -4927,6 +4955,7 @@ module Aws::Glue
|
|
4927
4955
|
attr_accessor integration_identifier: ::String
|
4928
4956
|
attr_accessor description: ::String
|
4929
4957
|
attr_accessor data_filter: ::String
|
4958
|
+
attr_accessor integration_config: Types::IntegrationConfig
|
4930
4959
|
attr_accessor integration_name: ::String
|
4931
4960
|
SENSITIVE: []
|
4932
4961
|
end
|
@@ -4944,6 +4973,7 @@ module Aws::Glue
|
|
4944
4973
|
attr_accessor create_time: ::Time
|
4945
4974
|
attr_accessor errors: ::Array[Types::IntegrationError]
|
4946
4975
|
attr_accessor data_filter: ::String
|
4976
|
+
attr_accessor integration_config: Types::IntegrationConfig
|
4947
4977
|
SENSITIVE: []
|
4948
4978
|
end
|
4949
4979
|
|
@@ -6941,6 +6971,14 @@ module Aws::Glue
|
|
6941
6971
|
class UpdateDevEndpointResponse < Aws::EmptyStructure
|
6942
6972
|
end
|
6943
6973
|
|
6974
|
+
class UpdateGlueIdentityCenterConfigurationRequest
|
6975
|
+
attr_accessor scopes: ::Array[::String]
|
6976
|
+
SENSITIVE: []
|
6977
|
+
end
|
6978
|
+
|
6979
|
+
class UpdateGlueIdentityCenterConfigurationResponse < Aws::EmptyStructure
|
6980
|
+
end
|
6981
|
+
|
6944
6982
|
class UpdateGrokClassifierRequest
|
6945
6983
|
attr_accessor name: ::String
|
6946
6984
|
attr_accessor classification: ::String
|