aws-sdk-redshiftserverless 1.58.0 → 1.60.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: 8dfb7c88c0aefbfabe9c9c3afd1cfce5ecafe722ff5240a1002bd83a0ff42468
4
- data.tar.gz: 7cc4b00039166ad633672ea2ec4c35ec104bb860882fd7bf6b438d9d93bd948b
3
+ metadata.gz: 2110572aec218989fc2bf1c0eb25a8a09dfd12c102a6eac8093ed267c6d3472a
4
+ data.tar.gz: 87ba8f0cb7a19ab35b92e6c026d4ee925a5b65066d6c89de8b2f3098bf15fef0
5
5
  SHA512:
6
- metadata.gz: a2064d84628e126dcd296f10d078fbeffe169875a68fea2443899bfbc38e5aa135f06a9adfa961def094abc88e6b0a95235a560eb2c9a2def4dc1576995b70a3
7
- data.tar.gz: 4776c3c6af0b4b8e4349f24d82e32884caaf6b5ebf76684a5a27d64539fb9c7596af14dec04ae3b7125390984386642d6f35653783bba1c516831483847c581e
6
+ metadata.gz: a24e0552f761104f6489487b61510c73f45be4e13b049045d035f50f31ff143640cd8e4857cb359fd8e18fa1359dfc2dd2010d20ee09d047271ad449fa141fde
7
+ data.tar.gz: 9c44dcd77378216962926043fbc546895614319546c4cac76486bc2d3fc3e79995fdc86d056acb37acdf3e07a677be4cdf32b42b32e42f97ade8b51eeea55f56
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.60.0 (2025-12-08)
5
+ ------------------
6
+
7
+ * Feature - Added GetIdentityCenterAuthToken API to retrieve encrypted authentication tokens for Identity Center integrated serverless workgroups. This API enables programmatic access to secure Identity Center tokens with proper error handling and parameter validation across supported SDK languages.
8
+
9
+ 1.59.0 (2025-11-21)
10
+ ------------------
11
+
12
+ * Feature - Added UpdateLakehouseConfiguration API to manage Amazon Redshift Federated Permissions and AWS IAM Identity Center trusted identity propagation for namespaces.
13
+
4
14
  1.58.0 (2025-10-27)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.58.0
1
+ 1.60.0
@@ -756,12 +756,14 @@ module Aws::RedshiftServerless
756
756
  # resp.namespace.admin_password_secret_arn #=> String
757
757
  # resp.namespace.admin_password_secret_kms_key_id #=> String
758
758
  # resp.namespace.admin_username #=> String
759
+ # resp.namespace.catalog_arn #=> String
759
760
  # resp.namespace.creation_date #=> Time
760
761
  # resp.namespace.db_name #=> String
761
762
  # resp.namespace.default_iam_role_arn #=> String
762
763
  # resp.namespace.iam_roles #=> Array
763
764
  # resp.namespace.iam_roles[0] #=> String
764
765
  # resp.namespace.kms_key_id #=> String
766
+ # resp.namespace.lakehouse_registration_status #=> String
765
767
  # resp.namespace.log_exports #=> Array
766
768
  # resp.namespace.log_exports[0] #=> String, one of "useractivitylog", "userlog", "connectionlog"
767
769
  # resp.namespace.namespace_arn #=> String
@@ -1434,12 +1436,14 @@ module Aws::RedshiftServerless
1434
1436
  # resp.namespace.admin_password_secret_arn #=> String
1435
1437
  # resp.namespace.admin_password_secret_kms_key_id #=> String
1436
1438
  # resp.namespace.admin_username #=> String
1439
+ # resp.namespace.catalog_arn #=> String
1437
1440
  # resp.namespace.creation_date #=> Time
1438
1441
  # resp.namespace.db_name #=> String
1439
1442
  # resp.namespace.default_iam_role_arn #=> String
1440
1443
  # resp.namespace.iam_roles #=> Array
1441
1444
  # resp.namespace.iam_roles[0] #=> String
1442
1445
  # resp.namespace.kms_key_id #=> String
1446
+ # resp.namespace.lakehouse_registration_status #=> String
1443
1447
  # resp.namespace.log_exports #=> Array
1444
1448
  # resp.namespace.log_exports[0] #=> String, one of "useractivitylog", "userlog", "connectionlog"
1445
1449
  # resp.namespace.namespace_arn #=> String
@@ -1872,6 +1876,58 @@ module Aws::RedshiftServerless
1872
1876
  req.send_request(options)
1873
1877
  end
1874
1878
 
1879
+ # Returns an Identity Center authentication token for accessing Amazon
1880
+ # Redshift Serverless workgroups.
1881
+ #
1882
+ # The token provides secure access to data within the specified
1883
+ # workgroups using Identity Center identity propagation. The token
1884
+ # expires after a specified duration and must be refreshed for continued
1885
+ # access.
1886
+ #
1887
+ # The Identity and Access Management (IAM) user or role that runs
1888
+ # GetIdentityCenterAuthToken must have appropriate permissions to access
1889
+ # the specified workgroups and Identity Center integration must be
1890
+ # configured for the workgroups.
1891
+ #
1892
+ # @option params [required, Array<String>] :workgroup_names
1893
+ # A list of workgroup names for which to generate the Identity Center
1894
+ # authentication token.
1895
+ #
1896
+ # Constraints:
1897
+ #
1898
+ # * Must contain between 1 and 20 workgroup names.
1899
+ #
1900
+ # * Each workgroup name must be a valid Amazon Redshift Serverless
1901
+ # workgroup identifier.
1902
+ #
1903
+ # * All specified workgroups must have Identity Center integration
1904
+ # enabled.
1905
+ #
1906
+ # @return [Types::GetIdentityCenterAuthTokenResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1907
+ #
1908
+ # * {Types::GetIdentityCenterAuthTokenResponse#expiration_time #expiration_time} => Time
1909
+ # * {Types::GetIdentityCenterAuthTokenResponse#token #token} => String
1910
+ #
1911
+ # @example Request syntax with placeholder values
1912
+ #
1913
+ # resp = client.get_identity_center_auth_token({
1914
+ # workgroup_names: ["WorkgroupName"], # required
1915
+ # })
1916
+ #
1917
+ # @example Response structure
1918
+ #
1919
+ # resp.expiration_time #=> Time
1920
+ # resp.token #=> String
1921
+ #
1922
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-serverless-2021-04-21/GetIdentityCenterAuthToken AWS API Documentation
1923
+ #
1924
+ # @overload get_identity_center_auth_token(params = {})
1925
+ # @param [Hash] params ({})
1926
+ def get_identity_center_auth_token(params = {}, options = {})
1927
+ req = build_request(:get_identity_center_auth_token, params)
1928
+ req.send_request(options)
1929
+ end
1930
+
1875
1931
  # Returns information about a namespace in Amazon Redshift Serverless.
1876
1932
  #
1877
1933
  # @option params [required, String] :namespace_name
@@ -1892,12 +1948,14 @@ module Aws::RedshiftServerless
1892
1948
  # resp.namespace.admin_password_secret_arn #=> String
1893
1949
  # resp.namespace.admin_password_secret_kms_key_id #=> String
1894
1950
  # resp.namespace.admin_username #=> String
1951
+ # resp.namespace.catalog_arn #=> String
1895
1952
  # resp.namespace.creation_date #=> Time
1896
1953
  # resp.namespace.db_name #=> String
1897
1954
  # resp.namespace.default_iam_role_arn #=> String
1898
1955
  # resp.namespace.iam_roles #=> Array
1899
1956
  # resp.namespace.iam_roles[0] #=> String
1900
1957
  # resp.namespace.kms_key_id #=> String
1958
+ # resp.namespace.lakehouse_registration_status #=> String
1901
1959
  # resp.namespace.log_exports #=> Array
1902
1960
  # resp.namespace.log_exports[0] #=> String, one of "useractivitylog", "userlog", "connectionlog"
1903
1961
  # resp.namespace.namespace_arn #=> String
@@ -2473,8 +2531,8 @@ module Aws::RedshiftServerless
2473
2531
  # page.
2474
2532
  #
2475
2533
  # @option params [String] :source_arn
2476
- # The Amazon Resource Name (ARN) for the managed workgroup in the AWS
2477
- # Glue Data Catalog.
2534
+ # The Amazon Resource Name (ARN) for the managed workgroup in the Glue
2535
+ # Data Catalog.
2478
2536
  #
2479
2537
  # @return [Types::ListManagedWorkgroupsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2480
2538
  #
@@ -2541,12 +2599,14 @@ module Aws::RedshiftServerless
2541
2599
  # resp.namespaces[0].admin_password_secret_arn #=> String
2542
2600
  # resp.namespaces[0].admin_password_secret_kms_key_id #=> String
2543
2601
  # resp.namespaces[0].admin_username #=> String
2602
+ # resp.namespaces[0].catalog_arn #=> String
2544
2603
  # resp.namespaces[0].creation_date #=> Time
2545
2604
  # resp.namespaces[0].db_name #=> String
2546
2605
  # resp.namespaces[0].default_iam_role_arn #=> String
2547
2606
  # resp.namespaces[0].iam_roles #=> Array
2548
2607
  # resp.namespaces[0].iam_roles[0] #=> String
2549
2608
  # resp.namespaces[0].kms_key_id #=> String
2609
+ # resp.namespaces[0].lakehouse_registration_status #=> String
2550
2610
  # resp.namespaces[0].log_exports #=> Array
2551
2611
  # resp.namespaces[0].log_exports[0] #=> String, one of "useractivitylog", "userlog", "connectionlog"
2552
2612
  # resp.namespaces[0].namespace_arn #=> String
@@ -3259,12 +3319,14 @@ module Aws::RedshiftServerless
3259
3319
  # resp.namespace.admin_password_secret_arn #=> String
3260
3320
  # resp.namespace.admin_password_secret_kms_key_id #=> String
3261
3321
  # resp.namespace.admin_username #=> String
3322
+ # resp.namespace.catalog_arn #=> String
3262
3323
  # resp.namespace.creation_date #=> Time
3263
3324
  # resp.namespace.db_name #=> String
3264
3325
  # resp.namespace.default_iam_role_arn #=> String
3265
3326
  # resp.namespace.iam_roles #=> Array
3266
3327
  # resp.namespace.iam_roles[0] #=> String
3267
3328
  # resp.namespace.kms_key_id #=> String
3329
+ # resp.namespace.lakehouse_registration_status #=> String
3268
3330
  # resp.namespace.log_exports #=> Array
3269
3331
  # resp.namespace.log_exports[0] #=> String, one of "useractivitylog", "userlog", "connectionlog"
3270
3332
  # resp.namespace.namespace_arn #=> String
@@ -3338,12 +3400,14 @@ module Aws::RedshiftServerless
3338
3400
  # resp.namespace.admin_password_secret_arn #=> String
3339
3401
  # resp.namespace.admin_password_secret_kms_key_id #=> String
3340
3402
  # resp.namespace.admin_username #=> String
3403
+ # resp.namespace.catalog_arn #=> String
3341
3404
  # resp.namespace.creation_date #=> Time
3342
3405
  # resp.namespace.db_name #=> String
3343
3406
  # resp.namespace.default_iam_role_arn #=> String
3344
3407
  # resp.namespace.iam_roles #=> Array
3345
3408
  # resp.namespace.iam_roles[0] #=> String
3346
3409
  # resp.namespace.kms_key_id #=> String
3410
+ # resp.namespace.lakehouse_registration_status #=> String
3347
3411
  # resp.namespace.log_exports #=> Array
3348
3412
  # resp.namespace.log_exports[0] #=> String, one of "useractivitylog", "userlog", "connectionlog"
3349
3413
  # resp.namespace.namespace_arn #=> String
@@ -3687,6 +3751,75 @@ module Aws::RedshiftServerless
3687
3751
  req.send_request(options)
3688
3752
  end
3689
3753
 
3754
+ # Modifies the lakehouse configuration for a namespace. This operation
3755
+ # allows you to manage Amazon Redshift federated permissions and Amazon
3756
+ # Web Services IAM Identity Center trusted identity propagation.
3757
+ #
3758
+ # @option params [String] :catalog_name
3759
+ # The name of the Glue Data Catalog that will be associated with the
3760
+ # namespace enabled with Amazon Redshift federated permissions.
3761
+ #
3762
+ # Pattern: `^[a-z0-9_-]*[a-z]+[a-z0-9_-]*$`
3763
+ #
3764
+ # @option params [Boolean] :dry_run
3765
+ # A boolean value that, if `true`, validates the request without
3766
+ # actually updating the lakehouse configuration. Use this to check for
3767
+ # errors before making changes.
3768
+ #
3769
+ # @option params [String] :lakehouse_idc_application_arn
3770
+ # The Amazon Resource Name (ARN) of the IAM Identity Center application
3771
+ # used for enabling Amazon Web Services IAM Identity Center trusted
3772
+ # identity propagation on a namespace enabled with Amazon Redshift
3773
+ # federated permissions.
3774
+ #
3775
+ # @option params [String] :lakehouse_idc_registration
3776
+ # Modifies the Amazon Web Services IAM Identity Center trusted identity
3777
+ # propagation on a namespace enabled with Amazon Redshift federated
3778
+ # permissions. Valid values are `Associate` or `Disassociate`.
3779
+ #
3780
+ # @option params [String] :lakehouse_registration
3781
+ # Specifies whether to register or deregister the namespace with Amazon
3782
+ # Redshift federated permissions. Valid values are `Register` or
3783
+ # `Deregister`.
3784
+ #
3785
+ # @option params [required, String] :namespace_name
3786
+ # The name of the namespace whose lakehouse configuration you want to
3787
+ # modify.
3788
+ #
3789
+ # @return [Types::UpdateLakehouseConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3790
+ #
3791
+ # * {Types::UpdateLakehouseConfigurationResponse#catalog_arn #catalog_arn} => String
3792
+ # * {Types::UpdateLakehouseConfigurationResponse#lakehouse_idc_application_arn #lakehouse_idc_application_arn} => String
3793
+ # * {Types::UpdateLakehouseConfigurationResponse#lakehouse_registration_status #lakehouse_registration_status} => String
3794
+ # * {Types::UpdateLakehouseConfigurationResponse#namespace_name #namespace_name} => String
3795
+ #
3796
+ # @example Request syntax with placeholder values
3797
+ #
3798
+ # resp = client.update_lakehouse_configuration({
3799
+ # catalog_name: "CatalogNameString",
3800
+ # dry_run: false,
3801
+ # lakehouse_idc_application_arn: "String",
3802
+ # lakehouse_idc_registration: "Associate", # accepts Associate, Disassociate
3803
+ # lakehouse_registration: "Register", # accepts Register, Deregister
3804
+ # namespace_name: "NamespaceName", # required
3805
+ # })
3806
+ #
3807
+ # @example Response structure
3808
+ #
3809
+ # resp.catalog_arn #=> String
3810
+ # resp.lakehouse_idc_application_arn #=> String
3811
+ # resp.lakehouse_registration_status #=> String
3812
+ # resp.namespace_name #=> String
3813
+ #
3814
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-serverless-2021-04-21/UpdateLakehouseConfiguration AWS API Documentation
3815
+ #
3816
+ # @overload update_lakehouse_configuration(params = {})
3817
+ # @param [Hash] params ({})
3818
+ def update_lakehouse_configuration(params = {}, options = {})
3819
+ req = build_request(:update_lakehouse_configuration, params)
3820
+ req.send_request(options)
3821
+ end
3822
+
3690
3823
  # Updates a namespace with the specified settings. Unless required, you
3691
3824
  # can't update multiple parameters in one request. For example, you
3692
3825
  # must specify both `adminUsername` and `adminUserPassword` to update
@@ -3761,12 +3894,14 @@ module Aws::RedshiftServerless
3761
3894
  # resp.namespace.admin_password_secret_arn #=> String
3762
3895
  # resp.namespace.admin_password_secret_kms_key_id #=> String
3763
3896
  # resp.namespace.admin_username #=> String
3897
+ # resp.namespace.catalog_arn #=> String
3764
3898
  # resp.namespace.creation_date #=> Time
3765
3899
  # resp.namespace.db_name #=> String
3766
3900
  # resp.namespace.default_iam_role_arn #=> String
3767
3901
  # resp.namespace.iam_roles #=> Array
3768
3902
  # resp.namespace.iam_roles[0] #=> String
3769
3903
  # resp.namespace.kms_key_id #=> String
3904
+ # resp.namespace.lakehouse_registration_status #=> String
3770
3905
  # resp.namespace.log_exports #=> Array
3771
3906
  # resp.namespace.log_exports[0] #=> String, one of "useractivitylog", "userlog", "connectionlog"
3772
3907
  # resp.namespace.namespace_arn #=> String
@@ -4223,7 +4358,7 @@ module Aws::RedshiftServerless
4223
4358
  tracer: tracer
4224
4359
  )
4225
4360
  context[:gem_name] = 'aws-sdk-redshiftserverless'
4226
- context[:gem_version] = '1.58.0'
4361
+ context[:gem_version] = '1.60.0'
4227
4362
  Seahorse::Client::Request.new(handlers, context)
4228
4363
  end
4229
4364
 
@@ -21,6 +21,7 @@ module Aws::RedshiftServerless
21
21
  AssociationList = Shapes::ListShape.new(name: 'AssociationList')
22
22
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
23
23
  Capacity = Shapes::IntegerShape.new(name: 'Capacity')
24
+ CatalogNameString = Shapes::StringShape.new(name: 'CatalogNameString')
24
25
  Charge = Shapes::FloatShape.new(name: 'Charge')
25
26
  ConfigParameter = Shapes::StructureShape.new(name: 'ConfigParameter')
26
27
  ConfigParameterList = Shapes::ListShape.new(name: 'ConfigParameterList')
@@ -72,6 +73,7 @@ module Aws::RedshiftServerless
72
73
  DeleteWorkgroupRequest = Shapes::StructureShape.new(name: 'DeleteWorkgroupRequest')
73
74
  DeleteWorkgroupResponse = Shapes::StructureShape.new(name: 'DeleteWorkgroupResponse')
74
75
  Double = Shapes::FloatShape.new(name: 'Double')
76
+ DryRunException = Shapes::StructureShape.new(name: 'DryRunException')
75
77
  Duration = Shapes::IntegerShape.new(name: 'Duration')
76
78
  Endpoint = Shapes::StructureShape.new(name: 'Endpoint')
77
79
  EndpointAccess = Shapes::StructureShape.new(name: 'EndpointAccess')
@@ -82,6 +84,8 @@ module Aws::RedshiftServerless
82
84
  GetCustomDomainAssociationResponse = Shapes::StructureShape.new(name: 'GetCustomDomainAssociationResponse')
83
85
  GetEndpointAccessRequest = Shapes::StructureShape.new(name: 'GetEndpointAccessRequest')
84
86
  GetEndpointAccessResponse = Shapes::StructureShape.new(name: 'GetEndpointAccessResponse')
87
+ GetIdentityCenterAuthTokenRequest = Shapes::StructureShape.new(name: 'GetIdentityCenterAuthTokenRequest')
88
+ GetIdentityCenterAuthTokenResponse = Shapes::StructureShape.new(name: 'GetIdentityCenterAuthTokenResponse')
85
89
  GetNamespaceRequest = Shapes::StructureShape.new(name: 'GetNamespaceRequest')
86
90
  GetNamespaceResponse = Shapes::StructureShape.new(name: 'GetNamespaceResponse')
87
91
  GetRecoveryPointRequest = Shapes::StructureShape.new(name: 'GetRecoveryPointRequest')
@@ -115,6 +119,8 @@ module Aws::RedshiftServerless
115
119
  IpAddressType = Shapes::StringShape.new(name: 'IpAddressType')
116
120
  Ipv6CidrBlockNotFoundException = Shapes::StructureShape.new(name: 'Ipv6CidrBlockNotFoundException')
117
121
  KmsKeyId = Shapes::StringShape.new(name: 'KmsKeyId')
122
+ LakehouseIdcRegistration = Shapes::StringShape.new(name: 'LakehouseIdcRegistration')
123
+ LakehouseRegistration = Shapes::StringShape.new(name: 'LakehouseRegistration')
118
124
  ListCustomDomainAssociationsRequest = Shapes::StructureShape.new(name: 'ListCustomDomainAssociationsRequest')
119
125
  ListCustomDomainAssociationsRequestMaxResultsInteger = Shapes::IntegerShape.new(name: 'ListCustomDomainAssociationsRequestMaxResultsInteger')
120
126
  ListCustomDomainAssociationsResponse = Shapes::StructureShape.new(name: 'ListCustomDomainAssociationsResponse')
@@ -246,6 +252,8 @@ module Aws::RedshiftServerless
246
252
  UpdateCustomDomainAssociationResponse = Shapes::StructureShape.new(name: 'UpdateCustomDomainAssociationResponse')
247
253
  UpdateEndpointAccessRequest = Shapes::StructureShape.new(name: 'UpdateEndpointAccessRequest')
248
254
  UpdateEndpointAccessResponse = Shapes::StructureShape.new(name: 'UpdateEndpointAccessResponse')
255
+ UpdateLakehouseConfigurationRequest = Shapes::StructureShape.new(name: 'UpdateLakehouseConfigurationRequest')
256
+ UpdateLakehouseConfigurationResponse = Shapes::StructureShape.new(name: 'UpdateLakehouseConfigurationResponse')
249
257
  UpdateNamespaceRequest = Shapes::StructureShape.new(name: 'UpdateNamespaceRequest')
250
258
  UpdateNamespaceResponse = Shapes::StructureShape.new(name: 'UpdateNamespaceResponse')
251
259
  UpdateScheduledActionRequest = Shapes::StructureShape.new(name: 'UpdateScheduledActionRequest')
@@ -276,6 +284,7 @@ module Aws::RedshiftServerless
276
284
  Workgroup = Shapes::StructureShape.new(name: 'Workgroup')
277
285
  WorkgroupList = Shapes::ListShape.new(name: 'WorkgroupList')
278
286
  WorkgroupName = Shapes::StringShape.new(name: 'WorkgroupName')
287
+ WorkgroupNameList = Shapes::ListShape.new(name: 'WorkgroupNameList')
279
288
  WorkgroupStatus = Shapes::StringShape.new(name: 'WorkgroupStatus')
280
289
 
281
290
  AccessDeniedException.add_member(:code, Shapes::ShapeRef.new(shape: String, location_name: "code"))
@@ -478,6 +487,9 @@ module Aws::RedshiftServerless
478
487
  DeleteWorkgroupResponse.add_member(:workgroup, Shapes::ShapeRef.new(shape: Workgroup, required: true, location_name: "workgroup"))
479
488
  DeleteWorkgroupResponse.struct_class = Types::DeleteWorkgroupResponse
480
489
 
490
+ DryRunException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
491
+ DryRunException.struct_class = Types::DryRunException
492
+
481
493
  Endpoint.add_member(:address, Shapes::ShapeRef.new(shape: String, location_name: "address"))
482
494
  Endpoint.add_member(:port, Shapes::ShapeRef.new(shape: Integer, location_name: "port"))
483
495
  Endpoint.add_member(:vpc_endpoints, Shapes::ShapeRef.new(shape: VpcEndpointList, location_name: "vpcEndpoints"))
@@ -525,6 +537,13 @@ module Aws::RedshiftServerless
525
537
  GetEndpointAccessResponse.add_member(:endpoint, Shapes::ShapeRef.new(shape: EndpointAccess, location_name: "endpoint"))
526
538
  GetEndpointAccessResponse.struct_class = Types::GetEndpointAccessResponse
527
539
 
540
+ GetIdentityCenterAuthTokenRequest.add_member(:workgroup_names, Shapes::ShapeRef.new(shape: WorkgroupNameList, required: true, location_name: "workgroupNames"))
541
+ GetIdentityCenterAuthTokenRequest.struct_class = Types::GetIdentityCenterAuthTokenRequest
542
+
543
+ GetIdentityCenterAuthTokenResponse.add_member(:expiration_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "expirationTime"))
544
+ GetIdentityCenterAuthTokenResponse.add_member(:token, Shapes::ShapeRef.new(shape: String, location_name: "token"))
545
+ GetIdentityCenterAuthTokenResponse.struct_class = Types::GetIdentityCenterAuthTokenResponse
546
+
528
547
  GetNamespaceRequest.add_member(:namespace_name, Shapes::ShapeRef.new(shape: NamespaceName, required: true, location_name: "namespaceName"))
529
548
  GetNamespaceRequest.struct_class = Types::GetNamespaceRequest
530
549
 
@@ -761,11 +780,13 @@ module Aws::RedshiftServerless
761
780
  Namespace.add_member(:admin_password_secret_arn, Shapes::ShapeRef.new(shape: String, location_name: "adminPasswordSecretArn"))
762
781
  Namespace.add_member(:admin_password_secret_kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "adminPasswordSecretKmsKeyId"))
763
782
  Namespace.add_member(:admin_username, Shapes::ShapeRef.new(shape: DbUser, location_name: "adminUsername"))
783
+ Namespace.add_member(:catalog_arn, Shapes::ShapeRef.new(shape: String, location_name: "catalogArn"))
764
784
  Namespace.add_member(:creation_date, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "creationDate"))
765
785
  Namespace.add_member(:db_name, Shapes::ShapeRef.new(shape: String, location_name: "dbName"))
766
786
  Namespace.add_member(:default_iam_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "defaultIamRoleArn"))
767
787
  Namespace.add_member(:iam_roles, Shapes::ShapeRef.new(shape: IamRoleArnList, location_name: "iamRoles"))
768
788
  Namespace.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "kmsKeyId"))
789
+ Namespace.add_member(:lakehouse_registration_status, Shapes::ShapeRef.new(shape: String, location_name: "lakehouseRegistrationStatus"))
769
790
  Namespace.add_member(:log_exports, Shapes::ShapeRef.new(shape: LogExportList, location_name: "logExports"))
770
791
  Namespace.add_member(:namespace_arn, Shapes::ShapeRef.new(shape: String, location_name: "namespaceArn"))
771
792
  Namespace.add_member(:namespace_id, Shapes::ShapeRef.new(shape: String, location_name: "namespaceId"))
@@ -1038,6 +1059,20 @@ module Aws::RedshiftServerless
1038
1059
  UpdateEndpointAccessResponse.add_member(:endpoint, Shapes::ShapeRef.new(shape: EndpointAccess, location_name: "endpoint"))
1039
1060
  UpdateEndpointAccessResponse.struct_class = Types::UpdateEndpointAccessResponse
1040
1061
 
1062
+ UpdateLakehouseConfigurationRequest.add_member(:catalog_name, Shapes::ShapeRef.new(shape: CatalogNameString, location_name: "catalogName"))
1063
+ UpdateLakehouseConfigurationRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
1064
+ UpdateLakehouseConfigurationRequest.add_member(:lakehouse_idc_application_arn, Shapes::ShapeRef.new(shape: String, location_name: "lakehouseIdcApplicationArn"))
1065
+ UpdateLakehouseConfigurationRequest.add_member(:lakehouse_idc_registration, Shapes::ShapeRef.new(shape: LakehouseIdcRegistration, location_name: "lakehouseIdcRegistration"))
1066
+ UpdateLakehouseConfigurationRequest.add_member(:lakehouse_registration, Shapes::ShapeRef.new(shape: LakehouseRegistration, location_name: "lakehouseRegistration"))
1067
+ UpdateLakehouseConfigurationRequest.add_member(:namespace_name, Shapes::ShapeRef.new(shape: NamespaceName, required: true, location_name: "namespaceName"))
1068
+ UpdateLakehouseConfigurationRequest.struct_class = Types::UpdateLakehouseConfigurationRequest
1069
+
1070
+ UpdateLakehouseConfigurationResponse.add_member(:catalog_arn, Shapes::ShapeRef.new(shape: String, location_name: "catalogArn"))
1071
+ UpdateLakehouseConfigurationResponse.add_member(:lakehouse_idc_application_arn, Shapes::ShapeRef.new(shape: String, location_name: "lakehouseIdcApplicationArn"))
1072
+ UpdateLakehouseConfigurationResponse.add_member(:lakehouse_registration_status, Shapes::ShapeRef.new(shape: String, location_name: "lakehouseRegistrationStatus"))
1073
+ UpdateLakehouseConfigurationResponse.add_member(:namespace_name, Shapes::ShapeRef.new(shape: NamespaceName, location_name: "namespaceName"))
1074
+ UpdateLakehouseConfigurationResponse.struct_class = Types::UpdateLakehouseConfigurationResponse
1075
+
1041
1076
  UpdateNamespaceRequest.add_member(:admin_password_secret_kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "adminPasswordSecretKmsKeyId"))
1042
1077
  UpdateNamespaceRequest.add_member(:admin_user_password, Shapes::ShapeRef.new(shape: DbPassword, location_name: "adminUserPassword"))
1043
1078
  UpdateNamespaceRequest.add_member(:admin_username, Shapes::ShapeRef.new(shape: DbUser, location_name: "adminUsername"))
@@ -1170,6 +1205,8 @@ module Aws::RedshiftServerless
1170
1205
 
1171
1206
  WorkgroupList.member = Shapes::ShapeRef.new(shape: Workgroup)
1172
1207
 
1208
+ WorkgroupNameList.member = Shapes::ShapeRef.new(shape: WorkgroupName)
1209
+
1173
1210
 
1174
1211
  # @api private
1175
1212
  API = Seahorse::Model::Api.new.tap do |api|
@@ -1199,8 +1236,8 @@ module Aws::RedshiftServerless
1199
1236
  o.output = Shapes::ShapeRef.new(shape: ConvertRecoveryPointToSnapshotResponse)
1200
1237
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1201
1238
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1202
- o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1203
1239
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1240
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1204
1241
  o.errors << Shapes::ShapeRef.new(shape: TooManyTagsException)
1205
1242
  o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
1206
1243
  end)
@@ -1213,8 +1250,8 @@ module Aws::RedshiftServerless
1213
1250
  o.output = Shapes::ShapeRef.new(shape: CreateCustomDomainAssociationResponse)
1214
1251
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1215
1252
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1216
- o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1217
1253
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1254
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1218
1255
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1219
1256
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1220
1257
  end)
@@ -1240,8 +1277,8 @@ module Aws::RedshiftServerless
1240
1277
  o.input = Shapes::ShapeRef.new(shape: CreateNamespaceRequest)
1241
1278
  o.output = Shapes::ShapeRef.new(shape: CreateNamespaceResponse)
1242
1279
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1243
- o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1244
1280
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1281
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1245
1282
  o.errors << Shapes::ShapeRef.new(shape: TooManyTagsException)
1246
1283
  end)
1247
1284
 
@@ -1253,8 +1290,8 @@ module Aws::RedshiftServerless
1253
1290
  o.output = Shapes::ShapeRef.new(shape: CreateReservationResponse)
1254
1291
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1255
1292
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1256
- o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1257
1293
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1294
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1258
1295
  o.errors << Shapes::ShapeRef.new(shape: TooManyTagsException)
1259
1296
  o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
1260
1297
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
@@ -1268,8 +1305,8 @@ module Aws::RedshiftServerless
1268
1305
  o.output = Shapes::ShapeRef.new(shape: CreateScheduledActionResponse)
1269
1306
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1270
1307
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1271
- o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1272
1308
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1309
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1273
1310
  end)
1274
1311
 
1275
1312
  api.add_operation(:create_snapshot, Seahorse::Model::Operation.new.tap do |o|
@@ -1280,8 +1317,8 @@ module Aws::RedshiftServerless
1280
1317
  o.output = Shapes::ShapeRef.new(shape: CreateSnapshotResponse)
1281
1318
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1282
1319
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1283
- o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1284
1320
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1321
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1285
1322
  o.errors << Shapes::ShapeRef.new(shape: TooManyTagsException)
1286
1323
  o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
1287
1324
  end)
@@ -1308,8 +1345,8 @@ module Aws::RedshiftServerless
1308
1345
  o.output = Shapes::ShapeRef.new(shape: CreateUsageLimitResponse)
1309
1346
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1310
1347
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1311
- o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1312
1348
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1349
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1313
1350
  o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
1314
1351
  end)
1315
1352
 
@@ -1322,8 +1359,8 @@ module Aws::RedshiftServerless
1322
1359
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1323
1360
  o.errors << Shapes::ShapeRef.new(shape: InsufficientCapacityException)
1324
1361
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1325
- o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1326
1362
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1363
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1327
1364
  o.errors << Shapes::ShapeRef.new(shape: TooManyTagsException)
1328
1365
  o.errors << Shapes::ShapeRef.new(shape: Ipv6CidrBlockNotFoundException)
1329
1366
  end)
@@ -1336,8 +1373,8 @@ module Aws::RedshiftServerless
1336
1373
  o.output = Shapes::ShapeRef.new(shape: DeleteCustomDomainAssociationResponse)
1337
1374
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1338
1375
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1339
- o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1340
1376
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1377
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1341
1378
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1342
1379
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1343
1380
  end)
@@ -1362,8 +1399,8 @@ module Aws::RedshiftServerless
1362
1399
  o.output = Shapes::ShapeRef.new(shape: DeleteNamespaceResponse)
1363
1400
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1364
1401
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1365
- o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1366
1402
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1403
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1367
1404
  end)
1368
1405
 
1369
1406
  api.add_operation(:delete_resource_policy, Seahorse::Model::Operation.new.tap do |o|
@@ -1396,8 +1433,8 @@ module Aws::RedshiftServerless
1396
1433
  o.output = Shapes::ShapeRef.new(shape: DeleteSnapshotResponse)
1397
1434
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1398
1435
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1399
- o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1400
1436
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1437
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1401
1438
  end)
1402
1439
 
1403
1440
  api.add_operation(:delete_snapshot_copy_configuration, Seahorse::Model::Operation.new.tap do |o|
@@ -1421,8 +1458,8 @@ module Aws::RedshiftServerless
1421
1458
  o.output = Shapes::ShapeRef.new(shape: DeleteUsageLimitResponse)
1422
1459
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1423
1460
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1424
- o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1425
1461
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1462
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1426
1463
  end)
1427
1464
 
1428
1465
  api.add_operation(:delete_workgroup, Seahorse::Model::Operation.new.tap do |o|
@@ -1433,8 +1470,8 @@ module Aws::RedshiftServerless
1433
1470
  o.output = Shapes::ShapeRef.new(shape: DeleteWorkgroupResponse)
1434
1471
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1435
1472
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1436
- o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1437
1473
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1474
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1438
1475
  end)
1439
1476
 
1440
1477
  api.add_operation(:get_credentials, Seahorse::Model::Operation.new.tap do |o|
@@ -1456,8 +1493,8 @@ module Aws::RedshiftServerless
1456
1493
  o.output = Shapes::ShapeRef.new(shape: GetCustomDomainAssociationResponse)
1457
1494
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1458
1495
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1459
- o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1460
1496
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1497
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1461
1498
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1462
1499
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1463
1500
  end)
@@ -1474,6 +1511,21 @@ module Aws::RedshiftServerless
1474
1511
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1475
1512
  end)
1476
1513
 
1514
+ api.add_operation(:get_identity_center_auth_token, Seahorse::Model::Operation.new.tap do |o|
1515
+ o.name = "GetIdentityCenterAuthToken"
1516
+ o.http_method = "POST"
1517
+ o.http_request_uri = "/"
1518
+ o.input = Shapes::ShapeRef.new(shape: GetIdentityCenterAuthTokenRequest)
1519
+ o.output = Shapes::ShapeRef.new(shape: GetIdentityCenterAuthTokenResponse)
1520
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1521
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1522
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1523
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1524
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1525
+ o.errors << Shapes::ShapeRef.new(shape: DryRunException)
1526
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1527
+ end)
1528
+
1477
1529
  api.add_operation(:get_namespace, Seahorse::Model::Operation.new.tap do |o|
1478
1530
  o.name = "GetNamespace"
1479
1531
  o.http_method = "POST"
@@ -1493,8 +1545,8 @@ module Aws::RedshiftServerless
1493
1545
  o.output = Shapes::ShapeRef.new(shape: GetRecoveryPointResponse)
1494
1546
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1495
1547
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1496
- o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1497
1548
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1549
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1498
1550
  end)
1499
1551
 
1500
1552
  api.add_operation(:get_reservation, Seahorse::Model::Operation.new.tap do |o|
@@ -1572,9 +1624,10 @@ module Aws::RedshiftServerless
1572
1624
  o.output = Shapes::ShapeRef.new(shape: GetTrackResponse)
1573
1625
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1574
1626
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1575
- o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1576
1627
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1628
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1577
1629
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1630
+ o.errors << Shapes::ShapeRef.new(shape: DryRunException)
1578
1631
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1579
1632
  end)
1580
1633
 
@@ -1586,8 +1639,8 @@ module Aws::RedshiftServerless
1586
1639
  o.output = Shapes::ShapeRef.new(shape: GetUsageLimitResponse)
1587
1640
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1588
1641
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1589
- o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1590
1642
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1643
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1591
1644
  end)
1592
1645
 
1593
1646
  api.add_operation(:get_workgroup, Seahorse::Model::Operation.new.tap do |o|
@@ -1727,8 +1780,8 @@ module Aws::RedshiftServerless
1727
1780
  o.input = Shapes::ShapeRef.new(shape: ListScheduledActionsRequest)
1728
1781
  o.output = Shapes::ShapeRef.new(shape: ListScheduledActionsResponse)
1729
1782
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1730
- o.errors << Shapes::ShapeRef.new(shape: InvalidPaginationException)
1731
1783
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1784
+ o.errors << Shapes::ShapeRef.new(shape: InvalidPaginationException)
1732
1785
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1733
1786
  o[:pager] = Aws::Pager.new(
1734
1787
  limit_key: "max_results",
@@ -1745,10 +1798,10 @@ module Aws::RedshiftServerless
1745
1798
  o.input = Shapes::ShapeRef.new(shape: ListSnapshotCopyConfigurationsRequest)
1746
1799
  o.output = Shapes::ShapeRef.new(shape: ListSnapshotCopyConfigurationsResponse)
1747
1800
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1748
- o.errors << Shapes::ShapeRef.new(shape: InvalidPaginationException)
1749
1801
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1750
- o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1802
+ o.errors << Shapes::ShapeRef.new(shape: InvalidPaginationException)
1751
1803
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1804
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1752
1805
  o[:pager] = Aws::Pager.new(
1753
1806
  limit_key: "max_results",
1754
1807
  tokens: {
@@ -1780,8 +1833,8 @@ module Aws::RedshiftServerless
1780
1833
  o.http_request_uri = "/"
1781
1834
  o.input = Shapes::ShapeRef.new(shape: ListTableRestoreStatusRequest)
1782
1835
  o.output = Shapes::ShapeRef.new(shape: ListTableRestoreStatusResponse)
1783
- o.errors << Shapes::ShapeRef.new(shape: InvalidPaginationException)
1784
1836
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1837
+ o.errors << Shapes::ShapeRef.new(shape: InvalidPaginationException)
1785
1838
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1786
1839
  o[:pager] = Aws::Pager.new(
1787
1840
  limit_key: "max_results",
@@ -1829,10 +1882,10 @@ module Aws::RedshiftServerless
1829
1882
  o.input = Shapes::ShapeRef.new(shape: ListUsageLimitsRequest)
1830
1883
  o.output = Shapes::ShapeRef.new(shape: ListUsageLimitsResponse)
1831
1884
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1832
- o.errors << Shapes::ShapeRef.new(shape: InvalidPaginationException)
1833
1885
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1834
- o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1886
+ o.errors << Shapes::ShapeRef.new(shape: InvalidPaginationException)
1835
1887
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1888
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1836
1889
  o[:pager] = Aws::Pager.new(
1837
1890
  limit_key: "max_results",
1838
1891
  tokens: {
@@ -1865,8 +1918,8 @@ module Aws::RedshiftServerless
1865
1918
  o.output = Shapes::ShapeRef.new(shape: PutResourcePolicyResponse)
1866
1919
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1867
1920
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1868
- o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1869
1921
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1922
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1870
1923
  o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
1871
1924
  end)
1872
1925
 
@@ -1878,8 +1931,8 @@ module Aws::RedshiftServerless
1878
1931
  o.output = Shapes::ShapeRef.new(shape: RestoreFromRecoveryPointResponse)
1879
1932
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1880
1933
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1881
- o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1882
1934
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1935
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1883
1936
  end)
1884
1937
 
1885
1938
  api.add_operation(:restore_from_snapshot, Seahorse::Model::Operation.new.tap do |o|
@@ -1890,8 +1943,8 @@ module Aws::RedshiftServerless
1890
1943
  o.output = Shapes::ShapeRef.new(shape: RestoreFromSnapshotResponse)
1891
1944
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1892
1945
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1893
- o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1894
1946
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1947
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1895
1948
  o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
1896
1949
  end)
1897
1950
 
@@ -1903,8 +1956,8 @@ module Aws::RedshiftServerless
1903
1956
  o.output = Shapes::ShapeRef.new(shape: RestoreTableFromRecoveryPointResponse)
1904
1957
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1905
1958
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1906
- o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1907
1959
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1960
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1908
1961
  end)
1909
1962
 
1910
1963
  api.add_operation(:restore_table_from_snapshot, Seahorse::Model::Operation.new.tap do |o|
@@ -1915,8 +1968,8 @@ module Aws::RedshiftServerless
1915
1968
  o.output = Shapes::ShapeRef.new(shape: RestoreTableFromSnapshotResponse)
1916
1969
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1917
1970
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1918
- o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1919
1971
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1972
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1920
1973
  end)
1921
1974
 
1922
1975
  api.add_operation(:tag_resource, Seahorse::Model::Operation.new.tap do |o|
@@ -1952,8 +2005,8 @@ module Aws::RedshiftServerless
1952
2005
  o.output = Shapes::ShapeRef.new(shape: UpdateCustomDomainAssociationResponse)
1953
2006
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1954
2007
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1955
- o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1956
2008
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2009
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1957
2010
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1958
2011
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1959
2012
  end)
@@ -1971,6 +2024,19 @@ module Aws::RedshiftServerless
1971
2024
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1972
2025
  end)
1973
2026
 
2027
+ api.add_operation(:update_lakehouse_configuration, Seahorse::Model::Operation.new.tap do |o|
2028
+ o.name = "UpdateLakehouseConfiguration"
2029
+ o.http_method = "POST"
2030
+ o.http_request_uri = "/"
2031
+ o.input = Shapes::ShapeRef.new(shape: UpdateLakehouseConfigurationRequest)
2032
+ o.output = Shapes::ShapeRef.new(shape: UpdateLakehouseConfigurationResponse)
2033
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2034
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2035
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2036
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2037
+ o.errors << Shapes::ShapeRef.new(shape: DryRunException)
2038
+ end)
2039
+
1974
2040
  api.add_operation(:update_namespace, Seahorse::Model::Operation.new.tap do |o|
1975
2041
  o.name = "UpdateNamespace"
1976
2042
  o.http_method = "POST"
@@ -1979,8 +2045,8 @@ module Aws::RedshiftServerless
1979
2045
  o.output = Shapes::ShapeRef.new(shape: UpdateNamespaceResponse)
1980
2046
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1981
2047
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1982
- o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1983
2048
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2049
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1984
2050
  end)
1985
2051
 
1986
2052
  api.add_operation(:update_scheduled_action, Seahorse::Model::Operation.new.tap do |o|
@@ -1991,8 +2057,8 @@ module Aws::RedshiftServerless
1991
2057
  o.output = Shapes::ShapeRef.new(shape: UpdateScheduledActionResponse)
1992
2058
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1993
2059
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1994
- o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1995
2060
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2061
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1996
2062
  end)
1997
2063
 
1998
2064
  api.add_operation(:update_snapshot, Seahorse::Model::Operation.new.tap do |o|
@@ -2003,8 +2069,8 @@ module Aws::RedshiftServerless
2003
2069
  o.output = Shapes::ShapeRef.new(shape: UpdateSnapshotResponse)
2004
2070
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2005
2071
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2006
- o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2007
2072
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2073
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2008
2074
  end)
2009
2075
 
2010
2076
  api.add_operation(:update_snapshot_copy_configuration, Seahorse::Model::Operation.new.tap do |o|
@@ -2028,8 +2094,8 @@ module Aws::RedshiftServerless
2028
2094
  o.output = Shapes::ShapeRef.new(shape: UpdateUsageLimitResponse)
2029
2095
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2030
2096
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2031
- o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2032
2097
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2098
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2033
2099
  end)
2034
2100
 
2035
2101
  api.add_operation(:update_workgroup, Seahorse::Model::Operation.new.tap do |o|
@@ -2041,8 +2107,8 @@ module Aws::RedshiftServerless
2041
2107
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2042
2108
  o.errors << Shapes::ShapeRef.new(shape: InsufficientCapacityException)
2043
2109
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2044
- o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2045
2110
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2111
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2046
2112
  o.errors << Shapes::ShapeRef.new(shape: Ipv6CidrBlockNotFoundException)
2047
2113
  end)
2048
2114
  end
@@ -29,6 +29,7 @@ module Aws::RedshiftServerless
29
29
  # ## Error Classes
30
30
  # * {AccessDeniedException}
31
31
  # * {ConflictException}
32
+ # * {DryRunException}
32
33
  # * {InsufficientCapacityException}
33
34
  # * {InternalServerException}
34
35
  # * {InvalidPaginationException}
@@ -80,6 +81,21 @@ module Aws::RedshiftServerless
80
81
  end
81
82
  end
82
83
 
84
+ class DryRunException < ServiceError
85
+
86
+ # @param [Seahorse::Client::RequestContext] context
87
+ # @param [String] message
88
+ # @param [Aws::RedshiftServerless::Types::DryRunException] data
89
+ def initialize(context, message, data = Aws::EmptyStructure.new)
90
+ super(context, message, data)
91
+ end
92
+
93
+ # @return [String]
94
+ def message
95
+ @message || @data[:message]
96
+ end
97
+ end
98
+
83
99
  class InsufficientCapacityException < ServiceError
84
100
 
85
101
  # @param [Seahorse::Client::RequestContext] context
@@ -991,6 +991,20 @@ module Aws::RedshiftServerless
991
991
  include Aws::Structure
992
992
  end
993
993
 
994
+ # This exception is thrown when the request was successful, but dry run
995
+ # was enabled so no action was taken.
996
+ #
997
+ # @!attribute [rw] message
998
+ # @return [String]
999
+ #
1000
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-serverless-2021-04-21/DryRunException AWS API Documentation
1001
+ #
1002
+ class DryRunException < Struct.new(
1003
+ :message)
1004
+ SENSITIVE = []
1005
+ include Aws::Structure
1006
+ end
1007
+
994
1008
  # The VPC endpoint object.
995
1009
  #
996
1010
  # @!attribute [rw] address
@@ -1227,6 +1241,53 @@ module Aws::RedshiftServerless
1227
1241
  include Aws::Structure
1228
1242
  end
1229
1243
 
1244
+ # @!attribute [rw] workgroup_names
1245
+ # A list of workgroup names for which to generate the Identity Center
1246
+ # authentication token.
1247
+ #
1248
+ # Constraints:
1249
+ #
1250
+ # * Must contain between 1 and 20 workgroup names.
1251
+ #
1252
+ # * Each workgroup name must be a valid Amazon Redshift Serverless
1253
+ # workgroup identifier.
1254
+ #
1255
+ # * All specified workgroups must have Identity Center integration
1256
+ # enabled.
1257
+ # @return [Array<String>]
1258
+ #
1259
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-serverless-2021-04-21/GetIdentityCenterAuthTokenRequest AWS API Documentation
1260
+ #
1261
+ class GetIdentityCenterAuthTokenRequest < Struct.new(
1262
+ :workgroup_names)
1263
+ SENSITIVE = []
1264
+ include Aws::Structure
1265
+ end
1266
+
1267
+ # @!attribute [rw] expiration_time
1268
+ # The date and time when the Identity Center authentication token
1269
+ # expires.
1270
+ #
1271
+ # After this time, a new token must be requested for continued access.
1272
+ # @return [Time]
1273
+ #
1274
+ # @!attribute [rw] token
1275
+ # The Identity Center authentication token that can be used to access
1276
+ # data in the specified workgroups.
1277
+ #
1278
+ # This token contains the Identity Center identity information and is
1279
+ # encrypted for secure transmission.
1280
+ # @return [String]
1281
+ #
1282
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-serverless-2021-04-21/GetIdentityCenterAuthTokenResponse AWS API Documentation
1283
+ #
1284
+ class GetIdentityCenterAuthTokenResponse < Struct.new(
1285
+ :expiration_time,
1286
+ :token)
1287
+ SENSITIVE = []
1288
+ include Aws::Structure
1289
+ end
1290
+
1230
1291
  # @!attribute [rw] namespace_name
1231
1292
  # The name of the namespace to retrieve information for.
1232
1293
  # @return [String]
@@ -1687,8 +1748,8 @@ module Aws::RedshiftServerless
1687
1748
  # @return [String]
1688
1749
  #
1689
1750
  # @!attribute [rw] source_arn
1690
- # The Amazon Resource Name (ARN) for the managed workgroup in the AWS
1691
- # Glue Data Catalog.
1751
+ # The Amazon Resource Name (ARN) for the managed workgroup in the Glue
1752
+ # Data Catalog.
1692
1753
  # @return [String]
1693
1754
  #
1694
1755
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-serverless-2021-04-21/ListManagedWorkgroupsRequest AWS API Documentation
@@ -2282,7 +2343,7 @@ module Aws::RedshiftServerless
2282
2343
  include Aws::Structure
2283
2344
  end
2284
2345
 
2285
- # A collection of Amazon Redshift compute resources managed by AWS Glue.
2346
+ # A collection of Amazon Redshift compute resources managed by Glue.
2286
2347
  #
2287
2348
  # @!attribute [rw] creation_date
2288
2349
  # The creation date of the managed workgroup.
@@ -2297,8 +2358,8 @@ module Aws::RedshiftServerless
2297
2358
  # @return [String]
2298
2359
  #
2299
2360
  # @!attribute [rw] source_arn
2300
- # The Amazon Resource Name (ARN) for the managed workgroup in the AWS
2301
- # Glue Data Catalog.
2361
+ # The Amazon Resource Name (ARN) for the managed workgroup in the Glue
2362
+ # Data Catalog.
2302
2363
  # @return [String]
2303
2364
  #
2304
2365
  # @!attribute [rw] status
@@ -2334,6 +2395,12 @@ module Aws::RedshiftServerless
2334
2395
  # the namespace.
2335
2396
  # @return [String]
2336
2397
  #
2398
+ # @!attribute [rw] catalog_arn
2399
+ # The Amazon Resource Name (ARN) of the Glue Data Catalog associated
2400
+ # with the namespace enabled with Amazon Redshift federated
2401
+ # permissions.
2402
+ # @return [String]
2403
+ #
2337
2404
  # @!attribute [rw] creation_date
2338
2405
  # The date of when the namespace was created.
2339
2406
  # @return [Time]
@@ -2356,6 +2423,12 @@ module Aws::RedshiftServerless
2356
2423
  # encrypt your data.
2357
2424
  # @return [String]
2358
2425
  #
2426
+ # @!attribute [rw] lakehouse_registration_status
2427
+ # The status of the lakehouse registration for the namespace.
2428
+ # Indicates whether the namespace is successfully registered with
2429
+ # Amazon Redshift federated permissions.
2430
+ # @return [String]
2431
+ #
2359
2432
  # @!attribute [rw] log_exports
2360
2433
  # The types of logs the namespace can export. Available export types
2361
2434
  # are User log, Connection log, and User activity log.
@@ -2390,11 +2463,13 @@ module Aws::RedshiftServerless
2390
2463
  :admin_password_secret_arn,
2391
2464
  :admin_password_secret_kms_key_id,
2392
2465
  :admin_username,
2466
+ :catalog_arn,
2393
2467
  :creation_date,
2394
2468
  :db_name,
2395
2469
  :default_iam_role_arn,
2396
2470
  :iam_roles,
2397
2471
  :kms_key_id,
2472
+ :lakehouse_registration_status,
2398
2473
  :log_exports,
2399
2474
  :namespace_arn,
2400
2475
  :namespace_id,
@@ -2570,8 +2645,7 @@ module Aws::RedshiftServerless
2570
2645
  #
2571
2646
  # @!attribute [rw] start_date
2572
2647
  # The start date for the serverless reservation. This is the date you
2573
- # specified for the reservation to start when you created the
2574
- # reservation.
2648
+ # created the reservation.
2575
2649
  # @return [Time]
2576
2650
  #
2577
2651
  # @!attribute [rw] status
@@ -3620,6 +3694,89 @@ module Aws::RedshiftServerless
3620
3694
  include Aws::Structure
3621
3695
  end
3622
3696
 
3697
+ # @!attribute [rw] catalog_name
3698
+ # The name of the Glue Data Catalog that will be associated with the
3699
+ # namespace enabled with Amazon Redshift federated permissions.
3700
+ #
3701
+ # Pattern: `^[a-z0-9_-]*[a-z]+[a-z0-9_-]*$`
3702
+ # @return [String]
3703
+ #
3704
+ # @!attribute [rw] dry_run
3705
+ # A boolean value that, if `true`, validates the request without
3706
+ # actually updating the lakehouse configuration. Use this to check for
3707
+ # errors before making changes.
3708
+ # @return [Boolean]
3709
+ #
3710
+ # @!attribute [rw] lakehouse_idc_application_arn
3711
+ # The Amazon Resource Name (ARN) of the IAM Identity Center
3712
+ # application used for enabling Amazon Web Services IAM Identity
3713
+ # Center trusted identity propagation on a namespace enabled with
3714
+ # Amazon Redshift federated permissions.
3715
+ # @return [String]
3716
+ #
3717
+ # @!attribute [rw] lakehouse_idc_registration
3718
+ # Modifies the Amazon Web Services IAM Identity Center trusted
3719
+ # identity propagation on a namespace enabled with Amazon Redshift
3720
+ # federated permissions. Valid values are `Associate` or
3721
+ # `Disassociate`.
3722
+ # @return [String]
3723
+ #
3724
+ # @!attribute [rw] lakehouse_registration
3725
+ # Specifies whether to register or deregister the namespace with
3726
+ # Amazon Redshift federated permissions. Valid values are `Register`
3727
+ # or `Deregister`.
3728
+ # @return [String]
3729
+ #
3730
+ # @!attribute [rw] namespace_name
3731
+ # The name of the namespace whose lakehouse configuration you want to
3732
+ # modify.
3733
+ # @return [String]
3734
+ #
3735
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-serverless-2021-04-21/UpdateLakehouseConfigurationRequest AWS API Documentation
3736
+ #
3737
+ class UpdateLakehouseConfigurationRequest < Struct.new(
3738
+ :catalog_name,
3739
+ :dry_run,
3740
+ :lakehouse_idc_application_arn,
3741
+ :lakehouse_idc_registration,
3742
+ :lakehouse_registration,
3743
+ :namespace_name)
3744
+ SENSITIVE = []
3745
+ include Aws::Structure
3746
+ end
3747
+
3748
+ # @!attribute [rw] catalog_arn
3749
+ # The Amazon Resource Name (ARN) of the Glue Data Catalog associated
3750
+ # with the lakehouse configuration.
3751
+ # @return [String]
3752
+ #
3753
+ # @!attribute [rw] lakehouse_idc_application_arn
3754
+ # The Amazon Resource Name (ARN) of the IAM Identity Center
3755
+ # application used for enabling Amazon Web Services IAM Identity
3756
+ # Center trusted identity propagation.
3757
+ # @return [String]
3758
+ #
3759
+ # @!attribute [rw] lakehouse_registration_status
3760
+ # The current status of the lakehouse registration. Indicates whether
3761
+ # the namespace is successfully registered with Amazon Redshift
3762
+ # federated permissions.
3763
+ # @return [String]
3764
+ #
3765
+ # @!attribute [rw] namespace_name
3766
+ # The name of the namespace.
3767
+ # @return [String]
3768
+ #
3769
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-serverless-2021-04-21/UpdateLakehouseConfigurationResponse AWS API Documentation
3770
+ #
3771
+ class UpdateLakehouseConfigurationResponse < Struct.new(
3772
+ :catalog_arn,
3773
+ :lakehouse_idc_application_arn,
3774
+ :lakehouse_registration_status,
3775
+ :namespace_name)
3776
+ SENSITIVE = []
3777
+ include Aws::Structure
3778
+ end
3779
+
3623
3780
  # @!attribute [rw] admin_password_secret_kms_key_id
3624
3781
  # The ID of the Key Management Service (KMS) key used to encrypt and
3625
3782
  # store the namespace's admin credentials secret. You can only use
@@ -4059,8 +4216,8 @@ module Aws::RedshiftServerless
4059
4216
  include Aws::Structure
4060
4217
  end
4061
4218
 
4062
- # The input failed to satisfy the constraints specified by an AWS
4063
- # service.
4219
+ # The input failed to satisfy the constraints specified by an Amazon Web
4220
+ # Services service.
4064
4221
  #
4065
4222
  # @!attribute [rw] message
4066
4223
  # @return [String]
@@ -54,7 +54,7 @@ module Aws::RedshiftServerless
54
54
  autoload :EndpointProvider, 'aws-sdk-redshiftserverless/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-redshiftserverless/endpoints'
56
56
 
57
- GEM_VERSION = '1.58.0'
57
+ GEM_VERSION = '1.60.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -409,6 +409,17 @@ module Aws
409
409
  ) -> _GetEndpointAccessResponseSuccess
410
410
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEndpointAccessResponseSuccess
411
411
 
412
+ interface _GetIdentityCenterAuthTokenResponseSuccess
413
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetIdentityCenterAuthTokenResponse]
414
+ def expiration_time: () -> ::Time
415
+ def token: () -> ::String
416
+ end
417
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RedshiftServerless/Client.html#get_identity_center_auth_token-instance_method
418
+ def get_identity_center_auth_token: (
419
+ workgroup_names: Array[::String]
420
+ ) -> _GetIdentityCenterAuthTokenResponseSuccess
421
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetIdentityCenterAuthTokenResponseSuccess
422
+
412
423
  interface _GetNamespaceResponseSuccess
413
424
  include ::Seahorse::Client::_ResponseSuccess[Types::GetNamespaceResponse]
414
425
  def namespace: () -> Types::Namespace
@@ -852,6 +863,24 @@ module Aws
852
863
  ) -> _UpdateEndpointAccessResponseSuccess
853
864
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEndpointAccessResponseSuccess
854
865
 
866
+ interface _UpdateLakehouseConfigurationResponseSuccess
867
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateLakehouseConfigurationResponse]
868
+ def catalog_arn: () -> ::String
869
+ def lakehouse_idc_application_arn: () -> ::String
870
+ def lakehouse_registration_status: () -> ::String
871
+ def namespace_name: () -> ::String
872
+ end
873
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RedshiftServerless/Client.html#update_lakehouse_configuration-instance_method
874
+ def update_lakehouse_configuration: (
875
+ ?catalog_name: ::String,
876
+ ?dry_run: bool,
877
+ ?lakehouse_idc_application_arn: ::String,
878
+ ?lakehouse_idc_registration: ("Associate" | "Disassociate"),
879
+ ?lakehouse_registration: ("Register" | "Deregister"),
880
+ namespace_name: ::String
881
+ ) -> _UpdateLakehouseConfigurationResponseSuccess
882
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLakehouseConfigurationResponseSuccess
883
+
855
884
  interface _UpdateNamespaceResponseSuccess
856
885
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateNamespaceResponse]
857
886
  def namespace: () -> Types::Namespace
data/sig/errors.rbs CHANGED
@@ -18,6 +18,9 @@ module Aws
18
18
  class ConflictException < ::Aws::Errors::ServiceError
19
19
  def message: () -> ::String
20
20
  end
21
+ class DryRunException < ::Aws::Errors::ServiceError
22
+ def message: () -> ::String
23
+ end
21
24
  class InsufficientCapacityException < ::Aws::Errors::ServiceError
22
25
  def message: () -> ::String
23
26
  end
data/sig/types.rbs CHANGED
@@ -286,6 +286,11 @@ module Aws::RedshiftServerless
286
286
  SENSITIVE: []
287
287
  end
288
288
 
289
+ class DryRunException
290
+ attr_accessor message: ::String
291
+ SENSITIVE: []
292
+ end
293
+
289
294
  class Endpoint
290
295
  attr_accessor address: ::String
291
296
  attr_accessor port: ::Integer
@@ -347,6 +352,17 @@ module Aws::RedshiftServerless
347
352
  SENSITIVE: []
348
353
  end
349
354
 
355
+ class GetIdentityCenterAuthTokenRequest
356
+ attr_accessor workgroup_names: ::Array[::String]
357
+ SENSITIVE: []
358
+ end
359
+
360
+ class GetIdentityCenterAuthTokenResponse
361
+ attr_accessor expiration_time: ::Time
362
+ attr_accessor token: ::String
363
+ SENSITIVE: []
364
+ end
365
+
350
366
  class GetNamespaceRequest
351
367
  attr_accessor namespace_name: ::String
352
368
  SENSITIVE: []
@@ -692,11 +708,13 @@ module Aws::RedshiftServerless
692
708
  attr_accessor admin_password_secret_arn: ::String
693
709
  attr_accessor admin_password_secret_kms_key_id: ::String
694
710
  attr_accessor admin_username: ::String
711
+ attr_accessor catalog_arn: ::String
695
712
  attr_accessor creation_date: ::Time
696
713
  attr_accessor db_name: ::String
697
714
  attr_accessor default_iam_role_arn: ::String
698
715
  attr_accessor iam_roles: ::Array[::String]
699
716
  attr_accessor kms_key_id: ::String
717
+ attr_accessor lakehouse_registration_status: ::String
700
718
  attr_accessor log_exports: ::Array[("useractivitylog" | "userlog" | "connectionlog")]
701
719
  attr_accessor namespace_arn: ::String
702
720
  attr_accessor namespace_id: ::String
@@ -1019,6 +1037,24 @@ module Aws::RedshiftServerless
1019
1037
  SENSITIVE: []
1020
1038
  end
1021
1039
 
1040
+ class UpdateLakehouseConfigurationRequest
1041
+ attr_accessor catalog_name: ::String
1042
+ attr_accessor dry_run: bool
1043
+ attr_accessor lakehouse_idc_application_arn: ::String
1044
+ attr_accessor lakehouse_idc_registration: ("Associate" | "Disassociate")
1045
+ attr_accessor lakehouse_registration: ("Register" | "Deregister")
1046
+ attr_accessor namespace_name: ::String
1047
+ SENSITIVE: []
1048
+ end
1049
+
1050
+ class UpdateLakehouseConfigurationResponse
1051
+ attr_accessor catalog_arn: ::String
1052
+ attr_accessor lakehouse_idc_application_arn: ::String
1053
+ attr_accessor lakehouse_registration_status: ::String
1054
+ attr_accessor namespace_name: ::String
1055
+ SENSITIVE: []
1056
+ end
1057
+
1022
1058
  class UpdateNamespaceRequest
1023
1059
  attr_accessor admin_password_secret_kms_key_id: ::String
1024
1060
  attr_accessor admin_user_password: ::String
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-redshiftserverless
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.58.0
4
+ version: 1.60.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.234.0
21
+ version: 3.239.1
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.234.0
31
+ version: 3.239.1
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement