aws-sdk-quicksight 1.40.0 → 1.41.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: 5680aaf3cccab1aea839f98eafa0378d0ba6dab4d21c1878e77e9ef80db6a1f3
4
- data.tar.gz: b224729444416df92af58e08982cacd16dfbca4aaac35fc901506a287a8dea0d
3
+ metadata.gz: c21b0a0bf94adccd86fd947bcb0bb1ef2529c324224109ffbda70add8fd5001e
4
+ data.tar.gz: e36ad67aa64b72081e368c2f7ed97a34576ac19b2cab3cce10485b21015b1d61
5
5
  SHA512:
6
- metadata.gz: de53b63d47e441c38387fa965a31c47356bbe6c666a12d8eceebe823457e97acc86b605aa9c4e5346bb217979bbd3c6553819a5cc8c995a6afb7545bef29cba8
7
- data.tar.gz: 0a1ea779ca031c48f548e605b1c4a7875cc335abe9c8178379c0c401a3abeb0914bc98559d3ba61c96e293ff56451e2cb84da50083418c9e4c1d1a0f2b145dca
6
+ metadata.gz: 606d17e35f47572d213686468bf09d2c0d24876403f75c4cc29db3584c31ee4293a86ef89174bd538d3a9f085623ac609f5d6689e082c3dac8cbb5dc349d3830
7
+ data.tar.gz: ce865a51a708aa4830dfb0d2bbd3780733cb7be92e84abc765557930339898f3b0c0f980e11e3d7f92e32c8bddd3eb87f3a4a22743e2ab49f8d59a14fcdc97ad
@@ -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.40.0'
51
+ GEM_VERSION = '1.41.0'
52
52
 
53
53
  end
@@ -784,6 +784,10 @@ module Aws::QuickSight
784
784
  # Groupings of columns that work together in certain QuickSight
785
785
  # features. Currently, only geospatial hierarchy is supported.
786
786
  #
787
+ # @option params [Hash<String,Types::FieldFolder>] :field_folders
788
+ # The folder that contains fields and nested subfolders for your
789
+ # dataset.
790
+ #
787
791
  # @option params [Array<Types::ResourcePermission>] :permissions
788
792
  # A list of resource permissions on the dataset.
789
793
  #
@@ -925,6 +929,12 @@ module Aws::QuickSight
925
929
  # },
926
930
  # },
927
931
  # ],
932
+ # field_folders: {
933
+ # "FieldFolderPath" => {
934
+ # description: "FieldFolderDescription",
935
+ # columns: ["String"],
936
+ # },
937
+ # },
928
938
  # permissions: [
929
939
  # {
930
940
  # principal: "Principal", # required
@@ -982,9 +992,12 @@ module Aws::QuickSight
982
992
  #
983
993
  # @option params [required, String] :type
984
994
  # The type of the data source. Currently, the supported types for this
985
- # operation are: `ATHENA, AURORA, AURORA_POSTGRESQL, MARIADB, MYSQL,
986
- # POSTGRESQL, PRESTO, REDSHIFT, S3, SNOWFLAKE, SPARK, SQLSERVER,
987
- # TERADATA`. Use `ListDataSources` to return a list of all data sources.
995
+ # operation are: `ATHENA, AURORA, AURORA_POSTGRESQL,
996
+ # AMAZON_ELASTICSEARCH, MARIADB, MYSQL, POSTGRESQL, PRESTO, REDSHIFT,
997
+ # S3, SNOWFLAKE, SPARK, SQLSERVER, TERADATA`. Use `ListDataSources` to
998
+ # return a list of all data sources.
999
+ #
1000
+ # `AMAZON_ELASTICSEARCH` is for Amazon managed Elasticsearch Service.
988
1001
  #
989
1002
  # @option params [Types::DataSourceParameters] :data_source_parameters
990
1003
  # The parameters that QuickSight uses to connect to your underlying
@@ -3002,6 +3015,10 @@ module Aws::QuickSight
3002
3015
  # resp.data_set.column_groups[0].geo_spatial_column_group.country_code #=> String, one of "US"
3003
3016
  # resp.data_set.column_groups[0].geo_spatial_column_group.columns #=> Array
3004
3017
  # resp.data_set.column_groups[0].geo_spatial_column_group.columns[0] #=> String
3018
+ # resp.data_set.field_folders #=> Hash
3019
+ # resp.data_set.field_folders["FieldFolderPath"].description #=> String
3020
+ # resp.data_set.field_folders["FieldFolderPath"].columns #=> Array
3021
+ # resp.data_set.field_folders["FieldFolderPath"].columns[0] #=> String
3005
3022
  # resp.data_set.row_level_permission_data_set.namespace #=> String
3006
3023
  # resp.data_set.row_level_permission_data_set.arn #=> String
3007
3024
  # resp.data_set.row_level_permission_data_set.permission_policy #=> String, one of "GRANT_ACCESS", "DENY_ACCESS"
@@ -6175,6 +6192,10 @@ module Aws::QuickSight
6175
6192
  # Groupings of columns that work together in certain QuickSight
6176
6193
  # features. Currently, only geospatial hierarchy is supported.
6177
6194
  #
6195
+ # @option params [Hash<String,Types::FieldFolder>] :field_folders
6196
+ # The folder that contains fields and nested subfolders for your
6197
+ # dataset.
6198
+ #
6178
6199
  # @option params [Types::RowLevelPermissionDataSet] :row_level_permission_data_set
6179
6200
  # The row-level security configuration for the data you want to create.
6180
6201
  #
@@ -6308,6 +6329,12 @@ module Aws::QuickSight
6308
6329
  # },
6309
6330
  # },
6310
6331
  # ],
6332
+ # field_folders: {
6333
+ # "FieldFolderPath" => {
6334
+ # description: "FieldFolderDescription",
6335
+ # columns: ["String"],
6336
+ # },
6337
+ # },
6311
6338
  # row_level_permission_data_set: {
6312
6339
  # namespace: "Namespace",
6313
6340
  # arn: "Arn", # required
@@ -7412,7 +7439,7 @@ module Aws::QuickSight
7412
7439
  params: params,
7413
7440
  config: config)
7414
7441
  context[:gem_name] = 'aws-sdk-quicksight'
7415
- context[:gem_version] = '1.40.0'
7442
+ context[:gem_version] = '1.41.0'
7416
7443
  Seahorse::Client::Request.new(handlers, context)
7417
7444
  end
7418
7445
 
@@ -236,9 +236,14 @@ module Aws::QuickSight
236
236
  ExceptionResourceType = Shapes::StringShape.new(name: 'ExceptionResourceType')
237
237
  ExportToCSVOption = Shapes::StructureShape.new(name: 'ExportToCSVOption')
238
238
  Expression = Shapes::StringShape.new(name: 'Expression')
239
+ FieldFolder = Shapes::StructureShape.new(name: 'FieldFolder')
240
+ FieldFolderDescription = Shapes::StringShape.new(name: 'FieldFolderDescription')
241
+ FieldFolderMap = Shapes::MapShape.new(name: 'FieldFolderMap')
242
+ FieldFolderPath = Shapes::StringShape.new(name: 'FieldFolderPath')
239
243
  FileFormat = Shapes::StringShape.new(name: 'FileFormat')
240
244
  FilterOperation = Shapes::StructureShape.new(name: 'FilterOperation')
241
245
  FilterOperator = Shapes::StringShape.new(name: 'FilterOperator')
246
+ FolderColumnList = Shapes::ListShape.new(name: 'FolderColumnList')
242
247
  GeoSpatialColumnGroup = Shapes::StructureShape.new(name: 'GeoSpatialColumnGroup')
243
248
  GeoSpatialCountryCode = Shapes::StringShape.new(name: 'GeoSpatialCountryCode')
244
249
  GeoSpatialDataRole = Shapes::StringShape.new(name: 'GeoSpatialDataRole')
@@ -757,6 +762,7 @@ module Aws::QuickSight
757
762
  CreateDataSetRequest.add_member(:logical_table_map, Shapes::ShapeRef.new(shape: LogicalTableMap, location_name: "LogicalTableMap"))
758
763
  CreateDataSetRequest.add_member(:import_mode, Shapes::ShapeRef.new(shape: DataSetImportMode, required: true, location_name: "ImportMode"))
759
764
  CreateDataSetRequest.add_member(:column_groups, Shapes::ShapeRef.new(shape: ColumnGroupList, location_name: "ColumnGroups"))
765
+ CreateDataSetRequest.add_member(:field_folders, Shapes::ShapeRef.new(shape: FieldFolderMap, location_name: "FieldFolders"))
760
766
  CreateDataSetRequest.add_member(:permissions, Shapes::ShapeRef.new(shape: ResourcePermissionList, location_name: "Permissions"))
761
767
  CreateDataSetRequest.add_member(:row_level_permission_data_set, Shapes::ShapeRef.new(shape: RowLevelPermissionDataSet, location_name: "RowLevelPermissionDataSet"))
762
768
  CreateDataSetRequest.add_member(:column_level_permission_rules, Shapes::ShapeRef.new(shape: ColumnLevelPermissionRuleList, location_name: "ColumnLevelPermissionRules"))
@@ -1007,6 +1013,7 @@ module Aws::QuickSight
1007
1013
  DataSet.add_member(:import_mode, Shapes::ShapeRef.new(shape: DataSetImportMode, location_name: "ImportMode"))
1008
1014
  DataSet.add_member(:consumed_spice_capacity_in_bytes, Shapes::ShapeRef.new(shape: Long, location_name: "ConsumedSpiceCapacityInBytes"))
1009
1015
  DataSet.add_member(:column_groups, Shapes::ShapeRef.new(shape: ColumnGroupList, location_name: "ColumnGroups"))
1016
+ DataSet.add_member(:field_folders, Shapes::ShapeRef.new(shape: FieldFolderMap, location_name: "FieldFolders"))
1010
1017
  DataSet.add_member(:row_level_permission_data_set, Shapes::ShapeRef.new(shape: RowLevelPermissionDataSet, location_name: "RowLevelPermissionDataSet"))
1011
1018
  DataSet.add_member(:column_level_permission_rules, Shapes::ShapeRef.new(shape: ColumnLevelPermissionRuleList, location_name: "ColumnLevelPermissionRules"))
1012
1019
  DataSet.struct_class = Types::DataSet
@@ -1483,9 +1490,18 @@ module Aws::QuickSight
1483
1490
  ExportToCSVOption.add_member(:availability_status, Shapes::ShapeRef.new(shape: DashboardBehavior, location_name: "AvailabilityStatus"))
1484
1491
  ExportToCSVOption.struct_class = Types::ExportToCSVOption
1485
1492
 
1493
+ FieldFolder.add_member(:description, Shapes::ShapeRef.new(shape: FieldFolderDescription, location_name: "description"))
1494
+ FieldFolder.add_member(:columns, Shapes::ShapeRef.new(shape: FolderColumnList, location_name: "columns"))
1495
+ FieldFolder.struct_class = Types::FieldFolder
1496
+
1497
+ FieldFolderMap.key = Shapes::ShapeRef.new(shape: FieldFolderPath)
1498
+ FieldFolderMap.value = Shapes::ShapeRef.new(shape: FieldFolder)
1499
+
1486
1500
  FilterOperation.add_member(:condition_expression, Shapes::ShapeRef.new(shape: Expression, required: true, location_name: "ConditionExpression"))
1487
1501
  FilterOperation.struct_class = Types::FilterOperation
1488
1502
 
1503
+ FolderColumnList.member = Shapes::ShapeRef.new(shape: String)
1504
+
1489
1505
  GeoSpatialColumnGroup.add_member(:name, Shapes::ShapeRef.new(shape: ColumnGroupName, required: true, location_name: "Name"))
1490
1506
  GeoSpatialColumnGroup.add_member(:country_code, Shapes::ShapeRef.new(shape: GeoSpatialCountryCode, required: true, location_name: "CountryCode"))
1491
1507
  GeoSpatialColumnGroup.add_member(:columns, Shapes::ShapeRef.new(shape: ColumnList, required: true, location_name: "Columns"))
@@ -2421,6 +2437,7 @@ module Aws::QuickSight
2421
2437
  UpdateDataSetRequest.add_member(:logical_table_map, Shapes::ShapeRef.new(shape: LogicalTableMap, location_name: "LogicalTableMap"))
2422
2438
  UpdateDataSetRequest.add_member(:import_mode, Shapes::ShapeRef.new(shape: DataSetImportMode, required: true, location_name: "ImportMode"))
2423
2439
  UpdateDataSetRequest.add_member(:column_groups, Shapes::ShapeRef.new(shape: ColumnGroupList, location_name: "ColumnGroups"))
2440
+ UpdateDataSetRequest.add_member(:field_folders, Shapes::ShapeRef.new(shape: FieldFolderMap, location_name: "FieldFolders"))
2424
2441
  UpdateDataSetRequest.add_member(:row_level_permission_data_set, Shapes::ShapeRef.new(shape: RowLevelPermissionDataSet, location_name: "RowLevelPermissionDataSet"))
2425
2442
  UpdateDataSetRequest.add_member(:column_level_permission_rules, Shapes::ShapeRef.new(shape: ColumnLevelPermissionRuleList, location_name: "ColumnLevelPermissionRules"))
2426
2443
  UpdateDataSetRequest.struct_class = Types::UpdateDataSetRequest
@@ -1428,6 +1428,12 @@ module Aws::QuickSight
1428
1428
  # },
1429
1429
  # },
1430
1430
  # ],
1431
+ # field_folders: {
1432
+ # "FieldFolderPath" => {
1433
+ # description: "FieldFolderDescription",
1434
+ # columns: ["String"],
1435
+ # },
1436
+ # },
1431
1437
  # permissions: [
1432
1438
  # {
1433
1439
  # principal: "Principal", # required
@@ -1485,6 +1491,11 @@ module Aws::QuickSight
1485
1491
  # features. Currently, only geospatial hierarchy is supported.
1486
1492
  # @return [Array<Types::ColumnGroup>]
1487
1493
  #
1494
+ # @!attribute [rw] field_folders
1495
+ # The folder that contains fields and nested subfolders for your
1496
+ # dataset.
1497
+ # @return [Hash<String,Types::FieldFolder>]
1498
+ #
1488
1499
  # @!attribute [rw] permissions
1489
1500
  # A list of resource permissions on the dataset.
1490
1501
  # @return [Array<Types::ResourcePermission>]
@@ -1513,6 +1524,7 @@ module Aws::QuickSight
1513
1524
  :logical_table_map,
1514
1525
  :import_mode,
1515
1526
  :column_groups,
1527
+ :field_folders,
1516
1528
  :permissions,
1517
1529
  :row_level_permission_data_set,
1518
1530
  :column_level_permission_rules,
@@ -1795,10 +1807,12 @@ module Aws::QuickSight
1795
1807
  #
1796
1808
  # @!attribute [rw] type
1797
1809
  # The type of the data source. Currently, the supported types for this
1798
- # operation are: `ATHENA, AURORA, AURORA_POSTGRESQL, MARIADB, MYSQL,
1799
- # POSTGRESQL, PRESTO, REDSHIFT, S3, SNOWFLAKE, SPARK, SQLSERVER,
1800
- # TERADATA`. Use `ListDataSources` to return a list of all data
1801
- # sources.
1810
+ # operation are: `ATHENA, AURORA, AURORA_POSTGRESQL,
1811
+ # AMAZON_ELASTICSEARCH, MARIADB, MYSQL, POSTGRESQL, PRESTO, REDSHIFT,
1812
+ # S3, SNOWFLAKE, SPARK, SQLSERVER, TERADATA`. Use `ListDataSources` to
1813
+ # return a list of all data sources.
1814
+ #
1815
+ # `AMAZON_ELASTICSEARCH` is for Amazon managed Elasticsearch Service.
1802
1816
  # @return [String]
1803
1817
  #
1804
1818
  # @!attribute [rw] data_source_parameters
@@ -3311,6 +3325,11 @@ module Aws::QuickSight
3311
3325
  # features. Currently, only geospatial hierarchy is supported.
3312
3326
  # @return [Array<Types::ColumnGroup>]
3313
3327
  #
3328
+ # @!attribute [rw] field_folders
3329
+ # The folder that contains fields and nested subfolders for your
3330
+ # dataset.
3331
+ # @return [Hash<String,Types::FieldFolder>]
3332
+ #
3314
3333
  # @!attribute [rw] row_level_permission_data_set
3315
3334
  # The row-level security configuration for the dataset.
3316
3335
  # @return [Types::RowLevelPermissionDataSet]
@@ -3333,6 +3352,7 @@ module Aws::QuickSight
3333
3352
  :import_mode,
3334
3353
  :consumed_spice_capacity_in_bytes,
3335
3354
  :column_groups,
3355
+ :field_folders,
3336
3356
  :row_level_permission_data_set,
3337
3357
  :column_level_permission_rules)
3338
3358
  SENSITIVE = []
@@ -6054,6 +6074,34 @@ module Aws::QuickSight
6054
6074
  include Aws::Structure
6055
6075
  end
6056
6076
 
6077
+ # A FieldFolder element is a folder that contains fields and nested
6078
+ # subfolders.
6079
+ #
6080
+ # @note When making an API call, you may pass FieldFolder
6081
+ # data as a hash:
6082
+ #
6083
+ # {
6084
+ # description: "FieldFolderDescription",
6085
+ # columns: ["String"],
6086
+ # }
6087
+ #
6088
+ # @!attribute [rw] description
6089
+ # The description for a field folder.
6090
+ # @return [String]
6091
+ #
6092
+ # @!attribute [rw] columns
6093
+ # A folder has a list of columns. A column can only be in one folder.
6094
+ # @return [Array<String>]
6095
+ #
6096
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/FieldFolder AWS API Documentation
6097
+ #
6098
+ class FieldFolder < Struct.new(
6099
+ :description,
6100
+ :columns)
6101
+ SENSITIVE = []
6102
+ include Aws::Structure
6103
+ end
6104
+
6057
6105
  # A transform operation that filters rows based on a condition.
6058
6106
  #
6059
6107
  # @note When making an API call, you may pass FilterOperation
@@ -11736,6 +11784,12 @@ module Aws::QuickSight
11736
11784
  # },
11737
11785
  # },
11738
11786
  # ],
11787
+ # field_folders: {
11788
+ # "FieldFolderPath" => {
11789
+ # description: "FieldFolderDescription",
11790
+ # columns: ["String"],
11791
+ # },
11792
+ # },
11739
11793
  # row_level_permission_data_set: {
11740
11794
  # namespace: "Namespace",
11741
11795
  # arn: "Arn", # required
@@ -11781,6 +11835,11 @@ module Aws::QuickSight
11781
11835
  # features. Currently, only geospatial hierarchy is supported.
11782
11836
  # @return [Array<Types::ColumnGroup>]
11783
11837
  #
11838
+ # @!attribute [rw] field_folders
11839
+ # The folder that contains fields and nested subfolders for your
11840
+ # dataset.
11841
+ # @return [Hash<String,Types::FieldFolder>]
11842
+ #
11784
11843
  # @!attribute [rw] row_level_permission_data_set
11785
11844
  # The row-level security configuration for the data you want to
11786
11845
  # create.
@@ -11800,6 +11859,7 @@ module Aws::QuickSight
11800
11859
  :logical_table_map,
11801
11860
  :import_mode,
11802
11861
  :column_groups,
11862
+ :field_folders,
11803
11863
  :row_level_permission_data_set,
11804
11864
  :column_level_permission_rules)
11805
11865
  SENSITIVE = []
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.40.0
4
+ version: 1.41.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: 2021-02-02 00:00:00.000000000 Z
11
+ date: 2021-02-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core