aws-sdk-quicksight 1.157.0 → 1.158.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.
@@ -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.157.0'
57
+ GEM_VERSION = '1.158.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -38390,7 +38390,9 @@ module Aws
38390
38390
  export_to_pdf_in_scheduled_reports: ("DENY")?,
38391
38391
  export_to_csv_in_scheduled_reports: ("DENY")?,
38392
38392
  export_to_excel_in_scheduled_reports: ("DENY")?,
38393
- include_content_in_scheduled_reports_email: ("DENY")?
38393
+ include_content_in_scheduled_reports_email: ("DENY")?,
38394
+ dashboard: ("DENY")?,
38395
+ analysis: ("DENY")?
38394
38396
  },
38395
38397
  ?tags: Array[
38396
38398
  {
@@ -38503,6 +38505,12 @@ module Aws
38503
38505
  }?,
38504
38506
  data_qa_enabled_option: {
38505
38507
  availability_status: ("ENABLED" | "DISABLED")?
38508
+ }?,
38509
+ executive_summary_option: {
38510
+ availability_status: ("ENABLED" | "DISABLED")?
38511
+ }?,
38512
+ data_stories_sharing_option: {
38513
+ availability_status: ("ENABLED" | "DISABLED")?
38506
38514
  }?
38507
38515
  },
38508
38516
  ?theme_arn: ::String,
@@ -76035,7 +76043,7 @@ module Aws
76035
76043
  aws_account_id: ::String,
76036
76044
  data_source_id: ::String,
76037
76045
  name: ::String,
76038
- type: ("ADOBE_ANALYTICS" | "AMAZON_ELASTICSEARCH" | "ATHENA" | "AURORA" | "AURORA_POSTGRESQL" | "AWS_IOT_ANALYTICS" | "GITHUB" | "JIRA" | "MARIADB" | "MYSQL" | "ORACLE" | "POSTGRESQL" | "PRESTO" | "REDSHIFT" | "S3" | "SALESFORCE" | "SERVICENOW" | "SNOWFLAKE" | "SPARK" | "SQLSERVER" | "TERADATA" | "TWITTER" | "TIMESTREAM" | "AMAZON_OPENSEARCH" | "EXASOL" | "DATABRICKS" | "STARBURST" | "TRINO" | "BIGQUERY"),
76046
+ type: ("ADOBE_ANALYTICS" | "AMAZON_ELASTICSEARCH" | "ATHENA" | "AURORA" | "AURORA_POSTGRESQL" | "AWS_IOT_ANALYTICS" | "GITHUB" | "JIRA" | "MARIADB" | "MYSQL" | "ORACLE" | "POSTGRESQL" | "PRESTO" | "REDSHIFT" | "S3" | "SALESFORCE" | "SERVICENOW" | "SNOWFLAKE" | "SPARK" | "SQLSERVER" | "TERADATA" | "TWITTER" | "TIMESTREAM" | "AMAZON_OPENSEARCH" | "EXASOL" | "DATABRICKS" | "STARBURST" | "TRINO" | "BIGQUERY" | "GOOGLESHEETS"),
76039
76047
  ?data_source_parameters: {
76040
76048
  amazon_elasticsearch_parameters: {
76041
76049
  domain: ::String
@@ -76193,6 +76201,9 @@ module Aws
76193
76201
  port: ::Integer,
76194
76202
  database: ::String?,
76195
76203
  sql_endpoint_path: ::String
76204
+ }?,
76205
+ custom_connection_parameters: {
76206
+ connection_type: ::String?
76196
76207
  }?
76197
76208
  },
76198
76209
  ?credentials: {
@@ -76357,6 +76368,9 @@ module Aws
76357
76368
  port: ::Integer,
76358
76369
  database: ::String?,
76359
76370
  sql_endpoint_path: ::String
76371
+ }?,
76372
+ custom_connection_parameters: {
76373
+ connection_type: ::String?
76360
76374
  }?
76361
76375
  },
76362
76376
  ]?
@@ -114037,7 +114051,7 @@ module Aws
114037
114051
  filter_name: ::String,
114038
114052
  filter_synonyms: Array[::String]?,
114039
114053
  operand_field_name: ::String,
114040
- filter_type: ("CATEGORY_FILTER" | "NUMERIC_EQUALITY_FILTER" | "NUMERIC_RANGE_FILTER" | "DATE_RANGE_FILTER" | "RELATIVE_DATE_FILTER")?,
114054
+ filter_type: ("CATEGORY_FILTER" | "NUMERIC_EQUALITY_FILTER" | "NUMERIC_RANGE_FILTER" | "DATE_RANGE_FILTER" | "RELATIVE_DATE_FILTER" | "NULL_FILTER")?,
114041
114055
  category_filter: {
114042
114056
  category_filter_function: ("EXACT" | "CONTAINS")?,
114043
114057
  category_filter_type: ("CUSTOM_FILTER" | "CUSTOM_FILTER_LIST" | "FILTER_LIST")?,
@@ -114085,6 +114099,14 @@ module Aws
114085
114099
  constant_type: ("SINGULAR" | "RANGE" | "COLLECTIVE")?,
114086
114100
  singular_constant: ::String?
114087
114101
  }?
114102
+ }?,
114103
+ null_filter: {
114104
+ null_filter_type: ("ALL_VALUES" | "NON_NULLS_ONLY" | "NULLS_ONLY")?,
114105
+ constant: {
114106
+ constant_type: ("SINGULAR" | "RANGE" | "COLLECTIVE")?,
114107
+ singular_constant: ::String?
114108
+ }?,
114109
+ inverse: bool?
114088
114110
  }?
114089
114111
  },
114090
114112
  ]?,
@@ -114297,6 +114319,17 @@ module Aws
114297
114319
  ) -> _CreateVPCConnectionResponseSuccess
114298
114320
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateVPCConnectionResponseSuccess
114299
114321
 
114322
+ interface _DeleteAccountCustomPermissionResponseSuccess
114323
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAccountCustomPermissionResponse]
114324
+ def request_id: () -> ::String
114325
+ def status: () -> ::Integer
114326
+ end
114327
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#delete_account_custom_permission-instance_method
114328
+ def delete_account_custom_permission: (
114329
+ aws_account_id: ::String
114330
+ ) -> _DeleteAccountCustomPermissionResponseSuccess
114331
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAccountCustomPermissionResponseSuccess
114332
+
114300
114333
  interface _DeleteAccountCustomizationResponseSuccess
114301
114334
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAccountCustomizationResponse]
114302
114335
  def request_id: () -> ::String
@@ -114720,6 +114753,18 @@ module Aws
114720
114753
  ) -> _DeleteVPCConnectionResponseSuccess
114721
114754
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteVPCConnectionResponseSuccess
114722
114755
 
114756
+ interface _DescribeAccountCustomPermissionResponseSuccess
114757
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAccountCustomPermissionResponse]
114758
+ def custom_permissions_name: () -> ::String
114759
+ def request_id: () -> ::String
114760
+ def status: () -> ::Integer
114761
+ end
114762
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#describe_account_custom_permission-instance_method
114763
+ def describe_account_custom_permission: (
114764
+ aws_account_id: ::String
114765
+ ) -> _DescribeAccountCustomPermissionResponseSuccess
114766
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAccountCustomPermissionResponseSuccess
114767
+
114723
114768
  interface _DescribeAccountCustomizationResponseSuccess
114724
114769
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAccountCustomizationResponse]
114725
114770
  def arn: () -> ::String
@@ -115228,6 +115273,7 @@ module Aws
115228
115273
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeKeyRegistrationResponse]
115229
115274
  def aws_account_id: () -> ::String
115230
115275
  def key_registration: () -> ::Array[Types::RegisteredCustomerManagedKey]
115276
+ def q_data_key: () -> Types::QDataKey
115231
115277
  def request_id: () -> ::String
115232
115278
  def status: () -> ::Integer
115233
115279
  end
@@ -116812,6 +116858,9 @@ module Aws
116812
116858
  port: ::Integer,
116813
116859
  database: ::String?,
116814
116860
  sql_endpoint_path: ::String
116861
+ }?,
116862
+ custom_connection_parameters: {
116863
+ connection_type: ::String?
116815
116864
  }?
116816
116865
  }?,
116817
116866
  vpc_connection_properties: {
@@ -117149,6 +117198,18 @@ module Aws
117149
117198
  ) -> _UntagResourceResponseSuccess
117150
117199
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
117151
117200
 
117201
+ interface _UpdateAccountCustomPermissionResponseSuccess
117202
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAccountCustomPermissionResponse]
117203
+ def request_id: () -> ::String
117204
+ def status: () -> ::Integer
117205
+ end
117206
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#update_account_custom_permission-instance_method
117207
+ def update_account_custom_permission: (
117208
+ custom_permissions_name: ::String,
117209
+ aws_account_id: ::String
117210
+ ) -> _UpdateAccountCustomPermissionResponseSuccess
117211
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAccountCustomPermissionResponseSuccess
117212
+
117152
117213
  interface _UpdateAccountCustomizationResponseSuccess
117153
117214
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAccountCustomizationResponse]
117154
117215
  def arn: () -> ::String
@@ -154693,7 +154754,9 @@ module Aws
154693
154754
  export_to_pdf_in_scheduled_reports: ("DENY")?,
154694
154755
  export_to_csv_in_scheduled_reports: ("DENY")?,
154695
154756
  export_to_excel_in_scheduled_reports: ("DENY")?,
154696
- include_content_in_scheduled_reports_email: ("DENY")?
154757
+ include_content_in_scheduled_reports_email: ("DENY")?,
154758
+ dashboard: ("DENY")?,
154759
+ analysis: ("DENY")?
154697
154760
  }
154698
154761
  ) -> _UpdateCustomPermissionsResponseSuccess
154699
154762
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCustomPermissionsResponseSuccess
@@ -154788,6 +154851,12 @@ module Aws
154788
154851
  }?,
154789
154852
  data_qa_enabled_option: {
154790
154853
  availability_status: ("ENABLED" | "DISABLED")?
154854
+ }?,
154855
+ executive_summary_option: {
154856
+ availability_status: ("ENABLED" | "DISABLED")?
154857
+ }?,
154858
+ data_stories_sharing_option: {
154859
+ availability_status: ("ENABLED" | "DISABLED")?
154791
154860
  }?
154792
154861
  },
154793
154862
  ?theme_arn: ::String,
@@ -192562,6 +192631,9 @@ module Aws
192562
192631
  port: ::Integer,
192563
192632
  database: ::String?,
192564
192633
  sql_endpoint_path: ::String
192634
+ }?,
192635
+ custom_connection_parameters: {
192636
+ connection_type: ::String?
192565
192637
  }?
192566
192638
  },
192567
192639
  ?credentials: {
@@ -192726,6 +192798,9 @@ module Aws
192726
192798
  port: ::Integer,
192727
192799
  database: ::String?,
192728
192800
  sql_endpoint_path: ::String
192801
+ }?,
192802
+ custom_connection_parameters: {
192803
+ connection_type: ::String?
192729
192804
  }?
192730
192805
  },
192731
192806
  ]?
@@ -230500,7 +230575,7 @@ module Aws
230500
230575
  filter_name: ::String,
230501
230576
  filter_synonyms: Array[::String]?,
230502
230577
  operand_field_name: ::String,
230503
- filter_type: ("CATEGORY_FILTER" | "NUMERIC_EQUALITY_FILTER" | "NUMERIC_RANGE_FILTER" | "DATE_RANGE_FILTER" | "RELATIVE_DATE_FILTER")?,
230578
+ filter_type: ("CATEGORY_FILTER" | "NUMERIC_EQUALITY_FILTER" | "NUMERIC_RANGE_FILTER" | "DATE_RANGE_FILTER" | "RELATIVE_DATE_FILTER" | "NULL_FILTER")?,
230504
230579
  category_filter: {
230505
230580
  category_filter_function: ("EXACT" | "CONTAINS")?,
230506
230581
  category_filter_type: ("CUSTOM_FILTER" | "CUSTOM_FILTER_LIST" | "FILTER_LIST")?,
@@ -230548,6 +230623,14 @@ module Aws
230548
230623
  constant_type: ("SINGULAR" | "RANGE" | "COLLECTIVE")?,
230549
230624
  singular_constant: ::String?
230550
230625
  }?
230626
+ }?,
230627
+ null_filter: {
230628
+ null_filter_type: ("ALL_VALUES" | "NON_NULLS_ONLY" | "NULLS_ONLY")?,
230629
+ constant: {
230630
+ constant_type: ("SINGULAR" | "RANGE" | "COLLECTIVE")?,
230631
+ singular_constant: ::String?
230632
+ }?,
230633
+ inverse: bool?
230551
230634
  }?
230552
230635
  },
230553
230636
  ]?,
data/sig/types.rbs CHANGED
@@ -1033,6 +1033,8 @@ module Aws::QuickSight
1033
1033
  attr_accessor export_to_csv_in_scheduled_reports: ("DENY")
1034
1034
  attr_accessor export_to_excel_in_scheduled_reports: ("DENY")
1035
1035
  attr_accessor include_content_in_scheduled_reports_email: ("DENY")
1036
+ attr_accessor dashboard: ("DENY")
1037
+ attr_accessor analysis: ("DENY")
1036
1038
  SENSITIVE: []
1037
1039
  end
1038
1040
 
@@ -1564,7 +1566,7 @@ module Aws::QuickSight
1564
1566
  attr_accessor aws_account_id: ::String
1565
1567
  attr_accessor data_source_id: ::String
1566
1568
  attr_accessor name: ::String
1567
- attr_accessor type: ("ADOBE_ANALYTICS" | "AMAZON_ELASTICSEARCH" | "ATHENA" | "AURORA" | "AURORA_POSTGRESQL" | "AWS_IOT_ANALYTICS" | "GITHUB" | "JIRA" | "MARIADB" | "MYSQL" | "ORACLE" | "POSTGRESQL" | "PRESTO" | "REDSHIFT" | "S3" | "SALESFORCE" | "SERVICENOW" | "SNOWFLAKE" | "SPARK" | "SQLSERVER" | "TERADATA" | "TWITTER" | "TIMESTREAM" | "AMAZON_OPENSEARCH" | "EXASOL" | "DATABRICKS" | "STARBURST" | "TRINO" | "BIGQUERY")
1569
+ attr_accessor type: ("ADOBE_ANALYTICS" | "AMAZON_ELASTICSEARCH" | "ATHENA" | "AURORA" | "AURORA_POSTGRESQL" | "AWS_IOT_ANALYTICS" | "GITHUB" | "JIRA" | "MARIADB" | "MYSQL" | "ORACLE" | "POSTGRESQL" | "PRESTO" | "REDSHIFT" | "S3" | "SALESFORCE" | "SERVICENOW" | "SNOWFLAKE" | "SPARK" | "SQLSERVER" | "TERADATA" | "TWITTER" | "TIMESTREAM" | "AMAZON_OPENSEARCH" | "EXASOL" | "DATABRICKS" | "STARBURST" | "TRINO" | "BIGQUERY" | "GOOGLESHEETS")
1568
1570
  attr_accessor data_source_parameters: Types::DataSourceParameters
1569
1571
  attr_accessor credentials: Types::DataSourceCredentials
1570
1572
  attr_accessor permissions: ::Array[Types::ResourcePermission]
@@ -1927,6 +1929,11 @@ module Aws::QuickSight
1927
1929
  SENSITIVE: [:field_value]
1928
1930
  end
1929
1931
 
1932
+ class CustomConnectionParameters
1933
+ attr_accessor connection_type: ::String
1934
+ SENSITIVE: []
1935
+ end
1936
+
1930
1937
  class CustomContentConfiguration
1931
1938
  attr_accessor content_url: ::String
1932
1939
  attr_accessor content_type: ("IMAGE" | "OTHER_EMBEDDED_CONTENT")
@@ -2040,6 +2047,8 @@ module Aws::QuickSight
2040
2047
  attr_accessor data_point_menu_label_option: Types::DataPointMenuLabelOption
2041
2048
  attr_accessor data_point_tooltip_option: Types::DataPointTooltipOption
2042
2049
  attr_accessor data_qa_enabled_option: Types::DataQAEnabledOption
2050
+ attr_accessor executive_summary_option: Types::ExecutiveSummaryOption
2051
+ attr_accessor data_stories_sharing_option: Types::DataStoriesSharingOption
2043
2052
  SENSITIVE: []
2044
2053
  end
2045
2054
 
@@ -2331,7 +2340,7 @@ module Aws::QuickSight
2331
2340
  attr_accessor arn: ::String
2332
2341
  attr_accessor data_source_id: ::String
2333
2342
  attr_accessor name: ::String
2334
- attr_accessor type: ("ADOBE_ANALYTICS" | "AMAZON_ELASTICSEARCH" | "ATHENA" | "AURORA" | "AURORA_POSTGRESQL" | "AWS_IOT_ANALYTICS" | "GITHUB" | "JIRA" | "MARIADB" | "MYSQL" | "ORACLE" | "POSTGRESQL" | "PRESTO" | "REDSHIFT" | "S3" | "SALESFORCE" | "SERVICENOW" | "SNOWFLAKE" | "SPARK" | "SQLSERVER" | "TERADATA" | "TWITTER" | "TIMESTREAM" | "AMAZON_OPENSEARCH" | "EXASOL" | "DATABRICKS" | "STARBURST" | "TRINO" | "BIGQUERY")
2343
+ attr_accessor type: ("ADOBE_ANALYTICS" | "AMAZON_ELASTICSEARCH" | "ATHENA" | "AURORA" | "AURORA_POSTGRESQL" | "AWS_IOT_ANALYTICS" | "GITHUB" | "JIRA" | "MARIADB" | "MYSQL" | "ORACLE" | "POSTGRESQL" | "PRESTO" | "REDSHIFT" | "S3" | "SALESFORCE" | "SERVICENOW" | "SNOWFLAKE" | "SPARK" | "SQLSERVER" | "TERADATA" | "TWITTER" | "TIMESTREAM" | "AMAZON_OPENSEARCH" | "EXASOL" | "DATABRICKS" | "STARBURST" | "TRINO" | "BIGQUERY" | "GOOGLESHEETS")
2335
2344
  attr_accessor status: ("CREATION_IN_PROGRESS" | "CREATION_SUCCESSFUL" | "CREATION_FAILED" | "UPDATE_IN_PROGRESS" | "UPDATE_SUCCESSFUL" | "UPDATE_FAILED" | "DELETED")
2336
2345
  attr_accessor created_time: ::Time
2337
2346
  attr_accessor last_updated_time: ::Time
@@ -2385,6 +2394,7 @@ module Aws::QuickSight
2385
2394
  attr_accessor trino_parameters: Types::TrinoParameters
2386
2395
  attr_accessor big_query_parameters: Types::BigQueryParameters
2387
2396
  attr_accessor impala_parameters: Types::ImpalaParameters
2397
+ attr_accessor custom_connection_parameters: Types::CustomConnectionParameters
2388
2398
  SENSITIVE: []
2389
2399
  end
2390
2400
 
@@ -2399,7 +2409,7 @@ module Aws::QuickSight
2399
2409
  attr_accessor arn: ::String
2400
2410
  attr_accessor data_source_id: ::String
2401
2411
  attr_accessor name: ::String
2402
- attr_accessor type: ("ADOBE_ANALYTICS" | "AMAZON_ELASTICSEARCH" | "ATHENA" | "AURORA" | "AURORA_POSTGRESQL" | "AWS_IOT_ANALYTICS" | "GITHUB" | "JIRA" | "MARIADB" | "MYSQL" | "ORACLE" | "POSTGRESQL" | "PRESTO" | "REDSHIFT" | "S3" | "SALESFORCE" | "SERVICENOW" | "SNOWFLAKE" | "SPARK" | "SQLSERVER" | "TERADATA" | "TWITTER" | "TIMESTREAM" | "AMAZON_OPENSEARCH" | "EXASOL" | "DATABRICKS" | "STARBURST" | "TRINO" | "BIGQUERY")
2412
+ attr_accessor type: ("ADOBE_ANALYTICS" | "AMAZON_ELASTICSEARCH" | "ATHENA" | "AURORA" | "AURORA_POSTGRESQL" | "AWS_IOT_ANALYTICS" | "GITHUB" | "JIRA" | "MARIADB" | "MYSQL" | "ORACLE" | "POSTGRESQL" | "PRESTO" | "REDSHIFT" | "S3" | "SALESFORCE" | "SERVICENOW" | "SNOWFLAKE" | "SPARK" | "SQLSERVER" | "TERADATA" | "TWITTER" | "TIMESTREAM" | "AMAZON_OPENSEARCH" | "EXASOL" | "DATABRICKS" | "STARBURST" | "TRINO" | "BIGQUERY" | "GOOGLESHEETS")
2403
2413
  attr_accessor created_time: ::Time
2404
2414
  attr_accessor last_updated_time: ::Time
2405
2415
  SENSITIVE: []
@@ -2410,6 +2420,11 @@ module Aws::QuickSight
2410
2420
  SENSITIVE: []
2411
2421
  end
2412
2422
 
2423
+ class DataStoriesSharingOption
2424
+ attr_accessor availability_status: ("ENABLED" | "DISABLED")
2425
+ SENSITIVE: []
2426
+ end
2427
+
2413
2428
  class DatabricksParameters
2414
2429
  attr_accessor host: ::String
2415
2430
  attr_accessor port: ::Integer
@@ -2672,6 +2687,17 @@ module Aws::QuickSight
2672
2687
  SENSITIVE: []
2673
2688
  end
2674
2689
 
2690
+ class DeleteAccountCustomPermissionRequest
2691
+ attr_accessor aws_account_id: ::String
2692
+ SENSITIVE: []
2693
+ end
2694
+
2695
+ class DeleteAccountCustomPermissionResponse
2696
+ attr_accessor request_id: ::String
2697
+ attr_accessor status: ::Integer
2698
+ SENSITIVE: []
2699
+ end
2700
+
2675
2701
  class DeleteAccountCustomizationRequest
2676
2702
  attr_accessor aws_account_id: ::String
2677
2703
  attr_accessor namespace: ::String
@@ -3095,6 +3121,18 @@ module Aws::QuickSight
3095
3121
  SENSITIVE: []
3096
3122
  end
3097
3123
 
3124
+ class DescribeAccountCustomPermissionRequest
3125
+ attr_accessor aws_account_id: ::String
3126
+ SENSITIVE: []
3127
+ end
3128
+
3129
+ class DescribeAccountCustomPermissionResponse
3130
+ attr_accessor custom_permissions_name: ::String
3131
+ attr_accessor request_id: ::String
3132
+ attr_accessor status: ::Integer
3133
+ SENSITIVE: []
3134
+ end
3135
+
3098
3136
  class DescribeAccountCustomizationRequest
3099
3137
  attr_accessor aws_account_id: ::String
3100
3138
  attr_accessor namespace: ::String
@@ -3608,6 +3646,7 @@ module Aws::QuickSight
3608
3646
  class DescribeKeyRegistrationResponse
3609
3647
  attr_accessor aws_account_id: ::String
3610
3648
  attr_accessor key_registration: ::Array[Types::RegisteredCustomerManagedKey]
3649
+ attr_accessor q_data_key: Types::QDataKey
3611
3650
  attr_accessor request_id: ::String
3612
3651
  attr_accessor status: ::Integer
3613
3652
  SENSITIVE: []
@@ -3982,6 +4021,11 @@ module Aws::QuickSight
3982
4021
  SENSITIVE: []
3983
4022
  end
3984
4023
 
4024
+ class ExecutiveSummaryOption
4025
+ attr_accessor availability_status: ("ENABLED" | "DISABLED")
4026
+ SENSITIVE: []
4027
+ end
4028
+
3985
4029
  class ExplicitHierarchy
3986
4030
  attr_accessor hierarchy_id: ::String
3987
4031
  attr_accessor columns: ::Array[Types::ColumnIdentifier]
@@ -6988,6 +7032,12 @@ module Aws::QuickSight
6988
7032
  SENSITIVE: []
6989
7033
  end
6990
7034
 
7035
+ class QDataKey
7036
+ attr_accessor q_data_key_arn: ::String
7037
+ attr_accessor q_data_key_type: ("AWS_OWNED" | "CMK")
7038
+ SENSITIVE: []
7039
+ end
7040
+
6991
7041
  class QueryExecutionOptions
6992
7042
  attr_accessor query_execution_mode: ("AUTO" | "MANUAL")
6993
7043
  SENSITIVE: []
@@ -8856,12 +8906,13 @@ module Aws::QuickSight
8856
8906
  attr_accessor filter_name: ::String
8857
8907
  attr_accessor filter_synonyms: ::Array[::String]
8858
8908
  attr_accessor operand_field_name: ::String
8859
- attr_accessor filter_type: ("CATEGORY_FILTER" | "NUMERIC_EQUALITY_FILTER" | "NUMERIC_RANGE_FILTER" | "DATE_RANGE_FILTER" | "RELATIVE_DATE_FILTER")
8909
+ attr_accessor filter_type: ("CATEGORY_FILTER" | "NUMERIC_EQUALITY_FILTER" | "NUMERIC_RANGE_FILTER" | "DATE_RANGE_FILTER" | "RELATIVE_DATE_FILTER" | "NULL_FILTER")
8860
8910
  attr_accessor category_filter: Types::TopicCategoryFilter
8861
8911
  attr_accessor numeric_equality_filter: Types::TopicNumericEqualityFilter
8862
8912
  attr_accessor numeric_range_filter: Types::TopicNumericRangeFilter
8863
8913
  attr_accessor date_range_filter: Types::TopicDateRangeFilter
8864
8914
  attr_accessor relative_date_filter: Types::TopicRelativeDateFilter
8915
+ attr_accessor null_filter: Types::TopicNullFilter
8865
8916
  SENSITIVE: []
8866
8917
  end
8867
8918
 
@@ -8944,6 +8995,13 @@ module Aws::QuickSight
8944
8995
  SENSITIVE: []
8945
8996
  end
8946
8997
 
8998
+ class TopicNullFilter
8999
+ attr_accessor null_filter_type: ("ALL_VALUES" | "NON_NULLS_ONLY" | "NULLS_ONLY")
9000
+ attr_accessor constant: Types::TopicSingularFilterConstant
9001
+ attr_accessor inverse: bool
9002
+ SENSITIVE: [:constant]
9003
+ end
9004
+
8947
9005
  class TopicNumericEqualityFilter
8948
9006
  attr_accessor constant: Types::TopicSingularFilterConstant
8949
9007
  attr_accessor aggregation: ("NO_AGGREGATION" | "SUM" | "AVERAGE" | "COUNT" | "DISTINCT_COUNT" | "MAX" | "MEDIAN" | "MIN" | "STDEV" | "STDEVP" | "VAR" | "VARP")
@@ -9229,6 +9287,18 @@ module Aws::QuickSight
9229
9287
  SENSITIVE: []
9230
9288
  end
9231
9289
 
9290
+ class UpdateAccountCustomPermissionRequest
9291
+ attr_accessor custom_permissions_name: ::String
9292
+ attr_accessor aws_account_id: ::String
9293
+ SENSITIVE: []
9294
+ end
9295
+
9296
+ class UpdateAccountCustomPermissionResponse
9297
+ attr_accessor request_id: ::String
9298
+ attr_accessor status: ::Integer
9299
+ SENSITIVE: []
9300
+ end
9301
+
9232
9302
  class UpdateAccountCustomizationRequest
9233
9303
  attr_accessor aws_account_id: ::String
9234
9304
  attr_accessor namespace: ::String
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.157.0
4
+ version: 1.158.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services