aws-sdk-glue 1.230.0 → 1.231.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 +101 -1
- data/lib/aws-sdk-glue/client_api.rb +93 -0
- data/lib/aws-sdk-glue/types.rb +106 -0
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/client.rbs +39 -0
- data/sig/types.rbs +35 -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: 042ac73baf164cd990ec4899064ba1939ddf2f317014f53c07e34f0c314794bb
|
4
|
+
data.tar.gz: b5ba433785168a07313b24bc4392ed3b268bb7797fd8cc9a69a3e966ac2882a4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f1b704949a182ff9d077fff5ad9153baa6c31927646cfde1df5fbc4829c7d90b925cfc0249ca80f4ad57c25ccb2c6b611c7c43d2a5ef974d3b1169709f89b8d5
|
7
|
+
data.tar.gz: cdc7568a215710b1c2dd3c138b5d6599b00ea3a5503c97d85e31d76ee930b749e5648582761e81cf3894bd83ed363abca5a659e87e357a59283ad9c757164e28
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.231.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`.
|
@@ -5114,6 +5150,20 @@ module Aws::Glue
|
|
5114
5150
|
req.send_request(options)
|
5115
5151
|
end
|
5116
5152
|
|
5153
|
+
# Deletes the existing Glue Identity Center configuration, removing the
|
5154
|
+
# integration between Glue and Amazon Web Services IAM Identity Center.
|
5155
|
+
#
|
5156
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
5157
|
+
#
|
5158
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DeleteGlueIdentityCenterConfiguration AWS API Documentation
|
5159
|
+
#
|
5160
|
+
# @overload delete_glue_identity_center_configuration(params = {})
|
5161
|
+
# @param [Hash] params ({})
|
5162
|
+
def delete_glue_identity_center_configuration(params = {}, options = {})
|
5163
|
+
req = build_request(:delete_glue_identity_center_configuration, params)
|
5164
|
+
req.send_request(options)
|
5165
|
+
end
|
5166
|
+
|
5117
5167
|
# Deletes the specified Zero-ETL integration.
|
5118
5168
|
#
|
5119
5169
|
# @option params [required, String] :integration_identifier
|
@@ -8219,6 +8269,32 @@ module Aws::Glue
|
|
8219
8269
|
req.send_request(options)
|
8220
8270
|
end
|
8221
8271
|
|
8272
|
+
# Retrieves the current Glue Identity Center configuration details,
|
8273
|
+
# including the associated Identity Center instance and application
|
8274
|
+
# information.
|
8275
|
+
#
|
8276
|
+
# @return [Types::GetGlueIdentityCenterConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8277
|
+
#
|
8278
|
+
# * {Types::GetGlueIdentityCenterConfigurationResponse#application_arn #application_arn} => String
|
8279
|
+
# * {Types::GetGlueIdentityCenterConfigurationResponse#instance_arn #instance_arn} => String
|
8280
|
+
# * {Types::GetGlueIdentityCenterConfigurationResponse#scopes #scopes} => Array<String>
|
8281
|
+
#
|
8282
|
+
# @example Response structure
|
8283
|
+
#
|
8284
|
+
# resp.application_arn #=> String
|
8285
|
+
# resp.instance_arn #=> String
|
8286
|
+
# resp.scopes #=> Array
|
8287
|
+
# resp.scopes[0] #=> String
|
8288
|
+
#
|
8289
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetGlueIdentityCenterConfiguration AWS API Documentation
|
8290
|
+
#
|
8291
|
+
# @overload get_glue_identity_center_configuration(params = {})
|
8292
|
+
# @param [Hash] params ({})
|
8293
|
+
def get_glue_identity_center_configuration(params = {}, options = {})
|
8294
|
+
req = build_request(:get_glue_identity_center_configuration, params)
|
8295
|
+
req.send_request(options)
|
8296
|
+
end
|
8297
|
+
|
8222
8298
|
# This API is used for fetching the `ResourceProperty` of the Glue
|
8223
8299
|
# connection (for the source) or Glue database ARN (for the target)
|
8224
8300
|
#
|
@@ -16514,6 +16590,30 @@ module Aws::Glue
|
|
16514
16590
|
req.send_request(options)
|
16515
16591
|
end
|
16516
16592
|
|
16593
|
+
# Updates the existing Glue Identity Center configuration, allowing
|
16594
|
+
# modification of scopes and permissions for the integration.
|
16595
|
+
#
|
16596
|
+
# @option params [Array<String>] :scopes
|
16597
|
+
# A list of Identity Center scopes that define the updated permissions
|
16598
|
+
# and access levels for the Glue configuration.
|
16599
|
+
#
|
16600
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
16601
|
+
#
|
16602
|
+
# @example Request syntax with placeholder values
|
16603
|
+
#
|
16604
|
+
# resp = client.update_glue_identity_center_configuration({
|
16605
|
+
# scopes: ["IdentityCenterScope"],
|
16606
|
+
# })
|
16607
|
+
#
|
16608
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateGlueIdentityCenterConfiguration AWS API Documentation
|
16609
|
+
#
|
16610
|
+
# @overload update_glue_identity_center_configuration(params = {})
|
16611
|
+
# @param [Hash] params ({})
|
16612
|
+
def update_glue_identity_center_configuration(params = {}, options = {})
|
16613
|
+
req = build_request(:update_glue_identity_center_configuration, params)
|
16614
|
+
req.send_request(options)
|
16615
|
+
end
|
16616
|
+
|
16517
16617
|
# This API can be used for updating the `ResourceProperty` of the Glue
|
16518
16618
|
# connection (for the source) or Glue database ARN (for the target).
|
16519
16619
|
# These properties can include the role to access the connection or
|
@@ -17677,7 +17777,7 @@ module Aws::Glue
|
|
17677
17777
|
tracer: tracer
|
17678
17778
|
)
|
17679
17779
|
context[:gem_name] = 'aws-sdk-glue'
|
17680
|
-
context[:gem_version] = '1.
|
17780
|
+
context[:gem_version] = '1.231.0'
|
17681
17781
|
Seahorse::Client::Request.new(handlers, context)
|
17682
17782
|
end
|
17683
17783
|
|
@@ -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')
|
@@ -322,6 +323,8 @@ module Aws::Glue
|
|
322
323
|
CreateDatabaseResponse = Shapes::StructureShape.new(name: 'CreateDatabaseResponse')
|
323
324
|
CreateDevEndpointRequest = Shapes::StructureShape.new(name: 'CreateDevEndpointRequest')
|
324
325
|
CreateDevEndpointResponse = Shapes::StructureShape.new(name: 'CreateDevEndpointResponse')
|
326
|
+
CreateGlueIdentityCenterConfigurationRequest = Shapes::StructureShape.new(name: 'CreateGlueIdentityCenterConfigurationRequest')
|
327
|
+
CreateGlueIdentityCenterConfigurationResponse = Shapes::StructureShape.new(name: 'CreateGlueIdentityCenterConfigurationResponse')
|
325
328
|
CreateGrokClassifierRequest = Shapes::StructureShape.new(name: 'CreateGrokClassifierRequest')
|
326
329
|
CreateIcebergTableInput = Shapes::StructureShape.new(name: 'CreateIcebergTableInput')
|
327
330
|
CreateIntegrationRequest = Shapes::StructureShape.new(name: 'CreateIntegrationRequest')
|
@@ -476,6 +479,8 @@ module Aws::Glue
|
|
476
479
|
DeleteDatabaseResponse = Shapes::StructureShape.new(name: 'DeleteDatabaseResponse')
|
477
480
|
DeleteDevEndpointRequest = Shapes::StructureShape.new(name: 'DeleteDevEndpointRequest')
|
478
481
|
DeleteDevEndpointResponse = Shapes::StructureShape.new(name: 'DeleteDevEndpointResponse')
|
482
|
+
DeleteGlueIdentityCenterConfigurationRequest = Shapes::StructureShape.new(name: 'DeleteGlueIdentityCenterConfigurationRequest')
|
483
|
+
DeleteGlueIdentityCenterConfigurationResponse = Shapes::StructureShape.new(name: 'DeleteGlueIdentityCenterConfigurationResponse')
|
479
484
|
DeleteIntegrationRequest = Shapes::StructureShape.new(name: 'DeleteIntegrationRequest')
|
480
485
|
DeleteIntegrationResponse = Shapes::StructureShape.new(name: 'DeleteIntegrationResponse')
|
481
486
|
DeleteIntegrationTablePropertiesRequest = Shapes::StructureShape.new(name: 'DeleteIntegrationTablePropertiesRequest')
|
@@ -690,6 +695,8 @@ module Aws::Glue
|
|
690
695
|
GetDevEndpointsResponse = Shapes::StructureShape.new(name: 'GetDevEndpointsResponse')
|
691
696
|
GetEntityRecordsRequest = Shapes::StructureShape.new(name: 'GetEntityRecordsRequest')
|
692
697
|
GetEntityRecordsResponse = Shapes::StructureShape.new(name: 'GetEntityRecordsResponse')
|
698
|
+
GetGlueIdentityCenterConfigurationRequest = Shapes::StructureShape.new(name: 'GetGlueIdentityCenterConfigurationRequest')
|
699
|
+
GetGlueIdentityCenterConfigurationResponse = Shapes::StructureShape.new(name: 'GetGlueIdentityCenterConfigurationResponse')
|
693
700
|
GetIntegrationResourcePropertyRequest = Shapes::StructureShape.new(name: 'GetIntegrationResourcePropertyRequest')
|
694
701
|
GetIntegrationResourcePropertyResponse = Shapes::StructureShape.new(name: 'GetIntegrationResourcePropertyResponse')
|
695
702
|
GetIntegrationTablePropertiesRequest = Shapes::StructureShape.new(name: 'GetIntegrationTablePropertiesRequest')
|
@@ -838,6 +845,9 @@ module Aws::Glue
|
|
838
845
|
IcebergTransformString = Shapes::StringShape.new(name: 'IcebergTransformString')
|
839
846
|
IdString = Shapes::StringShape.new(name: 'IdString')
|
840
847
|
IdempotentParameterMismatchException = Shapes::StructureShape.new(name: 'IdempotentParameterMismatchException')
|
848
|
+
IdentityCenterInstanceArn = Shapes::StringShape.new(name: 'IdentityCenterInstanceArn')
|
849
|
+
IdentityCenterScope = Shapes::StringShape.new(name: 'IdentityCenterScope')
|
850
|
+
IdentityCenterScopesList = Shapes::ListShape.new(name: 'IdentityCenterScopesList')
|
841
851
|
IdleTimeout = Shapes::IntegerShape.new(name: 'IdleTimeout')
|
842
852
|
IllegalBlueprintStateException = Shapes::StructureShape.new(name: 'IllegalBlueprintStateException')
|
843
853
|
IllegalSessionStateException = Shapes::StructureShape.new(name: 'IllegalSessionStateException')
|
@@ -1513,6 +1523,8 @@ module Aws::Glue
|
|
1513
1523
|
UpdateDatabaseResponse = Shapes::StructureShape.new(name: 'UpdateDatabaseResponse')
|
1514
1524
|
UpdateDevEndpointRequest = Shapes::StructureShape.new(name: 'UpdateDevEndpointRequest')
|
1515
1525
|
UpdateDevEndpointResponse = Shapes::StructureShape.new(name: 'UpdateDevEndpointResponse')
|
1526
|
+
UpdateGlueIdentityCenterConfigurationRequest = Shapes::StructureShape.new(name: 'UpdateGlueIdentityCenterConfigurationRequest')
|
1527
|
+
UpdateGlueIdentityCenterConfigurationResponse = Shapes::StructureShape.new(name: 'UpdateGlueIdentityCenterConfigurationResponse')
|
1516
1528
|
UpdateGrokClassifierRequest = Shapes::StructureShape.new(name: 'UpdateGrokClassifierRequest')
|
1517
1529
|
UpdateIcebergInput = Shapes::StructureShape.new(name: 'UpdateIcebergInput')
|
1518
1530
|
UpdateIcebergTableInput = Shapes::StructureShape.new(name: 'UpdateIcebergTableInput')
|
@@ -2776,6 +2788,13 @@ module Aws::Glue
|
|
2776
2788
|
CreateDevEndpointResponse.add_member(:arguments, Shapes::ShapeRef.new(shape: MapValue, location_name: "Arguments"))
|
2777
2789
|
CreateDevEndpointResponse.struct_class = Types::CreateDevEndpointResponse
|
2778
2790
|
|
2791
|
+
CreateGlueIdentityCenterConfigurationRequest.add_member(:instance_arn, Shapes::ShapeRef.new(shape: IdentityCenterInstanceArn, required: true, location_name: "InstanceArn"))
|
2792
|
+
CreateGlueIdentityCenterConfigurationRequest.add_member(:scopes, Shapes::ShapeRef.new(shape: IdentityCenterScopesList, location_name: "Scopes"))
|
2793
|
+
CreateGlueIdentityCenterConfigurationRequest.struct_class = Types::CreateGlueIdentityCenterConfigurationRequest
|
2794
|
+
|
2795
|
+
CreateGlueIdentityCenterConfigurationResponse.add_member(:application_arn, Shapes::ShapeRef.new(shape: ApplicationArn, location_name: "ApplicationArn"))
|
2796
|
+
CreateGlueIdentityCenterConfigurationResponse.struct_class = Types::CreateGlueIdentityCenterConfigurationResponse
|
2797
|
+
|
2779
2798
|
CreateGrokClassifierRequest.add_member(:classification, Shapes::ShapeRef.new(shape: Classification, required: true, location_name: "Classification"))
|
2780
2799
|
CreateGrokClassifierRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
|
2781
2800
|
CreateGrokClassifierRequest.add_member(:grok_pattern, Shapes::ShapeRef.new(shape: GrokPattern, required: true, location_name: "GrokPattern"))
|
@@ -3410,6 +3429,10 @@ module Aws::Glue
|
|
3410
3429
|
|
3411
3430
|
DeleteDevEndpointResponse.struct_class = Types::DeleteDevEndpointResponse
|
3412
3431
|
|
3432
|
+
DeleteGlueIdentityCenterConfigurationRequest.struct_class = Types::DeleteGlueIdentityCenterConfigurationRequest
|
3433
|
+
|
3434
|
+
DeleteGlueIdentityCenterConfigurationResponse.struct_class = Types::DeleteGlueIdentityCenterConfigurationResponse
|
3435
|
+
|
3413
3436
|
DeleteIntegrationRequest.add_member(:integration_identifier, Shapes::ShapeRef.new(shape: String128, required: true, location_name: "IntegrationIdentifier"))
|
3414
3437
|
DeleteIntegrationRequest.struct_class = Types::DeleteIntegrationRequest
|
3415
3438
|
|
@@ -4222,6 +4245,13 @@ module Aws::Glue
|
|
4222
4245
|
GetEntityRecordsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
4223
4246
|
GetEntityRecordsResponse.struct_class = Types::GetEntityRecordsResponse
|
4224
4247
|
|
4248
|
+
GetGlueIdentityCenterConfigurationRequest.struct_class = Types::GetGlueIdentityCenterConfigurationRequest
|
4249
|
+
|
4250
|
+
GetGlueIdentityCenterConfigurationResponse.add_member(:application_arn, Shapes::ShapeRef.new(shape: ApplicationArn, location_name: "ApplicationArn"))
|
4251
|
+
GetGlueIdentityCenterConfigurationResponse.add_member(:instance_arn, Shapes::ShapeRef.new(shape: IdentityCenterInstanceArn, location_name: "InstanceArn"))
|
4252
|
+
GetGlueIdentityCenterConfigurationResponse.add_member(:scopes, Shapes::ShapeRef.new(shape: OrchestrationStringList, location_name: "Scopes"))
|
4253
|
+
GetGlueIdentityCenterConfigurationResponse.struct_class = Types::GetGlueIdentityCenterConfigurationResponse
|
4254
|
+
|
4225
4255
|
GetIntegrationResourcePropertyRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: String128, required: true, location_name: "ResourceArn"))
|
4226
4256
|
GetIntegrationResourcePropertyRequest.struct_class = Types::GetIntegrationResourcePropertyRequest
|
4227
4257
|
|
@@ -4892,6 +4922,8 @@ module Aws::Glue
|
|
4892
4922
|
IdempotentParameterMismatchException.add_member(:message, Shapes::ShapeRef.new(shape: MessageString, location_name: "Message"))
|
4893
4923
|
IdempotentParameterMismatchException.struct_class = Types::IdempotentParameterMismatchException
|
4894
4924
|
|
4925
|
+
IdentityCenterScopesList.member = Shapes::ShapeRef.new(shape: IdentityCenterScope)
|
4926
|
+
|
4895
4927
|
IllegalBlueprintStateException.add_member(:message, Shapes::ShapeRef.new(shape: MessageString, location_name: "Message"))
|
4896
4928
|
IllegalBlueprintStateException.struct_class = Types::IllegalBlueprintStateException
|
4897
4929
|
|
@@ -7282,6 +7314,11 @@ module Aws::Glue
|
|
7282
7314
|
|
7283
7315
|
UpdateDevEndpointResponse.struct_class = Types::UpdateDevEndpointResponse
|
7284
7316
|
|
7317
|
+
UpdateGlueIdentityCenterConfigurationRequest.add_member(:scopes, Shapes::ShapeRef.new(shape: IdentityCenterScopesList, location_name: "Scopes"))
|
7318
|
+
UpdateGlueIdentityCenterConfigurationRequest.struct_class = Types::UpdateGlueIdentityCenterConfigurationRequest
|
7319
|
+
|
7320
|
+
UpdateGlueIdentityCenterConfigurationResponse.struct_class = Types::UpdateGlueIdentityCenterConfigurationResponse
|
7321
|
+
|
7285
7322
|
UpdateGrokClassifierRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
|
7286
7323
|
UpdateGrokClassifierRequest.add_member(:classification, Shapes::ShapeRef.new(shape: Classification, location_name: "Classification"))
|
7287
7324
|
UpdateGrokClassifierRequest.add_member(:grok_pattern, Shapes::ShapeRef.new(shape: GrokPattern, location_name: "GrokPattern"))
|
@@ -8038,6 +8075,20 @@ module Aws::Glue
|
|
8038
8075
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNumberLimitExceededException)
|
8039
8076
|
end)
|
8040
8077
|
|
8078
|
+
api.add_operation(:create_glue_identity_center_configuration, Seahorse::Model::Operation.new.tap do |o|
|
8079
|
+
o.name = "CreateGlueIdentityCenterConfiguration"
|
8080
|
+
o.http_method = "POST"
|
8081
|
+
o.http_request_uri = "/"
|
8082
|
+
o.input = Shapes::ShapeRef.new(shape: CreateGlueIdentityCenterConfigurationRequest)
|
8083
|
+
o.output = Shapes::ShapeRef.new(shape: CreateGlueIdentityCenterConfigurationResponse)
|
8084
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
8085
|
+
o.errors << Shapes::ShapeRef.new(shape: AlreadyExistsException)
|
8086
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
8087
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
|
8088
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
8089
|
+
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
8090
|
+
end)
|
8091
|
+
|
8041
8092
|
api.add_operation(:create_integration, Seahorse::Model::Operation.new.tap do |o|
|
8042
8093
|
o.name = "CreateIntegration"
|
8043
8094
|
o.http_method = "POST"
|
@@ -8459,6 +8510,20 @@ module Aws::Glue
|
|
8459
8510
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
8460
8511
|
end)
|
8461
8512
|
|
8513
|
+
api.add_operation(:delete_glue_identity_center_configuration, Seahorse::Model::Operation.new.tap do |o|
|
8514
|
+
o.name = "DeleteGlueIdentityCenterConfiguration"
|
8515
|
+
o.http_method = "POST"
|
8516
|
+
o.http_request_uri = "/"
|
8517
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteGlueIdentityCenterConfigurationRequest)
|
8518
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteGlueIdentityCenterConfigurationResponse)
|
8519
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
8520
|
+
o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
|
8521
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
8522
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
|
8523
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
8524
|
+
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
8525
|
+
end)
|
8526
|
+
|
8462
8527
|
api.add_operation(:delete_integration, Seahorse::Model::Operation.new.tap do |o|
|
8463
8528
|
o.name = "DeleteIntegration"
|
8464
8529
|
o.http_method = "POST"
|
@@ -9200,6 +9265,20 @@ module Aws::Glue
|
|
9200
9265
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
9201
9266
|
end)
|
9202
9267
|
|
9268
|
+
api.add_operation(:get_glue_identity_center_configuration, Seahorse::Model::Operation.new.tap do |o|
|
9269
|
+
o.name = "GetGlueIdentityCenterConfiguration"
|
9270
|
+
o.http_method = "POST"
|
9271
|
+
o.http_request_uri = "/"
|
9272
|
+
o.input = Shapes::ShapeRef.new(shape: GetGlueIdentityCenterConfigurationRequest)
|
9273
|
+
o.output = Shapes::ShapeRef.new(shape: GetGlueIdentityCenterConfigurationResponse)
|
9274
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
9275
|
+
o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
|
9276
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
9277
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
|
9278
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
9279
|
+
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
9280
|
+
end)
|
9281
|
+
|
9203
9282
|
api.add_operation(:get_integration_resource_property, Seahorse::Model::Operation.new.tap do |o|
|
9204
9283
|
o.name = "GetIntegrationResourceProperty"
|
9205
9284
|
o.http_method = "POST"
|
@@ -10942,6 +11021,20 @@ module Aws::Glue
|
|
10942
11021
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
10943
11022
|
end)
|
10944
11023
|
|
11024
|
+
api.add_operation(:update_glue_identity_center_configuration, Seahorse::Model::Operation.new.tap do |o|
|
11025
|
+
o.name = "UpdateGlueIdentityCenterConfiguration"
|
11026
|
+
o.http_method = "POST"
|
11027
|
+
o.http_request_uri = "/"
|
11028
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateGlueIdentityCenterConfigurationRequest)
|
11029
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateGlueIdentityCenterConfigurationResponse)
|
11030
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
11031
|
+
o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
|
11032
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
11033
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
|
11034
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
11035
|
+
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
11036
|
+
end)
|
11037
|
+
|
10945
11038
|
api.add_operation(:update_integration_resource_property, Seahorse::Model::Operation.new.tap do |o|
|
10946
11039
|
o.name = "UpdateIntegrationResourceProperty"
|
10947
11040
|
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]
|
@@ -28395,6 +28480,27 @@ module Aws::Glue
|
|
28395
28480
|
#
|
28396
28481
|
class UpdateDevEndpointResponse < Aws::EmptyStructure; end
|
28397
28482
|
|
28483
|
+
# Request to update an existing Glue Identity Center configuration.
|
28484
|
+
#
|
28485
|
+
# @!attribute [rw] scopes
|
28486
|
+
# A list of Identity Center scopes that define the updated permissions
|
28487
|
+
# and access levels for the Glue configuration.
|
28488
|
+
# @return [Array<String>]
|
28489
|
+
#
|
28490
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateGlueIdentityCenterConfigurationRequest AWS API Documentation
|
28491
|
+
#
|
28492
|
+
class UpdateGlueIdentityCenterConfigurationRequest < Struct.new(
|
28493
|
+
:scopes)
|
28494
|
+
SENSITIVE = []
|
28495
|
+
include Aws::Structure
|
28496
|
+
end
|
28497
|
+
|
28498
|
+
# Response from updating an existing Glue Identity Center configuration.
|
28499
|
+
#
|
28500
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateGlueIdentityCenterConfigurationResponse AWS API Documentation
|
28501
|
+
#
|
28502
|
+
class UpdateGlueIdentityCenterConfigurationResponse < Aws::EmptyStructure; end
|
28503
|
+
|
28398
28504
|
# Specifies a grok classifier to update when passed to
|
28399
28505
|
# `UpdateClassifier`.
|
28400
28506
|
#
|
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
|
@@ -3185,6 +3196,14 @@ module Aws
|
|
3185
3196
|
) -> _DeleteDevEndpointResponseSuccess
|
3186
3197
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDevEndpointResponseSuccess
|
3187
3198
|
|
3199
|
+
interface _DeleteGlueIdentityCenterConfigurationResponseSuccess
|
3200
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteGlueIdentityCenterConfigurationResponse]
|
3201
|
+
end
|
3202
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#delete_glue_identity_center_configuration-instance_method
|
3203
|
+
def delete_glue_identity_center_configuration: (
|
3204
|
+
) -> _DeleteGlueIdentityCenterConfigurationResponseSuccess
|
3205
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteGlueIdentityCenterConfigurationResponseSuccess
|
3206
|
+
|
3188
3207
|
interface _DeleteIntegrationResponseSuccess
|
3189
3208
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteIntegrationResponse]
|
3190
3209
|
def source_arn: () -> ::String
|
@@ -3919,6 +3938,17 @@ module Aws
|
|
3919
3938
|
) -> _GetEntityRecordsResponseSuccess
|
3920
3939
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEntityRecordsResponseSuccess
|
3921
3940
|
|
3941
|
+
interface _GetGlueIdentityCenterConfigurationResponseSuccess
|
3942
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetGlueIdentityCenterConfigurationResponse]
|
3943
|
+
def application_arn: () -> ::String
|
3944
|
+
def instance_arn: () -> ::String
|
3945
|
+
def scopes: () -> ::Array[::String]
|
3946
|
+
end
|
3947
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#get_glue_identity_center_configuration-instance_method
|
3948
|
+
def get_glue_identity_center_configuration: (
|
3949
|
+
) -> _GetGlueIdentityCenterConfigurationResponseSuccess
|
3950
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetGlueIdentityCenterConfigurationResponseSuccess
|
3951
|
+
|
3922
3952
|
interface _GetIntegrationResourcePropertyResponseSuccess
|
3923
3953
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetIntegrationResourcePropertyResponse]
|
3924
3954
|
def resource_arn: () -> ::String
|
@@ -6246,6 +6276,15 @@ module Aws
|
|
6246
6276
|
) -> _UpdateDevEndpointResponseSuccess
|
6247
6277
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDevEndpointResponseSuccess
|
6248
6278
|
|
6279
|
+
interface _UpdateGlueIdentityCenterConfigurationResponseSuccess
|
6280
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateGlueIdentityCenterConfigurationResponse]
|
6281
|
+
end
|
6282
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#update_glue_identity_center_configuration-instance_method
|
6283
|
+
def update_glue_identity_center_configuration: (
|
6284
|
+
?scopes: Array[::String]
|
6285
|
+
) -> _UpdateGlueIdentityCenterConfigurationResponseSuccess
|
6286
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGlueIdentityCenterConfigurationResponseSuccess
|
6287
|
+
|
6249
6288
|
interface _UpdateIntegrationResourcePropertyResponseSuccess
|
6250
6289
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateIntegrationResourcePropertyResponse]
|
6251
6290
|
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: []
|
@@ -6941,6 +6968,14 @@ module Aws::Glue
|
|
6941
6968
|
class UpdateDevEndpointResponse < Aws::EmptyStructure
|
6942
6969
|
end
|
6943
6970
|
|
6971
|
+
class UpdateGlueIdentityCenterConfigurationRequest
|
6972
|
+
attr_accessor scopes: ::Array[::String]
|
6973
|
+
SENSITIVE: []
|
6974
|
+
end
|
6975
|
+
|
6976
|
+
class UpdateGlueIdentityCenterConfigurationResponse < Aws::EmptyStructure
|
6977
|
+
end
|
6978
|
+
|
6944
6979
|
class UpdateGrokClassifierRequest
|
6945
6980
|
attr_accessor name: ::String
|
6946
6981
|
attr_accessor classification: ::String
|