aws-sdk-quicksight 1.135.0 → 1.136.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 +1121 -1
- data/lib/aws-sdk-quicksight/client_api.rb +607 -0
- data/lib/aws-sdk-quicksight/errors.rb +16 -0
- data/lib/aws-sdk-quicksight/types.rb +1252 -0
- data/lib/aws-sdk-quicksight.rb +1 -1
- data/sig/client.rbs +421 -0
- data/sig/errors.rbs +3 -0
- data/sig/types.rbs +385 -0
- metadata +2 -2
data/sig/types.rbs
CHANGED
@@ -214,6 +214,12 @@ module Aws::QuickSight
|
|
214
214
|
SENSITIVE: []
|
215
215
|
end
|
216
216
|
|
217
|
+
class ApplicationTheme
|
218
|
+
attr_accessor brand_color_palette: Types::BrandColorPalette
|
219
|
+
attr_accessor brand_element_style: Types::BrandElementStyle
|
220
|
+
SENSITIVE: []
|
221
|
+
end
|
222
|
+
|
217
223
|
class ArcAxisConfiguration
|
218
224
|
attr_accessor range: Types::ArcAxisDisplayRange
|
219
225
|
attr_accessor reserve_range: ::Integer
|
@@ -897,6 +903,56 @@ module Aws::QuickSight
|
|
897
903
|
SENSITIVE: []
|
898
904
|
end
|
899
905
|
|
906
|
+
class BrandColorPalette
|
907
|
+
attr_accessor primary: Types::Palette
|
908
|
+
attr_accessor secondary: Types::Palette
|
909
|
+
attr_accessor accent: Types::Palette
|
910
|
+
attr_accessor measure: Types::Palette
|
911
|
+
attr_accessor dimension: Types::Palette
|
912
|
+
attr_accessor success: Types::Palette
|
913
|
+
attr_accessor info: Types::Palette
|
914
|
+
attr_accessor warning: Types::Palette
|
915
|
+
attr_accessor danger: Types::Palette
|
916
|
+
SENSITIVE: []
|
917
|
+
end
|
918
|
+
|
919
|
+
class BrandDefinition
|
920
|
+
attr_accessor brand_name: ::String
|
921
|
+
attr_accessor description: ::String
|
922
|
+
attr_accessor application_theme: Types::ApplicationTheme
|
923
|
+
attr_accessor logo_configuration: Types::LogoConfiguration
|
924
|
+
SENSITIVE: []
|
925
|
+
end
|
926
|
+
|
927
|
+
class BrandDetail
|
928
|
+
attr_accessor brand_id: ::String
|
929
|
+
attr_accessor arn: ::String
|
930
|
+
attr_accessor brand_status: ("CREATE_IN_PROGRESS" | "CREATE_SUCCEEDED" | "CREATE_FAILED" | "DELETE_IN_PROGRESS" | "DELETE_FAILED")
|
931
|
+
attr_accessor created_time: ::Time
|
932
|
+
attr_accessor last_updated_time: ::Time
|
933
|
+
attr_accessor version_id: ::String
|
934
|
+
attr_accessor version_status: ("CREATE_IN_PROGRESS" | "CREATE_SUCCEEDED" | "CREATE_FAILED")
|
935
|
+
attr_accessor errors: ::Array[::String]
|
936
|
+
attr_accessor logo: Types::Logo
|
937
|
+
SENSITIVE: []
|
938
|
+
end
|
939
|
+
|
940
|
+
class BrandElementStyle
|
941
|
+
attr_accessor navbar_style: Types::NavbarStyle
|
942
|
+
SENSITIVE: []
|
943
|
+
end
|
944
|
+
|
945
|
+
class BrandSummary
|
946
|
+
attr_accessor arn: ::String
|
947
|
+
attr_accessor brand_id: ::String
|
948
|
+
attr_accessor brand_name: ::String
|
949
|
+
attr_accessor description: ::String
|
950
|
+
attr_accessor brand_status: ("CREATE_IN_PROGRESS" | "CREATE_SUCCEEDED" | "CREATE_FAILED" | "DELETE_IN_PROGRESS" | "DELETE_FAILED")
|
951
|
+
attr_accessor created_time: ::Time
|
952
|
+
attr_accessor last_updated_time: ::Time
|
953
|
+
SENSITIVE: []
|
954
|
+
end
|
955
|
+
|
900
956
|
class CalculatedColumn
|
901
957
|
attr_accessor column_name: ::String
|
902
958
|
attr_accessor column_id: ::String
|
@@ -932,6 +988,27 @@ module Aws::QuickSight
|
|
932
988
|
SENSITIVE: []
|
933
989
|
end
|
934
990
|
|
991
|
+
class Capabilities
|
992
|
+
attr_accessor export_to_csv: ("DENY")
|
993
|
+
attr_accessor export_to_excel: ("DENY")
|
994
|
+
attr_accessor create_and_update_themes: ("DENY")
|
995
|
+
attr_accessor add_or_run_anomaly_detection_for_analyses: ("DENY")
|
996
|
+
attr_accessor share_analyses: ("DENY")
|
997
|
+
attr_accessor create_and_update_datasets: ("DENY")
|
998
|
+
attr_accessor share_datasets: ("DENY")
|
999
|
+
attr_accessor subscribe_dashboard_email_reports: ("DENY")
|
1000
|
+
attr_accessor create_and_update_dashboard_email_reports: ("DENY")
|
1001
|
+
attr_accessor share_dashboards: ("DENY")
|
1002
|
+
attr_accessor create_and_update_threshold_alerts: ("DENY")
|
1003
|
+
attr_accessor rename_shared_folders: ("DENY")
|
1004
|
+
attr_accessor create_shared_folders: ("DENY")
|
1005
|
+
attr_accessor create_and_update_data_sources: ("DENY")
|
1006
|
+
attr_accessor share_data_sources: ("DENY")
|
1007
|
+
attr_accessor view_account_spice_capacity: ("DENY")
|
1008
|
+
attr_accessor create_spice_dataset: ("DENY")
|
1009
|
+
SENSITIVE: []
|
1010
|
+
end
|
1011
|
+
|
935
1012
|
class CascadingControlConfiguration
|
936
1013
|
attr_accessor source_controls: ::Array[Types::CascadingControlSource]
|
937
1014
|
SENSITIVE: []
|
@@ -1359,11 +1436,41 @@ module Aws::QuickSight
|
|
1359
1436
|
SENSITIVE: []
|
1360
1437
|
end
|
1361
1438
|
|
1439
|
+
class CreateBrandRequest
|
1440
|
+
attr_accessor aws_account_id: ::String
|
1441
|
+
attr_accessor brand_id: ::String
|
1442
|
+
attr_accessor brand_definition: Types::BrandDefinition
|
1443
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1444
|
+
SENSITIVE: []
|
1445
|
+
end
|
1446
|
+
|
1447
|
+
class CreateBrandResponse
|
1448
|
+
attr_accessor request_id: ::String
|
1449
|
+
attr_accessor brand_detail: Types::BrandDetail
|
1450
|
+
attr_accessor brand_definition: Types::BrandDefinition
|
1451
|
+
SENSITIVE: []
|
1452
|
+
end
|
1453
|
+
|
1362
1454
|
class CreateColumnsOperation
|
1363
1455
|
attr_accessor columns: ::Array[Types::CalculatedColumn]
|
1364
1456
|
SENSITIVE: []
|
1365
1457
|
end
|
1366
1458
|
|
1459
|
+
class CreateCustomPermissionsRequest
|
1460
|
+
attr_accessor aws_account_id: ::String
|
1461
|
+
attr_accessor custom_permissions_name: ::String
|
1462
|
+
attr_accessor capabilities: Types::Capabilities
|
1463
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1464
|
+
SENSITIVE: []
|
1465
|
+
end
|
1466
|
+
|
1467
|
+
class CreateCustomPermissionsResponse
|
1468
|
+
attr_accessor status: ::Integer
|
1469
|
+
attr_accessor arn: ::String
|
1470
|
+
attr_accessor request_id: ::String
|
1471
|
+
SENSITIVE: []
|
1472
|
+
end
|
1473
|
+
|
1367
1474
|
class CreateDashboardRequest
|
1368
1475
|
attr_accessor aws_account_id: ::String
|
1369
1476
|
attr_accessor dashboard_id: ::String
|
@@ -1836,6 +1943,13 @@ module Aws::QuickSight
|
|
1836
1943
|
SENSITIVE: []
|
1837
1944
|
end
|
1838
1945
|
|
1946
|
+
class CustomPermissions
|
1947
|
+
attr_accessor arn: ::String
|
1948
|
+
attr_accessor custom_permissions_name: ::String
|
1949
|
+
attr_accessor capabilities: Types::Capabilities
|
1950
|
+
SENSITIVE: []
|
1951
|
+
end
|
1952
|
+
|
1839
1953
|
class CustomSql
|
1840
1954
|
attr_accessor data_source_arn: ::String
|
1841
1955
|
attr_accessor name: ::String
|
@@ -2526,6 +2640,40 @@ module Aws::QuickSight
|
|
2526
2640
|
SENSITIVE: []
|
2527
2641
|
end
|
2528
2642
|
|
2643
|
+
class DeleteBrandAssignmentRequest
|
2644
|
+
attr_accessor aws_account_id: ::String
|
2645
|
+
SENSITIVE: []
|
2646
|
+
end
|
2647
|
+
|
2648
|
+
class DeleteBrandAssignmentResponse
|
2649
|
+
attr_accessor request_id: ::String
|
2650
|
+
SENSITIVE: []
|
2651
|
+
end
|
2652
|
+
|
2653
|
+
class DeleteBrandRequest
|
2654
|
+
attr_accessor aws_account_id: ::String
|
2655
|
+
attr_accessor brand_id: ::String
|
2656
|
+
SENSITIVE: []
|
2657
|
+
end
|
2658
|
+
|
2659
|
+
class DeleteBrandResponse
|
2660
|
+
attr_accessor request_id: ::String
|
2661
|
+
SENSITIVE: []
|
2662
|
+
end
|
2663
|
+
|
2664
|
+
class DeleteCustomPermissionsRequest
|
2665
|
+
attr_accessor aws_account_id: ::String
|
2666
|
+
attr_accessor custom_permissions_name: ::String
|
2667
|
+
SENSITIVE: []
|
2668
|
+
end
|
2669
|
+
|
2670
|
+
class DeleteCustomPermissionsResponse
|
2671
|
+
attr_accessor status: ::Integer
|
2672
|
+
attr_accessor arn: ::String
|
2673
|
+
attr_accessor request_id: ::String
|
2674
|
+
SENSITIVE: []
|
2675
|
+
end
|
2676
|
+
|
2529
2677
|
class DeleteDashboardRequest
|
2530
2678
|
attr_accessor aws_account_id: ::String
|
2531
2679
|
attr_accessor dashboard_id: ::String
|
@@ -2821,6 +2969,19 @@ module Aws::QuickSight
|
|
2821
2969
|
SENSITIVE: []
|
2822
2970
|
end
|
2823
2971
|
|
2972
|
+
class DeleteUserCustomPermissionRequest
|
2973
|
+
attr_accessor user_name: ::String
|
2974
|
+
attr_accessor aws_account_id: ::String
|
2975
|
+
attr_accessor namespace: ::String
|
2976
|
+
SENSITIVE: []
|
2977
|
+
end
|
2978
|
+
|
2979
|
+
class DeleteUserCustomPermissionResponse
|
2980
|
+
attr_accessor request_id: ::String
|
2981
|
+
attr_accessor status: ::Integer
|
2982
|
+
SENSITIVE: []
|
2983
|
+
end
|
2984
|
+
|
2824
2985
|
class DeleteUserRequest
|
2825
2986
|
attr_accessor user_name: ::String
|
2826
2987
|
attr_accessor aws_account_id: ::String
|
@@ -2992,6 +3153,57 @@ module Aws::QuickSight
|
|
2992
3153
|
SENSITIVE: []
|
2993
3154
|
end
|
2994
3155
|
|
3156
|
+
class DescribeBrandAssignmentRequest
|
3157
|
+
attr_accessor aws_account_id: ::String
|
3158
|
+
SENSITIVE: []
|
3159
|
+
end
|
3160
|
+
|
3161
|
+
class DescribeBrandAssignmentResponse
|
3162
|
+
attr_accessor request_id: ::String
|
3163
|
+
attr_accessor brand_arn: ::String
|
3164
|
+
SENSITIVE: []
|
3165
|
+
end
|
3166
|
+
|
3167
|
+
class DescribeBrandPublishedVersionRequest
|
3168
|
+
attr_accessor aws_account_id: ::String
|
3169
|
+
attr_accessor brand_id: ::String
|
3170
|
+
SENSITIVE: []
|
3171
|
+
end
|
3172
|
+
|
3173
|
+
class DescribeBrandPublishedVersionResponse
|
3174
|
+
attr_accessor request_id: ::String
|
3175
|
+
attr_accessor brand_detail: Types::BrandDetail
|
3176
|
+
attr_accessor brand_definition: Types::BrandDefinition
|
3177
|
+
SENSITIVE: []
|
3178
|
+
end
|
3179
|
+
|
3180
|
+
class DescribeBrandRequest
|
3181
|
+
attr_accessor aws_account_id: ::String
|
3182
|
+
attr_accessor brand_id: ::String
|
3183
|
+
attr_accessor version_id: ::String
|
3184
|
+
SENSITIVE: []
|
3185
|
+
end
|
3186
|
+
|
3187
|
+
class DescribeBrandResponse
|
3188
|
+
attr_accessor request_id: ::String
|
3189
|
+
attr_accessor brand_detail: Types::BrandDetail
|
3190
|
+
attr_accessor brand_definition: Types::BrandDefinition
|
3191
|
+
SENSITIVE: []
|
3192
|
+
end
|
3193
|
+
|
3194
|
+
class DescribeCustomPermissionsRequest
|
3195
|
+
attr_accessor aws_account_id: ::String
|
3196
|
+
attr_accessor custom_permissions_name: ::String
|
3197
|
+
SENSITIVE: []
|
3198
|
+
end
|
3199
|
+
|
3200
|
+
class DescribeCustomPermissionsResponse
|
3201
|
+
attr_accessor status: ::Integer
|
3202
|
+
attr_accessor custom_permissions: Types::CustomPermissions
|
3203
|
+
attr_accessor request_id: ::String
|
3204
|
+
SENSITIVE: []
|
3205
|
+
end
|
3206
|
+
|
2995
3207
|
class DescribeDashboardDefinitionRequest
|
2996
3208
|
attr_accessor aws_account_id: ::String
|
2997
3209
|
attr_accessor dashboard_id: ::String
|
@@ -4539,6 +4751,43 @@ module Aws::QuickSight
|
|
4539
4751
|
SENSITIVE: []
|
4540
4752
|
end
|
4541
4753
|
|
4754
|
+
class Image
|
4755
|
+
attr_accessor source: Types::ImageSource
|
4756
|
+
attr_accessor generated_image_url: ::String
|
4757
|
+
SENSITIVE: []
|
4758
|
+
end
|
4759
|
+
|
4760
|
+
class ImageConfiguration
|
4761
|
+
attr_accessor source: Types::ImageSource
|
4762
|
+
SENSITIVE: []
|
4763
|
+
end
|
4764
|
+
|
4765
|
+
class ImageSet
|
4766
|
+
attr_accessor original: Types::Image
|
4767
|
+
attr_accessor height_64: Types::Image
|
4768
|
+
attr_accessor height_32: Types::Image
|
4769
|
+
SENSITIVE: []
|
4770
|
+
end
|
4771
|
+
|
4772
|
+
class ImageSetConfiguration
|
4773
|
+
attr_accessor original: Types::ImageConfiguration
|
4774
|
+
SENSITIVE: []
|
4775
|
+
end
|
4776
|
+
|
4777
|
+
class ImageSource
|
4778
|
+
attr_accessor public_url: ::String
|
4779
|
+
attr_accessor s3_uri: ::String
|
4780
|
+
attr_accessor unknown: untyped
|
4781
|
+
SENSITIVE: []
|
4782
|
+
|
4783
|
+
class PublicUrl < ImageSource
|
4784
|
+
end
|
4785
|
+
class S3Uri < ImageSource
|
4786
|
+
end
|
4787
|
+
class Unknown < ImageSource
|
4788
|
+
end
|
4789
|
+
end
|
4790
|
+
|
4542
4791
|
class IncrementalRefresh
|
4543
4792
|
attr_accessor lookback_window: Types::LookbackWindow
|
4544
4793
|
SENSITIVE: []
|
@@ -4634,6 +4883,11 @@ module Aws::QuickSight
|
|
4634
4883
|
SENSITIVE: []
|
4635
4884
|
end
|
4636
4885
|
|
4886
|
+
class InternalServerException
|
4887
|
+
attr_accessor message: ::String
|
4888
|
+
SENSITIVE: []
|
4889
|
+
end
|
4890
|
+
|
4637
4891
|
class InvalidNextTokenException
|
4638
4892
|
attr_accessor message: ::String
|
4639
4893
|
attr_accessor request_id: ::String
|
@@ -4959,6 +5213,19 @@ module Aws::QuickSight
|
|
4959
5213
|
SENSITIVE: []
|
4960
5214
|
end
|
4961
5215
|
|
5216
|
+
class ListBrandsRequest
|
5217
|
+
attr_accessor aws_account_id: ::String
|
5218
|
+
attr_accessor max_results: ::Integer
|
5219
|
+
attr_accessor next_token: ::String
|
5220
|
+
SENSITIVE: []
|
5221
|
+
end
|
5222
|
+
|
5223
|
+
class ListBrandsResponse
|
5224
|
+
attr_accessor next_token: ::String
|
5225
|
+
attr_accessor brands: ::Array[Types::BrandSummary]
|
5226
|
+
SENSITIVE: []
|
5227
|
+
end
|
5228
|
+
|
4962
5229
|
class ListControlDisplayOptions
|
4963
5230
|
attr_accessor search_options: Types::ListControlSearchOptions
|
4964
5231
|
attr_accessor select_all_options: Types::ListControlSelectAllOptions
|
@@ -4977,6 +5244,21 @@ module Aws::QuickSight
|
|
4977
5244
|
SENSITIVE: []
|
4978
5245
|
end
|
4979
5246
|
|
5247
|
+
class ListCustomPermissionsRequest
|
5248
|
+
attr_accessor aws_account_id: ::String
|
5249
|
+
attr_accessor max_results: ::Integer
|
5250
|
+
attr_accessor next_token: ::String
|
5251
|
+
SENSITIVE: []
|
5252
|
+
end
|
5253
|
+
|
5254
|
+
class ListCustomPermissionsResponse
|
5255
|
+
attr_accessor status: ::Integer
|
5256
|
+
attr_accessor custom_permissions_list: ::Array[Types::CustomPermissions]
|
5257
|
+
attr_accessor next_token: ::String
|
5258
|
+
attr_accessor request_id: ::String
|
5259
|
+
SENSITIVE: []
|
5260
|
+
end
|
5261
|
+
|
4980
5262
|
class ListDashboardVersionsRequest
|
4981
5263
|
attr_accessor aws_account_id: ::String
|
4982
5264
|
attr_accessor dashboard_id: ::String
|
@@ -5452,6 +5734,30 @@ module Aws::QuickSight
|
|
5452
5734
|
SENSITIVE: []
|
5453
5735
|
end
|
5454
5736
|
|
5737
|
+
class Logo
|
5738
|
+
attr_accessor alt_text: ::String
|
5739
|
+
attr_accessor logo_set: Types::LogoSet
|
5740
|
+
SENSITIVE: []
|
5741
|
+
end
|
5742
|
+
|
5743
|
+
class LogoConfiguration
|
5744
|
+
attr_accessor alt_text: ::String
|
5745
|
+
attr_accessor logo_set: Types::LogoSetConfiguration
|
5746
|
+
SENSITIVE: []
|
5747
|
+
end
|
5748
|
+
|
5749
|
+
class LogoSet
|
5750
|
+
attr_accessor primary: Types::ImageSet
|
5751
|
+
attr_accessor favicon: Types::ImageSet
|
5752
|
+
SENSITIVE: []
|
5753
|
+
end
|
5754
|
+
|
5755
|
+
class LogoSetConfiguration
|
5756
|
+
attr_accessor primary: Types::ImageSetConfiguration
|
5757
|
+
attr_accessor favicon: Types::ImageSetConfiguration
|
5758
|
+
SENSITIVE: []
|
5759
|
+
end
|
5760
|
+
|
5455
5761
|
class LongFormatText
|
5456
5762
|
attr_accessor plain_text: ::String
|
5457
5763
|
attr_accessor rich_text: ::String
|
@@ -5579,6 +5885,12 @@ module Aws::QuickSight
|
|
5579
5885
|
SENSITIVE: []
|
5580
5886
|
end
|
5581
5887
|
|
5888
|
+
class NavbarStyle
|
5889
|
+
attr_accessor global_navbar: Types::Palette
|
5890
|
+
attr_accessor contextual_navbar: Types::Palette
|
5891
|
+
SENSITIVE: []
|
5892
|
+
end
|
5893
|
+
|
5582
5894
|
class NegativeFormat
|
5583
5895
|
attr_accessor prefix: ::String
|
5584
5896
|
attr_accessor suffix: ::String
|
@@ -5752,6 +6064,12 @@ module Aws::QuickSight
|
|
5752
6064
|
SENSITIVE: []
|
5753
6065
|
end
|
5754
6066
|
|
6067
|
+
class Palette
|
6068
|
+
attr_accessor foreground: ::String
|
6069
|
+
attr_accessor background: ::String
|
6070
|
+
SENSITIVE: []
|
6071
|
+
end
|
6072
|
+
|
5755
6073
|
class PanelConfiguration
|
5756
6074
|
attr_accessor title: Types::PanelTitleOptions
|
5757
6075
|
attr_accessor border_visibility: ("HIDDEN" | "VISIBLE")
|
@@ -8317,6 +8635,59 @@ module Aws::QuickSight
|
|
8317
8635
|
SENSITIVE: []
|
8318
8636
|
end
|
8319
8637
|
|
8638
|
+
class UpdateBrandAssignmentRequest
|
8639
|
+
attr_accessor aws_account_id: ::String
|
8640
|
+
attr_accessor brand_arn: ::String
|
8641
|
+
SENSITIVE: []
|
8642
|
+
end
|
8643
|
+
|
8644
|
+
class UpdateBrandAssignmentResponse
|
8645
|
+
attr_accessor request_id: ::String
|
8646
|
+
attr_accessor brand_arn: ::String
|
8647
|
+
SENSITIVE: []
|
8648
|
+
end
|
8649
|
+
|
8650
|
+
class UpdateBrandPublishedVersionRequest
|
8651
|
+
attr_accessor aws_account_id: ::String
|
8652
|
+
attr_accessor brand_id: ::String
|
8653
|
+
attr_accessor version_id: ::String
|
8654
|
+
SENSITIVE: []
|
8655
|
+
end
|
8656
|
+
|
8657
|
+
class UpdateBrandPublishedVersionResponse
|
8658
|
+
attr_accessor request_id: ::String
|
8659
|
+
attr_accessor version_id: ::String
|
8660
|
+
SENSITIVE: []
|
8661
|
+
end
|
8662
|
+
|
8663
|
+
class UpdateBrandRequest
|
8664
|
+
attr_accessor aws_account_id: ::String
|
8665
|
+
attr_accessor brand_id: ::String
|
8666
|
+
attr_accessor brand_definition: Types::BrandDefinition
|
8667
|
+
SENSITIVE: []
|
8668
|
+
end
|
8669
|
+
|
8670
|
+
class UpdateBrandResponse
|
8671
|
+
attr_accessor request_id: ::String
|
8672
|
+
attr_accessor brand_detail: Types::BrandDetail
|
8673
|
+
attr_accessor brand_definition: Types::BrandDefinition
|
8674
|
+
SENSITIVE: []
|
8675
|
+
end
|
8676
|
+
|
8677
|
+
class UpdateCustomPermissionsRequest
|
8678
|
+
attr_accessor aws_account_id: ::String
|
8679
|
+
attr_accessor custom_permissions_name: ::String
|
8680
|
+
attr_accessor capabilities: Types::Capabilities
|
8681
|
+
SENSITIVE: []
|
8682
|
+
end
|
8683
|
+
|
8684
|
+
class UpdateCustomPermissionsResponse
|
8685
|
+
attr_accessor status: ::Integer
|
8686
|
+
attr_accessor arn: ::String
|
8687
|
+
attr_accessor request_id: ::String
|
8688
|
+
SENSITIVE: []
|
8689
|
+
end
|
8690
|
+
|
8320
8691
|
class UpdateDashboardLinksRequest
|
8321
8692
|
attr_accessor aws_account_id: ::String
|
8322
8693
|
attr_accessor dashboard_id: ::String
|
@@ -8801,6 +9172,20 @@ module Aws::QuickSight
|
|
8801
9172
|
SENSITIVE: []
|
8802
9173
|
end
|
8803
9174
|
|
9175
|
+
class UpdateUserCustomPermissionRequest
|
9176
|
+
attr_accessor user_name: ::String
|
9177
|
+
attr_accessor aws_account_id: ::String
|
9178
|
+
attr_accessor namespace: ::String
|
9179
|
+
attr_accessor custom_permissions_name: ::String
|
9180
|
+
SENSITIVE: []
|
9181
|
+
end
|
9182
|
+
|
9183
|
+
class UpdateUserCustomPermissionResponse
|
9184
|
+
attr_accessor request_id: ::String
|
9185
|
+
attr_accessor status: ::Integer
|
9186
|
+
SENSITIVE: []
|
9187
|
+
end
|
9188
|
+
|
8804
9189
|
class UpdateUserRequest
|
8805
9190
|
attr_accessor user_name: ::String
|
8806
9191
|
attr_accessor aws_account_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.136.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-11-
|
11
|
+
date: 2024-11-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|