aws-sdk-quicksight 1.186.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 50d094e2424898426f8372642488b708ab82ffacb6e0384a79e33ed9aea0f49d
4
- data.tar.gz: 2ef06620d486e1877087908a85086d996e937d193ff431d364b08939560ab872
3
+ metadata.gz: cd2255182b013616e873698665bbaee52875c03375a83e84ba57b3ddd5a00b37
4
+ data.tar.gz: ae2c5af04d6c29f2f7cefd2c98c5c390781d857f1bfae60b36d8cdf41bd029e5
5
5
  SHA512:
6
- metadata.gz: 284b115332074cc74733d492c908cd532d6d571b5f592b72fa7aa491d344bf0f3923b9eee32e697199080d56b9fd86b10b8be17f57b6ea3e3c34bc6e67588583
7
- data.tar.gz: f004e0a08d35c10e39f3c141d1cc5be1149c71d33719f534d76fc1aa8ee7da26e5a86f743eab6011d4a55eab9dcc6d14f68f1ebb47ab396e28c3dfdd26b7c519
6
+ metadata.gz: 3d7c368fb773623ff31b141d417d93340a3b0f558202bfb3790fe79723179297af597f02122b70b3c428d1a276d206d98dd65447f27885219fb75456233ee21e
7
+ data.tar.gz: ca9099ad51c3663c1e2d46eb664c259ca7944cf21e8c294837533550645ddecdb287c1ef74b0554dc5ec25bd8ddf4f4a95de3adc4b8a68c254184f47da80fe2f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.188.0 (2026-07-01)
5
+ ------------------
6
+
7
+ * Feature - Adding support for FileSource PhysicalTables. This adds support for datasets with file sources.
8
+
9
+ 1.187.0 (2026-06-22)
10
+ ------------------
11
+
12
+ * Feature - Updated the Amazon Quick Spaces API to remove unsupported SPACE and ARTIFACT values from the SpaceQuickSightResourceType enum.
13
+
4
14
  1.186.0 (2026-06-05)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.186.0
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
@@ -11218,7 +11251,7 @@ module Aws::QuickSight
11218
11251
  # resp.space.name #=> String
11219
11252
  # resp.space.description #=> String
11220
11253
  # resp.space.resources #=> Array
11221
- # resp.space.resources[0].resource_type #=> String, one of "TOPIC", "DASHBOARD", "KNOWLEDGE_BASE", "SPACE", "ACTION_CONNECTOR", "DATA_SET", "ARTIFACT"
11254
+ # resp.space.resources[0].resource_type #=> String, one of "TOPIC", "DASHBOARD", "KNOWLEDGE_BASE", "ACTION_CONNECTOR", "DATA_SET"
11222
11255
  # resp.space.resources[0].resource_details.resource_arn #=> String
11223
11256
  # resp.space.created_at #=> Time
11224
11257
  # resp.space.updated_at #=> Time
@@ -15173,7 +15206,7 @@ module Aws::QuickSight
15173
15206
  # resp.space_id #=> String
15174
15207
  # resp.space_arn #=> String
15175
15208
  # resp.space_resources #=> Array
15176
- # resp.space_resources[0].resource_type #=> String, one of "TOPIC", "DASHBOARD", "KNOWLEDGE_BASE", "SPACE", "ACTION_CONNECTOR", "DATA_SET", "ARTIFACT"
15209
+ # resp.space_resources[0].resource_type #=> String, one of "TOPIC", "DASHBOARD", "KNOWLEDGE_BASE", "ACTION_CONNECTOR", "DATA_SET"
15177
15210
  # resp.space_resources[0].resource_details.resource_arn #=> String
15178
15211
  # resp.space_resources[0].resource_name #=> String
15179
15212
  # resp.space_resources[0].updated_at #=> Time
@@ -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: {
@@ -23029,7 +23082,7 @@ module Aws::QuickSight
23029
23082
  # space_id: "PublicSpaceId", # required
23030
23083
  # add_resources: [
23031
23084
  # {
23032
- # resource_type: "TOPIC", # required, accepts TOPIC, DASHBOARD, KNOWLEDGE_BASE, SPACE, ACTION_CONNECTOR, DATA_SET, ARTIFACT
23085
+ # resource_type: "TOPIC", # required, accepts TOPIC, DASHBOARD, KNOWLEDGE_BASE, ACTION_CONNECTOR, DATA_SET
23033
23086
  # resource_details: { # required
23034
23087
  # resource_arn: "Arn",
23035
23088
  # },
@@ -23037,7 +23090,7 @@ module Aws::QuickSight
23037
23090
  # ],
23038
23091
  # remove_resources: [
23039
23092
  # {
23040
- # resource_type: "TOPIC", # required, accepts TOPIC, DASHBOARD, KNOWLEDGE_BASE, SPACE, ACTION_CONNECTOR, DATA_SET, ARTIFACT
23093
+ # resource_type: "TOPIC", # required, accepts TOPIC, DASHBOARD, KNOWLEDGE_BASE, ACTION_CONNECTOR, DATA_SET
23041
23094
  # resource_details: { # required
23042
23095
  # resource_arn: "Arn",
23043
23096
  # },
@@ -23050,7 +23103,7 @@ module Aws::QuickSight
23050
23103
  # resp.space_id #=> String
23051
23104
  # resp.space_arn #=> String
23052
23105
  # resp.failed_resource_operations #=> Array
23053
- # resp.failed_resource_operations[0].resource_type #=> String, one of "TOPIC", "DASHBOARD", "KNOWLEDGE_BASE", "SPACE", "ACTION_CONNECTOR", "DATA_SET", "ARTIFACT"
23106
+ # resp.failed_resource_operations[0].resource_type #=> String, one of "TOPIC", "DASHBOARD", "KNOWLEDGE_BASE", "ACTION_CONNECTOR", "DATA_SET"
23054
23107
  # resp.failed_resource_operations[0].resource_details.resource_arn #=> String
23055
23108
  # resp.failed_resource_operations[0].error_message #=> String
23056
23109
  # resp.request_id #=> String
@@ -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.186.0'
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 as S3 data source.
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
@@ -54,7 +54,7 @@ module Aws::QuickSight
54
54
  autoload :EndpointProvider, 'aws-sdk-quicksight/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-quicksight/endpoints'
56
56
 
57
- GEM_VERSION = '1.186.0'
57
+ GEM_VERSION = '1.188.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -4916,7 +4916,7 @@ module Aws
4916
4916
  space_id: ::String,
4917
4917
  ?add_resources: Array[
4918
4918
  {
4919
- resource_type: ("TOPIC" | "DASHBOARD" | "KNOWLEDGE_BASE" | "SPACE" | "ACTION_CONNECTOR" | "DATA_SET" | "ARTIFACT"),
4919
+ resource_type: ("TOPIC" | "DASHBOARD" | "KNOWLEDGE_BASE" | "ACTION_CONNECTOR" | "DATA_SET"),
4920
4920
  resource_details: {
4921
4921
  resource_arn: ::String?
4922
4922
  }
@@ -4924,7 +4924,7 @@ module Aws
4924
4924
  ],
4925
4925
  ?remove_resources: Array[
4926
4926
  {
4927
- resource_type: ("TOPIC" | "DASHBOARD" | "KNOWLEDGE_BASE" | "SPACE" | "ACTION_CONNECTOR" | "DATA_SET" | "ARTIFACT"),
4927
+ resource_type: ("TOPIC" | "DASHBOARD" | "KNOWLEDGE_BASE" | "ACTION_CONNECTOR" | "DATA_SET"),
4928
4928
  resource_details: {
4929
4929
  resource_arn: ::String?
4930
4930
  }
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
@@ -5225,7 +5225,7 @@ module Aws::QuickSight
5225
5225
  end
5226
5226
 
5227
5227
  class FailedSpaceResourceOperation
5228
- attr_accessor resource_type: ("TOPIC" | "DASHBOARD" | "KNOWLEDGE_BASE" | "SPACE" | "ACTION_CONNECTOR" | "DATA_SET" | "ARTIFACT")
5228
+ attr_accessor resource_type: ("TOPIC" | "DASHBOARD" | "KNOWLEDGE_BASE" | "ACTION_CONNECTOR" | "DATA_SET")
5229
5229
  attr_accessor resource_details: Types::SpaceQuickSightResourceDetails
5230
5230
  attr_accessor error_message: ::String
5231
5231
  SENSITIVE: []
@@ -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
 
@@ -10143,7 +10152,7 @@ module Aws::QuickSight
10143
10152
  end
10144
10153
 
10145
10154
  class SpaceQuickSightResource
10146
- attr_accessor resource_type: ("TOPIC" | "DASHBOARD" | "KNOWLEDGE_BASE" | "SPACE" | "ACTION_CONNECTOR" | "DATA_SET" | "ARTIFACT")
10155
+ attr_accessor resource_type: ("TOPIC" | "DASHBOARD" | "KNOWLEDGE_BASE" | "ACTION_CONNECTOR" | "DATA_SET")
10147
10156
  attr_accessor resource_details: Types::SpaceQuickSightResourceDetails
10148
10157
  SENSITIVE: []
10149
10158
  end
@@ -10167,13 +10176,13 @@ module Aws::QuickSight
10167
10176
  end
10168
10177
 
10169
10178
  class SpaceResourceOperation
10170
- attr_accessor resource_type: ("TOPIC" | "DASHBOARD" | "KNOWLEDGE_BASE" | "SPACE" | "ACTION_CONNECTOR" | "DATA_SET" | "ARTIFACT")
10179
+ attr_accessor resource_type: ("TOPIC" | "DASHBOARD" | "KNOWLEDGE_BASE" | "ACTION_CONNECTOR" | "DATA_SET")
10171
10180
  attr_accessor resource_details: Types::SpaceQuickSightResourceDetails
10172
10181
  SENSITIVE: []
10173
10182
  end
10174
10183
 
10175
10184
  class SpaceResourceSummary
10176
- attr_accessor resource_type: ("TOPIC" | "DASHBOARD" | "KNOWLEDGE_BASE" | "SPACE" | "ACTION_CONNECTOR" | "DATA_SET" | "ARTIFACT")
10185
+ attr_accessor resource_type: ("TOPIC" | "DASHBOARD" | "KNOWLEDGE_BASE" | "ACTION_CONNECTOR" | "DATA_SET")
10177
10186
  attr_accessor resource_details: Types::SpaceQuickSightResourceDetails
10178
10187
  attr_accessor resource_name: ::String
10179
10188
  attr_accessor updated_at: ::Time
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-quicksight
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.186.0
4
+ version: 1.188.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services