aws-sdk-quicksight 1.129.0 → 1.130.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: '09544949ef5c7d45a13fff8189eabdb9f11193e9bba90cf3310ca2fcdc32c10e'
4
- data.tar.gz: e1235d3c753d0017451959f95cdfbd20de93490a0a059e4d85ab7a1f1102e936
3
+ metadata.gz: f9c0b9c2b778724547b472fa68834bc82973aeae3a7729b6f2723d029f2c2763
4
+ data.tar.gz: 6f242f98b884c11916b98c753b2c9a67cf6bbb7dc272b085e0d5a10203465639
5
5
  SHA512:
6
- metadata.gz: 25d0723e0672ed9556e8e60a3359d98821e3ef2f09b0d93952e532745ef1d43a61a51913149c74cd04ee52702fd9e96489f5f67d59f8e1690b04c9e99d015b39
7
- data.tar.gz: cf482376a899b352b1c5397300f402f794a6d919ba379d38aabb95faf82f87605a8634ee758b1dc6f0b9153e27b874583ad0f4541b97ac117d1f059e762bb921
6
+ metadata.gz: a47c320ae3806771eb3f6299248b37a70d98a576b9f9dc539fd66e6f79efe5850db3fbe4e4c78fa8211169da380bbceafea567d72b5dca749398cea56bd4613b
7
+ data.tar.gz: 9bec3e05b7626ad35e86dc33a822b164fc2d84509445ce2324382b04a6a5be5a314793f3516265666022f1f6093c530686be922028f56ad9b0f4ae4cf9f2d8cb
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.130.0 (2024-09-27)
5
+ ------------------
6
+
7
+ * Feature - Adding personalization in QuickSight data stories. Admins can enable or disable personalization through QuickSight settings.
8
+
4
9
  1.129.0 (2024-09-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.129.0
1
+ 1.130.0
@@ -7063,6 +7063,39 @@ module Aws::QuickSight
7063
7063
  req.send_request(options)
7064
7064
  end
7065
7065
 
7066
+ # Describes a personalization configuration.
7067
+ #
7068
+ # @option params [required, String] :aws_account_id
7069
+ # The ID of the Amazon Web Services account that contains the
7070
+ # personalization configuration that the user wants described.
7071
+ #
7072
+ # @return [Types::DescribeQPersonalizationConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7073
+ #
7074
+ # * {Types::DescribeQPersonalizationConfigurationResponse#personalization_mode #personalization_mode} => String
7075
+ # * {Types::DescribeQPersonalizationConfigurationResponse#request_id #request_id} => String
7076
+ # * {Types::DescribeQPersonalizationConfigurationResponse#status #status} => Integer
7077
+ #
7078
+ # @example Request syntax with placeholder values
7079
+ #
7080
+ # resp = client.describe_q_personalization_configuration({
7081
+ # aws_account_id: "AwsAccountId", # required
7082
+ # })
7083
+ #
7084
+ # @example Response structure
7085
+ #
7086
+ # resp.personalization_mode #=> String, one of "ENABLED", "DISABLED"
7087
+ # resp.request_id #=> String
7088
+ # resp.status #=> Integer
7089
+ #
7090
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeQPersonalizationConfiguration AWS API Documentation
7091
+ #
7092
+ # @overload describe_q_personalization_configuration(params = {})
7093
+ # @param [Hash] params ({})
7094
+ def describe_q_personalization_configuration(params = {}, options = {})
7095
+ req = build_request(:describe_q_personalization_configuration, params)
7096
+ req.send_request(options)
7097
+ end
7098
+
7066
7099
  # Provides a summary of a refresh schedule.
7067
7100
  #
7068
7101
  # @option params [required, String] :aws_account_id
@@ -14120,6 +14153,45 @@ module Aws::QuickSight
14120
14153
  req.send_request(options)
14121
14154
  end
14122
14155
 
14156
+ # Updates a personalization configuration.
14157
+ #
14158
+ # @option params [required, String] :aws_account_id
14159
+ # The ID of the Amazon Web Services account account that contains the
14160
+ # personalization configuration that the user wants to update.
14161
+ #
14162
+ # @option params [required, String] :personalization_mode
14163
+ # An option to allow Amazon QuickSight to customize data stories with
14164
+ # user specific metadata, specifically location and job information, in
14165
+ # your IAM Identity Center instance.
14166
+ #
14167
+ # @return [Types::UpdateQPersonalizationConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
14168
+ #
14169
+ # * {Types::UpdateQPersonalizationConfigurationResponse#personalization_mode #personalization_mode} => String
14170
+ # * {Types::UpdateQPersonalizationConfigurationResponse#request_id #request_id} => String
14171
+ # * {Types::UpdateQPersonalizationConfigurationResponse#status #status} => Integer
14172
+ #
14173
+ # @example Request syntax with placeholder values
14174
+ #
14175
+ # resp = client.update_q_personalization_configuration({
14176
+ # aws_account_id: "AwsAccountId", # required
14177
+ # personalization_mode: "ENABLED", # required, accepts ENABLED, DISABLED
14178
+ # })
14179
+ #
14180
+ # @example Response structure
14181
+ #
14182
+ # resp.personalization_mode #=> String, one of "ENABLED", "DISABLED"
14183
+ # resp.request_id #=> String
14184
+ # resp.status #=> Integer
14185
+ #
14186
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateQPersonalizationConfiguration AWS API Documentation
14187
+ #
14188
+ # @overload update_q_personalization_configuration(params = {})
14189
+ # @param [Hash] params ({})
14190
+ def update_q_personalization_configuration(params = {}, options = {})
14191
+ req = build_request(:update_q_personalization_configuration, params)
14192
+ req.send_request(options)
14193
+ end
14194
+
14123
14195
  # Updates a refresh schedule for a dataset.
14124
14196
  #
14125
14197
  # @option params [required, String] :data_set_id
@@ -15333,7 +15405,7 @@ module Aws::QuickSight
15333
15405
  tracer: tracer
15334
15406
  )
15335
15407
  context[:gem_name] = 'aws-sdk-quicksight'
15336
- context[:gem_version] = '1.129.0'
15408
+ context[:gem_version] = '1.130.0'
15337
15409
  Seahorse::Client::Request.new(handlers, context)
15338
15410
  end
15339
15411
 
@@ -680,6 +680,8 @@ module Aws::QuickSight
680
680
  DescribeKeyRegistrationResponse = Shapes::StructureShape.new(name: 'DescribeKeyRegistrationResponse')
681
681
  DescribeNamespaceRequest = Shapes::StructureShape.new(name: 'DescribeNamespaceRequest')
682
682
  DescribeNamespaceResponse = Shapes::StructureShape.new(name: 'DescribeNamespaceResponse')
683
+ DescribeQPersonalizationConfigurationRequest = Shapes::StructureShape.new(name: 'DescribeQPersonalizationConfigurationRequest')
684
+ DescribeQPersonalizationConfigurationResponse = Shapes::StructureShape.new(name: 'DescribeQPersonalizationConfigurationResponse')
683
685
  DescribeRefreshScheduleRequest = Shapes::StructureShape.new(name: 'DescribeRefreshScheduleRequest')
684
686
  DescribeRefreshScheduleResponse = Shapes::StructureShape.new(name: 'DescribeRefreshScheduleResponse')
685
687
  DescribeRoleCustomPermissionRequest = Shapes::StructureShape.new(name: 'DescribeRoleCustomPermissionRequest')
@@ -1215,6 +1217,7 @@ module Aws::QuickSight
1215
1217
  PeriodToDateComputation = Shapes::StructureShape.new(name: 'PeriodToDateComputation')
1216
1218
  PeriodsBackward = Shapes::IntegerShape.new(name: 'PeriodsBackward')
1217
1219
  PeriodsForward = Shapes::IntegerShape.new(name: 'PeriodsForward')
1220
+ PersonalizationMode = Shapes::StringShape.new(name: 'PersonalizationMode')
1218
1221
  PhysicalTable = Shapes::StructureShape.new(name: 'PhysicalTable')
1219
1222
  PhysicalTableId = Shapes::StringShape.new(name: 'PhysicalTableId')
1220
1223
  PhysicalTableMap = Shapes::MapShape.new(name: 'PhysicalTableMap')
@@ -1813,6 +1816,8 @@ module Aws::QuickSight
1813
1816
  UpdateLinkPermissionList = Shapes::ListShape.new(name: 'UpdateLinkPermissionList')
1814
1817
  UpdatePublicSharingSettingsRequest = Shapes::StructureShape.new(name: 'UpdatePublicSharingSettingsRequest')
1815
1818
  UpdatePublicSharingSettingsResponse = Shapes::StructureShape.new(name: 'UpdatePublicSharingSettingsResponse')
1819
+ UpdateQPersonalizationConfigurationRequest = Shapes::StructureShape.new(name: 'UpdateQPersonalizationConfigurationRequest')
1820
+ UpdateQPersonalizationConfigurationResponse = Shapes::StructureShape.new(name: 'UpdateQPersonalizationConfigurationResponse')
1816
1821
  UpdateRefreshScheduleRequest = Shapes::StructureShape.new(name: 'UpdateRefreshScheduleRequest')
1817
1822
  UpdateRefreshScheduleResponse = Shapes::StructureShape.new(name: 'UpdateRefreshScheduleResponse')
1818
1823
  UpdateResourcePermissionList = Shapes::ListShape.new(name: 'UpdateResourcePermissionList')
@@ -4559,6 +4564,14 @@ module Aws::QuickSight
4559
4564
  DescribeNamespaceResponse.add_member(:status, Shapes::ShapeRef.new(shape: StatusCode, location: "statusCode", location_name: "Status"))
4560
4565
  DescribeNamespaceResponse.struct_class = Types::DescribeNamespaceResponse
4561
4566
 
4567
+ DescribeQPersonalizationConfigurationRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
4568
+ DescribeQPersonalizationConfigurationRequest.struct_class = Types::DescribeQPersonalizationConfigurationRequest
4569
+
4570
+ DescribeQPersonalizationConfigurationResponse.add_member(:personalization_mode, Shapes::ShapeRef.new(shape: PersonalizationMode, location_name: "PersonalizationMode"))
4571
+ DescribeQPersonalizationConfigurationResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
4572
+ DescribeQPersonalizationConfigurationResponse.add_member(:status, Shapes::ShapeRef.new(shape: StatusCode, location: "statusCode", location_name: "Status"))
4573
+ DescribeQPersonalizationConfigurationResponse.struct_class = Types::DescribeQPersonalizationConfigurationResponse
4574
+
4562
4575
  DescribeRefreshScheduleRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
4563
4576
  DescribeRefreshScheduleRequest.add_member(:data_set_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "DataSetId"))
4564
4577
  DescribeRefreshScheduleRequest.add_member(:schedule_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "ScheduleId"))
@@ -8741,6 +8754,15 @@ module Aws::QuickSight
8741
8754
  UpdatePublicSharingSettingsResponse.add_member(:status, Shapes::ShapeRef.new(shape: StatusCode, location: "statusCode", location_name: "Status"))
8742
8755
  UpdatePublicSharingSettingsResponse.struct_class = Types::UpdatePublicSharingSettingsResponse
8743
8756
 
8757
+ UpdateQPersonalizationConfigurationRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
8758
+ UpdateQPersonalizationConfigurationRequest.add_member(:personalization_mode, Shapes::ShapeRef.new(shape: PersonalizationMode, required: true, location_name: "PersonalizationMode"))
8759
+ UpdateQPersonalizationConfigurationRequest.struct_class = Types::UpdateQPersonalizationConfigurationRequest
8760
+
8761
+ UpdateQPersonalizationConfigurationResponse.add_member(:personalization_mode, Shapes::ShapeRef.new(shape: PersonalizationMode, location_name: "PersonalizationMode"))
8762
+ UpdateQPersonalizationConfigurationResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
8763
+ UpdateQPersonalizationConfigurationResponse.add_member(:status, Shapes::ShapeRef.new(shape: StatusCode, location: "statusCode", location_name: "Status"))
8764
+ UpdateQPersonalizationConfigurationResponse.struct_class = Types::UpdateQPersonalizationConfigurationResponse
8765
+
8744
8766
  UpdateRefreshScheduleRequest.add_member(:data_set_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "DataSetId"))
8745
8767
  UpdateRefreshScheduleRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
8746
8768
  UpdateRefreshScheduleRequest.add_member(:schedule, Shapes::ShapeRef.new(shape: RefreshSchedule, required: true, location_name: "Schedule"))
@@ -10350,6 +10372,20 @@ module Aws::QuickSight
10350
10372
  o.errors << Shapes::ShapeRef.new(shape: ResourceUnavailableException)
10351
10373
  end)
10352
10374
 
10375
+ api.add_operation(:describe_q_personalization_configuration, Seahorse::Model::Operation.new.tap do |o|
10376
+ o.name = "DescribeQPersonalizationConfiguration"
10377
+ o.http_method = "GET"
10378
+ o.http_request_uri = "/accounts/{AwsAccountId}/q-personalization-configuration"
10379
+ o.input = Shapes::ShapeRef.new(shape: DescribeQPersonalizationConfigurationRequest)
10380
+ o.output = Shapes::ShapeRef.new(shape: DescribeQPersonalizationConfigurationResponse)
10381
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
10382
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
10383
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
10384
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
10385
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
10386
+ o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
10387
+ end)
10388
+
10353
10389
  api.add_operation(:describe_refresh_schedule, Seahorse::Model::Operation.new.tap do |o|
10354
10390
  o.name = "DescribeRefreshSchedule"
10355
10391
  o.http_method = "GET"
@@ -11783,6 +11819,21 @@ module Aws::QuickSight
11783
11819
  o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
11784
11820
  end)
11785
11821
 
11822
+ api.add_operation(:update_q_personalization_configuration, Seahorse::Model::Operation.new.tap do |o|
11823
+ o.name = "UpdateQPersonalizationConfiguration"
11824
+ o.http_method = "PUT"
11825
+ o.http_request_uri = "/accounts/{AwsAccountId}/q-personalization-configuration"
11826
+ o.input = Shapes::ShapeRef.new(shape: UpdateQPersonalizationConfigurationRequest)
11827
+ o.output = Shapes::ShapeRef.new(shape: UpdateQPersonalizationConfigurationResponse)
11828
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
11829
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
11830
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
11831
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
11832
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
11833
+ o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
11834
+ o.errors << Shapes::ShapeRef.new(shape: ResourceUnavailableException)
11835
+ end)
11836
+
11786
11837
  api.add_operation(:update_refresh_schedule, Seahorse::Model::Operation.new.tap do |o|
11787
11838
  o.name = "UpdateRefreshSchedule"
11788
11839
  o.http_method = "PUT"
@@ -881,6 +881,17 @@ module Aws::QuickSight
881
881
  end
882
882
  end
883
883
 
884
+ class DescribeQPersonalizationConfiguration
885
+ def self.build(context)
886
+ Aws::QuickSight::EndpointParameters.new(
887
+ region: context.config.region,
888
+ use_dual_stack: context.config.use_dualstack_endpoint,
889
+ use_fips: context.config.use_fips_endpoint,
890
+ endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
891
+ )
892
+ end
893
+ end
894
+
884
895
  class DescribeRefreshSchedule
885
896
  def self.build(context)
886
897
  Aws::QuickSight::EndpointParameters.new(
@@ -1816,6 +1827,17 @@ module Aws::QuickSight
1816
1827
  end
1817
1828
  end
1818
1829
 
1830
+ class UpdateQPersonalizationConfiguration
1831
+ def self.build(context)
1832
+ Aws::QuickSight::EndpointParameters.new(
1833
+ region: context.config.region,
1834
+ use_dual_stack: context.config.use_dualstack_endpoint,
1835
+ use_fips: context.config.use_fips_endpoint,
1836
+ endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
1837
+ )
1838
+ end
1839
+ end
1840
+
1819
1841
  class UpdateRefreshSchedule
1820
1842
  def self.build(context)
1821
1843
  Aws::QuickSight::EndpointParameters.new(
@@ -228,6 +228,8 @@ The endpoint provider used to resolve endpoints. Any object that responds to
228
228
  Aws::QuickSight::Endpoints::DescribeKeyRegistration.build(context)
229
229
  when :describe_namespace
230
230
  Aws::QuickSight::Endpoints::DescribeNamespace.build(context)
231
+ when :describe_q_personalization_configuration
232
+ Aws::QuickSight::Endpoints::DescribeQPersonalizationConfiguration.build(context)
231
233
  when :describe_refresh_schedule
232
234
  Aws::QuickSight::Endpoints::DescribeRefreshSchedule.build(context)
233
235
  when :describe_role_custom_permission
@@ -398,6 +400,8 @@ The endpoint provider used to resolve endpoints. Any object that responds to
398
400
  Aws::QuickSight::Endpoints::UpdateKeyRegistration.build(context)
399
401
  when :update_public_sharing_settings
400
402
  Aws::QuickSight::Endpoints::UpdatePublicSharingSettings.build(context)
403
+ when :update_q_personalization_configuration
404
+ Aws::QuickSight::Endpoints::UpdateQPersonalizationConfiguration.build(context)
401
405
  when :update_refresh_schedule
402
406
  Aws::QuickSight::Endpoints::UpdateRefreshSchedule.build(context)
403
407
  when :update_role_custom_permission
@@ -12933,6 +12933,41 @@ module Aws::QuickSight
12933
12933
  include Aws::Structure
12934
12934
  end
12935
12935
 
12936
+ # @!attribute [rw] aws_account_id
12937
+ # The ID of the Amazon Web Services account that contains the
12938
+ # personalization configuration that the user wants described.
12939
+ # @return [String]
12940
+ #
12941
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeQPersonalizationConfigurationRequest AWS API Documentation
12942
+ #
12943
+ class DescribeQPersonalizationConfigurationRequest < Struct.new(
12944
+ :aws_account_id)
12945
+ SENSITIVE = []
12946
+ include Aws::Structure
12947
+ end
12948
+
12949
+ # @!attribute [rw] personalization_mode
12950
+ # A value that indicates whether personalization is enabled or not.
12951
+ # @return [String]
12952
+ #
12953
+ # @!attribute [rw] request_id
12954
+ # The Amazon Web Services request ID for this operation.
12955
+ # @return [String]
12956
+ #
12957
+ # @!attribute [rw] status
12958
+ # The HTTP status of the request.
12959
+ # @return [Integer]
12960
+ #
12961
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeQPersonalizationConfigurationResponse AWS API Documentation
12962
+ #
12963
+ class DescribeQPersonalizationConfigurationResponse < Struct.new(
12964
+ :personalization_mode,
12965
+ :request_id,
12966
+ :status)
12967
+ SENSITIVE = []
12968
+ include Aws::Structure
12969
+ end
12970
+
12936
12971
  # @!attribute [rw] aws_account_id
12937
12972
  # The Amazon Web Services account ID.
12938
12973
  # @return [String]
@@ -33362,6 +33397,49 @@ module Aws::QuickSight
33362
33397
  include Aws::Structure
33363
33398
  end
33364
33399
 
33400
+ # @!attribute [rw] aws_account_id
33401
+ # The ID of the Amazon Web Services account account that contains the
33402
+ # personalization configuration that the user wants to update.
33403
+ # @return [String]
33404
+ #
33405
+ # @!attribute [rw] personalization_mode
33406
+ # An option to allow Amazon QuickSight to customize data stories with
33407
+ # user specific metadata, specifically location and job information,
33408
+ # in your IAM Identity Center instance.
33409
+ # @return [String]
33410
+ #
33411
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateQPersonalizationConfigurationRequest AWS API Documentation
33412
+ #
33413
+ class UpdateQPersonalizationConfigurationRequest < Struct.new(
33414
+ :aws_account_id,
33415
+ :personalization_mode)
33416
+ SENSITIVE = []
33417
+ include Aws::Structure
33418
+ end
33419
+
33420
+ # @!attribute [rw] personalization_mode
33421
+ # The personalization mode that is used for the personalization
33422
+ # configuration.
33423
+ # @return [String]
33424
+ #
33425
+ # @!attribute [rw] request_id
33426
+ # The Amazon Web Services request ID for this operation.
33427
+ # @return [String]
33428
+ #
33429
+ # @!attribute [rw] status
33430
+ # The HTTP status of the request.
33431
+ # @return [Integer]
33432
+ #
33433
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateQPersonalizationConfigurationResponse AWS API Documentation
33434
+ #
33435
+ class UpdateQPersonalizationConfigurationResponse < Struct.new(
33436
+ :personalization_mode,
33437
+ :request_id,
33438
+ :status)
33439
+ SENSITIVE = []
33440
+ include Aws::Structure
33441
+ end
33442
+
33365
33443
  # @!attribute [rw] data_set_id
33366
33444
  # The ID of the dataset.
33367
33445
  # @return [String]
@@ -54,7 +54,7 @@ module Aws::QuickSight
54
54
  autoload :EndpointProvider, 'aws-sdk-quicksight/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-quicksight/endpoints'
56
56
 
57
- GEM_VERSION = '1.129.0'
57
+ GEM_VERSION = '1.130.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -104228,6 +104228,18 @@ module Aws
104228
104228
  ) -> _DescribeNamespaceResponseSuccess
104229
104229
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeNamespaceResponseSuccess
104230
104230
 
104231
+ interface _DescribeQPersonalizationConfigurationResponseSuccess
104232
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeQPersonalizationConfigurationResponse]
104233
+ def personalization_mode: () -> ("ENABLED" | "DISABLED")
104234
+ def request_id: () -> ::String
104235
+ def status: () -> ::Integer
104236
+ end
104237
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#describe_q_personalization_configuration-instance_method
104238
+ def describe_q_personalization_configuration: (
104239
+ aws_account_id: ::String
104240
+ ) -> _DescribeQPersonalizationConfigurationResponseSuccess
104241
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeQPersonalizationConfigurationResponseSuccess
104242
+
104231
104243
  interface _DescribeRefreshScheduleResponseSuccess
104232
104244
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeRefreshScheduleResponse]
104233
104245
  def refresh_schedule: () -> Types::RefreshSchedule
@@ -174203,6 +174215,19 @@ module Aws
174203
174215
  ) -> _UpdatePublicSharingSettingsResponseSuccess
174204
174216
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePublicSharingSettingsResponseSuccess
174205
174217
 
174218
+ interface _UpdateQPersonalizationConfigurationResponseSuccess
174219
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateQPersonalizationConfigurationResponse]
174220
+ def personalization_mode: () -> ("ENABLED" | "DISABLED")
174221
+ def request_id: () -> ::String
174222
+ def status: () -> ::Integer
174223
+ end
174224
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#update_q_personalization_configuration-instance_method
174225
+ def update_q_personalization_configuration: (
174226
+ aws_account_id: ::String,
174227
+ personalization_mode: ("ENABLED" | "DISABLED")
174228
+ ) -> _UpdateQPersonalizationConfigurationResponseSuccess
174229
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateQPersonalizationConfigurationResponseSuccess
174230
+
174206
174231
  interface _UpdateRefreshScheduleResponseSuccess
174207
174232
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRefreshScheduleResponse]
174208
174233
  def status: () -> ::Integer
data/sig/types.rbs CHANGED
@@ -3274,6 +3274,18 @@ module Aws::QuickSight
3274
3274
  SENSITIVE: []
3275
3275
  end
3276
3276
 
3277
+ class DescribeQPersonalizationConfigurationRequest
3278
+ attr_accessor aws_account_id: ::String
3279
+ SENSITIVE: []
3280
+ end
3281
+
3282
+ class DescribeQPersonalizationConfigurationResponse
3283
+ attr_accessor personalization_mode: ("ENABLED" | "DISABLED")
3284
+ attr_accessor request_id: ::String
3285
+ attr_accessor status: ::Integer
3286
+ SENSITIVE: []
3287
+ end
3288
+
3277
3289
  class DescribeRefreshScheduleRequest
3278
3290
  attr_accessor aws_account_id: ::String
3279
3291
  attr_accessor data_set_id: ::String
@@ -8512,6 +8524,19 @@ module Aws::QuickSight
8512
8524
  SENSITIVE: []
8513
8525
  end
8514
8526
 
8527
+ class UpdateQPersonalizationConfigurationRequest
8528
+ attr_accessor aws_account_id: ::String
8529
+ attr_accessor personalization_mode: ("ENABLED" | "DISABLED")
8530
+ SENSITIVE: []
8531
+ end
8532
+
8533
+ class UpdateQPersonalizationConfigurationResponse
8534
+ attr_accessor personalization_mode: ("ENABLED" | "DISABLED")
8535
+ attr_accessor request_id: ::String
8536
+ attr_accessor status: ::Integer
8537
+ SENSITIVE: []
8538
+ end
8539
+
8515
8540
  class UpdateRefreshScheduleRequest
8516
8541
  attr_accessor data_set_id: ::String
8517
8542
  attr_accessor aws_account_id: ::String
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.129.0
4
+ version: 1.130.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-09-24 00:00:00.000000000 Z
11
+ date: 2024-09-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core