aws-sdk-quicksight 1.33.0 → 1.34.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: 981e8055e88be8ba97985e11e937beb9ac5ac931b56288ee3e4ca1a86c99d4a1
4
- data.tar.gz: b639120042c2d764dfa8bc5c7170a8878ad5e1f2bca54aa0ebd042a27481b6c9
3
+ metadata.gz: 42e820b20c71e06bddb4b00c1e169673b7fe6671f070b84915e3e812be3eb1fb
4
+ data.tar.gz: 5eea29a85f93fdbeca259586cce8da4755d66e88c8a21db4edafa3f4328aada9
5
5
  SHA512:
6
- metadata.gz: ba5953796d50652402b1a5dd835cca44a3a7707afc07c0831f11d33c0ccd9ad1ec26d6b05079caa3cf5255c2680305504aa24273569141349d4e2149c162b846
7
- data.tar.gz: dd93f636b5ed79a70fd68786a34500b6ff502dc15588ae75ba60a379969fd3a8640aee3db7e4b8b107e41d52bf8f84aeacff287837c603adab7832132cc61ad4
6
+ metadata.gz: 4bc50459f25a959de5af779c1681a9f699be1e941e847832fed160ad34f66516ede3e6e78f5ee394bc970a7b3bea5c41fcb2f27d29670dd5bd53e8b8a54bf090
7
+ data.tar.gz: f15e46e5f2a46d808620e251008b1844bf39815c34e320d569448856c052ed1c9e4cdead2f861f402967c1c2074ac22d25a9f164ae6efac732679d563dda7968
@@ -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.33.0'
51
+ GEM_VERSION = '1.34.0'
52
52
 
53
53
  end
@@ -886,6 +886,9 @@ module Aws::QuickSight
886
886
  # tags: [ # required
887
887
  # {
888
888
  # column_geographic_role: "COUNTRY", # accepts COUNTRY, STATE, COUNTY, CITY, POSTCODE, LONGITUDE, LATITUDE
889
+ # column_description: {
890
+ # text: "ColumnDescriptiveText",
891
+ # },
889
892
  # },
890
893
  # ],
891
894
  # },
@@ -2951,6 +2954,7 @@ module Aws::QuickSight
2951
2954
  # resp.data_set.logical_table_map["LogicalTableId"].data_transforms[0].tag_column_operation.column_name #=> String
2952
2955
  # resp.data_set.logical_table_map["LogicalTableId"].data_transforms[0].tag_column_operation.tags #=> Array
2953
2956
  # resp.data_set.logical_table_map["LogicalTableId"].data_transforms[0].tag_column_operation.tags[0].column_geographic_role #=> String, one of "COUNTRY", "STATE", "COUNTY", "CITY", "POSTCODE", "LONGITUDE", "LATITUDE"
2957
+ # resp.data_set.logical_table_map["LogicalTableId"].data_transforms[0].tag_column_operation.tags[0].column_description.text #=> String
2954
2958
  # resp.data_set.logical_table_map["LogicalTableId"].source.join_instruction.left_operand #=> String
2955
2959
  # resp.data_set.logical_table_map["LogicalTableId"].source.join_instruction.right_operand #=> String
2956
2960
  # resp.data_set.logical_table_map["LogicalTableId"].source.join_instruction.type #=> String, one of "INNER", "OUTER", "LEFT", "RIGHT"
@@ -2958,6 +2962,7 @@ module Aws::QuickSight
2958
2962
  # resp.data_set.logical_table_map["LogicalTableId"].source.physical_table_id #=> String
2959
2963
  # resp.data_set.output_columns #=> Array
2960
2964
  # resp.data_set.output_columns[0].name #=> String
2965
+ # resp.data_set.output_columns[0].description #=> String
2961
2966
  # resp.data_set.output_columns[0].type #=> String, one of "STRING", "INTEGER", "DECIMAL", "DATETIME"
2962
2967
  # resp.data_set.import_mode #=> String, one of "SPICE", "DIRECT_QUERY"
2963
2968
  # resp.data_set.consumed_spice_capacity_in_bytes #=> Integer
@@ -6187,6 +6192,9 @@ module Aws::QuickSight
6187
6192
  # tags: [ # required
6188
6193
  # {
6189
6194
  # column_geographic_role: "COUNTRY", # accepts COUNTRY, STATE, COUNTY, CITY, POSTCODE, LONGITUDE, LATITUDE
6195
+ # column_description: {
6196
+ # text: "ColumnDescriptiveText",
6197
+ # },
6190
6198
  # },
6191
6199
  # ],
6192
6200
  # },
@@ -7301,7 +7309,7 @@ module Aws::QuickSight
7301
7309
  params: params,
7302
7310
  config: config)
7303
7311
  context[:gem_name] = 'aws-sdk-quicksight'
7304
- context[:gem_version] = '1.33.0'
7312
+ context[:gem_version] = '1.34.0'
7305
7313
  Seahorse::Client::Request.new(handlers, context)
7306
7314
  end
7307
7315
 
@@ -53,6 +53,8 @@ module Aws::QuickSight
53
53
  ClusterId = Shapes::StringShape.new(name: 'ClusterId')
54
54
  ColorList = Shapes::ListShape.new(name: 'ColorList')
55
55
  ColumnDataType = Shapes::StringShape.new(name: 'ColumnDataType')
56
+ ColumnDescription = Shapes::StructureShape.new(name: 'ColumnDescription')
57
+ ColumnDescriptiveText = Shapes::StringShape.new(name: 'ColumnDescriptiveText')
56
58
  ColumnGroup = Shapes::StructureShape.new(name: 'ColumnGroup')
57
59
  ColumnGroupColumnSchema = Shapes::StructureShape.new(name: 'ColumnGroupColumnSchema')
58
60
  ColumnGroupColumnSchemaList = Shapes::ListShape.new(name: 'ColumnGroupColumnSchemaList')
@@ -632,6 +634,9 @@ module Aws::QuickSight
632
634
 
633
635
  ColorList.member = Shapes::ShapeRef.new(shape: HexColor)
634
636
 
637
+ ColumnDescription.add_member(:text, Shapes::ShapeRef.new(shape: ColumnDescriptiveText, location_name: "Text"))
638
+ ColumnDescription.struct_class = Types::ColumnDescription
639
+
635
640
  ColumnGroup.add_member(:geo_spatial_column_group, Shapes::ShapeRef.new(shape: GeoSpatialColumnGroup, location_name: "GeoSpatialColumnGroup"))
636
641
  ColumnGroup.struct_class = Types::ColumnGroup
637
642
 
@@ -658,6 +663,7 @@ module Aws::QuickSight
658
663
  ColumnSchemaList.member = Shapes::ShapeRef.new(shape: ColumnSchema)
659
664
 
660
665
  ColumnTag.add_member(:column_geographic_role, Shapes::ShapeRef.new(shape: GeoSpatialDataRole, location_name: "ColumnGeographicRole"))
666
+ ColumnTag.add_member(:column_description, Shapes::ShapeRef.new(shape: ColumnDescription, location_name: "ColumnDescription"))
661
667
  ColumnTag.struct_class = Types::ColumnTag
662
668
 
663
669
  ColumnTagList.member = Shapes::ShapeRef.new(shape: ColumnTag)
@@ -1859,6 +1865,7 @@ module Aws::QuickSight
1859
1865
  Namespaces.member = Shapes::ShapeRef.new(shape: NamespaceInfoV2)
1860
1866
 
1861
1867
  OutputColumn.add_member(:name, Shapes::ShapeRef.new(shape: ColumnName, location_name: "Name"))
1868
+ OutputColumn.add_member(:description, Shapes::ShapeRef.new(shape: ColumnDescriptiveText, location_name: "Description"))
1862
1869
  OutputColumn.add_member(:type, Shapes::ShapeRef.new(shape: ColumnDataType, location_name: "Type"))
1863
1870
  OutputColumn.struct_class = Types::OutputColumn
1864
1871
 
@@ -624,6 +624,27 @@ module Aws::QuickSight
624
624
  include Aws::Structure
625
625
  end
626
626
 
627
+ # Metadata that contains a description for a column.
628
+ #
629
+ # @note When making an API call, you may pass ColumnDescription
630
+ # data as a hash:
631
+ #
632
+ # {
633
+ # text: "ColumnDescriptiveText",
634
+ # }
635
+ #
636
+ # @!attribute [rw] text
637
+ # The text of a description for a column.
638
+ # @return [String]
639
+ #
640
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ColumnDescription AWS API Documentation
641
+ #
642
+ class ColumnDescription < Struct.new(
643
+ :text)
644
+ SENSITIVE = []
645
+ include Aws::Structure
646
+ end
647
+
627
648
  # Groupings of columns that work together in certain Amazon QuickSight
628
649
  # features. This is a variant type structure. For this structure to be
629
650
  # valid, only one of the attributes can be non-null.
@@ -718,16 +739,24 @@ module Aws::QuickSight
718
739
  #
719
740
  # {
720
741
  # column_geographic_role: "COUNTRY", # accepts COUNTRY, STATE, COUNTY, CITY, POSTCODE, LONGITUDE, LATITUDE
742
+ # column_description: {
743
+ # text: "ColumnDescriptiveText",
744
+ # },
721
745
  # }
722
746
  #
723
747
  # @!attribute [rw] column_geographic_role
724
748
  # A geospatial role for a column.
725
749
  # @return [String]
726
750
  #
751
+ # @!attribute [rw] column_description
752
+ # A description for a column.
753
+ # @return [Types::ColumnDescription]
754
+ #
727
755
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ColumnTag AWS API Documentation
728
756
  #
729
757
  class ColumnTag < Struct.new(
730
- :column_geographic_role)
758
+ :column_geographic_role,
759
+ :column_description)
731
760
  SENSITIVE = []
732
761
  include Aws::Structure
733
762
  end
@@ -1331,6 +1360,9 @@ module Aws::QuickSight
1331
1360
  # tags: [ # required
1332
1361
  # {
1333
1362
  # column_geographic_role: "COUNTRY", # accepts COUNTRY, STATE, COUNTY, CITY, POSTCODE, LONGITUDE, LATITUDE
1363
+ # column_description: {
1364
+ # text: "ColumnDescriptiveText",
1365
+ # },
1334
1366
  # },
1335
1367
  # ],
1336
1368
  # },
@@ -2718,7 +2750,7 @@ module Aws::QuickSight
2718
2750
  # data source parameters when you copy a data source by using a create
2719
2751
  # or update request. The API operation compares the
2720
2752
  # `DataSourceParameters` structure that's in the request with the
2721
- # structures in the `AlternateDataSourceParameters` allowlist. If the
2753
+ # structures in the `AlternateDataSourceParameters` allow list. If the
2722
2754
  # structures are an exact match, the request is allowed to use the new
2723
2755
  # data source with the existing credentials. If the
2724
2756
  # `AlternateDataSourceParameters` list is null, the
@@ -3125,7 +3157,7 @@ module Aws::QuickSight
3125
3157
  end
3126
3158
 
3127
3159
  # The theme colors that are used for data colors in charts. The colors
3128
- # description is a hexidecimal color code that consists of six
3160
+ # description is a hexadecimal color code that consists of six
3129
3161
  # alphanumerical characters, prefixed with `#`, for example #37BFF5.
3130
3162
  #
3131
3163
  # @note When making an API call, you may pass DataColorPalette
@@ -3388,10 +3420,10 @@ module Aws::QuickSight
3388
3420
  # applied in tandem with the data source parameters when you copy a
3389
3421
  # data source by using a create or update request. The API operation
3390
3422
  # compares the `DataSourceParameters` structure that's in the request
3391
- # with the structures in the `AlternateDataSourceParameters`
3392
- # allowlist. If the structures are an exact match, the request is
3393
- # allowed to use the credentials from this existing data source. If
3394
- # the `AlternateDataSourceParameters` list is null, the `Credentials`
3423
+ # with the structures in the `AlternateDataSourceParameters` allow
3424
+ # list. If the structures are an exact match, the request is allowed
3425
+ # to use the credentials from this existing data source. If the
3426
+ # `AlternateDataSourceParameters` list is null, the `Credentials`
3395
3427
  # originally used with this `DataSourceParameters` are automatically
3396
3428
  # allowed.
3397
3429
  # @return [Array<Types::DataSourceParameters>]
@@ -7929,6 +7961,9 @@ module Aws::QuickSight
7929
7961
  # tags: [ # required
7930
7962
  # {
7931
7963
  # column_geographic_role: "COUNTRY", # accepts COUNTRY, STATE, COUNTY, CITY, POSTCODE, LONGITUDE, LATITUDE
7964
+ # column_description: {
7965
+ # text: "ColumnDescriptiveText",
7966
+ # },
7932
7967
  # },
7933
7968
  # ],
7934
7969
  # },
@@ -8180,6 +8215,10 @@ module Aws::QuickSight
8180
8215
  # A display name for the dataset.
8181
8216
  # @return [String]
8182
8217
  #
8218
+ # @!attribute [rw] description
8219
+ # A description for a column.
8220
+ # @return [String]
8221
+ #
8183
8222
  # @!attribute [rw] type
8184
8223
  # Type.
8185
8224
  # @return [String]
@@ -8188,6 +8227,7 @@ module Aws::QuickSight
8188
8227
  #
8189
8228
  class OutputColumn < Struct.new(
8190
8229
  :name,
8230
+ :description,
8191
8231
  :type)
8192
8232
  SENSITIVE = []
8193
8233
  include Aws::Structure
@@ -8832,8 +8872,12 @@ module Aws::QuickSight
8832
8872
  # The Amazon Resource Name (ARN) of the principal. This can be one of
8833
8873
  # the following:
8834
8874
  #
8835
- # * The ARN of an Amazon QuickSight user, group, or namespace. (This
8836
- # is most common.)
8875
+ # * The ARN of an Amazon QuickSight user or group associated with a
8876
+ # data source or dataset. (This is common.)
8877
+ #
8878
+ # * The ARN of an Amazon QuickSight user, group, or namespace
8879
+ # associated with an analysis, dashboard, template, or theme. (This
8880
+ # is common.)
8837
8881
  #
8838
8882
  # * The ARN of an AWS account root: This is an IAM ARN rather than a
8839
8883
  # QuickSight ARN. Use this option only to share resources
@@ -9240,20 +9284,20 @@ module Aws::QuickSight
9240
9284
  include Aws::Structure
9241
9285
  end
9242
9286
 
9243
- # A sheet is an object that contains a set of visuals that are viewed
9244
- # together on one page in the Amazon QuickSight console. Every analysis
9245
- # and dashboard contains at least one sheet. Each sheet contains at
9246
- # least one visualization widget, for example a chart, pivot table, or
9247
- # narrative insight. Sheets can be associated with other components,
9248
- # such as controls, filters, and so on.
9287
+ # A *sheet*, which is an object that contains a set of visuals that are
9288
+ # viewed together on one page in the Amazon QuickSight console. Every
9289
+ # analysis and dashboard contains at least one sheet. Each sheet
9290
+ # contains at least one visualization widget, for example a chart, pivot
9291
+ # table, or narrative insight. Sheets can be associated with other
9292
+ # components, such as controls, filters, and so on.
9249
9293
  #
9250
9294
  # @!attribute [rw] sheet_id
9251
9295
  # The unique identifier associated with a sheet.
9252
9296
  # @return [String]
9253
9297
  #
9254
9298
  # @!attribute [rw] name
9255
- # The name of a sheet. This is displayed on the sheet's tab in the
9256
- # QuickSight console.
9299
+ # The name of a sheet. This name is displayed on the sheet's tab in
9300
+ # the QuickSight console.
9257
9301
  # @return [String]
9258
9302
  #
9259
9303
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/Sheet AWS API Documentation
@@ -9504,6 +9548,9 @@ module Aws::QuickSight
9504
9548
  # tags: [ # required
9505
9549
  # {
9506
9550
  # column_geographic_role: "COUNTRY", # accepts COUNTRY, STATE, COUNTY, CITY, POSTCODE, LONGITUDE, LATITUDE
9551
+ # column_description: {
9552
+ # text: "ColumnDescriptiveText",
9553
+ # },
9507
9554
  # },
9508
9555
  # ],
9509
9556
  # }
@@ -10322,6 +10369,9 @@ module Aws::QuickSight
10322
10369
  # tags: [ # required
10323
10370
  # {
10324
10371
  # column_geographic_role: "COUNTRY", # accepts COUNTRY, STATE, COUNTY, CITY, POSTCODE, LONGITUDE, LATITUDE
10372
+ # column_description: {
10373
+ # text: "ColumnDescriptiveText",
10374
+ # },
10325
10375
  # },
10326
10376
  # ],
10327
10377
  # },
@@ -10394,7 +10444,7 @@ module Aws::QuickSight
10394
10444
  end
10395
10445
 
10396
10446
  # The theme colors that apply to UI and to charts, excluding data
10397
- # colors. The colors description is a hexidecimal color code that
10447
+ # colors. The colors description is a hexadecimal color code that
10398
10448
  # consists of six alphanumerical characters, prefixed with `#`, for
10399
10449
  # example #37BFF5. For more information, see [Using Themes in Amazon
10400
10450
  # QuickSight][1] in the *Amazon QuickSight User Guide.*
@@ -11405,6 +11455,9 @@ module Aws::QuickSight
11405
11455
  # tags: [ # required
11406
11456
  # {
11407
11457
  # column_geographic_role: "COUNTRY", # accepts COUNTRY, STATE, COUNTY, CITY, POSTCODE, LONGITUDE, LATITUDE
11458
+ # column_description: {
11459
+ # text: "ColumnDescriptiveText",
11460
+ # },
11408
11461
  # },
11409
11462
  # ],
11410
11463
  # },
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.33.0
4
+ version: 1.34.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-10-01 00:00:00.000000000 Z
11
+ date: 2020-10-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core