aws-sdk-quicksight 1.145.0 → 1.147.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-quicksight/client.rb +1 -1
- data/lib/aws-sdk-quicksight/client_api.rb +115 -104
- data/lib/aws-sdk-quicksight/types.rb +43 -2
- data/lib/aws-sdk-quicksight.rb +1 -1
- data/sig/client.rbs +72 -12
- data/sig/types.rbs +12 -0
- metadata +3 -6
@@ -2364,13 +2364,18 @@ module Aws::QuickSight
|
|
2364
2364
|
# A list of dataset ARNS to exclude from Dashboard Q&A.
|
2365
2365
|
# @return [Array<String>]
|
2366
2366
|
#
|
2367
|
+
# @!attribute [rw] custom_action_defaults
|
2368
|
+
# A list of visual custom actions for the analysis.
|
2369
|
+
# @return [Types::VisualCustomActionDefaults]
|
2370
|
+
#
|
2367
2371
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AssetOptions AWS API Documentation
|
2368
2372
|
#
|
2369
2373
|
class AssetOptions < Struct.new(
|
2370
2374
|
:timezone,
|
2371
2375
|
:week_start,
|
2372
2376
|
:q_business_insights_status,
|
2373
|
-
:excluded_data_set_arns
|
2377
|
+
:excluded_data_set_arns,
|
2378
|
+
:custom_action_defaults)
|
2374
2379
|
SENSITIVE = []
|
2375
2380
|
include Aws::Structure
|
2376
2381
|
end
|
@@ -30131,6 +30136,10 @@ module Aws::QuickSight
|
|
30131
30136
|
# * `INTERACTIVE`: Creates a sheet for an interactive dashboard.
|
30132
30137
|
# @return [String]
|
30133
30138
|
#
|
30139
|
+
# @!attribute [rw] custom_action_defaults
|
30140
|
+
# A list of visual custom actions for the sheet.
|
30141
|
+
# @return [Types::VisualCustomActionDefaults]
|
30142
|
+
#
|
30134
30143
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SheetDefinition AWS API Documentation
|
30135
30144
|
#
|
30136
30145
|
class SheetDefinition < Struct.new(
|
@@ -30145,7 +30154,8 @@ module Aws::QuickSight
|
|
30145
30154
|
:images,
|
30146
30155
|
:layouts,
|
30147
30156
|
:sheet_control_layouts,
|
30148
|
-
:content_type
|
30157
|
+
:content_type,
|
30158
|
+
:custom_action_defaults)
|
30149
30159
|
SENSITIVE = []
|
30150
30160
|
include Aws::Structure
|
30151
30161
|
end
|
@@ -39046,6 +39056,21 @@ module Aws::QuickSight
|
|
39046
39056
|
include Aws::Structure
|
39047
39057
|
end
|
39048
39058
|
|
39059
|
+
# A list of custom actions applied to visuals in an analysis or sheet.
|
39060
|
+
#
|
39061
|
+
# @!attribute [rw] highlight_operation
|
39062
|
+
# A list of highlight operations available for visuals in an analysis
|
39063
|
+
# or sheet.
|
39064
|
+
# @return [Types::VisualHighlightOperation]
|
39065
|
+
#
|
39066
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/VisualCustomActionDefaults AWS API Documentation
|
39067
|
+
#
|
39068
|
+
class VisualCustomActionDefaults < Struct.new(
|
39069
|
+
:highlight_operation)
|
39070
|
+
SENSITIVE = []
|
39071
|
+
include Aws::Structure
|
39072
|
+
end
|
39073
|
+
|
39049
39074
|
# The operation that is defined by the custom action.
|
39050
39075
|
#
|
39051
39076
|
# This is a union type structure. For this structure to be valid, only
|
@@ -39080,6 +39105,22 @@ module Aws::QuickSight
|
|
39080
39105
|
include Aws::Structure
|
39081
39106
|
end
|
39082
39107
|
|
39108
|
+
# Defines what initiates a highlight operation on a visual, such as a
|
39109
|
+
# click or hover.
|
39110
|
+
#
|
39111
|
+
# @!attribute [rw] trigger
|
39112
|
+
# Specifies whether a highlight operation is initiated by a click or
|
39113
|
+
# hover, or whether it's disabled.
|
39114
|
+
# @return [String]
|
39115
|
+
#
|
39116
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/VisualHighlightOperation AWS API Documentation
|
39117
|
+
#
|
39118
|
+
class VisualHighlightOperation < Struct.new(
|
39119
|
+
:trigger)
|
39120
|
+
SENSITIVE = []
|
39121
|
+
include Aws::Structure
|
39122
|
+
end
|
39123
|
+
|
39083
39124
|
# The general visual interactions setup for visual publish options
|
39084
39125
|
#
|
39085
39126
|
# @!attribute [rw] visual_menu_option
|
data/lib/aws-sdk-quicksight.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -35624,7 +35624,12 @@ module Aws
|
|
35624
35624
|
}
|
35625
35625
|
},
|
35626
35626
|
]?,
|
35627
|
-
content_type: ("PAGINATED" | "INTERACTIVE")
|
35627
|
+
content_type: ("PAGINATED" | "INTERACTIVE")?,
|
35628
|
+
custom_action_defaults: {
|
35629
|
+
highlight_operation: {
|
35630
|
+
trigger: ("DATA_POINT_CLICK" | "DATA_POINT_HOVER" | "NONE")
|
35631
|
+
}?
|
35632
|
+
}?
|
35628
35633
|
},
|
35629
35634
|
]?,
|
35630
35635
|
calculated_fields: Array[
|
@@ -38022,7 +38027,12 @@ module Aws
|
|
38022
38027
|
timezone: ::String?,
|
38023
38028
|
week_start: ("SUNDAY" | "MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY")?,
|
38024
38029
|
q_business_insights_status: ("ENABLED" | "DISABLED")?,
|
38025
|
-
excluded_data_set_arns: Array[::String]
|
38030
|
+
excluded_data_set_arns: Array[::String]?,
|
38031
|
+
custom_action_defaults: {
|
38032
|
+
highlight_operation: {
|
38033
|
+
trigger: ("DATA_POINT_CLICK" | "DATA_POINT_HOVER" | "NONE")
|
38034
|
+
}?
|
38035
|
+
}?
|
38026
38036
|
}?,
|
38027
38037
|
query_execution_options: {
|
38028
38038
|
query_execution_mode: ("AUTO" | "MANUAL")?
|
@@ -72941,7 +72951,12 @@ module Aws
|
|
72941
72951
|
}
|
72942
72952
|
},
|
72943
72953
|
]?,
|
72944
|
-
content_type: ("PAGINATED" | "INTERACTIVE")
|
72954
|
+
content_type: ("PAGINATED" | "INTERACTIVE")?,
|
72955
|
+
custom_action_defaults: {
|
72956
|
+
highlight_operation: {
|
72957
|
+
trigger: ("DATA_POINT_CLICK" | "DATA_POINT_HOVER" | "NONE")
|
72958
|
+
}?
|
72959
|
+
}?
|
72945
72960
|
},
|
72946
72961
|
]?,
|
72947
72962
|
calculated_fields: Array[
|
@@ -75339,7 +75354,12 @@ module Aws
|
|
75339
75354
|
timezone: ::String?,
|
75340
75355
|
week_start: ("SUNDAY" | "MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY")?,
|
75341
75356
|
q_business_insights_status: ("ENABLED" | "DISABLED")?,
|
75342
|
-
excluded_data_set_arns: Array[::String]
|
75357
|
+
excluded_data_set_arns: Array[::String]?,
|
75358
|
+
custom_action_defaults: {
|
75359
|
+
highlight_operation: {
|
75360
|
+
trigger: ("DATA_POINT_CLICK" | "DATA_POINT_HOVER" | "NONE")
|
75361
|
+
}?
|
75362
|
+
}?
|
75343
75363
|
}?,
|
75344
75364
|
static_files: Array[
|
75345
75365
|
{
|
@@ -110847,7 +110867,12 @@ module Aws
|
|
110847
110867
|
}
|
110848
110868
|
},
|
110849
110869
|
]?,
|
110850
|
-
content_type: ("PAGINATED" | "INTERACTIVE")
|
110870
|
+
content_type: ("PAGINATED" | "INTERACTIVE")?,
|
110871
|
+
custom_action_defaults: {
|
110872
|
+
highlight_operation: {
|
110873
|
+
trigger: ("DATA_POINT_CLICK" | "DATA_POINT_HOVER" | "NONE")
|
110874
|
+
}?
|
110875
|
+
}?
|
110851
110876
|
},
|
110852
110877
|
]?,
|
110853
110878
|
calculated_fields: Array[
|
@@ -113245,7 +113270,12 @@ module Aws
|
|
113245
113270
|
timezone: ::String?,
|
113246
113271
|
week_start: ("SUNDAY" | "MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY")?,
|
113247
113272
|
q_business_insights_status: ("ENABLED" | "DISABLED")?,
|
113248
|
-
excluded_data_set_arns: Array[::String]
|
113273
|
+
excluded_data_set_arns: Array[::String]?,
|
113274
|
+
custom_action_defaults: {
|
113275
|
+
highlight_operation: {
|
113276
|
+
trigger: ("DATA_POINT_CLICK" | "DATA_POINT_HOVER" | "NONE")
|
113277
|
+
}?
|
113278
|
+
}?
|
113249
113279
|
}?,
|
113250
113280
|
query_execution_options: {
|
113251
113281
|
query_execution_mode: ("AUTO" | "MANUAL")?
|
@@ -151248,7 +151278,12 @@ module Aws
|
|
151248
151278
|
}
|
151249
151279
|
},
|
151250
151280
|
]?,
|
151251
|
-
content_type: ("PAGINATED" | "INTERACTIVE")
|
151281
|
+
content_type: ("PAGINATED" | "INTERACTIVE")?,
|
151282
|
+
custom_action_defaults: {
|
151283
|
+
highlight_operation: {
|
151284
|
+
trigger: ("DATA_POINT_CLICK" | "DATA_POINT_HOVER" | "NONE")
|
151285
|
+
}?
|
151286
|
+
}?
|
151252
151287
|
},
|
151253
151288
|
]?,
|
151254
151289
|
calculated_fields: Array[
|
@@ -153646,7 +153681,12 @@ module Aws
|
|
153646
153681
|
timezone: ::String?,
|
153647
153682
|
week_start: ("SUNDAY" | "MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY")?,
|
153648
153683
|
q_business_insights_status: ("ENABLED" | "DISABLED")?,
|
153649
|
-
excluded_data_set_arns: Array[::String]
|
153684
|
+
excluded_data_set_arns: Array[::String]?,
|
153685
|
+
custom_action_defaults: {
|
153686
|
+
highlight_operation: {
|
153687
|
+
trigger: ("DATA_POINT_CLICK" | "DATA_POINT_HOVER" | "NONE")
|
153688
|
+
}?
|
153689
|
+
}?
|
153650
153690
|
}?,
|
153651
153691
|
query_execution_options: {
|
153652
153692
|
query_execution_mode: ("AUTO" | "MANUAL")?
|
@@ -188604,7 +188644,12 @@ module Aws
|
|
188604
188644
|
}
|
188605
188645
|
},
|
188606
188646
|
]?,
|
188607
|
-
content_type: ("PAGINATED" | "INTERACTIVE")
|
188647
|
+
content_type: ("PAGINATED" | "INTERACTIVE")?,
|
188648
|
+
custom_action_defaults: {
|
188649
|
+
highlight_operation: {
|
188650
|
+
trigger: ("DATA_POINT_CLICK" | "DATA_POINT_HOVER" | "NONE")
|
188651
|
+
}?
|
188652
|
+
}?
|
188608
188653
|
},
|
188609
188654
|
]?,
|
188610
188655
|
calculated_fields: Array[
|
@@ -191002,7 +191047,12 @@ module Aws
|
|
191002
191047
|
timezone: ::String?,
|
191003
191048
|
week_start: ("SUNDAY" | "MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY")?,
|
191004
191049
|
q_business_insights_status: ("ENABLED" | "DISABLED")?,
|
191005
|
-
excluded_data_set_arns: Array[::String]
|
191050
|
+
excluded_data_set_arns: Array[::String]?,
|
191051
|
+
custom_action_defaults: {
|
191052
|
+
highlight_operation: {
|
191053
|
+
trigger: ("DATA_POINT_CLICK" | "DATA_POINT_HOVER" | "NONE")
|
191054
|
+
}?
|
191055
|
+
}?
|
191006
191056
|
}?,
|
191007
191057
|
static_files: Array[
|
191008
191058
|
{
|
@@ -226646,7 +226696,12 @@ module Aws
|
|
226646
226696
|
}
|
226647
226697
|
},
|
226648
226698
|
]?,
|
226649
|
-
content_type: ("PAGINATED" | "INTERACTIVE")
|
226699
|
+
content_type: ("PAGINATED" | "INTERACTIVE")?,
|
226700
|
+
custom_action_defaults: {
|
226701
|
+
highlight_operation: {
|
226702
|
+
trigger: ("DATA_POINT_CLICK" | "DATA_POINT_HOVER" | "NONE")
|
226703
|
+
}?
|
226704
|
+
}?
|
226650
226705
|
},
|
226651
226706
|
]?,
|
226652
226707
|
calculated_fields: Array[
|
@@ -229044,7 +229099,12 @@ module Aws
|
|
229044
229099
|
timezone: ::String?,
|
229045
229100
|
week_start: ("SUNDAY" | "MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY")?,
|
229046
229101
|
q_business_insights_status: ("ENABLED" | "DISABLED")?,
|
229047
|
-
excluded_data_set_arns: Array[::String]
|
229102
|
+
excluded_data_set_arns: Array[::String]?,
|
229103
|
+
custom_action_defaults: {
|
229104
|
+
highlight_operation: {
|
229105
|
+
trigger: ("DATA_POINT_CLICK" | "DATA_POINT_HOVER" | "NONE")
|
229106
|
+
}?
|
229107
|
+
}?
|
229048
229108
|
}?,
|
229049
229109
|
query_execution_options: {
|
229050
229110
|
query_execution_mode: ("AUTO" | "MANUAL")?
|
data/sig/types.rbs
CHANGED
@@ -597,6 +597,7 @@ module Aws::QuickSight
|
|
597
597
|
attr_accessor week_start: ("SUNDAY" | "MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY")
|
598
598
|
attr_accessor q_business_insights_status: ("ENABLED" | "DISABLED")
|
599
599
|
attr_accessor excluded_data_set_arns: ::Array[::String]
|
600
|
+
attr_accessor custom_action_defaults: Types::VisualCustomActionDefaults
|
600
601
|
SENSITIVE: []
|
601
602
|
end
|
602
603
|
|
@@ -7775,6 +7776,7 @@ module Aws::QuickSight
|
|
7775
7776
|
attr_accessor layouts: ::Array[Types::Layout]
|
7776
7777
|
attr_accessor sheet_control_layouts: ::Array[Types::SheetControlLayout]
|
7777
7778
|
attr_accessor content_type: ("PAGINATED" | "INTERACTIVE")
|
7779
|
+
attr_accessor custom_action_defaults: Types::VisualCustomActionDefaults
|
7778
7780
|
SENSITIVE: []
|
7779
7781
|
end
|
7780
7782
|
|
@@ -10013,6 +10015,11 @@ module Aws::QuickSight
|
|
10013
10015
|
SENSITIVE: []
|
10014
10016
|
end
|
10015
10017
|
|
10018
|
+
class VisualCustomActionDefaults
|
10019
|
+
attr_accessor highlight_operation: Types::VisualHighlightOperation
|
10020
|
+
SENSITIVE: []
|
10021
|
+
end
|
10022
|
+
|
10016
10023
|
class VisualCustomActionOperation
|
10017
10024
|
attr_accessor filter_operation: Types::CustomActionFilterOperation
|
10018
10025
|
attr_accessor navigation_operation: Types::CustomActionNavigationOperation
|
@@ -10021,6 +10028,11 @@ module Aws::QuickSight
|
|
10021
10028
|
SENSITIVE: []
|
10022
10029
|
end
|
10023
10030
|
|
10031
|
+
class VisualHighlightOperation
|
10032
|
+
attr_accessor trigger: ("DATA_POINT_CLICK" | "DATA_POINT_HOVER" | "NONE")
|
10033
|
+
SENSITIVE: []
|
10034
|
+
end
|
10035
|
+
|
10024
10036
|
class VisualInteractionOptions
|
10025
10037
|
attr_accessor visual_menu_option: Types::VisualMenuOption
|
10026
10038
|
attr_accessor context_menu_option: Types::ContextMenuOption
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-quicksight
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.147.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: aws-sdk-core
|
@@ -77,7 +76,6 @@ licenses:
|
|
77
76
|
metadata:
|
78
77
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-quicksight
|
79
78
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-quicksight/CHANGELOG.md
|
80
|
-
post_install_message:
|
81
79
|
rdoc_options: []
|
82
80
|
require_paths:
|
83
81
|
- lib
|
@@ -92,8 +90,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
92
90
|
- !ruby/object:Gem::Version
|
93
91
|
version: '0'
|
94
92
|
requirements: []
|
95
|
-
rubygems_version: 3.
|
96
|
-
signing_key:
|
93
|
+
rubygems_version: 3.6.7
|
97
94
|
specification_version: 4
|
98
95
|
summary: AWS SDK for Ruby - Amazon QuickSight
|
99
96
|
test_files: []
|