aws-sdk-quicksight 1.37.0 → 1.38.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: cc768a006aa8c587eda554be341a77e3f52a3f19d293d8da994d5dc7eb46b672
4
- data.tar.gz: f5f2ac764bd21a81f4072127a51cc778f82e967a3a8d0497c3d7f94214466d21
3
+ metadata.gz: b509bb44e1d8d5e141cb1e2e0714db29849ef46332b841b84129e270d3e7c847
4
+ data.tar.gz: 69db9427266af3cb812e8a8f29a043b91f58f0b5d17b1d4b55567f91dc4074fe
5
5
  SHA512:
6
- metadata.gz: e6da05812fa170930a906dcf2a3661fed31f35f627fff7034279ee981ea5f07c50b84309fe4ea5a5a6ecdc43b9320bc082bcc39fec697badaf93a84c0aa88144
7
- data.tar.gz: 1ca11631d8d2d4adc5ae7351ce6117a3b44c31026c6160b8a0383754fed3b62d40b585cc117882e5394c183651d2772b15d75ed7ae31104c59437272ff0a9c51
6
+ metadata.gz: 80a7ebce36cab01a792a08a45fab7d263f3b2e3275d79dd7a9568672a1d12384044fd8424b4a6c7c882022b354e136cafa02a28fd79945fe5c5140b9776adb35
7
+ data.tar.gz: a21200db3901e31782e2c57914b5cf70030c90b3ee2c2aba621d7e867939ee022b16205c963892ba19345845ea74e86440795ed1ac81e5f8b037a0c570d70f14
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-quicksight/customizations'
48
48
  # @!group service
49
49
  module Aws::QuickSight
50
50
 
51
- GEM_VERSION = '1.37.0'
51
+ GEM_VERSION = '1.38.0'
52
52
 
53
53
  end
@@ -901,6 +901,12 @@ module Aws::QuickSight
901
901
  # join_instruction: {
902
902
  # left_operand: "LogicalTableId", # required
903
903
  # right_operand: "LogicalTableId", # required
904
+ # left_join_key_properties: {
905
+ # unique_key: false,
906
+ # },
907
+ # right_join_key_properties: {
908
+ # unique_key: false,
909
+ # },
904
910
  # type: "INNER", # required, accepts INNER, OUTER, LEFT, RIGHT
905
911
  # on_clause: "OnClause", # required
906
912
  # },
@@ -2978,6 +2984,8 @@ module Aws::QuickSight
2978
2984
  # resp.data_set.logical_table_map["LogicalTableId"].data_transforms[0].tag_column_operation.tags[0].column_description.text #=> String
2979
2985
  # resp.data_set.logical_table_map["LogicalTableId"].source.join_instruction.left_operand #=> String
2980
2986
  # resp.data_set.logical_table_map["LogicalTableId"].source.join_instruction.right_operand #=> String
2987
+ # resp.data_set.logical_table_map["LogicalTableId"].source.join_instruction.left_join_key_properties.unique_key #=> Boolean
2988
+ # resp.data_set.logical_table_map["LogicalTableId"].source.join_instruction.right_join_key_properties.unique_key #=> Boolean
2981
2989
  # resp.data_set.logical_table_map["LogicalTableId"].source.join_instruction.type #=> String, one of "INNER", "OUTER", "LEFT", "RIGHT"
2982
2990
  # resp.data_set.logical_table_map["LogicalTableId"].source.join_instruction.on_clause #=> String
2983
2991
  # resp.data_set.logical_table_map["LogicalTableId"].source.physical_table_id #=> String
@@ -3909,11 +3917,10 @@ module Aws::QuickSight
3909
3917
  # @option params [Array<String>] :additional_dashboard_ids
3910
3918
  # A list of one or more dashboard ids that you want to add to a session
3911
3919
  # that includes anonymous authorizations. `IdentityType` must be set to
3912
- # ANONYMOUS for this to work, because other other identity types
3913
- # authenticate as QuickSight users. For example, if you set
3914
- # "`--dashboard-id dash_id1 --dashboard-id dash_id2 dash_id3
3915
- # identity-type ANONYMOUS`", the session can access all three
3916
- # dashboards.
3920
+ # ANONYMOUS for this to work, because other identity types authenticate
3921
+ # as QuickSight users. For example, if you set "`--dashboard-id
3922
+ # dash_id1 --dashboard-id dash_id2 dash_id3 identity-type ANONYMOUS`",
3923
+ # the session can access all three dashboards.
3917
3924
  #
3918
3925
  # @return [Types::GetDashboardEmbedUrlResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3919
3926
  #
@@ -6273,6 +6280,12 @@ module Aws::QuickSight
6273
6280
  # join_instruction: {
6274
6281
  # left_operand: "LogicalTableId", # required
6275
6282
  # right_operand: "LogicalTableId", # required
6283
+ # left_join_key_properties: {
6284
+ # unique_key: false,
6285
+ # },
6286
+ # right_join_key_properties: {
6287
+ # unique_key: false,
6288
+ # },
6276
6289
  # type: "INNER", # required, accepts INNER, OUTER, LEFT, RIGHT
6277
6290
  # on_clause: "OnClause", # required
6278
6291
  # },
@@ -7394,7 +7407,7 @@ module Aws::QuickSight
7394
7407
  params: params,
7395
7408
  config: config)
7396
7409
  context[:gem_name] = 'aws-sdk-quicksight'
7397
- context[:gem_version] = '1.37.0'
7410
+ context[:gem_version] = '1.38.0'
7398
7411
  Seahorse::Client::Request.new(handlers, context)
7399
7412
  end
7400
7413
 
@@ -285,6 +285,7 @@ module Aws::QuickSight
285
285
  InvalidParameterValueException = Shapes::StructureShape.new(name: 'InvalidParameterValueException')
286
286
  JiraParameters = Shapes::StructureShape.new(name: 'JiraParameters')
287
287
  JoinInstruction = Shapes::StructureShape.new(name: 'JoinInstruction')
288
+ JoinKeyProperties = Shapes::StructureShape.new(name: 'JoinKeyProperties')
288
289
  JoinType = Shapes::StringShape.new(name: 'JoinType')
289
290
  LimitExceededException = Shapes::StructureShape.new(name: 'LimitExceededException')
290
291
  ListAnalysesRequest = Shapes::StructureShape.new(name: 'ListAnalysesRequest')
@@ -1601,10 +1602,15 @@ module Aws::QuickSight
1601
1602
 
1602
1603
  JoinInstruction.add_member(:left_operand, Shapes::ShapeRef.new(shape: LogicalTableId, required: true, location_name: "LeftOperand"))
1603
1604
  JoinInstruction.add_member(:right_operand, Shapes::ShapeRef.new(shape: LogicalTableId, required: true, location_name: "RightOperand"))
1605
+ JoinInstruction.add_member(:left_join_key_properties, Shapes::ShapeRef.new(shape: JoinKeyProperties, location_name: "LeftJoinKeyProperties"))
1606
+ JoinInstruction.add_member(:right_join_key_properties, Shapes::ShapeRef.new(shape: JoinKeyProperties, location_name: "RightJoinKeyProperties"))
1604
1607
  JoinInstruction.add_member(:type, Shapes::ShapeRef.new(shape: JoinType, required: true, location_name: "Type"))
1605
1608
  JoinInstruction.add_member(:on_clause, Shapes::ShapeRef.new(shape: OnClause, required: true, location_name: "OnClause"))
1606
1609
  JoinInstruction.struct_class = Types::JoinInstruction
1607
1610
 
1611
+ JoinKeyProperties.add_member(:unique_key, Shapes::ShapeRef.new(shape: Boolean, location_name: "UniqueKey", metadata: {"box"=>true}))
1612
+ JoinKeyProperties.struct_class = Types::JoinKeyProperties
1613
+
1608
1614
  LimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
1609
1615
  LimitExceededException.add_member(:resource_type, Shapes::ShapeRef.new(shape: ExceptionResourceType, location_name: "ResourceType"))
1610
1616
  LimitExceededException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
@@ -1404,6 +1404,12 @@ module Aws::QuickSight
1404
1404
  # join_instruction: {
1405
1405
  # left_operand: "LogicalTableId", # required
1406
1406
  # right_operand: "LogicalTableId", # required
1407
+ # left_join_key_properties: {
1408
+ # unique_key: false,
1409
+ # },
1410
+ # right_join_key_properties: {
1411
+ # unique_key: false,
1412
+ # },
1407
1413
  # type: "INNER", # required, accepts INNER, OUTER, LEFT, RIGHT
1408
1414
  # on_clause: "OnClause", # required
1409
1415
  # },
@@ -6183,8 +6189,8 @@ module Aws::QuickSight
6183
6189
  # @!attribute [rw] additional_dashboard_ids
6184
6190
  # A list of one or more dashboard ids that you want to add to a
6185
6191
  # session that includes anonymous authorizations. `IdentityType` must
6186
- # be set to ANONYMOUS for this to work, because other other identity
6187
- # types authenticate as QuickSight users. For example, if you set
6192
+ # be set to ANONYMOUS for this to work, because other identity types
6193
+ # authenticate as QuickSight users. For example, if you set
6188
6194
  # "`--dashboard-id dash_id1 --dashboard-id dash_id2 dash_id3
6189
6195
  # identity-type ANONYMOUS`", the session can access all three
6190
6196
  # dashboards.
@@ -6672,7 +6678,7 @@ module Aws::QuickSight
6672
6678
  include Aws::Structure
6673
6679
  end
6674
6680
 
6675
- # Join instruction.
6681
+ # The instructions associated with a join.
6676
6682
  #
6677
6683
  # @note When making an API call, you may pass JoinInstruction
6678
6684
  # data as a hash:
@@ -6680,24 +6686,38 @@ module Aws::QuickSight
6680
6686
  # {
6681
6687
  # left_operand: "LogicalTableId", # required
6682
6688
  # right_operand: "LogicalTableId", # required
6689
+ # left_join_key_properties: {
6690
+ # unique_key: false,
6691
+ # },
6692
+ # right_join_key_properties: {
6693
+ # unique_key: false,
6694
+ # },
6683
6695
  # type: "INNER", # required, accepts INNER, OUTER, LEFT, RIGHT
6684
6696
  # on_clause: "OnClause", # required
6685
6697
  # }
6686
6698
  #
6687
6699
  # @!attribute [rw] left_operand
6688
- # Left operand.
6700
+ # The operand on the left side of a join.
6689
6701
  # @return [String]
6690
6702
  #
6691
6703
  # @!attribute [rw] right_operand
6692
- # Right operand.
6704
+ # The operand on the right side of a join.
6693
6705
  # @return [String]
6694
6706
  #
6707
+ # @!attribute [rw] left_join_key_properties
6708
+ # Join key properties of the left operand.
6709
+ # @return [Types::JoinKeyProperties]
6710
+ #
6711
+ # @!attribute [rw] right_join_key_properties
6712
+ # Join key properties of the right operand.
6713
+ # @return [Types::JoinKeyProperties]
6714
+ #
6695
6715
  # @!attribute [rw] type
6696
- # Type.
6716
+ # The type of join that it is.
6697
6717
  # @return [String]
6698
6718
  #
6699
6719
  # @!attribute [rw] on_clause
6700
- # On Clause.
6720
+ # The join instructions provided in the `ON` clause of a join.
6701
6721
  # @return [String]
6702
6722
  #
6703
6723
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/JoinInstruction AWS API Documentation
@@ -6705,12 +6725,37 @@ module Aws::QuickSight
6705
6725
  class JoinInstruction < Struct.new(
6706
6726
  :left_operand,
6707
6727
  :right_operand,
6728
+ :left_join_key_properties,
6729
+ :right_join_key_properties,
6708
6730
  :type,
6709
6731
  :on_clause)
6710
6732
  SENSITIVE = []
6711
6733
  include Aws::Structure
6712
6734
  end
6713
6735
 
6736
+ # Properties associated with the columns participating in a join.
6737
+ #
6738
+ # @note When making an API call, you may pass JoinKeyProperties
6739
+ # data as a hash:
6740
+ #
6741
+ # {
6742
+ # unique_key: false,
6743
+ # }
6744
+ #
6745
+ # @!attribute [rw] unique_key
6746
+ # Indicates that a row in a table is uniquely identified by the
6747
+ # columns in a join key. This is used by QuickSight to optimize query
6748
+ # performance.
6749
+ # @return [Boolean]
6750
+ #
6751
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/JoinKeyProperties AWS API Documentation
6752
+ #
6753
+ class JoinKeyProperties < Struct.new(
6754
+ :unique_key)
6755
+ SENSITIVE = []
6756
+ include Aws::Structure
6757
+ end
6758
+
6714
6759
  # A limit is exceeded.
6715
6760
  #
6716
6761
  # @!attribute [rw] message
@@ -8094,6 +8139,12 @@ module Aws::QuickSight
8094
8139
  # join_instruction: {
8095
8140
  # left_operand: "LogicalTableId", # required
8096
8141
  # right_operand: "LogicalTableId", # required
8142
+ # left_join_key_properties: {
8143
+ # unique_key: false,
8144
+ # },
8145
+ # right_join_key_properties: {
8146
+ # unique_key: false,
8147
+ # },
8097
8148
  # type: "INNER", # required, accepts INNER, OUTER, LEFT, RIGHT
8098
8149
  # on_clause: "OnClause", # required
8099
8150
  # },
@@ -8134,6 +8185,12 @@ module Aws::QuickSight
8134
8185
  # join_instruction: {
8135
8186
  # left_operand: "LogicalTableId", # required
8136
8187
  # right_operand: "LogicalTableId", # required
8188
+ # left_join_key_properties: {
8189
+ # unique_key: false,
8190
+ # },
8191
+ # right_join_key_properties: {
8192
+ # unique_key: false,
8193
+ # },
8137
8194
  # type: "INNER", # required, accepts INNER, OUTER, LEFT, RIGHT
8138
8195
  # on_clause: "OnClause", # required
8139
8196
  # },
@@ -11646,6 +11703,12 @@ module Aws::QuickSight
11646
11703
  # join_instruction: {
11647
11704
  # left_operand: "LogicalTableId", # required
11648
11705
  # right_operand: "LogicalTableId", # required
11706
+ # left_join_key_properties: {
11707
+ # unique_key: false,
11708
+ # },
11709
+ # right_join_key_properties: {
11710
+ # unique_key: false,
11711
+ # },
11649
11712
  # type: "INNER", # required, accepts INNER, OUTER, LEFT, RIGHT
11650
11713
  # on_clause: "OnClause", # required
11651
11714
  # },
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.37.0
4
+ version: 1.38.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: 2020-11-24 00:00:00.000000000 Z
11
+ date: 2020-12-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core