aws-sdk-quicksight 1.108.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-quicksight/client.rb +212 -74
- 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 +4 -4
data/sig/client.rbs
CHANGED
@@ -121,7 +121,7 @@ module Aws
|
|
121
121
|
end
|
122
122
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#create_account_subscription-instance_method
|
123
123
|
def create_account_subscription: (
|
124
|
-
edition: ("STANDARD" | "ENTERPRISE" | "ENTERPRISE_AND_Q"),
|
124
|
+
?edition: ("STANDARD" | "ENTERPRISE" | "ENTERPRISE_AND_Q"),
|
125
125
|
authentication_method: ("IAM_AND_QUICKSIGHT" | "IAM_ONLY" | "ACTIVE_DIRECTORY" | "IAM_IDENTITY_CENTER"),
|
126
126
|
aws_account_id: ::String,
|
127
127
|
account_name: ::String,
|
@@ -132,6 +132,9 @@ module Aws
|
|
132
132
|
?admin_group: Array[::String],
|
133
133
|
?author_group: Array[::String],
|
134
134
|
?reader_group: Array[::String],
|
135
|
+
?admin_pro_group: Array[::String],
|
136
|
+
?author_pro_group: Array[::String],
|
137
|
+
?reader_pro_group: Array[::String],
|
135
138
|
?first_name: ::String,
|
136
139
|
?last_name: ::String,
|
137
140
|
?email_address: ::String,
|
@@ -8694,6 +8697,10 @@ module Aws
|
|
8694
8697
|
},
|
8695
8698
|
]?
|
8696
8699
|
}?,
|
8700
|
+
color_configuration: {
|
8701
|
+
foreground_color: ::String?,
|
8702
|
+
background_color: ::String?
|
8703
|
+
}?,
|
8697
8704
|
interactions: {
|
8698
8705
|
visual_menu_option: {
|
8699
8706
|
availability_status: ("ENABLED" | "DISABLED")?
|
@@ -42153,6 +42160,10 @@ module Aws
|
|
42153
42160
|
},
|
42154
42161
|
]?
|
42155
42162
|
}?,
|
42163
|
+
color_configuration: {
|
42164
|
+
foreground_color: ::String?,
|
42165
|
+
background_color: ::String?
|
42166
|
+
}?,
|
42156
42167
|
interactions: {
|
42157
42168
|
visual_menu_option: {
|
42158
42169
|
availability_status: ("ENABLED" | "DISABLED")?
|
@@ -67737,7 +67748,7 @@ module Aws
|
|
67737
67748
|
member_name: ::String,
|
67738
67749
|
aws_account_id: ::String,
|
67739
67750
|
namespace: ::String,
|
67740
|
-
role: ("ADMIN" | "AUTHOR" | "READER")
|
67751
|
+
role: ("ADMIN" | "AUTHOR" | "READER" | "ADMIN_PRO" | "AUTHOR_PRO" | "READER_PRO")
|
67741
67752
|
) -> _CreateRoleMembershipResponseSuccess
|
67742
67753
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRoleMembershipResponseSuccess
|
67743
67754
|
|
@@ -76291,6 +76302,10 @@ module Aws
|
|
76291
76302
|
},
|
76292
76303
|
]?
|
76293
76304
|
}?,
|
76305
|
+
color_configuration: {
|
76306
|
+
foreground_color: ::String?,
|
76307
|
+
background_color: ::String?
|
76308
|
+
}?,
|
76294
76309
|
interactions: {
|
76295
76310
|
visual_menu_option: {
|
76296
76311
|
availability_status: ("ENABLED" | "DISABLED")?
|
@@ -101759,7 +101774,7 @@ module Aws
|
|
101759
101774
|
end
|
101760
101775
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#delete_role_custom_permission-instance_method
|
101761
101776
|
def delete_role_custom_permission: (
|
101762
|
-
role: ("ADMIN" | "AUTHOR" | "READER"),
|
101777
|
+
role: ("ADMIN" | "AUTHOR" | "READER" | "ADMIN_PRO" | "AUTHOR_PRO" | "READER_PRO"),
|
101763
101778
|
aws_account_id: ::String,
|
101764
101779
|
namespace: ::String
|
101765
101780
|
) -> _DeleteRoleCustomPermissionResponseSuccess
|
@@ -101773,7 +101788,7 @@ module Aws
|
|
101773
101788
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#delete_role_membership-instance_method
|
101774
101789
|
def delete_role_membership: (
|
101775
101790
|
member_name: ::String,
|
101776
|
-
role: ("ADMIN" | "AUTHOR" | "READER"),
|
101791
|
+
role: ("ADMIN" | "AUTHOR" | "READER" | "ADMIN_PRO" | "AUTHOR_PRO" | "READER_PRO"),
|
101777
101792
|
aws_account_id: ::String,
|
101778
101793
|
namespace: ::String
|
101779
101794
|
) -> _DeleteRoleMembershipResponseSuccess
|
@@ -102375,7 +102390,7 @@ module Aws
|
|
102375
102390
|
end
|
102376
102391
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#describe_role_custom_permission-instance_method
|
102377
102392
|
def describe_role_custom_permission: (
|
102378
|
-
role: ("ADMIN" | "AUTHOR" | "READER"),
|
102393
|
+
role: ("ADMIN" | "AUTHOR" | "READER" | "ADMIN_PRO" | "AUTHOR_PRO" | "READER_PRO"),
|
102379
102394
|
aws_account_id: ::String,
|
102380
102395
|
namespace: ::String
|
102381
102396
|
) -> _DescribeRoleCustomPermissionResponseSuccess
|
@@ -102609,6 +102624,9 @@ module Aws
|
|
102609
102624
|
}?,
|
102610
102625
|
q_search_bar: {
|
102611
102626
|
initial_topic_id: ::String
|
102627
|
+
}?,
|
102628
|
+
generative_qn_a: {
|
102629
|
+
initial_topic_id: ::String
|
102612
102630
|
}?
|
102613
102631
|
},
|
102614
102632
|
?allowed_domains: Array[::String]
|
@@ -102655,6 +102673,9 @@ module Aws
|
|
102655
102673
|
sheet_id: ::String,
|
102656
102674
|
visual_id: ::String
|
102657
102675
|
}
|
102676
|
+
}?,
|
102677
|
+
generative_qn_a: {
|
102678
|
+
initial_topic_id: ::String?
|
102658
102679
|
}?
|
102659
102680
|
},
|
102660
102681
|
?allowed_domains: Array[::String]
|
@@ -102969,7 +102990,7 @@ module Aws
|
|
102969
102990
|
end
|
102970
102991
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#list_role_memberships-instance_method
|
102971
102992
|
def list_role_memberships: (
|
102972
|
-
role: ("ADMIN" | "AUTHOR" | "READER"),
|
102993
|
+
role: ("ADMIN" | "AUTHOR" | "READER" | "ADMIN_PRO" | "AUTHOR_PRO" | "READER_PRO"),
|
102973
102994
|
?next_token: ::String,
|
102974
102995
|
?max_results: ::Integer,
|
102975
102996
|
aws_account_id: ::String,
|
@@ -103196,7 +103217,7 @@ module Aws
|
|
103196
103217
|
def register_user: (
|
103197
103218
|
identity_type: ("IAM" | "QUICKSIGHT" | "IAM_IDENTITY_CENTER"),
|
103198
103219
|
email: ::String,
|
103199
|
-
user_role: ("ADMIN" | "AUTHOR" | "READER" | "RESTRICTED_AUTHOR" | "RESTRICTED_READER"),
|
103220
|
+
user_role: ("ADMIN" | "AUTHOR" | "READER" | "RESTRICTED_AUTHOR" | "RESTRICTED_READER" | "ADMIN_PRO" | "AUTHOR_PRO" | "READER_PRO"),
|
103200
103221
|
?iam_arn: ::String,
|
103201
103222
|
?session_name: ::String,
|
103202
103223
|
aws_account_id: ::String,
|
@@ -112455,6 +112476,10 @@ module Aws
|
|
112455
112476
|
},
|
112456
112477
|
]?
|
112457
112478
|
}?,
|
112479
|
+
color_configuration: {
|
112480
|
+
foreground_color: ::String?,
|
112481
|
+
background_color: ::String?
|
112482
|
+
}?,
|
112458
112483
|
interactions: {
|
112459
112484
|
visual_menu_option: {
|
112460
112485
|
availability_status: ("ENABLED" | "DISABLED")?
|
@@ -145928,6 +145953,10 @@ module Aws
|
|
145928
145953
|
},
|
145929
145954
|
]?
|
145930
145955
|
}?,
|
145956
|
+
color_configuration: {
|
145957
|
+
foreground_color: ::String?,
|
145958
|
+
background_color: ::String?
|
145959
|
+
}?,
|
145931
145960
|
interactions: {
|
145932
145961
|
visual_menu_option: {
|
145933
145962
|
availability_status: ("ENABLED" | "DISABLED")?
|
@@ -171577,12 +171606,24 @@ module Aws
|
|
171577
171606
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#update_role_custom_permission-instance_method
|
171578
171607
|
def update_role_custom_permission: (
|
171579
171608
|
custom_permissions_name: ::String,
|
171580
|
-
role: ("ADMIN" | "AUTHOR" | "READER"),
|
171609
|
+
role: ("ADMIN" | "AUTHOR" | "READER" | "ADMIN_PRO" | "AUTHOR_PRO" | "READER_PRO"),
|
171581
171610
|
aws_account_id: ::String,
|
171582
171611
|
namespace: ::String
|
171583
171612
|
) -> _UpdateRoleCustomPermissionResponseSuccess
|
171584
171613
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRoleCustomPermissionResponseSuccess
|
171585
171614
|
|
171615
|
+
interface _UpdateSPICECapacityConfigurationResponseSuccess
|
171616
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSPICECapacityConfigurationResponse]
|
171617
|
+
def request_id: () -> ::String
|
171618
|
+
def status: () -> ::Integer
|
171619
|
+
end
|
171620
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#update_spice_capacity_configuration-instance_method
|
171621
|
+
def update_spice_capacity_configuration: (
|
171622
|
+
aws_account_id: ::String,
|
171623
|
+
purchase_mode: ("MANUAL" | "AUTO_PURCHASE")
|
171624
|
+
) -> _UpdateSPICECapacityConfigurationResponseSuccess
|
171625
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSPICECapacityConfigurationResponseSuccess
|
171626
|
+
|
171586
171627
|
interface _UpdateTemplateResponseSuccess
|
171587
171628
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateTemplateResponse]
|
171588
171629
|
def template_id: () -> ::String
|
@@ -180121,6 +180162,10 @@ module Aws
|
|
180121
180162
|
},
|
180122
180163
|
]?
|
180123
180164
|
}?,
|
180165
|
+
color_configuration: {
|
180166
|
+
foreground_color: ::String?,
|
180167
|
+
background_color: ::String?
|
180168
|
+
}?,
|
180124
180169
|
interactions: {
|
180125
180170
|
visual_menu_option: {
|
180126
180171
|
availability_status: ("ENABLED" | "DISABLED")?
|
@@ -205426,7 +205471,7 @@ module Aws
|
|
205426
205471
|
aws_account_id: ::String,
|
205427
205472
|
namespace: ::String,
|
205428
205473
|
email: ::String,
|
205429
|
-
role: ("ADMIN" | "AUTHOR" | "READER" | "RESTRICTED_AUTHOR" | "RESTRICTED_READER"),
|
205474
|
+
role: ("ADMIN" | "AUTHOR" | "READER" | "RESTRICTED_AUTHOR" | "RESTRICTED_READER" | "ADMIN_PRO" | "AUTHOR_PRO" | "READER_PRO"),
|
205430
205475
|
?custom_permissions_name: ::String,
|
205431
205476
|
?unapply_custom_permissions: bool,
|
205432
205477
|
?external_login_federation_provider_type: ::String,
|
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
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.193.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.193.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|