aws-sdk-quicksight 1.105.0 → 1.106.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: 65130bfbd3df53d05d8179df73b3578522d86f475f86b2d334bb4676dff3eb9b
4
- data.tar.gz: f77e6504e0177678c507d329e4b1527d3d4328cc2d8e974c1ee992811765273a
3
+ metadata.gz: 5c47a6506f2a2ff6266630499f635fe7268907ab4e0a42dad0bc7ce6971fca0a
4
+ data.tar.gz: d209774bae6003883eb4f90a9813671bc93f3633686c7081297ed8a9b532b7ad
5
5
  SHA512:
6
- metadata.gz: a0406e4ba611d43d9b3ead54722b0dc82b085cf710d0121ac84b3acb111dcc82ec2cad8e276b52ea8cf0a1cb81266aeb276c6aa2c7e35a533c0b5fb64541fdef
7
- data.tar.gz: f089804bcefdd97d7cbc45f25dba1f1003eb62a248b97bb6d8d285890ba5e96278ea830549f46cd8062c6e0c9f03e8e788dc4b1627a26df5b47e98c3be260992
6
+ metadata.gz: bd36e46298cf5049082df2da69e7b9712ef078779a4323b542fe0ee1ae9d69ad873a21bf65bf157b2d40feecd9e7b79e854ee4e87c48e3100b087ce8e888d201
7
+ data.tar.gz: b1b9b3528248fd973f6661bb811213408d68fddae80e65c1abcc75a714be537b442daf094ad47928e3efab14e3844db23c2515a3a6152c9a4a93915abb12820d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.106.0 (2024-03-28)
5
+ ------------------
6
+
7
+ * Feature - Amazon QuickSight: Adds support for setting up VPC Endpoint restrictions for accessing QuickSight Website.
8
+
4
9
  1.105.0 (2024-02-29)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.105.0
1
+ 1.106.0
@@ -5960,6 +5960,8 @@ module Aws::QuickSight
5960
5960
  #
5961
5961
  # * {Types::DescribeIpRestrictionResponse#aws_account_id #aws_account_id} => String
5962
5962
  # * {Types::DescribeIpRestrictionResponse#ip_restriction_rule_map #ip_restriction_rule_map} => Hash<String,String>
5963
+ # * {Types::DescribeIpRestrictionResponse#vpc_id_restriction_rule_map #vpc_id_restriction_rule_map} => Hash<String,String>
5964
+ # * {Types::DescribeIpRestrictionResponse#vpc_endpoint_id_restriction_rule_map #vpc_endpoint_id_restriction_rule_map} => Hash<String,String>
5963
5965
  # * {Types::DescribeIpRestrictionResponse#enabled #enabled} => Boolean
5964
5966
  # * {Types::DescribeIpRestrictionResponse#request_id #request_id} => String
5965
5967
  # * {Types::DescribeIpRestrictionResponse#status #status} => Integer
@@ -5975,6 +5977,10 @@ module Aws::QuickSight
5975
5977
  # resp.aws_account_id #=> String
5976
5978
  # resp.ip_restriction_rule_map #=> Hash
5977
5979
  # resp.ip_restriction_rule_map["CIDR"] #=> String
5980
+ # resp.vpc_id_restriction_rule_map #=> Hash
5981
+ # resp.vpc_id_restriction_rule_map["VpcId"] #=> String
5982
+ # resp.vpc_endpoint_id_restriction_rule_map #=> Hash
5983
+ # resp.vpc_endpoint_id_restriction_rule_map["VpcEndpointId"] #=> String
5978
5984
  # resp.enabled #=> Boolean
5979
5985
  # resp.request_id #=> String
5980
5986
  # resp.status #=> Integer
@@ -7047,7 +7053,10 @@ module Aws::QuickSight
7047
7053
  # dashboard ARNs in the account that you want the user to be able to
7048
7054
  # view.
7049
7055
  #
7050
- # Currently, you can pass up to 25 dashboard ARNs in each API call.
7056
+ # If you want to make changes to the theme of your embedded content,
7057
+ # pass a list of theme ARNs that the anonymous users need access to.
7058
+ #
7059
+ # Currently, you can pass up to 25 theme ARNs in each API call.
7051
7060
  #
7052
7061
  # @option params [required, Types::AnonymousUserEmbeddingExperienceConfiguration] :experience_configuration
7053
7062
  # The configuration of the experience that you are embedding.
@@ -12293,8 +12302,10 @@ module Aws::QuickSight
12293
12302
  req.send_request(options)
12294
12303
  end
12295
12304
 
12296
- # Updates the content and status of IP rules. To use this operation, you
12297
- # must provide the entire map of rules. You can use the
12305
+ # Updates the content and status of IP rules. Traffic from a source is
12306
+ # allowed when the source satisfies either the `IpRestrictionRule`,
12307
+ # `VpcIdRestrictionRule`, or `VpcEndpointIdRestrictionRule`. To use this
12308
+ # operation, you must provide the entire map of rules. You can use the
12298
12309
  # `DescribeIpRestriction` operation to get the current rule map.
12299
12310
  #
12300
12311
  # @option params [required, String] :aws_account_id
@@ -12304,6 +12315,15 @@ module Aws::QuickSight
12304
12315
  # A map that describes the updated IP rules with CIDR ranges and
12305
12316
  # descriptions.
12306
12317
  #
12318
+ # @option params [Hash<String,String>] :vpc_id_restriction_rule_map
12319
+ # A map of VPC IDs and their corresponding rules. When you configure
12320
+ # this parameter, traffic from all VPC endpoints that are present in the
12321
+ # specified VPC is allowed.
12322
+ #
12323
+ # @option params [Hash<String,String>] :vpc_endpoint_id_restriction_rule_map
12324
+ # A map of allowed VPC endpoint IDs and their corresponding rule
12325
+ # descriptions.
12326
+ #
12307
12327
  # @option params [Boolean] :enabled
12308
12328
  # A value that specifies whether IP rules are turned on.
12309
12329
  #
@@ -12320,6 +12340,12 @@ module Aws::QuickSight
12320
12340
  # ip_restriction_rule_map: {
12321
12341
  # "CIDR" => "IpRestrictionRuleDescription",
12322
12342
  # },
12343
+ # vpc_id_restriction_rule_map: {
12344
+ # "VpcId" => "VpcIdRestrictionRuleDescription",
12345
+ # },
12346
+ # vpc_endpoint_id_restriction_rule_map: {
12347
+ # "VpcEndpointId" => "VpcEndpointIdRestrictionRuleDescription",
12348
+ # },
12323
12349
  # enabled: false,
12324
12350
  # })
12325
12351
  #
@@ -13539,7 +13565,7 @@ module Aws::QuickSight
13539
13565
  params: params,
13540
13566
  config: config)
13541
13567
  context[:gem_name] = 'aws-sdk-quicksight'
13542
- context[:gem_version] = '1.105.0'
13568
+ context[:gem_version] = '1.106.0'
13543
13569
  Seahorse::Client::Request.new(handlers, context)
13544
13570
  end
13545
13571
 
@@ -1762,6 +1762,12 @@ module Aws::QuickSight
1762
1762
  VisualSubtitleLabelOptions = Shapes::StructureShape.new(name: 'VisualSubtitleLabelOptions')
1763
1763
  VisualTitleLabelOptions = Shapes::StructureShape.new(name: 'VisualTitleLabelOptions')
1764
1764
  VpcConnectionProperties = Shapes::StructureShape.new(name: 'VpcConnectionProperties')
1765
+ VpcEndpointId = Shapes::StringShape.new(name: 'VpcEndpointId')
1766
+ VpcEndpointIdRestrictionRuleDescription = Shapes::StringShape.new(name: 'VpcEndpointIdRestrictionRuleDescription')
1767
+ VpcEndpointIdRestrictionRuleMap = Shapes::MapShape.new(name: 'VpcEndpointIdRestrictionRuleMap')
1768
+ VpcId = Shapes::StringShape.new(name: 'VpcId')
1769
+ VpcIdRestrictionRuleDescription = Shapes::StringShape.new(name: 'VpcIdRestrictionRuleDescription')
1770
+ VpcIdRestrictionRuleMap = Shapes::MapShape.new(name: 'VpcIdRestrictionRuleMap')
1765
1771
  Warehouse = Shapes::StringShape.new(name: 'Warehouse')
1766
1772
  WaterfallChartAggregatedFieldWells = Shapes::StructureShape.new(name: 'WaterfallChartAggregatedFieldWells')
1767
1773
  WaterfallChartColorConfiguration = Shapes::StructureShape.new(name: 'WaterfallChartColorConfiguration')
@@ -4221,6 +4227,8 @@ module Aws::QuickSight
4221
4227
 
4222
4228
  DescribeIpRestrictionResponse.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, location_name: "AwsAccountId"))
4223
4229
  DescribeIpRestrictionResponse.add_member(:ip_restriction_rule_map, Shapes::ShapeRef.new(shape: IpRestrictionRuleMap, location_name: "IpRestrictionRuleMap"))
4230
+ DescribeIpRestrictionResponse.add_member(:vpc_id_restriction_rule_map, Shapes::ShapeRef.new(shape: VpcIdRestrictionRuleMap, location_name: "VpcIdRestrictionRuleMap"))
4231
+ DescribeIpRestrictionResponse.add_member(:vpc_endpoint_id_restriction_rule_map, Shapes::ShapeRef.new(shape: VpcEndpointIdRestrictionRuleMap, location_name: "VpcEndpointIdRestrictionRuleMap"))
4224
4232
  DescribeIpRestrictionResponse.add_member(:enabled, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "Enabled"))
4225
4233
  DescribeIpRestrictionResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
4226
4234
  DescribeIpRestrictionResponse.add_member(:status, Shapes::ShapeRef.new(shape: StatusCode, location: "statusCode", location_name: "Status"))
@@ -8164,6 +8172,8 @@ module Aws::QuickSight
8164
8172
 
8165
8173
  UpdateIpRestrictionRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
8166
8174
  UpdateIpRestrictionRequest.add_member(:ip_restriction_rule_map, Shapes::ShapeRef.new(shape: IpRestrictionRuleMap, location_name: "IpRestrictionRuleMap"))
8175
+ UpdateIpRestrictionRequest.add_member(:vpc_id_restriction_rule_map, Shapes::ShapeRef.new(shape: VpcIdRestrictionRuleMap, location_name: "VpcIdRestrictionRuleMap"))
8176
+ UpdateIpRestrictionRequest.add_member(:vpc_endpoint_id_restriction_rule_map, Shapes::ShapeRef.new(shape: VpcEndpointIdRestrictionRuleMap, location_name: "VpcEndpointIdRestrictionRuleMap"))
8167
8177
  UpdateIpRestrictionRequest.add_member(:enabled, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "Enabled"))
8168
8178
  UpdateIpRestrictionRequest.struct_class = Types::UpdateIpRestrictionRequest
8169
8179
 
@@ -8485,6 +8495,12 @@ module Aws::QuickSight
8485
8495
  VpcConnectionProperties.add_member(:vpc_connection_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "VpcConnectionArn"))
8486
8496
  VpcConnectionProperties.struct_class = Types::VpcConnectionProperties
8487
8497
 
8498
+ VpcEndpointIdRestrictionRuleMap.key = Shapes::ShapeRef.new(shape: VpcEndpointId)
8499
+ VpcEndpointIdRestrictionRuleMap.value = Shapes::ShapeRef.new(shape: VpcEndpointIdRestrictionRuleDescription)
8500
+
8501
+ VpcIdRestrictionRuleMap.key = Shapes::ShapeRef.new(shape: VpcId)
8502
+ VpcIdRestrictionRuleMap.value = Shapes::ShapeRef.new(shape: VpcIdRestrictionRuleDescription)
8503
+
8488
8504
  WaterfallChartAggregatedFieldWells.add_member(:categories, Shapes::ShapeRef.new(shape: DimensionFieldList, location_name: "Categories"))
8489
8505
  WaterfallChartAggregatedFieldWells.add_member(:values, Shapes::ShapeRef.new(shape: MeasureFieldList, location_name: "Values"))
8490
8506
  WaterfallChartAggregatedFieldWells.add_member(:breakdowns, Shapes::ShapeRef.new(shape: DimensionFieldList, location_name: "Breakdowns"))
@@ -8434,7 +8434,8 @@ module Aws::QuickSight
8434
8434
  include Aws::Structure
8435
8435
  end
8436
8436
 
8437
- # A dataset parameter.
8437
+ # A parameter that is created in a dataset. The parameter can be a
8438
+ # string, integer, decimal, or datetime data type.
8438
8439
  #
8439
8440
  # @!attribute [rw] string_dataset_parameter
8440
8441
  # A string parameter that is created in the dataset.
@@ -11908,6 +11909,14 @@ module Aws::QuickSight
11908
11909
  # A map that describes the IP rules with CIDR range and description.
11909
11910
  # @return [Hash<String,String>]
11910
11911
  #
11912
+ # @!attribute [rw] vpc_id_restriction_rule_map
11913
+ # A map of allowed VPC IDs and their rule descriptions.
11914
+ # @return [Hash<String,String>]
11915
+ #
11916
+ # @!attribute [rw] vpc_endpoint_id_restriction_rule_map
11917
+ # A map of allowed VPC endpoint IDs and their rule descriptions.
11918
+ # @return [Hash<String,String>]
11919
+ #
11911
11920
  # @!attribute [rw] enabled
11912
11921
  # A value that specifies whether IP rules are turned on.
11913
11922
  # @return [Boolean]
@@ -11925,6 +11934,8 @@ module Aws::QuickSight
11925
11934
  class DescribeIpRestrictionResponse < Struct.new(
11926
11935
  :aws_account_id,
11927
11936
  :ip_restriction_rule_map,
11937
+ :vpc_id_restriction_rule_map,
11938
+ :vpc_endpoint_id_restriction_rule_map,
11928
11939
  :enabled,
11929
11940
  :request_id,
11930
11941
  :status)
@@ -15244,7 +15255,10 @@ module Aws::QuickSight
15244
15255
  # dashboard ARNs in the account that you want the user to be able to
15245
15256
  # view.
15246
15257
  #
15247
- # Currently, you can pass up to 25 dashboard ARNs in each API call.
15258
+ # If you want to make changes to the theme of your embedded content,
15259
+ # pass a list of theme ARNs that the anonymous users need access to.
15260
+ #
15261
+ # Currently, you can pass up to 25 theme ARNs in each API call.
15248
15262
  # @return [Array<String>]
15249
15263
  #
15250
15264
  # @!attribute [rw] experience_configuration
@@ -31259,6 +31273,17 @@ module Aws::QuickSight
31259
31273
  # descriptions.
31260
31274
  # @return [Hash<String,String>]
31261
31275
  #
31276
+ # @!attribute [rw] vpc_id_restriction_rule_map
31277
+ # A map of VPC IDs and their corresponding rules. When you configure
31278
+ # this parameter, traffic from all VPC endpoints that are present in
31279
+ # the specified VPC is allowed.
31280
+ # @return [Hash<String,String>]
31281
+ #
31282
+ # @!attribute [rw] vpc_endpoint_id_restriction_rule_map
31283
+ # A map of allowed VPC endpoint IDs and their corresponding rule
31284
+ # descriptions.
31285
+ # @return [Hash<String,String>]
31286
+ #
31262
31287
  # @!attribute [rw] enabled
31263
31288
  # A value that specifies whether IP rules are turned on.
31264
31289
  # @return [Boolean]
@@ -31268,6 +31293,8 @@ module Aws::QuickSight
31268
31293
  class UpdateIpRestrictionRequest < Struct.new(
31269
31294
  :aws_account_id,
31270
31295
  :ip_restriction_rule_map,
31296
+ :vpc_id_restriction_rule_map,
31297
+ :vpc_endpoint_id_restriction_rule_map,
31271
31298
  :enabled)
31272
31299
  SENSITIVE = []
31273
31300
  include Aws::Structure
@@ -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.105.0'
55
+ GEM_VERSION = '1.106.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -98143,6 +98143,8 @@ module Aws
98143
98143
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeIpRestrictionResponse]
98144
98144
  def aws_account_id: () -> ::String
98145
98145
  def ip_restriction_rule_map: () -> ::Hash[::String, ::String]
98146
+ def vpc_id_restriction_rule_map: () -> ::Hash[::String, ::String]
98147
+ def vpc_endpoint_id_restriction_rule_map: () -> ::Hash[::String, ::String]
98146
98148
  def enabled: () -> bool
98147
98149
  def request_id: () -> ::String
98148
98150
  def status: () -> ::Integer
@@ -164548,6 +164550,8 @@ module Aws
164548
164550
  def update_ip_restriction: (
164549
164551
  aws_account_id: ::String,
164550
164552
  ?ip_restriction_rule_map: Hash[::String, ::String],
164553
+ ?vpc_id_restriction_rule_map: Hash[::String, ::String],
164554
+ ?vpc_endpoint_id_restriction_rule_map: Hash[::String, ::String],
164551
164555
  ?enabled: bool
164552
164556
  ) -> _UpdateIpRestrictionResponseSuccess
164553
164557
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateIpRestrictionResponseSuccess
data/sig/types.rbs CHANGED
@@ -3017,6 +3017,8 @@ module Aws::QuickSight
3017
3017
  class DescribeIpRestrictionResponse
3018
3018
  attr_accessor aws_account_id: ::String
3019
3019
  attr_accessor ip_restriction_rule_map: ::Hash[::String, ::String]
3020
+ attr_accessor vpc_id_restriction_rule_map: ::Hash[::String, ::String]
3021
+ attr_accessor vpc_endpoint_id_restriction_rule_map: ::Hash[::String, ::String]
3020
3022
  attr_accessor enabled: bool
3021
3023
  attr_accessor request_id: ::String
3022
3024
  attr_accessor status: ::Integer
@@ -7982,6 +7984,8 @@ module Aws::QuickSight
7982
7984
  class UpdateIpRestrictionRequest
7983
7985
  attr_accessor aws_account_id: ::String
7984
7986
  attr_accessor ip_restriction_rule_map: ::Hash[::String, ::String]
7987
+ attr_accessor vpc_id_restriction_rule_map: ::Hash[::String, ::String]
7988
+ attr_accessor vpc_endpoint_id_restriction_rule_map: ::Hash[::String, ::String]
7985
7989
  attr_accessor enabled: bool
7986
7990
  SENSITIVE: []
7987
7991
  end
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.105.0
4
+ version: 1.106.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-02-29 00:00:00.000000000 Z
11
+ date: 2024-03-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core