aws-sdk-quicksight 1.109.0 → 1.110.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 +143 -29
- data/lib/aws-sdk-quicksight/client_api.rb +46 -1
- data/lib/aws-sdk-quicksight/endpoints.rb +14 -0
- data/lib/aws-sdk-quicksight/plugins/endpoints.rb +2 -0
- data/lib/aws-sdk-quicksight/types.rb +262 -33
- data/lib/aws-sdk-quicksight.rb +1 -1
- data/sig/client.rbs +54 -9
- data/sig/types.rbs +44 -9
- metadata +2 -2
data/sig/types.rbs
CHANGED
@@ -165,6 +165,12 @@ module Aws::QuickSight
|
|
165
165
|
attr_accessor dashboard: Types::AnonymousUserDashboardEmbeddingConfiguration
|
166
166
|
attr_accessor dashboard_visual: Types::AnonymousUserDashboardVisualEmbeddingConfiguration
|
167
167
|
attr_accessor q_search_bar: Types::AnonymousUserQSearchBarEmbeddingConfiguration
|
168
|
+
attr_accessor generative_qn_a: Types::AnonymousUserGenerativeQnAEmbeddingConfiguration
|
169
|
+
SENSITIVE: []
|
170
|
+
end
|
171
|
+
|
172
|
+
class AnonymousUserGenerativeQnAEmbeddingConfiguration
|
173
|
+
attr_accessor initial_topic_id: ::String
|
168
174
|
SENSITIVE: []
|
169
175
|
end
|
170
176
|
|
@@ -1161,6 +1167,9 @@ module Aws::QuickSight
|
|
1161
1167
|
attr_accessor admin_group: ::Array[::String]
|
1162
1168
|
attr_accessor author_group: ::Array[::String]
|
1163
1169
|
attr_accessor reader_group: ::Array[::String]
|
1170
|
+
attr_accessor admin_pro_group: ::Array[::String]
|
1171
|
+
attr_accessor author_pro_group: ::Array[::String]
|
1172
|
+
attr_accessor reader_pro_group: ::Array[::String]
|
1164
1173
|
attr_accessor first_name: ::String
|
1165
1174
|
attr_accessor last_name: ::String
|
1166
1175
|
attr_accessor email_address: ::String
|
@@ -1429,7 +1438,7 @@ module Aws::QuickSight
|
|
1429
1438
|
attr_accessor member_name: ::String
|
1430
1439
|
attr_accessor aws_account_id: ::String
|
1431
1440
|
attr_accessor namespace: ::String
|
1432
|
-
attr_accessor role: ("ADMIN" | "AUTHOR" | "READER")
|
1441
|
+
attr_accessor role: ("ADMIN" | "AUTHOR" | "READER" | "ADMIN_PRO" | "AUTHOR_PRO" | "READER_PRO")
|
1433
1442
|
SENSITIVE: []
|
1434
1443
|
end
|
1435
1444
|
|
@@ -2510,7 +2519,7 @@ module Aws::QuickSight
|
|
2510
2519
|
end
|
2511
2520
|
|
2512
2521
|
class DeleteRoleCustomPermissionRequest
|
2513
|
-
attr_accessor role: ("ADMIN" | "AUTHOR" | "READER")
|
2522
|
+
attr_accessor role: ("ADMIN" | "AUTHOR" | "READER" | "ADMIN_PRO" | "AUTHOR_PRO" | "READER_PRO")
|
2514
2523
|
attr_accessor aws_account_id: ::String
|
2515
2524
|
attr_accessor namespace: ::String
|
2516
2525
|
SENSITIVE: []
|
@@ -2524,7 +2533,7 @@ module Aws::QuickSight
|
|
2524
2533
|
|
2525
2534
|
class DeleteRoleMembershipRequest
|
2526
2535
|
attr_accessor member_name: ::String
|
2527
|
-
attr_accessor role: ("ADMIN" | "AUTHOR" | "READER")
|
2536
|
+
attr_accessor role: ("ADMIN" | "AUTHOR" | "READER" | "ADMIN_PRO" | "AUTHOR_PRO" | "READER_PRO")
|
2528
2537
|
attr_accessor aws_account_id: ::String
|
2529
2538
|
attr_accessor namespace: ::String
|
2530
2539
|
SENSITIVE: []
|
@@ -3125,7 +3134,7 @@ module Aws::QuickSight
|
|
3125
3134
|
end
|
3126
3135
|
|
3127
3136
|
class DescribeRoleCustomPermissionRequest
|
3128
|
-
attr_accessor role: ("ADMIN" | "AUTHOR" | "READER")
|
3137
|
+
attr_accessor role: ("ADMIN" | "AUTHOR" | "READER" | "ADMIN_PRO" | "AUTHOR_PRO" | "READER_PRO")
|
3129
3138
|
attr_accessor aws_account_id: ::String
|
3130
3139
|
attr_accessor namespace: ::String
|
3131
3140
|
SENSITIVE: []
|
@@ -3898,6 +3907,12 @@ module Aws::QuickSight
|
|
3898
3907
|
SENSITIVE: []
|
3899
3908
|
end
|
3900
3909
|
|
3910
|
+
class GaugeChartColorConfiguration
|
3911
|
+
attr_accessor foreground_color: ::String
|
3912
|
+
attr_accessor background_color: ::String
|
3913
|
+
SENSITIVE: []
|
3914
|
+
end
|
3915
|
+
|
3901
3916
|
class GaugeChartConditionalFormatting
|
3902
3917
|
attr_accessor conditional_formatting_options: ::Array[Types::GaugeChartConditionalFormattingOption]
|
3903
3918
|
SENSITIVE: []
|
@@ -3915,6 +3930,7 @@ module Aws::QuickSight
|
|
3915
3930
|
attr_accessor data_labels: Types::DataLabelOptions
|
3916
3931
|
attr_accessor tooltip_options: Types::TooltipOptions
|
3917
3932
|
attr_accessor visual_palette: Types::VisualPalette
|
3933
|
+
attr_accessor color_configuration: Types::GaugeChartColorConfiguration
|
3918
3934
|
attr_accessor interactions: Types::VisualInteractionOptions
|
3919
3935
|
SENSITIVE: []
|
3920
3936
|
end
|
@@ -4946,7 +4962,7 @@ module Aws::QuickSight
|
|
4946
4962
|
end
|
4947
4963
|
|
4948
4964
|
class ListRoleMembershipsRequest
|
4949
|
-
attr_accessor role: ("ADMIN" | "AUTHOR" | "READER")
|
4965
|
+
attr_accessor role: ("ADMIN" | "AUTHOR" | "READER" | "ADMIN_PRO" | "AUTHOR_PRO" | "READER_PRO")
|
4950
4966
|
attr_accessor next_token: ::String
|
4951
4967
|
attr_accessor max_results: ::Integer
|
4952
4968
|
attr_accessor aws_account_id: ::String
|
@@ -6048,7 +6064,7 @@ module Aws::QuickSight
|
|
6048
6064
|
class RegisterUserRequest
|
6049
6065
|
attr_accessor identity_type: ("IAM" | "QUICKSIGHT" | "IAM_IDENTITY_CENTER")
|
6050
6066
|
attr_accessor email: ::String
|
6051
|
-
attr_accessor user_role: ("ADMIN" | "AUTHOR" | "READER" | "RESTRICTED_AUTHOR" | "RESTRICTED_READER")
|
6067
|
+
attr_accessor user_role: ("ADMIN" | "AUTHOR" | "READER" | "RESTRICTED_AUTHOR" | "RESTRICTED_READER" | "ADMIN_PRO" | "AUTHOR_PRO" | "READER_PRO")
|
6052
6068
|
attr_accessor iam_arn: ::String
|
6053
6069
|
attr_accessor session_name: ::String
|
6054
6070
|
attr_accessor aws_account_id: ::String
|
@@ -6097,6 +6113,12 @@ module Aws::QuickSight
|
|
6097
6113
|
attr_accessor quick_sight_console: Types::RegisteredUserQuickSightConsoleEmbeddingConfiguration
|
6098
6114
|
attr_accessor q_search_bar: Types::RegisteredUserQSearchBarEmbeddingConfiguration
|
6099
6115
|
attr_accessor dashboard_visual: Types::RegisteredUserDashboardVisualEmbeddingConfiguration
|
6116
|
+
attr_accessor generative_qn_a: Types::RegisteredUserGenerativeQnAEmbeddingConfiguration
|
6117
|
+
SENSITIVE: []
|
6118
|
+
end
|
6119
|
+
|
6120
|
+
class RegisteredUserGenerativeQnAEmbeddingConfiguration
|
6121
|
+
attr_accessor initial_topic_id: ::String
|
6100
6122
|
SENSITIVE: []
|
6101
6123
|
end
|
6102
6124
|
|
@@ -7591,6 +7613,7 @@ module Aws::QuickSight
|
|
7591
7613
|
attr_accessor arn: ::String
|
7592
7614
|
attr_accessor topic_id: ::String
|
7593
7615
|
attr_accessor name: ::String
|
7616
|
+
attr_accessor user_experience_version: ("LEGACY" | "NEW_READER_EXPERIENCE")
|
7594
7617
|
SENSITIVE: []
|
7595
7618
|
end
|
7596
7619
|
|
@@ -8111,7 +8134,7 @@ module Aws::QuickSight
|
|
8111
8134
|
|
8112
8135
|
class UpdateRoleCustomPermissionRequest
|
8113
8136
|
attr_accessor custom_permissions_name: ::String
|
8114
|
-
attr_accessor role: ("ADMIN" | "AUTHOR" | "READER")
|
8137
|
+
attr_accessor role: ("ADMIN" | "AUTHOR" | "READER" | "ADMIN_PRO" | "AUTHOR_PRO" | "READER_PRO")
|
8115
8138
|
attr_accessor aws_account_id: ::String
|
8116
8139
|
attr_accessor namespace: ::String
|
8117
8140
|
SENSITIVE: []
|
@@ -8123,6 +8146,18 @@ module Aws::QuickSight
|
|
8123
8146
|
SENSITIVE: []
|
8124
8147
|
end
|
8125
8148
|
|
8149
|
+
class UpdateSPICECapacityConfigurationRequest
|
8150
|
+
attr_accessor aws_account_id: ::String
|
8151
|
+
attr_accessor purchase_mode: ("MANUAL" | "AUTO_PURCHASE")
|
8152
|
+
SENSITIVE: []
|
8153
|
+
end
|
8154
|
+
|
8155
|
+
class UpdateSPICECapacityConfigurationResponse
|
8156
|
+
attr_accessor request_id: ::String
|
8157
|
+
attr_accessor status: ::Integer
|
8158
|
+
SENSITIVE: []
|
8159
|
+
end
|
8160
|
+
|
8126
8161
|
class UpdateTemplateAliasRequest
|
8127
8162
|
attr_accessor aws_account_id: ::String
|
8128
8163
|
attr_accessor template_id: ::String
|
@@ -8283,7 +8318,7 @@ module Aws::QuickSight
|
|
8283
8318
|
attr_accessor aws_account_id: ::String
|
8284
8319
|
attr_accessor namespace: ::String
|
8285
8320
|
attr_accessor email: ::String
|
8286
|
-
attr_accessor role: ("ADMIN" | "AUTHOR" | "READER" | "RESTRICTED_AUTHOR" | "RESTRICTED_READER")
|
8321
|
+
attr_accessor role: ("ADMIN" | "AUTHOR" | "READER" | "RESTRICTED_AUTHOR" | "RESTRICTED_READER" | "ADMIN_PRO" | "AUTHOR_PRO" | "READER_PRO")
|
8287
8322
|
attr_accessor custom_permissions_name: ::String
|
8288
8323
|
attr_accessor unapply_custom_permissions: bool
|
8289
8324
|
attr_accessor external_login_federation_provider_type: ::String
|
@@ -8333,7 +8368,7 @@ module Aws::QuickSight
|
|
8333
8368
|
attr_accessor arn: ::String
|
8334
8369
|
attr_accessor user_name: ::String
|
8335
8370
|
attr_accessor email: ::String
|
8336
|
-
attr_accessor role: ("ADMIN" | "AUTHOR" | "READER" | "RESTRICTED_AUTHOR" | "RESTRICTED_READER")
|
8371
|
+
attr_accessor role: ("ADMIN" | "AUTHOR" | "READER" | "RESTRICTED_AUTHOR" | "RESTRICTED_READER" | "ADMIN_PRO" | "AUTHOR_PRO" | "READER_PRO")
|
8337
8372
|
attr_accessor identity_type: ("IAM" | "QUICKSIGHT" | "IAM_IDENTITY_CENTER")
|
8338
8373
|
attr_accessor active: bool
|
8339
8374
|
attr_accessor principal_id: ::String
|
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.
|
4
|
+
version: 1.110.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: 2024-04-
|
11
|
+
date: 2024-04-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|