aws-sdk-glue 1.239.0 → 1.240.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0f2d5cc61583cdb8c9ec07c914ae39c85aede4e4822b2bdfd59516edc57792fb
4
- data.tar.gz: ba79b561482921dba107c2a7758ca1b00ec2434c2c6f7299799bd649d6f220ce
3
+ metadata.gz: 95a0a30f4cecd36fb3f47eeb926d7b1ca31796397b551d837d1729d34a1e874a
4
+ data.tar.gz: aefcf1a6aa9f269a4b46b0f632c2e7e4aaf6824fb22d5d07d2095130c85a833e
5
5
  SHA512:
6
- metadata.gz: 14b12915c063c47ce4e6534f49a75d2a978ba5b68776c35daf7b6724c359f84bc204bb36343b05798eba85ae250d33a2d29fd6687f5828beee1be955105d135f
7
- data.tar.gz: 556f97f57adc2334a96e85621bf65527005c8f438454833f71c27ee87ec04aced49f51ed2ec42ba844a22983daaad8a8bd7852eaaffabcb466ce03ab949e9ca2
6
+ metadata.gz: 91bb71ca0516685fded52a9b33ea0416aefbaf8c768d65958b402adcb975b6fdac9c33620c7d99256ac025710d117413f7d186e5b5a525c89208139b141b8ae4
7
+ data.tar.gz: 3504a980cf54f9d80ce54d8630d2217e810090b0cc4518fe6edbb2fe6319338caec8098236bfd78e78a4250179fdc7c99b037bbebecfa29193dfbae0b7e6c008
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.240.0 (2025-10-30)
5
+ ------------------
6
+
7
+ * Feature - This release adds the capability to enable User Background Sessions for customers running Trusted Identity Propagation enabled Interactive Sessions on AWS Glue.
8
+
4
9
  1.239.0 (2025-10-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.239.0
1
+ 1.240.0
@@ -2902,6 +2902,10 @@ module Aws::Glue
2902
2902
  # A list of Identity Center scopes that define the permissions and
2903
2903
  # access levels for the Glue configuration.
2904
2904
  #
2905
+ # @option params [Boolean] :user_background_sessions_enabled
2906
+ # Specifies whether users can run background sessions when using
2907
+ # Identity Center authentication with Glue services.
2908
+ #
2905
2909
  # @return [Types::CreateGlueIdentityCenterConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2906
2910
  #
2907
2911
  # * {Types::CreateGlueIdentityCenterConfigurationResponse#application_arn #application_arn} => String
@@ -2911,6 +2915,7 @@ module Aws::Glue
2911
2915
  # resp = client.create_glue_identity_center_configuration({
2912
2916
  # instance_arn: "IdentityCenterInstanceArn", # required
2913
2917
  # scopes: ["IdentityCenterScope"],
2918
+ # user_background_sessions_enabled: false,
2914
2919
  # })
2915
2920
  #
2916
2921
  # @example Response structure
@@ -8329,6 +8334,7 @@ module Aws::Glue
8329
8334
  # * {Types::GetGlueIdentityCenterConfigurationResponse#application_arn #application_arn} => String
8330
8335
  # * {Types::GetGlueIdentityCenterConfigurationResponse#instance_arn #instance_arn} => String
8331
8336
  # * {Types::GetGlueIdentityCenterConfigurationResponse#scopes #scopes} => Array<String>
8337
+ # * {Types::GetGlueIdentityCenterConfigurationResponse#user_background_sessions_enabled #user_background_sessions_enabled} => Boolean
8332
8338
  #
8333
8339
  # @example Response structure
8334
8340
  #
@@ -8336,6 +8342,7 @@ module Aws::Glue
8336
8342
  # resp.instance_arn #=> String
8337
8343
  # resp.scopes #=> Array
8338
8344
  # resp.scopes[0] #=> String
8345
+ # resp.user_background_sessions_enabled #=> Boolean
8339
8346
  #
8340
8347
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetGlueIdentityCenterConfiguration AWS API Documentation
8341
8348
  #
@@ -16768,12 +16775,17 @@ module Aws::Glue
16768
16775
  # A list of Identity Center scopes that define the updated permissions
16769
16776
  # and access levels for the Glue configuration.
16770
16777
  #
16778
+ # @option params [Boolean] :user_background_sessions_enabled
16779
+ # Specifies whether users can run background sessions when using
16780
+ # Identity Center authentication with Glue services.
16781
+ #
16771
16782
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
16772
16783
  #
16773
16784
  # @example Request syntax with placeholder values
16774
16785
  #
16775
16786
  # resp = client.update_glue_identity_center_configuration({
16776
16787
  # scopes: ["IdentityCenterScope"],
16788
+ # user_background_sessions_enabled: false,
16777
16789
  # })
16778
16790
  #
16779
16791
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateGlueIdentityCenterConfiguration AWS API Documentation
@@ -17948,7 +17960,7 @@ module Aws::Glue
17948
17960
  tracer: tracer
17949
17961
  )
17950
17962
  context[:gem_name] = 'aws-sdk-glue'
17951
- context[:gem_version] = '1.239.0'
17963
+ context[:gem_version] = '1.240.0'
17952
17964
  Seahorse::Client::Request.new(handlers, context)
17953
17965
  end
17954
17966
 
@@ -2795,6 +2795,7 @@ module Aws::Glue
2795
2795
 
2796
2796
  CreateGlueIdentityCenterConfigurationRequest.add_member(:instance_arn, Shapes::ShapeRef.new(shape: IdentityCenterInstanceArn, required: true, location_name: "InstanceArn"))
2797
2797
  CreateGlueIdentityCenterConfigurationRequest.add_member(:scopes, Shapes::ShapeRef.new(shape: IdentityCenterScopesList, location_name: "Scopes"))
2798
+ CreateGlueIdentityCenterConfigurationRequest.add_member(:user_background_sessions_enabled, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "UserBackgroundSessionsEnabled"))
2798
2799
  CreateGlueIdentityCenterConfigurationRequest.struct_class = Types::CreateGlueIdentityCenterConfigurationRequest
2799
2800
 
2800
2801
  CreateGlueIdentityCenterConfigurationResponse.add_member(:application_arn, Shapes::ShapeRef.new(shape: ApplicationArn, location_name: "ApplicationArn"))
@@ -4265,6 +4266,7 @@ module Aws::Glue
4265
4266
  GetGlueIdentityCenterConfigurationResponse.add_member(:application_arn, Shapes::ShapeRef.new(shape: ApplicationArn, location_name: "ApplicationArn"))
4266
4267
  GetGlueIdentityCenterConfigurationResponse.add_member(:instance_arn, Shapes::ShapeRef.new(shape: IdentityCenterInstanceArn, location_name: "InstanceArn"))
4267
4268
  GetGlueIdentityCenterConfigurationResponse.add_member(:scopes, Shapes::ShapeRef.new(shape: OrchestrationStringList, location_name: "Scopes"))
4269
+ GetGlueIdentityCenterConfigurationResponse.add_member(:user_background_sessions_enabled, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "UserBackgroundSessionsEnabled"))
4268
4270
  GetGlueIdentityCenterConfigurationResponse.struct_class = Types::GetGlueIdentityCenterConfigurationResponse
4269
4271
 
4270
4272
  GetIntegrationResourcePropertyRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: String128, required: true, location_name: "ResourceArn"))
@@ -7338,6 +7340,7 @@ module Aws::Glue
7338
7340
  UpdateDevEndpointResponse.struct_class = Types::UpdateDevEndpointResponse
7339
7341
 
7340
7342
  UpdateGlueIdentityCenterConfigurationRequest.add_member(:scopes, Shapes::ShapeRef.new(shape: IdentityCenterScopesList, location_name: "Scopes"))
7343
+ UpdateGlueIdentityCenterConfigurationRequest.add_member(:user_background_sessions_enabled, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "UserBackgroundSessionsEnabled"))
7341
7344
  UpdateGlueIdentityCenterConfigurationRequest.struct_class = Types::UpdateGlueIdentityCenterConfigurationRequest
7342
7345
 
7343
7346
  UpdateGlueIdentityCenterConfigurationResponse.struct_class = Types::UpdateGlueIdentityCenterConfigurationResponse
@@ -5815,11 +5815,17 @@ module Aws::Glue
5815
5815
  # access levels for the Glue configuration.
5816
5816
  # @return [Array<String>]
5817
5817
  #
5818
+ # @!attribute [rw] user_background_sessions_enabled
5819
+ # Specifies whether users can run background sessions when using
5820
+ # Identity Center authentication with Glue services.
5821
+ # @return [Boolean]
5822
+ #
5818
5823
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateGlueIdentityCenterConfigurationRequest AWS API Documentation
5819
5824
  #
5820
5825
  class CreateGlueIdentityCenterConfigurationRequest < Struct.new(
5821
5826
  :instance_arn,
5822
- :scopes)
5827
+ :scopes,
5828
+ :user_background_sessions_enabled)
5823
5829
  SENSITIVE = []
5824
5830
  include Aws::Structure
5825
5831
  end
@@ -13087,12 +13093,18 @@ module Aws::Glue
13087
13093
  # access levels for the Glue configuration.
13088
13094
  # @return [Array<String>]
13089
13095
  #
13096
+ # @!attribute [rw] user_background_sessions_enabled
13097
+ # Indicates whether users can run background sessions when using
13098
+ # Identity Center authentication with Glue services.
13099
+ # @return [Boolean]
13100
+ #
13090
13101
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetGlueIdentityCenterConfigurationResponse AWS API Documentation
13091
13102
  #
13092
13103
  class GetGlueIdentityCenterConfigurationResponse < Struct.new(
13093
13104
  :application_arn,
13094
13105
  :instance_arn,
13095
- :scopes)
13106
+ :scopes,
13107
+ :user_background_sessions_enabled)
13096
13108
  SENSITIVE = []
13097
13109
  include Aws::Structure
13098
13110
  end
@@ -28599,10 +28611,16 @@ module Aws::Glue
28599
28611
  # and access levels for the Glue configuration.
28600
28612
  # @return [Array<String>]
28601
28613
  #
28614
+ # @!attribute [rw] user_background_sessions_enabled
28615
+ # Specifies whether users can run background sessions when using
28616
+ # Identity Center authentication with Glue services.
28617
+ # @return [Boolean]
28618
+ #
28602
28619
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateGlueIdentityCenterConfigurationRequest AWS API Documentation
28603
28620
  #
28604
28621
  class UpdateGlueIdentityCenterConfigurationRequest < Struct.new(
28605
- :scopes)
28622
+ :scopes,
28623
+ :user_background_sessions_enabled)
28606
28624
  SENSITIVE = []
28607
28625
  include Aws::Structure
28608
28626
  end
data/lib/aws-sdk-glue.rb CHANGED
@@ -54,7 +54,7 @@ module Aws::Glue
54
54
  autoload :EndpointProvider, 'aws-sdk-glue/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-glue/endpoints'
56
56
 
57
- GEM_VERSION = '1.239.0'
57
+ GEM_VERSION = '1.240.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -865,7 +865,8 @@ module Aws
865
865
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#create_glue_identity_center_configuration-instance_method
866
866
  def create_glue_identity_center_configuration: (
867
867
  instance_arn: ::String,
868
- ?scopes: Array[::String]
868
+ ?scopes: Array[::String],
869
+ ?user_background_sessions_enabled: bool
869
870
  ) -> _CreateGlueIdentityCenterConfigurationResponseSuccess
870
871
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGlueIdentityCenterConfigurationResponseSuccess
871
872
 
@@ -3944,6 +3945,7 @@ module Aws
3944
3945
  def application_arn: () -> ::String
3945
3946
  def instance_arn: () -> ::String
3946
3947
  def scopes: () -> ::Array[::String]
3948
+ def user_background_sessions_enabled: () -> bool
3947
3949
  end
3948
3950
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#get_glue_identity_center_configuration-instance_method
3949
3951
  def get_glue_identity_center_configuration: (
@@ -6346,7 +6348,8 @@ module Aws
6346
6348
  end
6347
6349
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#update_glue_identity_center_configuration-instance_method
6348
6350
  def update_glue_identity_center_configuration: (
6349
- ?scopes: Array[::String]
6351
+ ?scopes: Array[::String],
6352
+ ?user_background_sessions_enabled: bool
6350
6353
  ) -> _UpdateGlueIdentityCenterConfigurationResponseSuccess
6351
6354
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGlueIdentityCenterConfigurationResponseSuccess
6352
6355
 
data/sig/types.rbs CHANGED
@@ -1355,6 +1355,7 @@ module Aws::Glue
1355
1355
  class CreateGlueIdentityCenterConfigurationRequest
1356
1356
  attr_accessor instance_arn: ::String
1357
1357
  attr_accessor scopes: ::Array[::String]
1358
+ attr_accessor user_background_sessions_enabled: bool
1358
1359
  SENSITIVE: []
1359
1360
  end
1360
1361
 
@@ -3224,6 +3225,7 @@ module Aws::Glue
3224
3225
  attr_accessor application_arn: ::String
3225
3226
  attr_accessor instance_arn: ::String
3226
3227
  attr_accessor scopes: ::Array[::String]
3228
+ attr_accessor user_background_sessions_enabled: bool
3227
3229
  SENSITIVE: []
3228
3230
  end
3229
3231
 
@@ -6988,6 +6990,7 @@ module Aws::Glue
6988
6990
 
6989
6991
  class UpdateGlueIdentityCenterConfigurationRequest
6990
6992
  attr_accessor scopes: ::Array[::String]
6993
+ attr_accessor user_background_sessions_enabled: bool
6991
6994
  SENSITIVE: []
6992
6995
  end
6993
6996
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-glue
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.239.0
4
+ version: 1.240.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services