aws-sdk-quicksight 1.187.0 → 1.188.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-quicksight/client.rb +54 -1
- data/lib/aws-sdk-quicksight/client_api.rb +8 -0
- data/lib/aws-sdk-quicksight/types.rb +40 -2
- data/lib/aws-sdk-quicksight.rb +1 -1
- data/sig/params.rbs +16 -1
- data/sig/types.rbs +9 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cd2255182b013616e873698665bbaee52875c03375a83e84ba57b3ddd5a00b37
|
|
4
|
+
data.tar.gz: ae2c5af04d6c29f2f7cefd2c98c5c390781d857f1bfae60b36d8cdf41bd029e5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3d7c368fb773623ff31b141d417d93340a3b0f558202bfb3790fe79723179297af597f02122b70b3c428d1a276d206d98dd65447f27885219fb75456233ee21e
|
|
7
|
+
data.tar.gz: ca9099ad51c3663c1e2d46eb664c259ca7944cf21e8c294837533550645ddecdb287c1ef74b0554dc5ec25bd8ddf4f4a95de3adc4b8a68c254184f47da80fe2f
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.188.0
|
|
@@ -2901,6 +2901,26 @@ module Aws::QuickSight
|
|
|
2901
2901
|
# },
|
|
2902
2902
|
# ],
|
|
2903
2903
|
# },
|
|
2904
|
+
# file_source: {
|
|
2905
|
+
# data_source_arn: "Arn", # required
|
|
2906
|
+
# upload_settings: {
|
|
2907
|
+
# format: "CSV", # accepts CSV, TSV, CLF, ELF, XLSX, JSON
|
|
2908
|
+
# start_from_row: 1,
|
|
2909
|
+
# contains_header: false,
|
|
2910
|
+
# text_qualifier: "DOUBLE_QUOTE", # accepts DOUBLE_QUOTE, SINGLE_QUOTE
|
|
2911
|
+
# delimiter: "Delimiter",
|
|
2912
|
+
# custom_cell_address_range: "String",
|
|
2913
|
+
# },
|
|
2914
|
+
# sheet_index: 1, # required
|
|
2915
|
+
# input_columns: [ # required
|
|
2916
|
+
# {
|
|
2917
|
+
# name: "ColumnName", # required
|
|
2918
|
+
# id: "ColumnId",
|
|
2919
|
+
# type: "STRING", # required, accepts STRING, INTEGER, DECIMAL, DATETIME, BIT, BOOLEAN, JSON, SEMISTRUCT
|
|
2920
|
+
# sub_type: "FLOAT", # accepts FLOAT, FIXED
|
|
2921
|
+
# },
|
|
2922
|
+
# ],
|
|
2923
|
+
# },
|
|
2904
2924
|
# },
|
|
2905
2925
|
# },
|
|
2906
2926
|
# logical_table_map: {
|
|
@@ -9522,6 +9542,19 @@ module Aws::QuickSight
|
|
|
9522
9542
|
# resp.data_set.physical_table_map["PhysicalTableId"].saa_s_table.input_columns[0].id #=> String
|
|
9523
9543
|
# resp.data_set.physical_table_map["PhysicalTableId"].saa_s_table.input_columns[0].type #=> String, one of "STRING", "INTEGER", "DECIMAL", "DATETIME", "BIT", "BOOLEAN", "JSON", "SEMISTRUCT"
|
|
9524
9544
|
# resp.data_set.physical_table_map["PhysicalTableId"].saa_s_table.input_columns[0].sub_type #=> String, one of "FLOAT", "FIXED"
|
|
9545
|
+
# resp.data_set.physical_table_map["PhysicalTableId"].file_source.data_source_arn #=> String
|
|
9546
|
+
# resp.data_set.physical_table_map["PhysicalTableId"].file_source.upload_settings.format #=> String, one of "CSV", "TSV", "CLF", "ELF", "XLSX", "JSON"
|
|
9547
|
+
# resp.data_set.physical_table_map["PhysicalTableId"].file_source.upload_settings.start_from_row #=> Integer
|
|
9548
|
+
# resp.data_set.physical_table_map["PhysicalTableId"].file_source.upload_settings.contains_header #=> Boolean
|
|
9549
|
+
# resp.data_set.physical_table_map["PhysicalTableId"].file_source.upload_settings.text_qualifier #=> String, one of "DOUBLE_QUOTE", "SINGLE_QUOTE"
|
|
9550
|
+
# resp.data_set.physical_table_map["PhysicalTableId"].file_source.upload_settings.delimiter #=> String
|
|
9551
|
+
# resp.data_set.physical_table_map["PhysicalTableId"].file_source.upload_settings.custom_cell_address_range #=> String
|
|
9552
|
+
# resp.data_set.physical_table_map["PhysicalTableId"].file_source.sheet_index #=> Integer
|
|
9553
|
+
# resp.data_set.physical_table_map["PhysicalTableId"].file_source.input_columns #=> Array
|
|
9554
|
+
# resp.data_set.physical_table_map["PhysicalTableId"].file_source.input_columns[0].name #=> String
|
|
9555
|
+
# resp.data_set.physical_table_map["PhysicalTableId"].file_source.input_columns[0].id #=> String
|
|
9556
|
+
# resp.data_set.physical_table_map["PhysicalTableId"].file_source.input_columns[0].type #=> String, one of "STRING", "INTEGER", "DECIMAL", "DATETIME", "BIT", "BOOLEAN", "JSON", "SEMISTRUCT"
|
|
9557
|
+
# resp.data_set.physical_table_map["PhysicalTableId"].file_source.input_columns[0].sub_type #=> String, one of "FLOAT", "FIXED"
|
|
9525
9558
|
# resp.data_set.logical_table_map #=> Hash
|
|
9526
9559
|
# resp.data_set.logical_table_map["LogicalTableId"].alias #=> String
|
|
9527
9560
|
# resp.data_set.logical_table_map["LogicalTableId"].data_transforms #=> Array
|
|
@@ -20549,6 +20582,26 @@ module Aws::QuickSight
|
|
|
20549
20582
|
# },
|
|
20550
20583
|
# ],
|
|
20551
20584
|
# },
|
|
20585
|
+
# file_source: {
|
|
20586
|
+
# data_source_arn: "Arn", # required
|
|
20587
|
+
# upload_settings: {
|
|
20588
|
+
# format: "CSV", # accepts CSV, TSV, CLF, ELF, XLSX, JSON
|
|
20589
|
+
# start_from_row: 1,
|
|
20590
|
+
# contains_header: false,
|
|
20591
|
+
# text_qualifier: "DOUBLE_QUOTE", # accepts DOUBLE_QUOTE, SINGLE_QUOTE
|
|
20592
|
+
# delimiter: "Delimiter",
|
|
20593
|
+
# custom_cell_address_range: "String",
|
|
20594
|
+
# },
|
|
20595
|
+
# sheet_index: 1, # required
|
|
20596
|
+
# input_columns: [ # required
|
|
20597
|
+
# {
|
|
20598
|
+
# name: "ColumnName", # required
|
|
20599
|
+
# id: "ColumnId",
|
|
20600
|
+
# type: "STRING", # required, accepts STRING, INTEGER, DECIMAL, DATETIME, BIT, BOOLEAN, JSON, SEMISTRUCT
|
|
20601
|
+
# sub_type: "FLOAT", # accepts FLOAT, FIXED
|
|
20602
|
+
# },
|
|
20603
|
+
# ],
|
|
20604
|
+
# },
|
|
20552
20605
|
# },
|
|
20553
20606
|
# },
|
|
20554
20607
|
# logical_table_map: {
|
|
@@ -24315,7 +24368,7 @@ module Aws::QuickSight
|
|
|
24315
24368
|
tracer: tracer
|
|
24316
24369
|
)
|
|
24317
24370
|
context[:gem_name] = 'aws-sdk-quicksight'
|
|
24318
|
-
context[:gem_version] = '1.
|
|
24371
|
+
context[:gem_version] = '1.188.0'
|
|
24319
24372
|
Seahorse::Client::Request.new(handlers, context)
|
|
24320
24373
|
end
|
|
24321
24374
|
|
|
@@ -1058,6 +1058,7 @@ module Aws::QuickSight
|
|
|
1058
1058
|
FieldTooltipItem = Shapes::StructureShape.new(name: 'FieldTooltipItem')
|
|
1059
1059
|
FieldValue = Shapes::StringShape.new(name: 'FieldValue')
|
|
1060
1060
|
FileFormat = Shapes::StringShape.new(name: 'FileFormat')
|
|
1061
|
+
FileSource = Shapes::StructureShape.new(name: 'FileSource')
|
|
1061
1062
|
FilledMapAggregatedFieldWells = Shapes::StructureShape.new(name: 'FilledMapAggregatedFieldWells')
|
|
1062
1063
|
FilledMapConditionalFormatting = Shapes::StructureShape.new(name: 'FilledMapConditionalFormatting')
|
|
1063
1064
|
FilledMapConditionalFormattingOption = Shapes::StructureShape.new(name: 'FilledMapConditionalFormattingOption')
|
|
@@ -6955,6 +6956,12 @@ module Aws::QuickSight
|
|
|
6955
6956
|
FieldTooltipItem.add_member(:tooltip_target, Shapes::ShapeRef.new(shape: TooltipTarget, location_name: "TooltipTarget"))
|
|
6956
6957
|
FieldTooltipItem.struct_class = Types::FieldTooltipItem
|
|
6957
6958
|
|
|
6959
|
+
FileSource.add_member(:data_source_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "DataSourceArn"))
|
|
6960
|
+
FileSource.add_member(:upload_settings, Shapes::ShapeRef.new(shape: UploadSettings, location_name: "UploadSettings"))
|
|
6961
|
+
FileSource.add_member(:sheet_index, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "SheetIndex"))
|
|
6962
|
+
FileSource.add_member(:input_columns, Shapes::ShapeRef.new(shape: InputColumnList, required: true, location_name: "InputColumns"))
|
|
6963
|
+
FileSource.struct_class = Types::FileSource
|
|
6964
|
+
|
|
6958
6965
|
FilledMapAggregatedFieldWells.add_member(:geospatial, Shapes::ShapeRef.new(shape: FilledMapDimensionFieldList, location_name: "Geospatial"))
|
|
6959
6966
|
FilledMapAggregatedFieldWells.add_member(:values, Shapes::ShapeRef.new(shape: FilledMapMeasureFieldList, location_name: "Values"))
|
|
6960
6967
|
FilledMapAggregatedFieldWells.struct_class = Types::FilledMapAggregatedFieldWells
|
|
@@ -9394,6 +9401,7 @@ module Aws::QuickSight
|
|
|
9394
9401
|
PhysicalTable.add_member(:custom_sql, Shapes::ShapeRef.new(shape: CustomSql, location_name: "CustomSql"))
|
|
9395
9402
|
PhysicalTable.add_member(:s3_source, Shapes::ShapeRef.new(shape: S3Source, location_name: "S3Source"))
|
|
9396
9403
|
PhysicalTable.add_member(:saa_s_table, Shapes::ShapeRef.new(shape: SaaSTable, location_name: "SaaSTable"))
|
|
9404
|
+
PhysicalTable.add_member(:file_source, Shapes::ShapeRef.new(shape: FileSource, location_name: "FileSource"))
|
|
9397
9405
|
PhysicalTable.struct_class = Types::PhysicalTable
|
|
9398
9406
|
|
|
9399
9407
|
PhysicalTableMap.key = Shapes::ShapeRef.new(shape: PhysicalTableId)
|
|
@@ -20536,6 +20536,39 @@ module Aws::QuickSight
|
|
|
20536
20536
|
include Aws::Structure
|
|
20537
20537
|
end
|
|
20538
20538
|
|
|
20539
|
+
# A physical table type that contains the schema and upload settings for
|
|
20540
|
+
# a file-based data source.
|
|
20541
|
+
#
|
|
20542
|
+
# @!attribute [rw] data_source_arn
|
|
20543
|
+
# The Amazon Resource Name (ARN) for the data source.
|
|
20544
|
+
# @return [String]
|
|
20545
|
+
#
|
|
20546
|
+
# @!attribute [rw] upload_settings
|
|
20547
|
+
# Information about the format for the source file.
|
|
20548
|
+
# @return [Types::UploadSettings]
|
|
20549
|
+
#
|
|
20550
|
+
# @!attribute [rw] sheet_index
|
|
20551
|
+
# The zero-based index of the sheet to use within the file. For files
|
|
20552
|
+
# that contain multiple sheets, this identifies which sheet to read.
|
|
20553
|
+
# Files that contain a single sheet, or that have no concept of
|
|
20554
|
+
# sheets, use sheet 0.
|
|
20555
|
+
# @return [Integer]
|
|
20556
|
+
#
|
|
20557
|
+
# @!attribute [rw] input_columns
|
|
20558
|
+
# The column schema of the file.
|
|
20559
|
+
# @return [Array<Types::InputColumn>]
|
|
20560
|
+
#
|
|
20561
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/FileSource AWS API Documentation
|
|
20562
|
+
#
|
|
20563
|
+
class FileSource < Struct.new(
|
|
20564
|
+
:data_source_arn,
|
|
20565
|
+
:upload_settings,
|
|
20566
|
+
:sheet_index,
|
|
20567
|
+
:input_columns)
|
|
20568
|
+
SENSITIVE = []
|
|
20569
|
+
include Aws::Structure
|
|
20570
|
+
end
|
|
20571
|
+
|
|
20539
20572
|
# The aggregated field well of the filled map.
|
|
20540
20573
|
#
|
|
20541
20574
|
# @!attribute [rw] geospatial
|
|
@@ -32396,20 +32429,25 @@ module Aws::QuickSight
|
|
|
32396
32429
|
# @return [Types::CustomSql]
|
|
32397
32430
|
#
|
|
32398
32431
|
# @!attribute [rw] s3_source
|
|
32399
|
-
# A physical table type for
|
|
32432
|
+
# A physical table type for an S3 data source.
|
|
32400
32433
|
# @return [Types::S3Source]
|
|
32401
32434
|
#
|
|
32402
32435
|
# @!attribute [rw] saa_s_table
|
|
32403
32436
|
# A physical table type for Software-as-a-Service (SaaS) sources.
|
|
32404
32437
|
# @return [Types::SaaSTable]
|
|
32405
32438
|
#
|
|
32439
|
+
# @!attribute [rw] file_source
|
|
32440
|
+
# A physical table type for a file data source.
|
|
32441
|
+
# @return [Types::FileSource]
|
|
32442
|
+
#
|
|
32406
32443
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PhysicalTable AWS API Documentation
|
|
32407
32444
|
#
|
|
32408
32445
|
class PhysicalTable < Struct.new(
|
|
32409
32446
|
:relational_table,
|
|
32410
32447
|
:custom_sql,
|
|
32411
32448
|
:s3_source,
|
|
32412
|
-
:saa_s_table
|
|
32449
|
+
:saa_s_table,
|
|
32450
|
+
:file_source)
|
|
32413
32451
|
SENSITIVE = []
|
|
32414
32452
|
include Aws::Structure
|
|
32415
32453
|
end
|
data/lib/aws-sdk-quicksight.rb
CHANGED
data/sig/params.rbs
CHANGED
|
@@ -5380,11 +5380,26 @@ module Aws
|
|
|
5380
5380
|
]
|
|
5381
5381
|
}
|
|
5382
5382
|
|
|
5383
|
+
type file_source = {
|
|
5384
|
+
data_source_arn: ::String,
|
|
5385
|
+
upload_settings: Params::upload_settings?,
|
|
5386
|
+
sheet_index: ::Integer,
|
|
5387
|
+
input_columns: Array[
|
|
5388
|
+
{
|
|
5389
|
+
name: ::String,
|
|
5390
|
+
id: ::String?,
|
|
5391
|
+
type: ("STRING" | "INTEGER" | "DECIMAL" | "DATETIME" | "BIT" | "BOOLEAN" | "JSON" | "SEMISTRUCT"),
|
|
5392
|
+
sub_type: ("FLOAT" | "FIXED")?
|
|
5393
|
+
}
|
|
5394
|
+
]
|
|
5395
|
+
}
|
|
5396
|
+
|
|
5383
5397
|
type physical_table = {
|
|
5384
5398
|
relational_table: Params::relational_table?,
|
|
5385
5399
|
custom_sql: Params::custom_sql?,
|
|
5386
5400
|
s3_source: Params::s3_source?,
|
|
5387
|
-
saa_s_table: Params::saa_s_table
|
|
5401
|
+
saa_s_table: Params::saa_s_table?,
|
|
5402
|
+
file_source: Params::file_source?
|
|
5388
5403
|
}
|
|
5389
5404
|
|
|
5390
5405
|
type join_instruction = {
|
data/sig/types.rbs
CHANGED
|
@@ -5296,6 +5296,14 @@ module Aws::QuickSight
|
|
|
5296
5296
|
SENSITIVE: []
|
|
5297
5297
|
end
|
|
5298
5298
|
|
|
5299
|
+
class FileSource
|
|
5300
|
+
attr_accessor data_source_arn: ::String
|
|
5301
|
+
attr_accessor upload_settings: Types::UploadSettings
|
|
5302
|
+
attr_accessor sheet_index: ::Integer
|
|
5303
|
+
attr_accessor input_columns: ::Array[Types::InputColumn]
|
|
5304
|
+
SENSITIVE: []
|
|
5305
|
+
end
|
|
5306
|
+
|
|
5299
5307
|
class FilledMapAggregatedFieldWells
|
|
5300
5308
|
attr_accessor geospatial: ::Array[Types::DimensionField]
|
|
5301
5309
|
attr_accessor values: ::Array[Types::MeasureField]
|
|
@@ -8395,6 +8403,7 @@ module Aws::QuickSight
|
|
|
8395
8403
|
attr_accessor custom_sql: Types::CustomSql
|
|
8396
8404
|
attr_accessor s3_source: Types::S3Source
|
|
8397
8405
|
attr_accessor saa_s_table: Types::SaaSTable
|
|
8406
|
+
attr_accessor file_source: Types::FileSource
|
|
8398
8407
|
SENSITIVE: []
|
|
8399
8408
|
end
|
|
8400
8409
|
|