aws-sdk-quicksight 1.150.0 → 1.152.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: 2d13cfcb5eb96e92362d1b2e5ac5f089fb9a18f129d4b41ef7d7e4c80a11c980
4
- data.tar.gz: 7c35a4ebde19dd1df7376c4455b59e355d57463c7815ca7e172ce1167be5b055
3
+ metadata.gz: b64e573f77e1e5f996b74108867110aed3335c16734b78e4abd5f632dda679a4
4
+ data.tar.gz: 7aa6a30d230fddbe91f68efff9cbd38e868950aa20cfa5c7a8890dbb2d8ece77
5
5
  SHA512:
6
- metadata.gz: f8e2291caa6fcfa8ff77d9005fca30f83b7938a36a46493d5a9f855f46aafca0e9951ca247a043d461b7f1152f832de62ef034392cce99fcbae164c6d385b1b7
7
- data.tar.gz: 79bd8dffd2caec634c2e137aacf5ecebf52d831498817b44d33bb04b66db89674a4e83ec74643287fba3e217ce65a1540c988dc5651584820027d9a5525a5873
6
+ metadata.gz: a1d493054c1463b2235a307d85128499e9dd15f33cc2639f2dcd2202b308a73f7ba52839169d58b6388d90d61bc4a08a157b7694d21c32b8d8c4546fbc01f384
7
+ data.tar.gz: 32784bb136bbde5638c7e43f4a48b2fd3b4760622f59b8ee40ca9500abbc6d0a2f4ddec41d8d1e2af25586ec4d0d15765028b7c5e17dc45a1207aaf3d980794d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.152.0 (2025-07-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.151.0 (2025-07-15)
10
+ ------------------
11
+
12
+ * Feature - Introduced custom instructions for topics.
13
+
4
14
  1.150.0 (2025-06-30)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.150.0
1
+ 1.152.0
@@ -95,7 +95,7 @@ module Aws::QuickSight
95
95
  # class name or an instance of a plugin class.
96
96
  #
97
97
  # @option options [required, Aws::CredentialProvider] :credentials
98
- # Your AWS credentials. This can be an instance of any one of the
98
+ # Your AWS credentials used for authentication. This can be an instance of any one of the
99
99
  # following classes:
100
100
  #
101
101
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
@@ -128,18 +128,23 @@ module Aws::QuickSight
128
128
  # locations will be searched for credentials:
129
129
  #
130
130
  # * `Aws.config[:credentials]`
131
+ #
131
132
  # * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
132
133
  # `:account_id` options.
133
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
134
- # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
134
+ #
135
+ # * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
136
+ # `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
137
+ #
135
138
  # * `~/.aws/credentials`
139
+ #
136
140
  # * `~/.aws/config`
141
+ #
137
142
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
138
143
  # are very aggressive. Construct and pass an instance of
139
144
  # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
140
145
  # enable retries and extended timeouts. Instance profile credential
141
- # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
142
- # to true.
146
+ # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
147
+ # to `true`.
143
148
  #
144
149
  # @option options [required, String] :region
145
150
  # The AWS region to connect to. The configured `:region` is
@@ -167,6 +172,11 @@ module Aws::QuickSight
167
172
  # When false, the request will raise a `RetryCapacityNotAvailableError` and will
168
173
  # not retry instead of sleeping.
169
174
  #
175
+ # @option options [Array<String>] :auth_scheme_preference
176
+ # A list of preferred authentication schemes to use when making a request. Supported values are:
177
+ # `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
178
+ # shared config as `auth_scheme_preference`, the value should be a comma-separated list.
179
+ #
170
180
  # @option options [Boolean] :client_side_monitoring (false)
171
181
  # When `true`, client-side metrics will be collected for all API requests from
172
182
  # this client.
@@ -253,8 +263,8 @@ module Aws::QuickSight
253
263
  # 4 times. Used in `standard` and `adaptive` retry modes.
254
264
  #
255
265
  # @option options [String] :profile ("default")
256
- # Used when loading credentials from the shared credentials file
257
- # at HOME/.aws/credentials. When not specified, 'default' is used.
266
+ # Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
267
+ # When not specified, 'default' is used.
258
268
  #
259
269
  # @option options [String] :request_checksum_calculation ("when_supported")
260
270
  # Determines when a checksum will be calculated for request payloads. Values are:
@@ -367,7 +377,7 @@ module Aws::QuickSight
367
377
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
368
378
  #
369
379
  # @option options [Aws::TokenProvider] :token_provider
370
- # A Bearer Token Provider. This can be an instance of any one of the
380
+ # Your Bearer token used for authentication. This can be an instance of any one of the
371
381
  # following classes:
372
382
  #
373
383
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
@@ -3868,6 +3878,9 @@ module Aws::QuickSight
3868
3878
  # @option params [Array<String>] :folder_arns
3869
3879
  # The Folder ARN of the folder that you want the topic to reside in.
3870
3880
  #
3881
+ # @option params [Types::CustomInstructions] :custom_instructions
3882
+ # Custom instructions for the topic.
3883
+ #
3871
3884
  # @return [Types::CreateTopicResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3872
3885
  #
3873
3886
  # * {Types::CreateTopicResponse#arn #arn} => String
@@ -4111,6 +4124,9 @@ module Aws::QuickSight
4111
4124
  # },
4112
4125
  # ],
4113
4126
  # folder_arns: ["Arn"],
4127
+ # custom_instructions: {
4128
+ # custom_instructions_string: "CustomInstructionsString", # required
4129
+ # },
4114
4130
  # })
4115
4131
  #
4116
4132
  # @example Response structure
@@ -8700,6 +8716,7 @@ module Aws::QuickSight
8700
8716
  # * {Types::DescribeTopicResponse#topic #topic} => Types::TopicDetails
8701
8717
  # * {Types::DescribeTopicResponse#request_id #request_id} => String
8702
8718
  # * {Types::DescribeTopicResponse#status #status} => Integer
8719
+ # * {Types::DescribeTopicResponse#custom_instructions #custom_instructions} => Types::CustomInstructions
8703
8720
  #
8704
8721
  # @example Request syntax with placeholder values
8705
8722
  #
@@ -8870,6 +8887,7 @@ module Aws::QuickSight
8870
8887
  # resp.topic.config_options.q_business_insights_enabled #=> Boolean
8871
8888
  # resp.request_id #=> String
8872
8889
  # resp.status #=> Integer
8890
+ # resp.custom_instructions.custom_instructions_string #=> String
8873
8891
  #
8874
8892
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeTopic AWS API Documentation
8875
8893
  #
@@ -10943,7 +10961,8 @@ module Aws::QuickSight
10943
10961
  req.send_request(options)
10944
10962
  end
10945
10963
 
10946
- # Lists the history of SPICE ingestions for a dataset.
10964
+ # Lists the history of SPICE ingestions for a dataset. Limited to 5 TPS
10965
+ # per user and 25 TPS per account.
10947
10966
  #
10948
10967
  # @option params [required, String] :data_set_id
10949
10968
  # The ID of the dataset used in the ingestion.
@@ -17062,6 +17081,9 @@ module Aws::QuickSight
17062
17081
  # @option params [required, Types::TopicDetails] :topic
17063
17082
  # The definition of the topic that you want to update.
17064
17083
  #
17084
+ # @option params [Types::CustomInstructions] :custom_instructions
17085
+ # Custom instructions for the topic.
17086
+ #
17065
17087
  # @return [Types::UpdateTopicResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
17066
17088
  #
17067
17089
  # * {Types::UpdateTopicResponse#topic_id #topic_id} => String
@@ -17298,6 +17320,9 @@ module Aws::QuickSight
17298
17320
  # q_business_insights_enabled: false,
17299
17321
  # },
17300
17322
  # },
17323
+ # custom_instructions: {
17324
+ # custom_instructions_string: "CustomInstructionsString", # required
17325
+ # },
17301
17326
  # })
17302
17327
  #
17303
17328
  # @example Response structure
@@ -17720,7 +17745,7 @@ module Aws::QuickSight
17720
17745
  tracer: tracer
17721
17746
  )
17722
17747
  context[:gem_name] = 'aws-sdk-quicksight'
17723
- context[:gem_version] = '1.150.0'
17748
+ context[:gem_version] = '1.152.0'
17724
17749
  Seahorse::Client::Request.new(handlers, context)
17725
17750
  end
17726
17751
 
@@ -454,6 +454,8 @@ module Aws::QuickSight
454
454
  CustomContentVisual = Shapes::StructureShape.new(name: 'CustomContentVisual')
455
455
  CustomFilterConfiguration = Shapes::StructureShape.new(name: 'CustomFilterConfiguration')
456
456
  CustomFilterListConfiguration = Shapes::StructureShape.new(name: 'CustomFilterListConfiguration')
457
+ CustomInstructions = Shapes::StructureShape.new(name: 'CustomInstructions')
458
+ CustomInstructionsString = Shapes::StringShape.new(name: 'CustomInstructionsString')
457
459
  CustomLabel = Shapes::StringShape.new(name: 'CustomLabel')
458
460
  CustomNarrativeOptions = Shapes::StructureShape.new(name: 'CustomNarrativeOptions')
459
461
  CustomParameterValues = Shapes::StructureShape.new(name: 'CustomParameterValues')
@@ -3698,6 +3700,7 @@ module Aws::QuickSight
3698
3700
  CreateTopicRequest.add_member(:topic, Shapes::ShapeRef.new(shape: TopicDetails, required: true, location_name: "Topic"))
3699
3701
  CreateTopicRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
3700
3702
  CreateTopicRequest.add_member(:folder_arns, Shapes::ShapeRef.new(shape: FolderArnList, location_name: "FolderArns"))
3703
+ CreateTopicRequest.add_member(:custom_instructions, Shapes::ShapeRef.new(shape: CustomInstructions, location_name: "CustomInstructions"))
3701
3704
  CreateTopicRequest.struct_class = Types::CreateTopicRequest
3702
3705
 
3703
3706
  CreateTopicResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
@@ -3801,6 +3804,9 @@ module Aws::QuickSight
3801
3804
  CustomFilterListConfiguration.add_member(:null_option, Shapes::ShapeRef.new(shape: FilterNullOption, required: true, location_name: "NullOption"))
3802
3805
  CustomFilterListConfiguration.struct_class = Types::CustomFilterListConfiguration
3803
3806
 
3807
+ CustomInstructions.add_member(:custom_instructions_string, Shapes::ShapeRef.new(shape: CustomInstructionsString, required: true, location_name: "CustomInstructionsString"))
3808
+ CustomInstructions.struct_class = Types::CustomInstructions
3809
+
3804
3810
  CustomNarrativeOptions.add_member(:narrative, Shapes::ShapeRef.new(shape: NarrativeString, required: true, location_name: "Narrative"))
3805
3811
  CustomNarrativeOptions.struct_class = Types::CustomNarrativeOptions
3806
3812
 
@@ -5232,6 +5238,7 @@ module Aws::QuickSight
5232
5238
  DescribeTopicResponse.add_member(:topic, Shapes::ShapeRef.new(shape: TopicDetails, location_name: "Topic"))
5233
5239
  DescribeTopicResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
5234
5240
  DescribeTopicResponse.add_member(:status, Shapes::ShapeRef.new(shape: StatusCode, location: "statusCode", location_name: "Status"))
5241
+ DescribeTopicResponse.add_member(:custom_instructions, Shapes::ShapeRef.new(shape: CustomInstructions, location_name: "CustomInstructions"))
5235
5242
  DescribeTopicResponse.struct_class = Types::DescribeTopicResponse
5236
5243
 
5237
5244
  DescribeUserRequest.add_member(:user_name, Shapes::ShapeRef.new(shape: UserName, required: true, location: "uri", location_name: "UserName"))
@@ -10010,6 +10017,7 @@ module Aws::QuickSight
10010
10017
  UpdateTopicRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
10011
10018
  UpdateTopicRequest.add_member(:topic_id, Shapes::ShapeRef.new(shape: TopicId, required: true, location: "uri", location_name: "TopicId"))
10012
10019
  UpdateTopicRequest.add_member(:topic, Shapes::ShapeRef.new(shape: TopicDetails, required: true, location_name: "Topic"))
10020
+ UpdateTopicRequest.add_member(:custom_instructions, Shapes::ShapeRef.new(shape: CustomInstructions, location_name: "CustomInstructions"))
10013
10021
  UpdateTopicRequest.struct_class = Types::UpdateTopicRequest
10014
10022
 
10015
10023
  UpdateTopicResponse.add_member(:topic_id, Shapes::ShapeRef.new(shape: TopicId, location_name: "TopicId"))
@@ -7355,6 +7355,10 @@ module Aws::QuickSight
7355
7355
  # The Folder ARN of the folder that you want the topic to reside in.
7356
7356
  # @return [Array<String>]
7357
7357
  #
7358
+ # @!attribute [rw] custom_instructions
7359
+ # Custom instructions for the topic.
7360
+ # @return [Types::CustomInstructions]
7361
+ #
7358
7362
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateTopicRequest AWS API Documentation
7359
7363
  #
7360
7364
  class CreateTopicRequest < Struct.new(
@@ -7362,7 +7366,8 @@ module Aws::QuickSight
7362
7366
  :topic_id,
7363
7367
  :topic,
7364
7368
  :tags,
7365
- :folder_arns)
7369
+ :folder_arns,
7370
+ :custom_instructions)
7366
7371
  SENSITIVE = []
7367
7372
  include Aws::Structure
7368
7373
  end
@@ -7900,6 +7905,22 @@ module Aws::QuickSight
7900
7905
  include Aws::Structure
7901
7906
  end
7902
7907
 
7908
+ # Instructions that provide additional guidance and context for response
7909
+ # generation.
7910
+ #
7911
+ # @!attribute [rw] custom_instructions_string
7912
+ # A text field for providing additional guidance or context for
7913
+ # response generation.
7914
+ # @return [String]
7915
+ #
7916
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CustomInstructions AWS API Documentation
7917
+ #
7918
+ class CustomInstructions < Struct.new(
7919
+ :custom_instructions_string)
7920
+ SENSITIVE = [:custom_instructions_string]
7921
+ include Aws::Structure
7922
+ end
7923
+
7903
7924
  # The custom narrative options.
7904
7925
  #
7905
7926
  # @!attribute [rw] narrative
@@ -14952,6 +14973,10 @@ module Aws::QuickSight
14952
14973
  # The HTTP status of the request.
14953
14974
  # @return [Integer]
14954
14975
  #
14976
+ # @!attribute [rw] custom_instructions
14977
+ # Custom instructions for the topic.
14978
+ # @return [Types::CustomInstructions]
14979
+ #
14955
14980
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeTopicResponse AWS API Documentation
14956
14981
  #
14957
14982
  class DescribeTopicResponse < Struct.new(
@@ -14959,7 +14984,8 @@ module Aws::QuickSight
14959
14984
  :topic_id,
14960
14985
  :topic,
14961
14986
  :request_id,
14962
- :status)
14987
+ :status,
14988
+ :custom_instructions)
14963
14989
  SENSITIVE = []
14964
14990
  include Aws::Structure
14965
14991
  end
@@ -38131,12 +38157,17 @@ module Aws::QuickSight
38131
38157
  # The definition of the topic that you want to update.
38132
38158
  # @return [Types::TopicDetails]
38133
38159
  #
38160
+ # @!attribute [rw] custom_instructions
38161
+ # Custom instructions for the topic.
38162
+ # @return [Types::CustomInstructions]
38163
+ #
38134
38164
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateTopicRequest AWS API Documentation
38135
38165
  #
38136
38166
  class UpdateTopicRequest < Struct.new(
38137
38167
  :aws_account_id,
38138
38168
  :topic_id,
38139
- :topic)
38169
+ :topic,
38170
+ :custom_instructions)
38140
38171
  SENSITIVE = []
38141
38172
  include Aws::Structure
38142
38173
  end
@@ -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.150.0'
57
+ GEM_VERSION = '1.152.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
@@ -113685,7 +113686,10 @@ module Aws
113685
113686
  value: ::String
113686
113687
  },
113687
113688
  ],
113688
- ?folder_arns: Array[::String]
113689
+ ?folder_arns: Array[::String],
113690
+ ?custom_instructions: {
113691
+ custom_instructions_string: ::String
113692
+ }
113689
113693
  ) -> _CreateTopicResponseSuccess
113690
113694
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTopicResponseSuccess
113691
113695
 
@@ -114863,6 +114867,7 @@ module Aws
114863
114867
  def topic: () -> Types::TopicDetails
114864
114868
  def request_id: () -> ::String
114865
114869
  def status: () -> ::Integer
114870
+ def custom_instructions: () -> Types::CustomInstructions
114866
114871
  end
114867
114872
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#describe_topic-instance_method
114868
114873
  def describe_topic: (
@@ -229579,6 +229584,9 @@ module Aws
229579
229584
  config_options: {
229580
229585
  q_business_insights_enabled: bool?
229581
229586
  }?
229587
+ },
229588
+ ?custom_instructions: {
229589
+ custom_instructions_string: ::String
229582
229590
  }
229583
229591
  ) -> _UpdateTopicResponseSuccess
229584
229592
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateTopicResponseSuccess
data/sig/resource.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
data/sig/types.rbs CHANGED
@@ -1834,6 +1834,7 @@ module Aws::QuickSight
1834
1834
  attr_accessor topic: Types::TopicDetails
1835
1835
  attr_accessor tags: ::Array[Types::Tag]
1836
1836
  attr_accessor folder_arns: ::Array[::String]
1837
+ attr_accessor custom_instructions: Types::CustomInstructions
1837
1838
  SENSITIVE: []
1838
1839
  end
1839
1840
 
@@ -1962,6 +1963,11 @@ module Aws::QuickSight
1962
1963
  SENSITIVE: []
1963
1964
  end
1964
1965
 
1966
+ class CustomInstructions
1967
+ attr_accessor custom_instructions_string: ::String
1968
+ SENSITIVE: [:custom_instructions_string]
1969
+ end
1970
+
1965
1971
  class CustomNarrativeOptions
1966
1972
  attr_accessor narrative: ::String
1967
1973
  SENSITIVE: []
@@ -3838,6 +3844,7 @@ module Aws::QuickSight
3838
3844
  attr_accessor topic: Types::TopicDetails
3839
3845
  attr_accessor request_id: ::String
3840
3846
  attr_accessor status: ::Integer
3847
+ attr_accessor custom_instructions: Types::CustomInstructions
3841
3848
  SENSITIVE: []
3842
3849
  end
3843
3850
 
@@ -9856,6 +9863,7 @@ module Aws::QuickSight
9856
9863
  attr_accessor aws_account_id: ::String
9857
9864
  attr_accessor topic_id: ::String
9858
9865
  attr_accessor topic: Types::TopicDetails
9866
+ attr_accessor custom_instructions: Types::CustomInstructions
9859
9867
  SENSITIVE: []
9860
9868
  end
9861
9869
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-quicksight
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.150.0
4
+ version: 1.152.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.225.0
21
+ version: 3.227.0
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.225.0
31
+ version: 3.227.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement