aws-sdk-quicksight 1.185.0 → 1.187.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 +474 -6
- data/lib/aws-sdk-quicksight/client_api.rb +414 -0
- data/lib/aws-sdk-quicksight/types.rb +946 -0
- data/lib/aws-sdk-quicksight.rb +1 -1
- data/sig/client.rbs +154 -2
- data/sig/types.rbs +272 -4
- metadata +1 -1
data/lib/aws-sdk-quicksight.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -112,6 +112,20 @@ module Aws
|
|
|
112
112
|
) -> _BatchCreateTopicReviewedAnswerResponseSuccess
|
|
113
113
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchCreateTopicReviewedAnswerResponseSuccess
|
|
114
114
|
|
|
115
|
+
interface _BatchDeleteKnowledgeBaseResponseSuccess
|
|
116
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::BatchDeleteKnowledgeBaseResponse]
|
|
117
|
+
def deleted: () -> ::Array[Types::BatchDeleteKnowledgeBaseSuccess]
|
|
118
|
+
def errors: () -> ::Array[Types::BatchDeleteKnowledgeBaseFailure]
|
|
119
|
+
def request_id: () -> ::String
|
|
120
|
+
def status: () -> ::Integer
|
|
121
|
+
end
|
|
122
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#batch_delete_knowledge_base-instance_method
|
|
123
|
+
def batch_delete_knowledge_base: (
|
|
124
|
+
aws_account_id: ::String,
|
|
125
|
+
knowledge_base_ids: Array[::String]
|
|
126
|
+
) -> _BatchDeleteKnowledgeBaseResponseSuccess
|
|
127
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchDeleteKnowledgeBaseResponseSuccess
|
|
128
|
+
|
|
115
129
|
interface _BatchDeleteTopicReviewedAnswerResponseSuccess
|
|
116
130
|
include ::Seahorse::Client::_ResponseSuccess[Types::BatchDeleteTopicReviewedAnswerResponse]
|
|
117
131
|
def topic_id: () -> ::String
|
|
@@ -1170,6 +1184,20 @@ module Aws
|
|
|
1170
1184
|
) -> _DeleteIdentityPropagationConfigResponseSuccess
|
|
1171
1185
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteIdentityPropagationConfigResponseSuccess
|
|
1172
1186
|
|
|
1187
|
+
interface _DeleteKnowledgeBaseResponseSuccess
|
|
1188
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteKnowledgeBaseResponse]
|
|
1189
|
+
def knowledge_base_arn: () -> ::String
|
|
1190
|
+
def knowledge_base_id: () -> ::String
|
|
1191
|
+
def request_id: () -> ::String
|
|
1192
|
+
def status: () -> ::Integer
|
|
1193
|
+
end
|
|
1194
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#delete_knowledge_base-instance_method
|
|
1195
|
+
def delete_knowledge_base: (
|
|
1196
|
+
aws_account_id: ::String,
|
|
1197
|
+
knowledge_base_id: ::String
|
|
1198
|
+
) -> _DeleteKnowledgeBaseResponseSuccess
|
|
1199
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteKnowledgeBaseResponseSuccess
|
|
1200
|
+
|
|
1173
1201
|
interface _DeleteNamespaceResponseSuccess
|
|
1174
1202
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteNamespaceResponse]
|
|
1175
1203
|
def request_id: () -> ::String
|
|
@@ -2019,6 +2047,34 @@ module Aws
|
|
|
2019
2047
|
) -> _DescribeKeyRegistrationResponseSuccess
|
|
2020
2048
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeKeyRegistrationResponseSuccess
|
|
2021
2049
|
|
|
2050
|
+
interface _DescribeKnowledgeBaseResponseSuccess
|
|
2051
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeKnowledgeBaseResponse]
|
|
2052
|
+
def knowledge_base: () -> Types::KnowledgeBase
|
|
2053
|
+
def request_id: () -> ::String
|
|
2054
|
+
def status: () -> ::Integer
|
|
2055
|
+
end
|
|
2056
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#describe_knowledge_base-instance_method
|
|
2057
|
+
def describe_knowledge_base: (
|
|
2058
|
+
aws_account_id: ::String,
|
|
2059
|
+
knowledge_base_id: ::String
|
|
2060
|
+
) -> _DescribeKnowledgeBaseResponseSuccess
|
|
2061
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeKnowledgeBaseResponseSuccess
|
|
2062
|
+
|
|
2063
|
+
interface _DescribeKnowledgeBasePermissionsResponseSuccess
|
|
2064
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeKnowledgeBasePermissionsResponse]
|
|
2065
|
+
def knowledge_base_arn: () -> ::String
|
|
2066
|
+
def knowledge_base_id: () -> ::String
|
|
2067
|
+
def permissions: () -> ::Array[Types::ResourcePermission]
|
|
2068
|
+
def request_id: () -> ::String
|
|
2069
|
+
def status: () -> ::Integer
|
|
2070
|
+
end
|
|
2071
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#describe_knowledge_base_permissions-instance_method
|
|
2072
|
+
def describe_knowledge_base_permissions: (
|
|
2073
|
+
aws_account_id: ::String,
|
|
2074
|
+
knowledge_base_id: ::String
|
|
2075
|
+
) -> _DescribeKnowledgeBasePermissionsResponseSuccess
|
|
2076
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeKnowledgeBasePermissionsResponseSuccess
|
|
2077
|
+
|
|
2022
2078
|
interface _DescribeNamespaceResponseSuccess
|
|
2023
2079
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeNamespaceResponse]
|
|
2024
2080
|
def namespace: () -> Types::NamespaceInfoV2
|
|
@@ -2831,6 +2887,21 @@ module Aws
|
|
|
2831
2887
|
) -> _ListIngestionsResponseSuccess
|
|
2832
2888
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListIngestionsResponseSuccess
|
|
2833
2889
|
|
|
2890
|
+
interface _ListKnowledgeBasesResponseSuccess
|
|
2891
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListKnowledgeBasesResponse]
|
|
2892
|
+
def knowledge_base_summaries: () -> ::Array[Types::KnowledgeBaseSummary]
|
|
2893
|
+
def next_token: () -> ::String
|
|
2894
|
+
def request_id: () -> ::String
|
|
2895
|
+
def status: () -> ::Integer
|
|
2896
|
+
end
|
|
2897
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#list_knowledge_bases-instance_method
|
|
2898
|
+
def list_knowledge_bases: (
|
|
2899
|
+
aws_account_id: ::String,
|
|
2900
|
+
?max_results: ::Integer,
|
|
2901
|
+
?next_token: ::String
|
|
2902
|
+
) -> _ListKnowledgeBasesResponseSuccess
|
|
2903
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListKnowledgeBasesResponseSuccess
|
|
2904
|
+
|
|
2834
2905
|
interface _ListNamespacesResponseSuccess
|
|
2835
2906
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListNamespacesResponse]
|
|
2836
2907
|
def namespaces: () -> ::Array[Types::NamespaceInfoV2]
|
|
@@ -3122,6 +3193,34 @@ module Aws
|
|
|
3122
3193
|
) -> _ListUsersResponseSuccess
|
|
3123
3194
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListUsersResponseSuccess
|
|
3124
3195
|
|
|
3196
|
+
interface _ListUsersIndexCapacityResponseSuccess
|
|
3197
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListUsersIndexCapacityResponse]
|
|
3198
|
+
def users: () -> ::Array[Types::UserIndexCapacity]
|
|
3199
|
+
def next_token: () -> ::String
|
|
3200
|
+
def request_id: () -> ::String
|
|
3201
|
+
end
|
|
3202
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#list_users_index_capacity-instance_method
|
|
3203
|
+
def list_users_index_capacity: (
|
|
3204
|
+
aws_account_id: ::String,
|
|
3205
|
+
?namespace: ::String,
|
|
3206
|
+
?filters: Array[
|
|
3207
|
+
{
|
|
3208
|
+
user_name_or_email: {
|
|
3209
|
+
prefix: ::String
|
|
3210
|
+
}?,
|
|
3211
|
+
total_capacity_bytes: {
|
|
3212
|
+
min_bytes: ::Integer?,
|
|
3213
|
+
max_bytes: ::Integer?
|
|
3214
|
+
}?
|
|
3215
|
+
}
|
|
3216
|
+
],
|
|
3217
|
+
?sort_by: ("TOTAL_CAPACITY_BYTES"),
|
|
3218
|
+
?sort_order: ("ASC" | "DESC"),
|
|
3219
|
+
?max_results: ::Integer,
|
|
3220
|
+
?next_token: ::String
|
|
3221
|
+
) -> _ListUsersIndexCapacityResponseSuccess
|
|
3222
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListUsersIndexCapacityResponseSuccess
|
|
3223
|
+
|
|
3125
3224
|
interface _ListVPCConnectionsResponseSuccess
|
|
3126
3225
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListVPCConnectionsResponse]
|
|
3127
3226
|
def vpc_connection_summaries: () -> ::Array[Types::VPCConnectionSummary]
|
|
@@ -3411,6 +3510,32 @@ module Aws
|
|
|
3411
3510
|
) -> _SearchGroupsResponseSuccess
|
|
3412
3511
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchGroupsResponseSuccess
|
|
3413
3512
|
|
|
3513
|
+
interface _SearchKnowledgeBasesResponseSuccess
|
|
3514
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SearchKnowledgeBasesResponse]
|
|
3515
|
+
def knowledge_base_summaries: () -> ::Array[Types::KnowledgeBaseSummary]
|
|
3516
|
+
def next_token: () -> ::String
|
|
3517
|
+
def request_id: () -> ::String
|
|
3518
|
+
def status: () -> ::Integer
|
|
3519
|
+
end
|
|
3520
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#search_knowledge_bases-instance_method
|
|
3521
|
+
def search_knowledge_bases: (
|
|
3522
|
+
aws_account_id: ::String,
|
|
3523
|
+
?next_token: ::String,
|
|
3524
|
+
?max_results: ::Integer,
|
|
3525
|
+
?filters: Array[
|
|
3526
|
+
{
|
|
3527
|
+
name: ("KNOWLEDGE_BASE_ID" | "KNOWLEDGE_BASE_NAME" | "DIRECT_QUICKSIGHT_OWNER" | "DIRECT_QUICKSIGHT_VIEWER_OR_OWNER" | "DIRECT_QUICKSIGHT_SOLE_OWNER" | "KNOWLEDGE_BASE_SIZE_BYTES" | "PRIMARY_OWNER"),
|
|
3528
|
+
operator: ("STRING_EQUALS" | "STRING_LIKE" | "GREATER_THAN_OR_EQUALS" | "LESS_THAN_OR_EQUALS"),
|
|
3529
|
+
value: ::String
|
|
3530
|
+
}
|
|
3531
|
+
],
|
|
3532
|
+
?sort_by: {
|
|
3533
|
+
sort_by_field: ("KNOWLEDGE_BASE_SIZE_BYTES" | "CREATED_AT"),
|
|
3534
|
+
sort_order: ("ASC" | "DESC")
|
|
3535
|
+
}
|
|
3536
|
+
) -> _SearchKnowledgeBasesResponseSuccess
|
|
3537
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchKnowledgeBasesResponseSuccess
|
|
3538
|
+
|
|
3414
3539
|
interface _SearchSpacesResponseSuccess
|
|
3415
3540
|
include ::Seahorse::Client::_ResponseSuccess[Types::SearchSpacesResponse]
|
|
3416
3541
|
def space_id: () -> ::String
|
|
@@ -4578,6 +4703,33 @@ module Aws
|
|
|
4578
4703
|
) -> _UpdateKeyRegistrationResponseSuccess
|
|
4579
4704
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateKeyRegistrationResponseSuccess
|
|
4580
4705
|
|
|
4706
|
+
interface _UpdateKnowledgeBasePermissionsResponseSuccess
|
|
4707
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateKnowledgeBasePermissionsResponse]
|
|
4708
|
+
def knowledge_base_arn: () -> ::String
|
|
4709
|
+
def knowledge_base_id: () -> ::String
|
|
4710
|
+
def permissions: () -> ::Array[Types::ResourcePermission]
|
|
4711
|
+
def request_id: () -> ::String
|
|
4712
|
+
def status: () -> ::Integer
|
|
4713
|
+
end
|
|
4714
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#update_knowledge_base_permissions-instance_method
|
|
4715
|
+
def update_knowledge_base_permissions: (
|
|
4716
|
+
aws_account_id: ::String,
|
|
4717
|
+
knowledge_base_id: ::String,
|
|
4718
|
+
?grant_permissions: Array[
|
|
4719
|
+
{
|
|
4720
|
+
principal: ::String,
|
|
4721
|
+
actions: Array[::String]
|
|
4722
|
+
}
|
|
4723
|
+
],
|
|
4724
|
+
?revoke_permissions: Array[
|
|
4725
|
+
{
|
|
4726
|
+
principal: ::String,
|
|
4727
|
+
actions: Array[::String]
|
|
4728
|
+
}
|
|
4729
|
+
]
|
|
4730
|
+
) -> _UpdateKnowledgeBasePermissionsResponseSuccess
|
|
4731
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateKnowledgeBasePermissionsResponseSuccess
|
|
4732
|
+
|
|
4581
4733
|
interface _UpdateOAuthClientApplicationResponseSuccess
|
|
4582
4734
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateOAuthClientApplicationResponse]
|
|
4583
4735
|
def arn: () -> ::String
|
|
@@ -4764,7 +4916,7 @@ module Aws
|
|
|
4764
4916
|
space_id: ::String,
|
|
4765
4917
|
?add_resources: Array[
|
|
4766
4918
|
{
|
|
4767
|
-
resource_type: ("TOPIC" | "DASHBOARD" | "KNOWLEDGE_BASE" | "
|
|
4919
|
+
resource_type: ("TOPIC" | "DASHBOARD" | "KNOWLEDGE_BASE" | "ACTION_CONNECTOR" | "DATA_SET"),
|
|
4768
4920
|
resource_details: {
|
|
4769
4921
|
resource_arn: ::String?
|
|
4770
4922
|
}
|
|
@@ -4772,7 +4924,7 @@ module Aws
|
|
|
4772
4924
|
],
|
|
4773
4925
|
?remove_resources: Array[
|
|
4774
4926
|
{
|
|
4775
|
-
resource_type: ("TOPIC" | "DASHBOARD" | "KNOWLEDGE_BASE" | "
|
|
4927
|
+
resource_type: ("TOPIC" | "DASHBOARD" | "KNOWLEDGE_BASE" | "ACTION_CONNECTOR" | "DATA_SET"),
|
|
4776
4928
|
resource_details: {
|
|
4777
4929
|
resource_arn: ::String?
|
|
4778
4930
|
}
|
data/sig/types.rbs
CHANGED
|
@@ -737,6 +737,11 @@ module Aws::QuickSight
|
|
|
737
737
|
SENSITIVE: []
|
|
738
738
|
end
|
|
739
739
|
|
|
740
|
+
class AudioExtractionConfiguration
|
|
741
|
+
attr_accessor audio_extraction_status: ("ENABLED" | "DISABLED")
|
|
742
|
+
SENSITIVE: []
|
|
743
|
+
end
|
|
744
|
+
|
|
740
745
|
class AuroraParameters
|
|
741
746
|
attr_accessor host: ::String
|
|
742
747
|
attr_accessor port: ::Integer
|
|
@@ -987,6 +992,33 @@ module Aws::QuickSight
|
|
|
987
992
|
SENSITIVE: []
|
|
988
993
|
end
|
|
989
994
|
|
|
995
|
+
class BatchDeleteKnowledgeBaseFailure
|
|
996
|
+
attr_accessor knowledge_base_id: ::String
|
|
997
|
+
attr_accessor error_code: ::String
|
|
998
|
+
attr_accessor error_message: ::String
|
|
999
|
+
SENSITIVE: []
|
|
1000
|
+
end
|
|
1001
|
+
|
|
1002
|
+
class BatchDeleteKnowledgeBaseRequest
|
|
1003
|
+
attr_accessor aws_account_id: ::String
|
|
1004
|
+
attr_accessor knowledge_base_ids: ::Array[::String]
|
|
1005
|
+
SENSITIVE: []
|
|
1006
|
+
end
|
|
1007
|
+
|
|
1008
|
+
class BatchDeleteKnowledgeBaseResponse
|
|
1009
|
+
attr_accessor deleted: ::Array[Types::BatchDeleteKnowledgeBaseSuccess]
|
|
1010
|
+
attr_accessor errors: ::Array[Types::BatchDeleteKnowledgeBaseFailure]
|
|
1011
|
+
attr_accessor request_id: ::String
|
|
1012
|
+
attr_accessor status: ::Integer
|
|
1013
|
+
SENSITIVE: []
|
|
1014
|
+
end
|
|
1015
|
+
|
|
1016
|
+
class BatchDeleteKnowledgeBaseSuccess
|
|
1017
|
+
attr_accessor knowledge_base_id: ::String
|
|
1018
|
+
attr_accessor knowledge_base_arn: ::String
|
|
1019
|
+
SENSITIVE: []
|
|
1020
|
+
end
|
|
1021
|
+
|
|
990
1022
|
class BatchDeleteTopicReviewedAnswerRequest
|
|
991
1023
|
attr_accessor aws_account_id: ::String
|
|
992
1024
|
attr_accessor topic_id: ::String
|
|
@@ -1459,6 +1491,12 @@ module Aws::QuickSight
|
|
|
1459
1491
|
SENSITIVE: []
|
|
1460
1492
|
end
|
|
1461
1493
|
|
|
1494
|
+
class CapacityBytesRangeFilter
|
|
1495
|
+
attr_accessor min_bytes: ::Integer
|
|
1496
|
+
attr_accessor max_bytes: ::Integer
|
|
1497
|
+
SENSITIVE: []
|
|
1498
|
+
end
|
|
1499
|
+
|
|
1462
1500
|
class CascadingControlConfiguration
|
|
1463
1501
|
attr_accessor source_controls: ::Array[Types::CascadingControlSource]
|
|
1464
1502
|
SENSITIVE: []
|
|
@@ -3824,6 +3862,20 @@ module Aws::QuickSight
|
|
|
3824
3862
|
SENSITIVE: []
|
|
3825
3863
|
end
|
|
3826
3864
|
|
|
3865
|
+
class DeleteKnowledgeBaseRequest
|
|
3866
|
+
attr_accessor aws_account_id: ::String
|
|
3867
|
+
attr_accessor knowledge_base_id: ::String
|
|
3868
|
+
SENSITIVE: []
|
|
3869
|
+
end
|
|
3870
|
+
|
|
3871
|
+
class DeleteKnowledgeBaseResponse
|
|
3872
|
+
attr_accessor knowledge_base_arn: ::String
|
|
3873
|
+
attr_accessor knowledge_base_id: ::String
|
|
3874
|
+
attr_accessor request_id: ::String
|
|
3875
|
+
attr_accessor status: ::Integer
|
|
3876
|
+
SENSITIVE: []
|
|
3877
|
+
end
|
|
3878
|
+
|
|
3827
3879
|
class DeleteNamespaceRequest
|
|
3828
3880
|
attr_accessor aws_account_id: ::String
|
|
3829
3881
|
attr_accessor namespace: ::String
|
|
@@ -4673,6 +4725,34 @@ module Aws::QuickSight
|
|
|
4673
4725
|
SENSITIVE: []
|
|
4674
4726
|
end
|
|
4675
4727
|
|
|
4728
|
+
class DescribeKnowledgeBasePermissionsRequest
|
|
4729
|
+
attr_accessor aws_account_id: ::String
|
|
4730
|
+
attr_accessor knowledge_base_id: ::String
|
|
4731
|
+
SENSITIVE: []
|
|
4732
|
+
end
|
|
4733
|
+
|
|
4734
|
+
class DescribeKnowledgeBasePermissionsResponse
|
|
4735
|
+
attr_accessor knowledge_base_arn: ::String
|
|
4736
|
+
attr_accessor knowledge_base_id: ::String
|
|
4737
|
+
attr_accessor permissions: ::Array[Types::ResourcePermission]
|
|
4738
|
+
attr_accessor request_id: ::String
|
|
4739
|
+
attr_accessor status: ::Integer
|
|
4740
|
+
SENSITIVE: []
|
|
4741
|
+
end
|
|
4742
|
+
|
|
4743
|
+
class DescribeKnowledgeBaseRequest
|
|
4744
|
+
attr_accessor aws_account_id: ::String
|
|
4745
|
+
attr_accessor knowledge_base_id: ::String
|
|
4746
|
+
SENSITIVE: []
|
|
4747
|
+
end
|
|
4748
|
+
|
|
4749
|
+
class DescribeKnowledgeBaseResponse
|
|
4750
|
+
attr_accessor knowledge_base: Types::KnowledgeBase
|
|
4751
|
+
attr_accessor request_id: ::String
|
|
4752
|
+
attr_accessor status: ::Integer
|
|
4753
|
+
SENSITIVE: []
|
|
4754
|
+
end
|
|
4755
|
+
|
|
4676
4756
|
class DescribeNamespaceRequest
|
|
4677
4757
|
attr_accessor aws_account_id: ::String
|
|
4678
4758
|
attr_accessor namespace: ::String
|
|
@@ -5145,7 +5225,7 @@ module Aws::QuickSight
|
|
|
5145
5225
|
end
|
|
5146
5226
|
|
|
5147
5227
|
class FailedSpaceResourceOperation
|
|
5148
|
-
attr_accessor resource_type: ("TOPIC" | "DASHBOARD" | "KNOWLEDGE_BASE" | "
|
|
5228
|
+
attr_accessor resource_type: ("TOPIC" | "DASHBOARD" | "KNOWLEDGE_BASE" | "ACTION_CONNECTOR" | "DATA_SET")
|
|
5149
5229
|
attr_accessor resource_details: Types::SpaceQuickSightResourceDetails
|
|
5150
5230
|
attr_accessor error_message: ::String
|
|
5151
5231
|
SENSITIVE: []
|
|
@@ -6446,6 +6526,11 @@ module Aws::QuickSight
|
|
|
6446
6526
|
SENSITIVE: []
|
|
6447
6527
|
end
|
|
6448
6528
|
|
|
6529
|
+
class ImageExtractionConfiguration
|
|
6530
|
+
attr_accessor image_extraction_status: ("ENABLED" | "DISABLED")
|
|
6531
|
+
SENSITIVE: []
|
|
6532
|
+
end
|
|
6533
|
+
|
|
6449
6534
|
class ImageInteractionOptions
|
|
6450
6535
|
attr_accessor image_menu_option: Types::ImageMenuOption
|
|
6451
6536
|
SENSITIVE: []
|
|
@@ -6793,6 +6878,11 @@ module Aws::QuickSight
|
|
|
6793
6878
|
SENSITIVE: []
|
|
6794
6879
|
end
|
|
6795
6880
|
|
|
6881
|
+
class KbTemplateConfiguration
|
|
6882
|
+
attr_accessor template: untyped
|
|
6883
|
+
SENSITIVE: []
|
|
6884
|
+
end
|
|
6885
|
+
|
|
6796
6886
|
class KeyPairCredentials
|
|
6797
6887
|
attr_accessor key_pair_username: ::String
|
|
6798
6888
|
attr_accessor private_key: ::String
|
|
@@ -6800,6 +6890,72 @@ module Aws::QuickSight
|
|
|
6800
6890
|
SENSITIVE: [:private_key, :private_key_passphrase]
|
|
6801
6891
|
end
|
|
6802
6892
|
|
|
6893
|
+
class KnowledgeBase
|
|
6894
|
+
attr_accessor knowledge_base_arn: ::String
|
|
6895
|
+
attr_accessor knowledge_base_id: ::String
|
|
6896
|
+
attr_accessor name: ::String
|
|
6897
|
+
attr_accessor status: ("CREATING" | "UPDATING" | "ACTIVE" | "FAILED" | "DELETING")
|
|
6898
|
+
attr_accessor data_source_arn: ::String
|
|
6899
|
+
attr_accessor knowledge_base_configuration: Types::KnowledgeBaseConfiguration
|
|
6900
|
+
attr_accessor media_extraction_configuration: Types::MediaExtractionConfiguration
|
|
6901
|
+
attr_accessor type: ::String
|
|
6902
|
+
attr_accessor created_at: ::Time
|
|
6903
|
+
attr_accessor updated_at: ::Time
|
|
6904
|
+
attr_accessor description: ::String
|
|
6905
|
+
attr_accessor is_email_notification_opted_for_ingestion_failures: bool
|
|
6906
|
+
attr_accessor first_completed_ingestion_summary: Types::KnowledgeBaseIngestionSummary
|
|
6907
|
+
attr_accessor first_incomplete_ingestion_summary: Types::KnowledgeBaseIngestionSummary
|
|
6908
|
+
attr_accessor latest_ingestion_summary: Types::KnowledgeBaseIngestionSummary
|
|
6909
|
+
attr_accessor knowledge_base_size_bytes: ::Integer
|
|
6910
|
+
attr_accessor document_count: ::Integer
|
|
6911
|
+
attr_accessor primary_owner_arn: ::String
|
|
6912
|
+
attr_accessor primary_owner_username: ::String
|
|
6913
|
+
SENSITIVE: [:knowledge_base_configuration, :primary_owner_username]
|
|
6914
|
+
end
|
|
6915
|
+
|
|
6916
|
+
class KnowledgeBaseConfiguration
|
|
6917
|
+
attr_accessor template_configuration: Types::KbTemplateConfiguration
|
|
6918
|
+
attr_accessor event_enabled: bool
|
|
6919
|
+
SENSITIVE: []
|
|
6920
|
+
end
|
|
6921
|
+
|
|
6922
|
+
class KnowledgeBaseIngestionSummary
|
|
6923
|
+
attr_accessor ingestion_id: ::String
|
|
6924
|
+
attr_accessor ingestion_status: ("QUEUED" | "RUNNING" | "FAILED" | "COMPLETED" | "INCOMPLETE" | "CANCELLED" | "CANCELLING" | "TIMEOUT")
|
|
6925
|
+
attr_accessor start_time: ::Time
|
|
6926
|
+
attr_accessor end_time: ::Time
|
|
6927
|
+
SENSITIVE: []
|
|
6928
|
+
end
|
|
6929
|
+
|
|
6930
|
+
class KnowledgeBaseSearchFilter
|
|
6931
|
+
attr_accessor name: ("KNOWLEDGE_BASE_ID" | "KNOWLEDGE_BASE_NAME" | "DIRECT_QUICKSIGHT_OWNER" | "DIRECT_QUICKSIGHT_VIEWER_OR_OWNER" | "DIRECT_QUICKSIGHT_SOLE_OWNER" | "KNOWLEDGE_BASE_SIZE_BYTES" | "PRIMARY_OWNER")
|
|
6932
|
+
attr_accessor operator: ("STRING_EQUALS" | "STRING_LIKE" | "GREATER_THAN_OR_EQUALS" | "LESS_THAN_OR_EQUALS")
|
|
6933
|
+
attr_accessor value: ::String
|
|
6934
|
+
SENSITIVE: []
|
|
6935
|
+
end
|
|
6936
|
+
|
|
6937
|
+
class KnowledgeBaseSortBy
|
|
6938
|
+
attr_accessor sort_by_field: ("KNOWLEDGE_BASE_SIZE_BYTES" | "CREATED_AT")
|
|
6939
|
+
attr_accessor sort_order: ("ASC" | "DESC")
|
|
6940
|
+
SENSITIVE: []
|
|
6941
|
+
end
|
|
6942
|
+
|
|
6943
|
+
class KnowledgeBaseSummary
|
|
6944
|
+
attr_accessor knowledge_base_arn: ::String
|
|
6945
|
+
attr_accessor knowledge_base_id: ::String
|
|
6946
|
+
attr_accessor name: ::String
|
|
6947
|
+
attr_accessor status: ("CREATING" | "UPDATING" | "ACTIVE" | "FAILED" | "DELETING")
|
|
6948
|
+
attr_accessor data_source_arn: ::String
|
|
6949
|
+
attr_accessor type: ::String
|
|
6950
|
+
attr_accessor created_at: ::Time
|
|
6951
|
+
attr_accessor updated_at: ::Time
|
|
6952
|
+
attr_accessor knowledge_base_size_bytes: ::Integer
|
|
6953
|
+
attr_accessor document_count: ::Integer
|
|
6954
|
+
attr_accessor primary_owner_arn: ::String
|
|
6955
|
+
attr_accessor primary_owner_username: ::String
|
|
6956
|
+
SENSITIVE: [:primary_owner_username]
|
|
6957
|
+
end
|
|
6958
|
+
|
|
6803
6959
|
class LabelOptions
|
|
6804
6960
|
attr_accessor visibility: ("HIDDEN" | "VISIBLE")
|
|
6805
6961
|
attr_accessor font_configuration: Types::FontConfiguration
|
|
@@ -7304,6 +7460,21 @@ module Aws::QuickSight
|
|
|
7304
7460
|
SENSITIVE: []
|
|
7305
7461
|
end
|
|
7306
7462
|
|
|
7463
|
+
class ListKnowledgeBasesRequest
|
|
7464
|
+
attr_accessor aws_account_id: ::String
|
|
7465
|
+
attr_accessor max_results: ::Integer
|
|
7466
|
+
attr_accessor next_token: ::String
|
|
7467
|
+
SENSITIVE: []
|
|
7468
|
+
end
|
|
7469
|
+
|
|
7470
|
+
class ListKnowledgeBasesResponse
|
|
7471
|
+
attr_accessor knowledge_base_summaries: ::Array[Types::KnowledgeBaseSummary]
|
|
7472
|
+
attr_accessor next_token: ::String
|
|
7473
|
+
attr_accessor request_id: ::String
|
|
7474
|
+
attr_accessor status: ::Integer
|
|
7475
|
+
SENSITIVE: []
|
|
7476
|
+
end
|
|
7477
|
+
|
|
7307
7478
|
class ListNamespacesRequest
|
|
7308
7479
|
attr_accessor aws_account_id: ::String
|
|
7309
7480
|
attr_accessor next_token: ::String
|
|
@@ -7579,6 +7750,24 @@ module Aws::QuickSight
|
|
|
7579
7750
|
SENSITIVE: []
|
|
7580
7751
|
end
|
|
7581
7752
|
|
|
7753
|
+
class ListUsersIndexCapacityRequest
|
|
7754
|
+
attr_accessor aws_account_id: ::String
|
|
7755
|
+
attr_accessor namespace: ::String
|
|
7756
|
+
attr_accessor filters: ::Array[Types::UserIndexCapacityFilter]
|
|
7757
|
+
attr_accessor sort_by: ("TOTAL_CAPACITY_BYTES")
|
|
7758
|
+
attr_accessor sort_order: ("ASC" | "DESC")
|
|
7759
|
+
attr_accessor max_results: ::Integer
|
|
7760
|
+
attr_accessor next_token: ::String
|
|
7761
|
+
SENSITIVE: []
|
|
7762
|
+
end
|
|
7763
|
+
|
|
7764
|
+
class ListUsersIndexCapacityResponse
|
|
7765
|
+
attr_accessor users: ::Array[Types::UserIndexCapacity]
|
|
7766
|
+
attr_accessor next_token: ::String
|
|
7767
|
+
attr_accessor request_id: ::String
|
|
7768
|
+
SENSITIVE: []
|
|
7769
|
+
end
|
|
7770
|
+
|
|
7582
7771
|
class ListUsersRequest
|
|
7583
7772
|
attr_accessor aws_account_id: ::String
|
|
7584
7773
|
attr_accessor next_token: ::String
|
|
@@ -7717,6 +7906,13 @@ module Aws::QuickSight
|
|
|
7717
7906
|
SENSITIVE: []
|
|
7718
7907
|
end
|
|
7719
7908
|
|
|
7909
|
+
class MediaExtractionConfiguration
|
|
7910
|
+
attr_accessor image_extraction_configuration: Types::ImageExtractionConfiguration
|
|
7911
|
+
attr_accessor audio_extraction_configuration: Types::AudioExtractionConfiguration
|
|
7912
|
+
attr_accessor video_extraction_configuration: Types::VideoExtractionConfiguration
|
|
7913
|
+
SENSITIVE: []
|
|
7914
|
+
end
|
|
7915
|
+
|
|
7720
7916
|
class MemberIdArnPair
|
|
7721
7917
|
attr_accessor member_id: ::String
|
|
7722
7918
|
attr_accessor member_arn: ::String
|
|
@@ -9430,6 +9626,23 @@ module Aws::QuickSight
|
|
|
9430
9626
|
SENSITIVE: []
|
|
9431
9627
|
end
|
|
9432
9628
|
|
|
9629
|
+
class SearchKnowledgeBasesRequest
|
|
9630
|
+
attr_accessor aws_account_id: ::String
|
|
9631
|
+
attr_accessor next_token: ::String
|
|
9632
|
+
attr_accessor max_results: ::Integer
|
|
9633
|
+
attr_accessor filters: ::Array[Types::KnowledgeBaseSearchFilter]
|
|
9634
|
+
attr_accessor sort_by: Types::KnowledgeBaseSortBy
|
|
9635
|
+
SENSITIVE: []
|
|
9636
|
+
end
|
|
9637
|
+
|
|
9638
|
+
class SearchKnowledgeBasesResponse
|
|
9639
|
+
attr_accessor knowledge_base_summaries: ::Array[Types::KnowledgeBaseSummary]
|
|
9640
|
+
attr_accessor next_token: ::String
|
|
9641
|
+
attr_accessor request_id: ::String
|
|
9642
|
+
attr_accessor status: ::Integer
|
|
9643
|
+
SENSITIVE: []
|
|
9644
|
+
end
|
|
9645
|
+
|
|
9433
9646
|
class SearchSpacesRequest
|
|
9434
9647
|
attr_accessor aws_account_id: ::String
|
|
9435
9648
|
attr_accessor next_token: ::String
|
|
@@ -9930,7 +10143,7 @@ module Aws::QuickSight
|
|
|
9930
10143
|
end
|
|
9931
10144
|
|
|
9932
10145
|
class SpaceQuickSightResource
|
|
9933
|
-
attr_accessor resource_type: ("TOPIC" | "DASHBOARD" | "KNOWLEDGE_BASE" | "
|
|
10146
|
+
attr_accessor resource_type: ("TOPIC" | "DASHBOARD" | "KNOWLEDGE_BASE" | "ACTION_CONNECTOR" | "DATA_SET")
|
|
9934
10147
|
attr_accessor resource_details: Types::SpaceQuickSightResourceDetails
|
|
9935
10148
|
SENSITIVE: []
|
|
9936
10149
|
end
|
|
@@ -9954,13 +10167,13 @@ module Aws::QuickSight
|
|
|
9954
10167
|
end
|
|
9955
10168
|
|
|
9956
10169
|
class SpaceResourceOperation
|
|
9957
|
-
attr_accessor resource_type: ("TOPIC" | "DASHBOARD" | "KNOWLEDGE_BASE" | "
|
|
10170
|
+
attr_accessor resource_type: ("TOPIC" | "DASHBOARD" | "KNOWLEDGE_BASE" | "ACTION_CONNECTOR" | "DATA_SET")
|
|
9958
10171
|
attr_accessor resource_details: Types::SpaceQuickSightResourceDetails
|
|
9959
10172
|
SENSITIVE: []
|
|
9960
10173
|
end
|
|
9961
10174
|
|
|
9962
10175
|
class SpaceResourceSummary
|
|
9963
|
-
attr_accessor resource_type: ("TOPIC" | "DASHBOARD" | "KNOWLEDGE_BASE" | "
|
|
10176
|
+
attr_accessor resource_type: ("TOPIC" | "DASHBOARD" | "KNOWLEDGE_BASE" | "ACTION_CONNECTOR" | "DATA_SET")
|
|
9964
10177
|
attr_accessor resource_details: Types::SpaceQuickSightResourceDetails
|
|
9965
10178
|
attr_accessor resource_name: ::String
|
|
9966
10179
|
attr_accessor updated_at: ::Time
|
|
@@ -11851,6 +12064,23 @@ module Aws::QuickSight
|
|
|
11851
12064
|
SENSITIVE: []
|
|
11852
12065
|
end
|
|
11853
12066
|
|
|
12067
|
+
class UpdateKnowledgeBasePermissionsRequest
|
|
12068
|
+
attr_accessor aws_account_id: ::String
|
|
12069
|
+
attr_accessor knowledge_base_id: ::String
|
|
12070
|
+
attr_accessor grant_permissions: ::Array[Types::ResourcePermission]
|
|
12071
|
+
attr_accessor revoke_permissions: ::Array[Types::ResourcePermission]
|
|
12072
|
+
SENSITIVE: []
|
|
12073
|
+
end
|
|
12074
|
+
|
|
12075
|
+
class UpdateKnowledgeBasePermissionsResponse
|
|
12076
|
+
attr_accessor knowledge_base_arn: ::String
|
|
12077
|
+
attr_accessor knowledge_base_id: ::String
|
|
12078
|
+
attr_accessor permissions: ::Array[Types::ResourcePermission]
|
|
12079
|
+
attr_accessor request_id: ::String
|
|
12080
|
+
attr_accessor status: ::Integer
|
|
12081
|
+
SENSITIVE: []
|
|
12082
|
+
end
|
|
12083
|
+
|
|
11854
12084
|
class UpdateOAuthClientApplicationRequest
|
|
11855
12085
|
attr_accessor aws_account_id: ::String
|
|
11856
12086
|
attr_accessor o_auth_client_application_id: ::String
|
|
@@ -12287,6 +12517,38 @@ module Aws::QuickSight
|
|
|
12287
12517
|
end
|
|
12288
12518
|
end
|
|
12289
12519
|
|
|
12520
|
+
class UserIndexCapacity
|
|
12521
|
+
attr_accessor user_arn: ::String
|
|
12522
|
+
attr_accessor user_name: ::String
|
|
12523
|
+
attr_accessor email: ::String
|
|
12524
|
+
attr_accessor role: ::String
|
|
12525
|
+
attr_accessor total_capacity_bytes: ::Integer
|
|
12526
|
+
attr_accessor total_kb_capacity_bytes: ::Integer
|
|
12527
|
+
attr_accessor total_space_capacity_bytes: ::Integer
|
|
12528
|
+
attr_accessor kb_count: ::Integer
|
|
12529
|
+
attr_accessor space_count: ::Integer
|
|
12530
|
+
SENSITIVE: []
|
|
12531
|
+
end
|
|
12532
|
+
|
|
12533
|
+
class UserIndexCapacityFilter
|
|
12534
|
+
attr_accessor user_name_or_email: Types::UserNameOrEmailFilter
|
|
12535
|
+
attr_accessor total_capacity_bytes: Types::CapacityBytesRangeFilter
|
|
12536
|
+
attr_accessor unknown: untyped
|
|
12537
|
+
SENSITIVE: []
|
|
12538
|
+
|
|
12539
|
+
class UserNameOrEmail < UserIndexCapacityFilter
|
|
12540
|
+
end
|
|
12541
|
+
class TotalCapacityBytes < UserIndexCapacityFilter
|
|
12542
|
+
end
|
|
12543
|
+
class Unknown < UserIndexCapacityFilter
|
|
12544
|
+
end
|
|
12545
|
+
end
|
|
12546
|
+
|
|
12547
|
+
class UserNameOrEmailFilter
|
|
12548
|
+
attr_accessor prefix: ::String
|
|
12549
|
+
SENSITIVE: []
|
|
12550
|
+
end
|
|
12551
|
+
|
|
12290
12552
|
class VPCConnection
|
|
12291
12553
|
attr_accessor vpc_connection_id: ::String
|
|
12292
12554
|
attr_accessor arn: ::String
|
|
@@ -12329,6 +12591,12 @@ module Aws::QuickSight
|
|
|
12329
12591
|
SENSITIVE: []
|
|
12330
12592
|
end
|
|
12331
12593
|
|
|
12594
|
+
class VideoExtractionConfiguration
|
|
12595
|
+
attr_accessor video_extraction_status: ("ENABLED" | "DISABLED")
|
|
12596
|
+
attr_accessor video_extraction_type: ("AUDIO_TRANSCRIPTION_ONLY" | "VISUAL_CONTENT_AND_AUDIO_TRANSCRIPTION")
|
|
12597
|
+
SENSITIVE: []
|
|
12598
|
+
end
|
|
12599
|
+
|
|
12332
12600
|
class VisibleRangeOptions
|
|
12333
12601
|
attr_accessor percent_range: Types::PercentVisibleRange
|
|
12334
12602
|
SENSITIVE: []
|