aws-sdk-quicksight 1.110.0 → 1.112.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e76bec96f986655a1fe2924c4ea72026bd54ab406f1142d76e5d6d5968c72876
4
- data.tar.gz: 5641f27c4b330e5cdd0eb572eeb5b9366251e83110feb35229027dba885c534a
3
+ metadata.gz: f98993075a3c3b4f1c8f8dbeec9cce52723e3022ddf766f284596332edeee5f3
4
+ data.tar.gz: 8a3af87243431ef320da0ec48892d7ca1dcc87b79a35c58fd0d245793a44f876
5
5
  SHA512:
6
- metadata.gz: 023167a692186dfe4880c2ff5ebdd44a6d11afa7583816833779e309e3409f670b59b3ffedd6f1d6e1596dfc364978cad5c02d47daf2b019d1182cb9a9f5d596
7
- data.tar.gz: 2f6f158b73a1f5b00f0728ccecfc09db5a80b294e5fd3313c5cb32a71d6e0730705a8e1fb8b3b0b8b866eabf8144f8fea644f5f7b7788a8a8cdd4c0a38264bcc
6
+ metadata.gz: 3a262ba95c833e7ca142cace16465240666962bb44bbfa1faa740f5bf29c89d3703dd1cfa959e0f84aa6cfc066ce2768012eeca32b8044633e5b9dee9f4feb95
7
+ data.tar.gz: e794d24c5a6654c0eb8c1aee36babfe822d7675544b681f2cad05aac07bfaaadd6a6e244250a8ef543d4a26f16062262bccd04cdccfc0fa0cdc6e46176b7a84f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.112.0 (2024-05-16)
5
+ ------------------
6
+
7
+ * Feature - This release adds DescribeKeyRegistration and UpdateKeyRegistration APIs to manage QuickSight Customer Managed Keys (CMK).
8
+
9
+ 1.111.0 (2024-05-13)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.110.0 (2024-04-30)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.110.0
1
+ 1.112.0
@@ -301,8 +301,9 @@ module Aws::QuickSight
301
301
  #
302
302
  # @option options [String] :sdk_ua_app_id
303
303
  # A unique and opaque application ID that is appended to the
304
- # User-Agent header as app/<sdk_ua_app_id>. It should have a
305
- # maximum length of 50.
304
+ # User-Agent header as app/sdk_ua_app_id. It should have a
305
+ # maximum length of 50. This variable is sourced from environment
306
+ # variable AWS_SDK_UA_APP_ID or the shared config profile attribute sdk_ua_app_id.
306
307
  #
307
308
  # @option options [String] :secret_access_key
308
309
  #
@@ -1479,7 +1480,7 @@ module Aws::QuickSight
1479
1480
  # cluster_id: "ClusterId",
1480
1481
  # iam_parameters: {
1481
1482
  # role_arn: "RoleArn", # required
1482
- # database_user: "DatabaseUser", # required
1483
+ # database_user: "DatabaseUser",
1483
1484
  # database_groups: ["DatabaseGroup"],
1484
1485
  # auto_create_database_user: false,
1485
1486
  # },
@@ -1613,7 +1614,7 @@ module Aws::QuickSight
1613
1614
  # cluster_id: "ClusterId",
1614
1615
  # iam_parameters: {
1615
1616
  # role_arn: "RoleArn", # required
1616
- # database_user: "DatabaseUser", # required
1617
+ # database_user: "DatabaseUser",
1617
1618
  # database_groups: ["DatabaseGroup"],
1618
1619
  # auto_create_database_user: false,
1619
1620
  # },
@@ -6079,6 +6080,48 @@ module Aws::QuickSight
6079
6080
  req.send_request(options)
6080
6081
  end
6081
6082
 
6083
+ # Describes all customer managed key registrations in a Amazon
6084
+ # QuickSight account.
6085
+ #
6086
+ # @option params [required, String] :aws_account_id
6087
+ # The ID of the Amazon Web Services account that contains the customer
6088
+ # managed key registration that you want to describe.
6089
+ #
6090
+ # @option params [Boolean] :default_key_only
6091
+ # Determines whether the request returns the default key only.
6092
+ #
6093
+ # @return [Types::DescribeKeyRegistrationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6094
+ #
6095
+ # * {Types::DescribeKeyRegistrationResponse#aws_account_id #aws_account_id} => String
6096
+ # * {Types::DescribeKeyRegistrationResponse#key_registration #key_registration} => Array&lt;Types::RegisteredCustomerManagedKey&gt;
6097
+ # * {Types::DescribeKeyRegistrationResponse#request_id #request_id} => String
6098
+ # * {Types::DescribeKeyRegistrationResponse#status #status} => Integer
6099
+ #
6100
+ # @example Request syntax with placeholder values
6101
+ #
6102
+ # resp = client.describe_key_registration({
6103
+ # aws_account_id: "AwsAccountId", # required
6104
+ # default_key_only: false,
6105
+ # })
6106
+ #
6107
+ # @example Response structure
6108
+ #
6109
+ # resp.aws_account_id #=> String
6110
+ # resp.key_registration #=> Array
6111
+ # resp.key_registration[0].key_arn #=> String
6112
+ # resp.key_registration[0].default_key #=> Boolean
6113
+ # resp.request_id #=> String
6114
+ # resp.status #=> Integer
6115
+ #
6116
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeKeyRegistration AWS API Documentation
6117
+ #
6118
+ # @overload describe_key_registration(params = {})
6119
+ # @param [Hash] params ({})
6120
+ def describe_key_registration(params = {}, options = {})
6121
+ req = build_request(:describe_key_registration, params)
6122
+ req.send_request(options)
6123
+ end
6124
+
6082
6125
  # Describes the current namespace.
6083
6126
  #
6084
6127
  # @option params [required, String] :aws_account_id
@@ -9450,6 +9493,20 @@ module Aws::QuickSight
9450
9493
  # * `ADMIN`: A user who is an author, who can also manage Amazon
9451
9494
  # QuickSight settings.
9452
9495
  #
9496
+ # * `READER_PRO`: Reader Pro adds Generative BI capabilities to the
9497
+ # Reader role. Reader Pros have access to Amazon Q in Amazon
9498
+ # QuickSight, can build stories with Amazon Q, and can generate
9499
+ # executive summaries from dashboards.
9500
+ #
9501
+ # * `AUTHOR_PRO`: Author Pro adds Generative BI capabilities to the
9502
+ # Author role. Author Pros can author dashboards with natural language
9503
+ # with Amazon Q, build stories with Amazon Q, create Topics for
9504
+ # Q&amp;A, and generate executive summaries from dashboards.
9505
+ #
9506
+ # * `ADMIN_PRO`: Admin Pros are Author Pros who can also manage Amazon
9507
+ # QuickSight administrative settings. Admin Pro users are billed at
9508
+ # Author Pro pricing.
9509
+ #
9453
9510
  # * `RESTRICTED_READER`: This role isn't currently available for use.
9454
9511
  #
9455
9512
  # * `RESTRICTED_AUTHOR`: This role isn't currently available for use.
@@ -10354,7 +10411,7 @@ module Aws::QuickSight
10354
10411
  # cluster_id: "ClusterId",
10355
10412
  # iam_parameters: {
10356
10413
  # role_arn: "RoleArn", # required
10357
- # database_user: "DatabaseUser", # required
10414
+ # database_user: "DatabaseUser",
10358
10415
  # database_groups: ["DatabaseGroup"],
10359
10416
  # auto_create_database_user: false,
10360
10417
  # },
@@ -11895,7 +11952,7 @@ module Aws::QuickSight
11895
11952
  # cluster_id: "ClusterId",
11896
11953
  # iam_parameters: {
11897
11954
  # role_arn: "RoleArn", # required
11898
- # database_user: "DatabaseUser", # required
11955
+ # database_user: "DatabaseUser",
11899
11956
  # database_groups: ["DatabaseGroup"],
11900
11957
  # auto_create_database_user: false,
11901
11958
  # },
@@ -12029,7 +12086,7 @@ module Aws::QuickSight
12029
12086
  # cluster_id: "ClusterId",
12030
12087
  # iam_parameters: {
12031
12088
  # role_arn: "RoleArn", # required
12032
- # database_user: "DatabaseUser", # required
12089
+ # database_user: "DatabaseUser",
12033
12090
  # database_groups: ["DatabaseGroup"],
12034
12091
  # auto_create_database_user: false,
12035
12092
  # },
@@ -12529,6 +12586,55 @@ module Aws::QuickSight
12529
12586
  req.send_request(options)
12530
12587
  end
12531
12588
 
12589
+ # Updates a customer managed key in a Amazon QuickSight account.
12590
+ #
12591
+ # @option params [required, String] :aws_account_id
12592
+ # The ID of the Amazon Web Services account that contains the customer
12593
+ # managed key registration that you want to update.
12594
+ #
12595
+ # @option params [required, Array<Types::RegisteredCustomerManagedKey>] :key_registration
12596
+ # A list of `RegisteredCustomerManagedKey` objects to be updated to the
12597
+ # Amazon QuickSight account.
12598
+ #
12599
+ # @return [Types::UpdateKeyRegistrationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
12600
+ #
12601
+ # * {Types::UpdateKeyRegistrationResponse#failed_key_registration #failed_key_registration} => Array&lt;Types::FailedKeyRegistrationEntry&gt;
12602
+ # * {Types::UpdateKeyRegistrationResponse#successful_key_registration #successful_key_registration} => Array&lt;Types::SuccessfulKeyRegistrationEntry&gt;
12603
+ # * {Types::UpdateKeyRegistrationResponse#request_id #request_id} => String
12604
+ #
12605
+ # @example Request syntax with placeholder values
12606
+ #
12607
+ # resp = client.update_key_registration({
12608
+ # aws_account_id: "AwsAccountId", # required
12609
+ # key_registration: [ # required
12610
+ # {
12611
+ # key_arn: "String",
12612
+ # default_key: false,
12613
+ # },
12614
+ # ],
12615
+ # })
12616
+ #
12617
+ # @example Response structure
12618
+ #
12619
+ # resp.failed_key_registration #=> Array
12620
+ # resp.failed_key_registration[0].key_arn #=> String
12621
+ # resp.failed_key_registration[0].message #=> String
12622
+ # resp.failed_key_registration[0].status_code #=> Integer
12623
+ # resp.failed_key_registration[0].sender_fault #=> Boolean
12624
+ # resp.successful_key_registration #=> Array
12625
+ # resp.successful_key_registration[0].key_arn #=> String
12626
+ # resp.successful_key_registration[0].status_code #=> Integer
12627
+ # resp.request_id #=> String
12628
+ #
12629
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateKeyRegistration AWS API Documentation
12630
+ #
12631
+ # @overload update_key_registration(params = {})
12632
+ # @param [Hash] params ({})
12633
+ def update_key_registration(params = {}, options = {})
12634
+ req = build_request(:update_key_registration, params)
12635
+ req.send_request(options)
12636
+ end
12637
+
12532
12638
  # Use the `UpdatePublicSharingSettings` operation to turn on or turn off
12533
12639
  # the public sharing settings of an Amazon QuickSight dashboard.
12534
12640
  #
@@ -13582,9 +13688,9 @@ module Aws::QuickSight
13582
13688
  # QuickSight settings.
13583
13689
  #
13584
13690
  # * `READER_PRO`: Reader Pro adds Generative BI capabilities to the
13585
- # Reader role. Reader Pros have access to Amazon Q Business, can build
13586
- # stories with Amazon Q, and can generate executive summaries from
13587
- # dashboards.
13691
+ # Reader role. Reader Pros have access to Amazon Q in Amazon
13692
+ # QuickSight, can build stories with Amazon Q, and can generate
13693
+ # executive summaries from dashboards.
13588
13694
  #
13589
13695
  # * `AUTHOR_PRO`: Author Pro adds Generative BI capabilities to the
13590
13696
  # Author role. Author Pros can author dashboards with natural language
@@ -13787,7 +13893,7 @@ module Aws::QuickSight
13787
13893
  params: params,
13788
13894
  config: config)
13789
13895
  context[:gem_name] = 'aws-sdk-quicksight'
13790
- context[:gem_version] = '1.110.0'
13896
+ context[:gem_version] = '1.112.0'
13791
13897
  Seahorse::Client::Request.new(handlers, context)
13792
13898
  end
13793
13899
 
@@ -631,6 +631,8 @@ module Aws::QuickSight
631
631
  DescribeIngestionResponse = Shapes::StructureShape.new(name: 'DescribeIngestionResponse')
632
632
  DescribeIpRestrictionRequest = Shapes::StructureShape.new(name: 'DescribeIpRestrictionRequest')
633
633
  DescribeIpRestrictionResponse = Shapes::StructureShape.new(name: 'DescribeIpRestrictionResponse')
634
+ DescribeKeyRegistrationRequest = Shapes::StructureShape.new(name: 'DescribeKeyRegistrationRequest')
635
+ DescribeKeyRegistrationResponse = Shapes::StructureShape.new(name: 'DescribeKeyRegistrationResponse')
634
636
  DescribeNamespaceRequest = Shapes::StructureShape.new(name: 'DescribeNamespaceRequest')
635
637
  DescribeNamespaceResponse = Shapes::StructureShape.new(name: 'DescribeNamespaceResponse')
636
638
  DescribeRefreshScheduleRequest = Shapes::StructureShape.new(name: 'DescribeRefreshScheduleRequest')
@@ -696,6 +698,8 @@ module Aws::QuickSight
696
698
  ExportToCSVOption = Shapes::StructureShape.new(name: 'ExportToCSVOption')
697
699
  ExportWithHiddenFieldsOption = Shapes::StructureShape.new(name: 'ExportWithHiddenFieldsOption')
698
700
  Expression = Shapes::StringShape.new(name: 'Expression')
701
+ FailedKeyRegistrationEntries = Shapes::ListShape.new(name: 'FailedKeyRegistrationEntries')
702
+ FailedKeyRegistrationEntry = Shapes::StructureShape.new(name: 'FailedKeyRegistrationEntry')
699
703
  FieldBasedTooltip = Shapes::StructureShape.new(name: 'FieldBasedTooltip')
700
704
  FieldFolder = Shapes::StructureShape.new(name: 'FieldFolder')
701
705
  FieldFolderDescription = Shapes::StringShape.new(name: 'FieldFolderDescription')
@@ -942,6 +946,7 @@ module Aws::QuickSight
942
946
  KPIVisualLayoutOptions = Shapes::StructureShape.new(name: 'KPIVisualLayoutOptions')
943
947
  KPIVisualStandardLayout = Shapes::StructureShape.new(name: 'KPIVisualStandardLayout')
944
948
  KPIVisualStandardLayoutType = Shapes::StringShape.new(name: 'KPIVisualStandardLayoutType')
949
+ KeyRegistration = Shapes::ListShape.new(name: 'KeyRegistration')
945
950
  LabelOptions = Shapes::StructureShape.new(name: 'LabelOptions')
946
951
  Latitude = Shapes::FloatShape.new(name: 'Latitude')
947
952
  Layout = Shapes::StructureShape.new(name: 'Layout')
@@ -1261,6 +1266,7 @@ module Aws::QuickSight
1261
1266
  RefreshSchedules = Shapes::ListShape.new(name: 'RefreshSchedules')
1262
1267
  RegisterUserRequest = Shapes::StructureShape.new(name: 'RegisterUserRequest')
1263
1268
  RegisterUserResponse = Shapes::StructureShape.new(name: 'RegisterUserResponse')
1269
+ RegisteredCustomerManagedKey = Shapes::StructureShape.new(name: 'RegisteredCustomerManagedKey')
1264
1270
  RegisteredUserConsoleFeatureConfigurations = Shapes::StructureShape.new(name: 'RegisteredUserConsoleFeatureConfigurations')
1265
1271
  RegisteredUserDashboardEmbeddingConfiguration = Shapes::StructureShape.new(name: 'RegisteredUserDashboardEmbeddingConfiguration')
1266
1272
  RegisteredUserDashboardFeatureConfigurations = Shapes::StructureShape.new(name: 'RegisteredUserDashboardFeatureConfigurations')
@@ -1498,6 +1504,8 @@ module Aws::QuickSight
1498
1504
  SubnetId = Shapes::StringShape.new(name: 'SubnetId')
1499
1505
  SubnetIdList = Shapes::ListShape.new(name: 'SubnetIdList')
1500
1506
  SubtotalOptions = Shapes::StructureShape.new(name: 'SubtotalOptions')
1507
+ SuccessfulKeyRegistrationEntries = Shapes::ListShape.new(name: 'SuccessfulKeyRegistrationEntries')
1508
+ SuccessfulKeyRegistrationEntry = Shapes::StructureShape.new(name: 'SuccessfulKeyRegistrationEntry')
1501
1509
  Suffix = Shapes::StringShape.new(name: 'Suffix')
1502
1510
  Synonyms = Shapes::ListShape.new(name: 'Synonyms')
1503
1511
  TableAggregatedFieldWells = Shapes::StructureShape.new(name: 'TableAggregatedFieldWells')
@@ -1711,6 +1719,8 @@ module Aws::QuickSight
1711
1719
  UpdateIdentityPropagationConfigResponse = Shapes::StructureShape.new(name: 'UpdateIdentityPropagationConfigResponse')
1712
1720
  UpdateIpRestrictionRequest = Shapes::StructureShape.new(name: 'UpdateIpRestrictionRequest')
1713
1721
  UpdateIpRestrictionResponse = Shapes::StructureShape.new(name: 'UpdateIpRestrictionResponse')
1722
+ UpdateKeyRegistrationRequest = Shapes::StructureShape.new(name: 'UpdateKeyRegistrationRequest')
1723
+ UpdateKeyRegistrationResponse = Shapes::StructureShape.new(name: 'UpdateKeyRegistrationResponse')
1714
1724
  UpdateLinkPermissionList = Shapes::ListShape.new(name: 'UpdateLinkPermissionList')
1715
1725
  UpdatePublicSharingSettingsRequest = Shapes::StructureShape.new(name: 'UpdatePublicSharingSettingsRequest')
1716
1726
  UpdatePublicSharingSettingsResponse = Shapes::StructureShape.new(name: 'UpdatePublicSharingSettingsResponse')
@@ -4312,6 +4322,16 @@ module Aws::QuickSight
4312
4322
  DescribeIpRestrictionResponse.add_member(:status, Shapes::ShapeRef.new(shape: StatusCode, location: "statusCode", location_name: "Status"))
4313
4323
  DescribeIpRestrictionResponse.struct_class = Types::DescribeIpRestrictionResponse
4314
4324
 
4325
+ DescribeKeyRegistrationRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
4326
+ DescribeKeyRegistrationRequest.add_member(:default_key_only, Shapes::ShapeRef.new(shape: Boolean, location: "querystring", location_name: "default-key-only"))
4327
+ DescribeKeyRegistrationRequest.struct_class = Types::DescribeKeyRegistrationRequest
4328
+
4329
+ DescribeKeyRegistrationResponse.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, location_name: "AwsAccountId"))
4330
+ DescribeKeyRegistrationResponse.add_member(:key_registration, Shapes::ShapeRef.new(shape: KeyRegistration, location_name: "KeyRegistration"))
4331
+ DescribeKeyRegistrationResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "RequestId"))
4332
+ DescribeKeyRegistrationResponse.add_member(:status, Shapes::ShapeRef.new(shape: StatusCode, location_name: "Status"))
4333
+ DescribeKeyRegistrationResponse.struct_class = Types::DescribeKeyRegistrationResponse
4334
+
4315
4335
  DescribeNamespaceRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
4316
4336
  DescribeNamespaceRequest.add_member(:namespace, Shapes::ShapeRef.new(shape: Namespace, required: true, location: "uri", location_name: "Namespace"))
4317
4337
  DescribeNamespaceRequest.struct_class = Types::DescribeNamespaceRequest
@@ -4583,6 +4603,14 @@ module Aws::QuickSight
4583
4603
  ExportWithHiddenFieldsOption.add_member(:availability_status, Shapes::ShapeRef.new(shape: DashboardBehavior, location_name: "AvailabilityStatus"))
4584
4604
  ExportWithHiddenFieldsOption.struct_class = Types::ExportWithHiddenFieldsOption
4585
4605
 
4606
+ FailedKeyRegistrationEntries.member = Shapes::ShapeRef.new(shape: FailedKeyRegistrationEntry)
4607
+
4608
+ FailedKeyRegistrationEntry.add_member(:key_arn, Shapes::ShapeRef.new(shape: String, location_name: "KeyArn"))
4609
+ FailedKeyRegistrationEntry.add_member(:message, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location_name: "Message"))
4610
+ FailedKeyRegistrationEntry.add_member(:status_code, Shapes::ShapeRef.new(shape: StatusCode, required: true, location_name: "StatusCode"))
4611
+ FailedKeyRegistrationEntry.add_member(:sender_fault, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "SenderFault"))
4612
+ FailedKeyRegistrationEntry.struct_class = Types::FailedKeyRegistrationEntry
4613
+
4586
4614
  FieldBasedTooltip.add_member(:aggregation_visibility, Shapes::ShapeRef.new(shape: Visibility, location_name: "AggregationVisibility"))
4587
4615
  FieldBasedTooltip.add_member(:tooltip_title_type, Shapes::ShapeRef.new(shape: TooltipTitleType, location_name: "TooltipTitleType"))
4588
4616
  FieldBasedTooltip.add_member(:tooltip_fields, Shapes::ShapeRef.new(shape: TooltipItemList, location_name: "TooltipFields"))
@@ -5460,6 +5488,8 @@ module Aws::QuickSight
5460
5488
  KPIVisualStandardLayout.add_member(:type, Shapes::ShapeRef.new(shape: KPIVisualStandardLayoutType, required: true, location_name: "Type"))
5461
5489
  KPIVisualStandardLayout.struct_class = Types::KPIVisualStandardLayout
5462
5490
 
5491
+ KeyRegistration.member = Shapes::ShapeRef.new(shape: RegisteredCustomerManagedKey)
5492
+
5463
5493
  LabelOptions.add_member(:visibility, Shapes::ShapeRef.new(shape: Visibility, location_name: "Visibility"))
5464
5494
  LabelOptions.add_member(:font_configuration, Shapes::ShapeRef.new(shape: FontConfiguration, location_name: "FontConfiguration"))
5465
5495
  LabelOptions.add_member(:custom_label, Shapes::ShapeRef.new(shape: String, location_name: "CustomLabel"))
@@ -6567,7 +6597,7 @@ module Aws::QuickSight
6567
6597
  RdsParameters.struct_class = Types::RdsParameters
6568
6598
 
6569
6599
  RedshiftIAMParameters.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "RoleArn"))
6570
- RedshiftIAMParameters.add_member(:database_user, Shapes::ShapeRef.new(shape: DatabaseUser, required: true, location_name: "DatabaseUser"))
6600
+ RedshiftIAMParameters.add_member(:database_user, Shapes::ShapeRef.new(shape: DatabaseUser, location_name: "DatabaseUser"))
6571
6601
  RedshiftIAMParameters.add_member(:database_groups, Shapes::ShapeRef.new(shape: DatabaseGroupList, location_name: "DatabaseGroups"))
6572
6602
  RedshiftIAMParameters.add_member(:auto_create_database_user, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutoCreateDatabaseUser"))
6573
6603
  RedshiftIAMParameters.struct_class = Types::RedshiftIAMParameters
@@ -6660,6 +6690,10 @@ module Aws::QuickSight
6660
6690
  RegisterUserResponse.add_member(:status, Shapes::ShapeRef.new(shape: StatusCode, location: "statusCode", location_name: "Status"))
6661
6691
  RegisterUserResponse.struct_class = Types::RegisterUserResponse
6662
6692
 
6693
+ RegisteredCustomerManagedKey.add_member(:key_arn, Shapes::ShapeRef.new(shape: String, location_name: "KeyArn"))
6694
+ RegisteredCustomerManagedKey.add_member(:default_key, Shapes::ShapeRef.new(shape: Boolean, location_name: "DefaultKey"))
6695
+ RegisteredCustomerManagedKey.struct_class = Types::RegisteredCustomerManagedKey
6696
+
6663
6697
  RegisteredUserConsoleFeatureConfigurations.add_member(:state_persistence, Shapes::ShapeRef.new(shape: StatePersistenceConfigurations, location_name: "StatePersistence"))
6664
6698
  RegisteredUserConsoleFeatureConfigurations.struct_class = Types::RegisteredUserConsoleFeatureConfigurations
6665
6699
 
@@ -7352,6 +7386,12 @@ module Aws::QuickSight
7352
7386
  SubtotalOptions.add_member(:style_targets, Shapes::ShapeRef.new(shape: TableStyleTargetList, location_name: "StyleTargets"))
7353
7387
  SubtotalOptions.struct_class = Types::SubtotalOptions
7354
7388
 
7389
+ SuccessfulKeyRegistrationEntries.member = Shapes::ShapeRef.new(shape: SuccessfulKeyRegistrationEntry)
7390
+
7391
+ SuccessfulKeyRegistrationEntry.add_member(:key_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "KeyArn"))
7392
+ SuccessfulKeyRegistrationEntry.add_member(:status_code, Shapes::ShapeRef.new(shape: StatusCode, required: true, location_name: "StatusCode"))
7393
+ SuccessfulKeyRegistrationEntry.struct_class = Types::SuccessfulKeyRegistrationEntry
7394
+
7355
7395
  Synonyms.member = Shapes::ShapeRef.new(shape: LimitedString)
7356
7396
 
7357
7397
  TableAggregatedFieldWells.add_member(:group_by, Shapes::ShapeRef.new(shape: DimensionFieldList, location_name: "GroupBy"))
@@ -8282,6 +8322,15 @@ module Aws::QuickSight
8282
8322
  UpdateIpRestrictionResponse.add_member(:status, Shapes::ShapeRef.new(shape: StatusCode, location: "statusCode", location_name: "Status"))
8283
8323
  UpdateIpRestrictionResponse.struct_class = Types::UpdateIpRestrictionResponse
8284
8324
 
8325
+ UpdateKeyRegistrationRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
8326
+ UpdateKeyRegistrationRequest.add_member(:key_registration, Shapes::ShapeRef.new(shape: KeyRegistration, required: true, location_name: "KeyRegistration"))
8327
+ UpdateKeyRegistrationRequest.struct_class = Types::UpdateKeyRegistrationRequest
8328
+
8329
+ UpdateKeyRegistrationResponse.add_member(:failed_key_registration, Shapes::ShapeRef.new(shape: FailedKeyRegistrationEntries, location_name: "FailedKeyRegistration"))
8330
+ UpdateKeyRegistrationResponse.add_member(:successful_key_registration, Shapes::ShapeRef.new(shape: SuccessfulKeyRegistrationEntries, location_name: "SuccessfulKeyRegistration"))
8331
+ UpdateKeyRegistrationResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "RequestId"))
8332
+ UpdateKeyRegistrationResponse.struct_class = Types::UpdateKeyRegistrationResponse
8333
+
8285
8334
  UpdateLinkPermissionList.member = Shapes::ShapeRef.new(shape: ResourcePermission)
8286
8335
 
8287
8336
  UpdatePublicSharingSettingsRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
@@ -9843,6 +9892,18 @@ module Aws::QuickSight
9843
9892
  o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
9844
9893
  end)
9845
9894
 
9895
+ api.add_operation(:describe_key_registration, Seahorse::Model::Operation.new.tap do |o|
9896
+ o.name = "DescribeKeyRegistration"
9897
+ o.http_method = "GET"
9898
+ o.http_request_uri = "/accounts/{AwsAccountId}/key-registration"
9899
+ o.input = Shapes::ShapeRef.new(shape: DescribeKeyRegistrationRequest)
9900
+ o.output = Shapes::ShapeRef.new(shape: DescribeKeyRegistrationResponse)
9901
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
9902
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
9903
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
9904
+ o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
9905
+ end)
9906
+
9846
9907
  api.add_operation(:describe_namespace, Seahorse::Model::Operation.new.tap do |o|
9847
9908
  o.name = "DescribeNamespace"
9848
9909
  o.http_method = "GET"
@@ -11229,6 +11290,18 @@ module Aws::QuickSight
11229
11290
  o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
11230
11291
  end)
11231
11292
 
11293
+ api.add_operation(:update_key_registration, Seahorse::Model::Operation.new.tap do |o|
11294
+ o.name = "UpdateKeyRegistration"
11295
+ o.http_method = "POST"
11296
+ o.http_request_uri = "/accounts/{AwsAccountId}/key-registration"
11297
+ o.input = Shapes::ShapeRef.new(shape: UpdateKeyRegistrationRequest)
11298
+ o.output = Shapes::ShapeRef.new(shape: UpdateKeyRegistrationResponse)
11299
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
11300
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
11301
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
11302
+ o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
11303
+ end)
11304
+
11232
11305
  api.add_operation(:update_public_sharing_settings, Seahorse::Model::Operation.new.tap do |o|
11233
11306
  o.name = "UpdatePublicSharingSettings"
11234
11307
  o.http_method = "PUT"
@@ -1062,6 +1062,20 @@ module Aws::QuickSight
1062
1062
  end
1063
1063
  end
1064
1064
 
1065
+ class DescribeKeyRegistration
1066
+ def self.build(context)
1067
+ unless context.config.regional_endpoint
1068
+ endpoint = context.config.endpoint.to_s
1069
+ end
1070
+ Aws::QuickSight::EndpointParameters.new(
1071
+ region: context.config.region,
1072
+ use_dual_stack: context.config.use_dualstack_endpoint,
1073
+ use_fips: context.config.use_fips_endpoint,
1074
+ endpoint: endpoint,
1075
+ )
1076
+ end
1077
+ end
1078
+
1065
1079
  class DescribeNamespace
1066
1080
  def self.build(context)
1067
1081
  unless context.config.regional_endpoint
@@ -2210,6 +2224,20 @@ module Aws::QuickSight
2210
2224
  end
2211
2225
  end
2212
2226
 
2227
+ class UpdateKeyRegistration
2228
+ def self.build(context)
2229
+ unless context.config.regional_endpoint
2230
+ endpoint = context.config.endpoint.to_s
2231
+ end
2232
+ Aws::QuickSight::EndpointParameters.new(
2233
+ region: context.config.region,
2234
+ use_dual_stack: context.config.use_dualstack_endpoint,
2235
+ use_fips: context.config.use_fips_endpoint,
2236
+ endpoint: endpoint,
2237
+ )
2238
+ end
2239
+ end
2240
+
2213
2241
  class UpdatePublicSharingSettings
2214
2242
  def self.build(context)
2215
2243
  unless context.config.regional_endpoint
@@ -208,6 +208,8 @@ module Aws::QuickSight
208
208
  Aws::QuickSight::Endpoints::DescribeIngestion.build(context)
209
209
  when :describe_ip_restriction
210
210
  Aws::QuickSight::Endpoints::DescribeIpRestriction.build(context)
211
+ when :describe_key_registration
212
+ Aws::QuickSight::Endpoints::DescribeKeyRegistration.build(context)
211
213
  when :describe_namespace
212
214
  Aws::QuickSight::Endpoints::DescribeNamespace.build(context)
213
215
  when :describe_refresh_schedule
@@ -372,6 +374,8 @@ module Aws::QuickSight
372
374
  Aws::QuickSight::Endpoints::UpdateIdentityPropagationConfig.build(context)
373
375
  when :update_ip_restriction
374
376
  Aws::QuickSight::Endpoints::UpdateIpRestriction.build(context)
377
+ when :update_key_registration
378
+ Aws::QuickSight::Endpoints::UpdateKeyRegistration.build(context)
375
379
  when :update_public_sharing_settings
376
380
  Aws::QuickSight::Endpoints::UpdatePublicSharingSettings.build(context)
377
381
  when :update_refresh_schedule
@@ -12318,6 +12318,53 @@ module Aws::QuickSight
12318
12318
  include Aws::Structure
12319
12319
  end
12320
12320
 
12321
+ # @!attribute [rw] aws_account_id
12322
+ # The ID of the Amazon Web Services account that contains the customer
12323
+ # managed key registration that you want to describe.
12324
+ # @return [String]
12325
+ #
12326
+ # @!attribute [rw] default_key_only
12327
+ # Determines whether the request returns the default key only.
12328
+ # @return [Boolean]
12329
+ #
12330
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeKeyRegistrationRequest AWS API Documentation
12331
+ #
12332
+ class DescribeKeyRegistrationRequest < Struct.new(
12333
+ :aws_account_id,
12334
+ :default_key_only)
12335
+ SENSITIVE = []
12336
+ include Aws::Structure
12337
+ end
12338
+
12339
+ # @!attribute [rw] aws_account_id
12340
+ # The ID of the Amazon Web Services account that contains the customer
12341
+ # managed key registration specified in the request.
12342
+ # @return [String]
12343
+ #
12344
+ # @!attribute [rw] key_registration
12345
+ # A list of `RegisteredCustomerManagedKey` objects in a Amazon
12346
+ # QuickSight account.
12347
+ # @return [Array<Types::RegisteredCustomerManagedKey>]
12348
+ #
12349
+ # @!attribute [rw] request_id
12350
+ # The Amazon Web Services request ID for this operation.
12351
+ # @return [String]
12352
+ #
12353
+ # @!attribute [rw] status
12354
+ # The HTTP status of the request.
12355
+ # @return [Integer]
12356
+ #
12357
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeKeyRegistrationResponse AWS API Documentation
12358
+ #
12359
+ class DescribeKeyRegistrationResponse < Struct.new(
12360
+ :aws_account_id,
12361
+ :key_registration,
12362
+ :request_id,
12363
+ :status)
12364
+ SENSITIVE = []
12365
+ include Aws::Structure
12366
+ end
12367
+
12321
12368
  # @!attribute [rw] aws_account_id
12322
12369
  # The ID for the Amazon Web Services account that contains the Amazon
12323
12370
  # QuickSight namespace that you want to describe.
@@ -13624,6 +13671,42 @@ module Aws::QuickSight
13624
13671
  include Aws::Structure
13625
13672
  end
13626
13673
 
13674
+ # An entry that appears when a `KeyRegistration` update to Amazon
13675
+ # QuickSight fails.
13676
+ #
13677
+ # @!attribute [rw] key_arn
13678
+ # The ARN of the KMS key that failed to update.
13679
+ # @return [String]
13680
+ #
13681
+ # @!attribute [rw] message
13682
+ # A message that provides information about why a
13683
+ # `FailedKeyRegistrationEntry` error occurred.
13684
+ # @return [String]
13685
+ #
13686
+ # @!attribute [rw] status_code
13687
+ # The HTTP status of a `FailedKeyRegistrationEntry` error.
13688
+ # @return [Integer]
13689
+ #
13690
+ # @!attribute [rw] sender_fault
13691
+ # A boolean that indicates whether a `FailedKeyRegistrationEntry`
13692
+ # resulted from user error. If the value of this property is `True`,
13693
+ # the error was caused by user error. If the value of this property is
13694
+ # `False`, the error occurred on the backend. If your job continues
13695
+ # fail and with a `False` `SenderFault` value, contact Amazon Web
13696
+ # Services Support.
13697
+ # @return [Boolean]
13698
+ #
13699
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/FailedKeyRegistrationEntry AWS API Documentation
13700
+ #
13701
+ class FailedKeyRegistrationEntry < Struct.new(
13702
+ :key_arn,
13703
+ :message,
13704
+ :status_code,
13705
+ :sender_fault)
13706
+ SENSITIVE = []
13707
+ include Aws::Structure
13708
+ end
13709
+
13627
13710
  # The setup for the detailed tooltip.
13628
13711
  #
13629
13712
  # @!attribute [rw] aggregation_visibility
@@ -23701,6 +23784,20 @@ module Aws::QuickSight
23701
23784
  # * `ADMIN`: A user who is an author, who can also manage Amazon
23702
23785
  # QuickSight settings.
23703
23786
  #
23787
+ # * `READER_PRO`: Reader Pro adds Generative BI capabilities to the
23788
+ # Reader role. Reader Pros have access to Amazon Q in Amazon
23789
+ # QuickSight, can build stories with Amazon Q, and can generate
23790
+ # executive summaries from dashboards.
23791
+ #
23792
+ # * `AUTHOR_PRO`: Author Pro adds Generative BI capabilities to the
23793
+ # Author role. Author Pros can author dashboards with natural
23794
+ # language with Amazon Q, build stories with Amazon Q, create Topics
23795
+ # for Q&amp;A, and generate executive summaries from dashboards.
23796
+ #
23797
+ # * `ADMIN_PRO`: Admin Pros are Author Pros who can also manage Amazon
23798
+ # QuickSight administrative settings. Admin Pro users are billed at
23799
+ # Author Pro pricing.
23800
+ #
23704
23801
  # * `RESTRICTED_READER`: This role isn't currently available for use.
23705
23802
  #
23706
23803
  # * `RESTRICTED_AUTHOR`: This role isn't currently available for use.
@@ -23855,6 +23952,34 @@ module Aws::QuickSight
23855
23952
  include Aws::Structure
23856
23953
  end
23857
23954
 
23955
+ # A customer managed key structure that contains the information listed
23956
+ # below:
23957
+ #
23958
+ # * `KeyArn` - The ARN of a KMS key that is registered to a Amazon
23959
+ # QuickSight account for encryption and decryption use.
23960
+ #
23961
+ # * `DefaultKey` - Indicates whether the current key is set as the
23962
+ # default key for encryption and decryption use.
23963
+ #
23964
+ # @!attribute [rw] key_arn
23965
+ # The ARN of the KMS key that is registered to a Amazon QuickSight
23966
+ # account for encryption and decryption use.
23967
+ # @return [String]
23968
+ #
23969
+ # @!attribute [rw] default_key
23970
+ # Indicates whether a `RegisteredCustomerManagedKey` is set as the
23971
+ # default key for encryption and decryption use.
23972
+ # @return [Boolean]
23973
+ #
23974
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/RegisteredCustomerManagedKey AWS API Documentation
23975
+ #
23976
+ class RegisteredCustomerManagedKey < Struct.new(
23977
+ :key_arn,
23978
+ :default_key)
23979
+ SENSITIVE = []
23980
+ include Aws::Structure
23981
+ end
23982
+
23858
23983
  # The feature configurations of an embedded Amazon QuickSight console.
23859
23984
  #
23860
23985
  # @!attribute [rw] state_persistence
@@ -27295,6 +27420,27 @@ module Aws::QuickSight
27295
27420
  include Aws::Structure
27296
27421
  end
27297
27422
 
27423
+ # A success entry that occurs when a `KeyRegistration` job is
27424
+ # successfully applied to the Amazon QuickSight account.
27425
+ #
27426
+ # @!attribute [rw] key_arn
27427
+ # The ARN of the KMS key that is associated with the
27428
+ # `SuccessfulKeyRegistrationEntry` entry.
27429
+ # @return [String]
27430
+ #
27431
+ # @!attribute [rw] status_code
27432
+ # The HTTP status of a `SuccessfulKeyRegistrationEntry` entry.
27433
+ # @return [Integer]
27434
+ #
27435
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SuccessfulKeyRegistrationEntry AWS API Documentation
27436
+ #
27437
+ class SuccessfulKeyRegistrationEntry < Struct.new(
27438
+ :key_arn,
27439
+ :status_code)
27440
+ SENSITIVE = []
27441
+ include Aws::Structure
27442
+ end
27443
+
27298
27444
  # The aggregated field well for the table.
27299
27445
  #
27300
27446
  # @!attribute [rw] group_by
@@ -31845,6 +31991,49 @@ module Aws::QuickSight
31845
31991
  include Aws::Structure
31846
31992
  end
31847
31993
 
31994
+ # @!attribute [rw] aws_account_id
31995
+ # The ID of the Amazon Web Services account that contains the customer
31996
+ # managed key registration that you want to update.
31997
+ # @return [String]
31998
+ #
31999
+ # @!attribute [rw] key_registration
32000
+ # A list of `RegisteredCustomerManagedKey` objects to be updated to
32001
+ # the Amazon QuickSight account.
32002
+ # @return [Array<Types::RegisteredCustomerManagedKey>]
32003
+ #
32004
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateKeyRegistrationRequest AWS API Documentation
32005
+ #
32006
+ class UpdateKeyRegistrationRequest < Struct.new(
32007
+ :aws_account_id,
32008
+ :key_registration)
32009
+ SENSITIVE = []
32010
+ include Aws::Structure
32011
+ end
32012
+
32013
+ # @!attribute [rw] failed_key_registration
32014
+ # A list of all customer managed key registrations that failed to
32015
+ # update.
32016
+ # @return [Array<Types::FailedKeyRegistrationEntry>]
32017
+ #
32018
+ # @!attribute [rw] successful_key_registration
32019
+ # A list of all customer managed key registrations that were
32020
+ # successfully updated.
32021
+ # @return [Array<Types::SuccessfulKeyRegistrationEntry>]
32022
+ #
32023
+ # @!attribute [rw] request_id
32024
+ # The Amazon Web Services request ID for this operation.
32025
+ # @return [String]
32026
+ #
32027
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateKeyRegistrationResponse AWS API Documentation
32028
+ #
32029
+ class UpdateKeyRegistrationResponse < Struct.new(
32030
+ :failed_key_registration,
32031
+ :successful_key_registration,
32032
+ :request_id)
32033
+ SENSITIVE = []
32034
+ include Aws::Structure
32035
+ end
32036
+
31848
32037
  # @!attribute [rw] aws_account_id
31849
32038
  # The Amazon Web Services account ID associated with your Amazon
31850
32039
  # QuickSight subscription.
@@ -32637,9 +32826,9 @@ module Aws::QuickSight
32637
32826
  # QuickSight settings.
32638
32827
  #
32639
32828
  # * `READER_PRO`: Reader Pro adds Generative BI capabilities to the
32640
- # Reader role. Reader Pros have access to Amazon Q Business, can
32641
- # build stories with Amazon Q, and can generate executive summaries
32642
- # from dashboards.
32829
+ # Reader role. Reader Pros have access to Amazon Q in Amazon
32830
+ # QuickSight, can build stories with Amazon Q, and can generate
32831
+ # executive summaries from dashboards.
32643
32832
  #
32644
32833
  # * `AUTHOR_PRO`: Author Pro adds Generative BI capabilities to the
32645
32834
  # Author role. Author Pros can author dashboards with natural
@@ -32913,9 +33102,9 @@ module Aws::QuickSight
32913
33102
  # Amazon QuickSight settings.
32914
33103
  #
32915
33104
  # * `READER_PRO`: Reader Pro adds Generative BI capabilities to the
32916
- # Reader role. Reader Pros have access to Amazon Q Business, can
32917
- # build stories with Amazon Q, and can generate executive summaries
32918
- # from dashboards.
33105
+ # Reader role. Reader Pros have access to Amazon Q in Amazon
33106
+ # QuickSight, can build stories with Amazon Q, and can generate
33107
+ # executive summaries from dashboards.
32919
33108
  #
32920
33109
  # * `AUTHOR_PRO`: Author Pro adds Generative BI capabilities to the
32921
33110
  # Author role. Author Pros can author dashboards with natural
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-quicksight/customizations'
52
52
  # @!group service
53
53
  module Aws::QuickSight
54
54
 
55
- GEM_VERSION = '1.110.0'
55
+ GEM_VERSION = '1.112.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -67342,7 +67342,7 @@ module Aws
67342
67342
  cluster_id: ::String?,
67343
67343
  iam_parameters: {
67344
67344
  role_arn: ::String,
67345
- database_user: ::String,
67345
+ database_user: ::String?,
67346
67346
  database_groups: Array[::String]?,
67347
67347
  auto_create_database_user: bool?
67348
67348
  }?,
@@ -67476,7 +67476,7 @@ module Aws
67476
67476
  cluster_id: ::String?,
67477
67477
  iam_parameters: {
67478
67478
  role_arn: ::String,
67479
- database_user: ::String,
67479
+ database_user: ::String?,
67480
67480
  database_groups: Array[::String]?,
67481
67481
  auto_create_database_user: bool?
67482
67482
  }?,
@@ -102354,6 +102354,20 @@ module Aws
102354
102354
  ) -> _DescribeIpRestrictionResponseSuccess
102355
102355
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeIpRestrictionResponseSuccess
102356
102356
 
102357
+ interface _DescribeKeyRegistrationResponseSuccess
102358
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeKeyRegistrationResponse]
102359
+ def aws_account_id: () -> ::String
102360
+ def key_registration: () -> ::Array[Types::RegisteredCustomerManagedKey]
102361
+ def request_id: () -> ::String
102362
+ def status: () -> ::Integer
102363
+ end
102364
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#describe_key_registration-instance_method
102365
+ def describe_key_registration: (
102366
+ aws_account_id: ::String,
102367
+ ?default_key_only: bool
102368
+ ) -> _DescribeKeyRegistrationResponseSuccess
102369
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeKeyRegistrationResponseSuccess
102370
+
102357
102371
  interface _DescribeNamespaceResponseSuccess
102358
102372
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeNamespaceResponse]
102359
102373
  def namespace: () -> Types::NamespaceInfoV2
@@ -103552,7 +103566,7 @@ module Aws
103552
103566
  cluster_id: ::String?,
103553
103567
  iam_parameters: {
103554
103568
  role_arn: ::String,
103555
- database_user: ::String,
103569
+ database_user: ::String?,
103556
103570
  database_groups: Array[::String]?,
103557
103571
  auto_create_database_user: bool?
103558
103572
  }?,
@@ -171207,7 +171221,7 @@ module Aws
171207
171221
  cluster_id: ::String?,
171208
171222
  iam_parameters: {
171209
171223
  role_arn: ::String,
171210
- database_user: ::String,
171224
+ database_user: ::String?,
171211
171225
  database_groups: Array[::String]?,
171212
171226
  auto_create_database_user: bool?
171213
171227
  }?,
@@ -171341,7 +171355,7 @@ module Aws
171341
171355
  cluster_id: ::String?,
171342
171356
  iam_parameters: {
171343
171357
  role_arn: ::String,
171344
- database_user: ::String,
171358
+ database_user: ::String?,
171345
171359
  database_groups: Array[::String]?,
171346
171360
  auto_create_database_user: bool?
171347
171361
  }?,
@@ -171557,6 +171571,24 @@ module Aws
171557
171571
  ) -> _UpdateIpRestrictionResponseSuccess
171558
171572
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateIpRestrictionResponseSuccess
171559
171573
 
171574
+ interface _UpdateKeyRegistrationResponseSuccess
171575
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateKeyRegistrationResponse]
171576
+ def failed_key_registration: () -> ::Array[Types::FailedKeyRegistrationEntry]
171577
+ def successful_key_registration: () -> ::Array[Types::SuccessfulKeyRegistrationEntry]
171578
+ def request_id: () -> ::String
171579
+ end
171580
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#update_key_registration-instance_method
171581
+ def update_key_registration: (
171582
+ aws_account_id: ::String,
171583
+ key_registration: Array[
171584
+ {
171585
+ key_arn: ::String?,
171586
+ default_key: bool?
171587
+ },
171588
+ ]
171589
+ ) -> _UpdateKeyRegistrationResponseSuccess
171590
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateKeyRegistrationResponseSuccess
171591
+
171560
171592
  interface _UpdatePublicSharingSettingsResponseSuccess
171561
171593
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdatePublicSharingSettingsResponse]
171562
171594
  def request_id: () -> ::String
data/sig/types.rbs CHANGED
@@ -3105,6 +3105,20 @@ module Aws::QuickSight
3105
3105
  SENSITIVE: []
3106
3106
  end
3107
3107
 
3108
+ class DescribeKeyRegistrationRequest
3109
+ attr_accessor aws_account_id: ::String
3110
+ attr_accessor default_key_only: bool
3111
+ SENSITIVE: []
3112
+ end
3113
+
3114
+ class DescribeKeyRegistrationResponse
3115
+ attr_accessor aws_account_id: ::String
3116
+ attr_accessor key_registration: ::Array[Types::RegisteredCustomerManagedKey]
3117
+ attr_accessor request_id: ::String
3118
+ attr_accessor status: ::Integer
3119
+ SENSITIVE: []
3120
+ end
3121
+
3108
3122
  class DescribeNamespaceRequest
3109
3123
  attr_accessor aws_account_id: ::String
3110
3124
  attr_accessor namespace: ::String
@@ -3466,6 +3480,14 @@ module Aws::QuickSight
3466
3480
  SENSITIVE: []
3467
3481
  end
3468
3482
 
3483
+ class FailedKeyRegistrationEntry
3484
+ attr_accessor key_arn: ::String
3485
+ attr_accessor message: ::String
3486
+ attr_accessor status_code: ::Integer
3487
+ attr_accessor sender_fault: bool
3488
+ SENSITIVE: []
3489
+ end
3490
+
3469
3491
  class FieldBasedTooltip
3470
3492
  attr_accessor aggregation_visibility: ("HIDDEN" | "VISIBLE")
3471
3493
  attr_accessor tooltip_title_type: ("NONE" | "PRIMARY_VALUE")
@@ -6086,6 +6108,12 @@ module Aws::QuickSight
6086
6108
  SENSITIVE: []
6087
6109
  end
6088
6110
 
6111
+ class RegisteredCustomerManagedKey
6112
+ attr_accessor key_arn: ::String
6113
+ attr_accessor default_key: bool
6114
+ SENSITIVE: []
6115
+ end
6116
+
6089
6117
  class RegisteredUserConsoleFeatureConfigurations
6090
6118
  attr_accessor state_persistence: Types::StatePersistenceConfigurations
6091
6119
  SENSITIVE: []
@@ -6952,6 +6980,12 @@ module Aws::QuickSight
6952
6980
  SENSITIVE: []
6953
6981
  end
6954
6982
 
6983
+ class SuccessfulKeyRegistrationEntry
6984
+ attr_accessor key_arn: ::String
6985
+ attr_accessor status_code: ::Integer
6986
+ SENSITIVE: []
6987
+ end
6988
+
6955
6989
  class TableAggregatedFieldWells
6956
6990
  attr_accessor group_by: ::Array[Types::DimensionField]
6957
6991
  attr_accessor values: ::Array[Types::MeasureField]
@@ -8105,6 +8139,19 @@ module Aws::QuickSight
8105
8139
  SENSITIVE: []
8106
8140
  end
8107
8141
 
8142
+ class UpdateKeyRegistrationRequest
8143
+ attr_accessor aws_account_id: ::String
8144
+ attr_accessor key_registration: ::Array[Types::RegisteredCustomerManagedKey]
8145
+ SENSITIVE: []
8146
+ end
8147
+
8148
+ class UpdateKeyRegistrationResponse
8149
+ attr_accessor failed_key_registration: ::Array[Types::FailedKeyRegistrationEntry]
8150
+ attr_accessor successful_key_registration: ::Array[Types::SuccessfulKeyRegistrationEntry]
8151
+ attr_accessor request_id: ::String
8152
+ SENSITIVE: []
8153
+ end
8154
+
8108
8155
  class UpdatePublicSharingSettingsRequest
8109
8156
  attr_accessor aws_account_id: ::String
8110
8157
  attr_accessor public_sharing_enabled: bool
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-quicksight
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.110.0
4
+ version: 1.112.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-04-30 00:00:00.000000000 Z
11
+ date: 2024-05-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core