aws-sdk-quicksight 1.121.0 → 1.123.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: 4629c672f60901b37c7ee521cd598fc3a58a7becf342a00fb4078448473fa400
4
- data.tar.gz: d64952f8911f648bb8aabbb416f41b6d1b2e02f5b444d4f7d4d2146a0c8692a1
3
+ metadata.gz: beaa16ca7c7598b41c0cfe9526f59f493148f0f86e80689176dbcf9bc7eba860
4
+ data.tar.gz: 52ac1224fce05bc61f55076f3176a36cf80d91dc425e2f093d69725981607b52
5
5
  SHA512:
6
- metadata.gz: 36f05a35560f6e891fdef2e690c72ac0f8f41e5faa0071257b1b0018192b364bbc700ea16860a51d909e930b42a03ae498fe8e9bd35c5c92397ca0ce96c129f9
7
- data.tar.gz: d98fe4dd735c17a5f5e2df1a6d564fce61e73aa7825ac4f0e57829f2e9909046a7a3467b10e05215a19d532c8e232d4ef748cceb0b3cf6d70d9ffd68487eb850
6
+ metadata.gz: 9732561a3ccc8c88b865634bc491c71180e16ea8acc4ee90f2788e3f4d6f20c547535825693517481e3c643a449e898978ce0022da39a8f6545a510df4783969
7
+ data.tar.gz: 85575453dfc5b789885d6069b54dbe80a78db576830db1bc996ea1f4d7a80fb456eb4cca98f3f23647c1d7d4c281fb09f88c50ab59b1036462d97fa5516d8f2d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.123.0 (2024-09-03)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.122.0 (2024-08-29)
10
+ ------------------
11
+
12
+ * Feature - Increased Character Limit for Dataset Calculation Field expressions
13
+
4
14
  1.121.0 (2024-08-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.121.0
1
+ 1.123.0
@@ -32,6 +32,7 @@ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
32
32
  require 'aws-sdk-core/plugins/request_compression.rb'
33
33
  require 'aws-sdk-core/plugins/defaults_mode.rb'
34
34
  require 'aws-sdk-core/plugins/recursion_detection.rb'
35
+ require 'aws-sdk-core/plugins/telemetry.rb'
35
36
  require 'aws-sdk-core/plugins/sign.rb'
36
37
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
37
38
 
@@ -83,6 +84,7 @@ module Aws::QuickSight
83
84
  add_plugin(Aws::Plugins::RequestCompression)
84
85
  add_plugin(Aws::Plugins::DefaultsMode)
85
86
  add_plugin(Aws::Plugins::RecursionDetection)
87
+ add_plugin(Aws::Plugins::Telemetry)
86
88
  add_plugin(Aws::Plugins::Sign)
87
89
  add_plugin(Aws::Plugins::Protocols::RestJson)
88
90
  add_plugin(Aws::QuickSight::Plugins::Endpoints)
@@ -330,6 +332,16 @@ module Aws::QuickSight
330
332
  # ** Please note ** When response stubbing is enabled, no HTTP
331
333
  # requests are made, and retries are disabled.
332
334
  #
335
+ # @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
336
+ # Allows you to provide a telemetry provider, which is used to
337
+ # emit telemetry data. By default, uses `NoOpTelemetryProvider` which
338
+ # will not record or emit any telemetry data. The SDK supports the
339
+ # following telemetry providers:
340
+ #
341
+ # * OpenTelemetry (OTel) - To use the OTel provider, install and require the
342
+ # `opentelemetry-sdk` gem and then, pass in an instance of a
343
+ # `Aws::Telemetry::OTelProvider` for telemetry provider.
344
+ #
333
345
  # @option options [Aws::TokenProvider] :token_provider
334
346
  # A Bearer Token Provider. This can be an instance of any one of the
335
347
  # following classes:
@@ -2059,7 +2071,7 @@ module Aws::QuickSight
2059
2071
  # {
2060
2072
  # column_name: "ColumnName", # required
2061
2073
  # column_id: "ColumnId", # required
2062
- # expression: "Expression", # required
2074
+ # expression: "DataSetCalculatedFieldExpression", # required
2063
2075
  # },
2064
2076
  # ],
2065
2077
  # },
@@ -12987,7 +12999,7 @@ module Aws::QuickSight
12987
12999
  # {
12988
13000
  # column_name: "ColumnName", # required
12989
13001
  # column_id: "ColumnId", # required
12990
- # expression: "Expression", # required
13002
+ # expression: "DataSetCalculatedFieldExpression", # required
12991
13003
  # },
12992
13004
  # ],
12993
13005
  # },
@@ -15248,14 +15260,19 @@ module Aws::QuickSight
15248
15260
  # @api private
15249
15261
  def build_request(operation_name, params = {})
15250
15262
  handlers = @handlers.for(operation_name)
15263
+ tracer = config.telemetry_provider.tracer_provider.tracer(
15264
+ Aws::Telemetry.module_to_tracer_name('Aws::QuickSight')
15265
+ )
15251
15266
  context = Seahorse::Client::RequestContext.new(
15252
15267
  operation_name: operation_name,
15253
15268
  operation: config.api.operation(operation_name),
15254
15269
  client: self,
15255
15270
  params: params,
15256
- config: config)
15271
+ config: config,
15272
+ tracer: tracer
15273
+ )
15257
15274
  context[:gem_name] = 'aws-sdk-quicksight'
15258
- context[:gem_version] = '1.121.0'
15275
+ context[:gem_version] = '1.123.0'
15259
15276
  Seahorse::Client::Request.new(handlers, context)
15260
15277
  end
15261
15278
 
@@ -474,6 +474,7 @@ module Aws::QuickSight
474
474
  DataPointTooltipOption = Shapes::StructureShape.new(name: 'DataPointTooltipOption')
475
475
  DataSet = Shapes::StructureShape.new(name: 'DataSet')
476
476
  DataSetArnsList = Shapes::ListShape.new(name: 'DataSetArnsList')
477
+ DataSetCalculatedFieldExpression = Shapes::StringShape.new(name: 'DataSetCalculatedFieldExpression')
477
478
  DataSetConfiguration = Shapes::StructureShape.new(name: 'DataSetConfiguration')
478
479
  DataSetConfigurationList = Shapes::ListShape.new(name: 'DataSetConfigurationList')
479
480
  DataSetFilterAttribute = Shapes::StringShape.new(name: 'DataSetFilterAttribute')
@@ -2657,7 +2658,7 @@ module Aws::QuickSight
2657
2658
 
2658
2659
  CalculatedColumn.add_member(:column_name, Shapes::ShapeRef.new(shape: ColumnName, required: true, location_name: "ColumnName"))
2659
2660
  CalculatedColumn.add_member(:column_id, Shapes::ShapeRef.new(shape: ColumnId, required: true, location_name: "ColumnId"))
2660
- CalculatedColumn.add_member(:expression, Shapes::ShapeRef.new(shape: Expression, required: true, location_name: "Expression"))
2661
+ CalculatedColumn.add_member(:expression, Shapes::ShapeRef.new(shape: DataSetCalculatedFieldExpression, required: true, location_name: "Expression"))
2661
2662
  CalculatedColumn.struct_class = Types::CalculatedColumn
2662
2663
 
2663
2664
  CalculatedColumnList.member = Shapes::ShapeRef.new(shape: CalculatedColumn)
@@ -3941,7 +3941,7 @@ module Aws::QuickSight
3941
3941
  #
3942
3942
  class ColumnDescription < Struct.new(
3943
3943
  :text)
3944
- SENSITIVE = []
3944
+ SENSITIVE = [:text]
3945
3945
  include Aws::Structure
3946
3946
  end
3947
3947
 
@@ -22040,7 +22040,7 @@ module Aws::QuickSight
22040
22040
  :description,
22041
22041
  :type,
22042
22042
  :sub_type)
22043
- SENSITIVE = []
22043
+ SENSITIVE = [:description]
22044
22044
  include Aws::Structure
22045
22045
  end
22046
22046
 
@@ -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.121.0'
55
+ GEM_VERSION = '1.123.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -50,6 +50,7 @@ module Aws
50
50
  ?session_token: String,
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?stub_responses: untyped,
53
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
53
54
  ?token_provider: untyped,
54
55
  ?use_dualstack_endpoint: bool,
55
56
  ?use_fips_endpoint: bool,
data/sig/resource.rbs CHANGED
@@ -50,6 +50,7 @@ module Aws
50
50
  ?session_token: String,
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?stub_responses: untyped,
53
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
53
54
  ?token_provider: untyped,
54
55
  ?use_dualstack_endpoint: bool,
55
56
  ?use_fips_endpoint: bool,
data/sig/types.rbs CHANGED
@@ -1022,7 +1022,7 @@ module Aws::QuickSight
1022
1022
 
1023
1023
  class ColumnDescription
1024
1024
  attr_accessor text: ::String
1025
- SENSITIVE: []
1025
+ SENSITIVE: [:text]
1026
1026
  end
1027
1027
 
1028
1028
  class ColumnGroup
@@ -5663,7 +5663,7 @@ module Aws::QuickSight
5663
5663
  attr_accessor description: ::String
5664
5664
  attr_accessor type: ("STRING" | "INTEGER" | "DECIMAL" | "DATETIME")
5665
5665
  attr_accessor sub_type: ("FLOAT" | "FIXED")
5666
- SENSITIVE: []
5666
+ SENSITIVE: [:description]
5667
5667
  end
5668
5668
 
5669
5669
  class OverrideDatasetParameterOperation
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.121.0
4
+ version: 1.123.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-08-22 00:00:00.000000000 Z
11
+ date: 2024-09-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.201.0
22
+ version: 3.203.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.201.0
32
+ version: 3.203.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement