aws-sdk-quicksight 1.183.0 → 1.185.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 +1636 -55
- data/lib/aws-sdk-quicksight/client_api.rb +1078 -0
- data/lib/aws-sdk-quicksight/types.rb +2385 -0
- data/lib/aws-sdk-quicksight.rb +1 -1
- data/sig/client.rbs +500 -0
- data/sig/params.rbs +15 -0
- data/sig/types.rbs +654 -0
- metadata +1 -1
data/sig/types.rbs
CHANGED
|
@@ -104,6 +104,44 @@ module Aws::QuickSight
|
|
|
104
104
|
SENSITIVE: [:text]
|
|
105
105
|
end
|
|
106
106
|
|
|
107
|
+
class Agent
|
|
108
|
+
attr_accessor spaces: ::Array[::String]
|
|
109
|
+
attr_accessor action_connectors: ::Array[::String]
|
|
110
|
+
attr_accessor description: ::String
|
|
111
|
+
attr_accessor icon_id: ::String
|
|
112
|
+
attr_accessor name: ::String
|
|
113
|
+
attr_accessor starter_prompts: ::Array[::String]
|
|
114
|
+
attr_accessor welcome_message: ::String
|
|
115
|
+
attr_accessor arn: ::String
|
|
116
|
+
attr_accessor agent_id: ::String
|
|
117
|
+
attr_accessor agent_lifecycle: ("PREVIEW" | "PUBLISHED")
|
|
118
|
+
attr_accessor agent_status: ("ACTIVE" | "UPDATING" | "FAILED" | "CREATING")
|
|
119
|
+
attr_accessor created_at: ::Time
|
|
120
|
+
attr_accessor creator: ::String
|
|
121
|
+
attr_accessor custom_prompt_interface: Types::CustomPromptInterface
|
|
122
|
+
attr_accessor error_message: ::String
|
|
123
|
+
attr_accessor updated_at: ::Time
|
|
124
|
+
SENSITIVE: [:starter_prompts, :welcome_message]
|
|
125
|
+
end
|
|
126
|
+
|
|
127
|
+
class AgentSearchFilter
|
|
128
|
+
attr_accessor name: ("DIRECT_QUICKSIGHT_OWNER" | "DIRECT_QUICKSIGHT_VIEWER_OR_OWNER" | "DIRECT_QUICKSIGHT_SOLE_OWNER" | "AGENT_NAME")
|
|
129
|
+
attr_accessor operator: ("StringEquals" | "StringLike")
|
|
130
|
+
attr_accessor value: ::String
|
|
131
|
+
SENSITIVE: []
|
|
132
|
+
end
|
|
133
|
+
|
|
134
|
+
class AgentSummary
|
|
135
|
+
attr_accessor arn: ::String
|
|
136
|
+
attr_accessor agent_id: ::String
|
|
137
|
+
attr_accessor name: ::String
|
|
138
|
+
attr_accessor description: ::String
|
|
139
|
+
attr_accessor created_at: ::Time
|
|
140
|
+
attr_accessor updated_at: ::Time
|
|
141
|
+
attr_accessor icon_id: ::String
|
|
142
|
+
SENSITIVE: []
|
|
143
|
+
end
|
|
144
|
+
|
|
107
145
|
class AggFunction
|
|
108
146
|
attr_accessor aggregation: ("SUM" | "MIN" | "MAX" | "COUNT" | "AVERAGE" | "DISTINCT_COUNT" | "STDEV" | "STDEVP" | "VAR" | "VARP" | "PERCENTILE" | "MEDIAN" | "PTD_SUM" | "PTD_MIN" | "PTD_MAX" | "PTD_COUNT" | "PTD_DISTINCT_COUNT" | "PTD_AVERAGE" | "COLUMN" | "CUSTOM")
|
|
109
147
|
attr_accessor aggregation_function_parameters: ::Hash[::String, ::String]
|
|
@@ -1959,6 +1997,30 @@ module Aws::QuickSight
|
|
|
1959
1997
|
SENSITIVE: []
|
|
1960
1998
|
end
|
|
1961
1999
|
|
|
2000
|
+
class CreateAgentRequest
|
|
2001
|
+
attr_accessor spaces: ::Array[::String]
|
|
2002
|
+
attr_accessor action_connectors: ::Array[::String]
|
|
2003
|
+
attr_accessor aws_account_id: ::String
|
|
2004
|
+
attr_accessor agent_id: ::String
|
|
2005
|
+
attr_accessor name: ::String
|
|
2006
|
+
attr_accessor description: ::String
|
|
2007
|
+
attr_accessor icon_id: ::String
|
|
2008
|
+
attr_accessor starter_prompts: ::Array[::String]
|
|
2009
|
+
attr_accessor welcome_message: ::String
|
|
2010
|
+
attr_accessor agent_lifecycle: ("PREVIEW" | "PUBLISHED")
|
|
2011
|
+
attr_accessor custom_prompt_input: Types::CustomPromptInput
|
|
2012
|
+
SENSITIVE: [:starter_prompts, :welcome_message, :custom_prompt_input]
|
|
2013
|
+
end
|
|
2014
|
+
|
|
2015
|
+
class CreateAgentResponse
|
|
2016
|
+
attr_accessor arn: ::String
|
|
2017
|
+
attr_accessor agent_id: ::String
|
|
2018
|
+
attr_accessor agent_status: ("ACTIVE" | "UPDATING" | "FAILED" | "CREATING")
|
|
2019
|
+
attr_accessor agent_name: ::String
|
|
2020
|
+
attr_accessor request_id: ::String
|
|
2021
|
+
SENSITIVE: []
|
|
2022
|
+
end
|
|
2023
|
+
|
|
1962
2024
|
class CreateAnalysisRequest
|
|
1963
2025
|
attr_accessor aws_account_id: ::String
|
|
1964
2026
|
attr_accessor analysis_id: ::String
|
|
@@ -2107,6 +2169,24 @@ module Aws::QuickSight
|
|
|
2107
2169
|
SENSITIVE: []
|
|
2108
2170
|
end
|
|
2109
2171
|
|
|
2172
|
+
class CreateFlowRequest
|
|
2173
|
+
attr_accessor aws_account_id: ::String
|
|
2174
|
+
attr_accessor name: ::String
|
|
2175
|
+
attr_accessor description: ::String
|
|
2176
|
+
attr_accessor flow_definition: untyped
|
|
2177
|
+
attr_accessor permissions: ::Array[Types::Permission]
|
|
2178
|
+
attr_accessor client_token: ::String
|
|
2179
|
+
SENSITIVE: [:flow_definition]
|
|
2180
|
+
end
|
|
2181
|
+
|
|
2182
|
+
class CreateFlowResponse
|
|
2183
|
+
attr_accessor arn: ::String
|
|
2184
|
+
attr_accessor flow_id: ::String
|
|
2185
|
+
attr_accessor request_id: ::String
|
|
2186
|
+
attr_accessor status: ::Integer
|
|
2187
|
+
SENSITIVE: []
|
|
2188
|
+
end
|
|
2189
|
+
|
|
2110
2190
|
class CreateFolderMembershipRequest
|
|
2111
2191
|
attr_accessor aws_account_id: ::String
|
|
2112
2192
|
attr_accessor folder_id: ::String
|
|
@@ -2229,6 +2309,31 @@ module Aws::QuickSight
|
|
|
2229
2309
|
SENSITIVE: []
|
|
2230
2310
|
end
|
|
2231
2311
|
|
|
2312
|
+
class CreateOAuthClientApplicationRequest
|
|
2313
|
+
attr_accessor aws_account_id: ::String
|
|
2314
|
+
attr_accessor o_auth_client_application_id: ::String
|
|
2315
|
+
attr_accessor name: ::String
|
|
2316
|
+
attr_accessor o_auth_client_authentication_type: ("TOKEN")
|
|
2317
|
+
attr_accessor client_id: ::String
|
|
2318
|
+
attr_accessor client_secret: ::String
|
|
2319
|
+
attr_accessor o_auth_token_endpoint_url: ::String
|
|
2320
|
+
attr_accessor o_auth_authorization_endpoint_url: ::String
|
|
2321
|
+
attr_accessor o_auth_scopes: ::String
|
|
2322
|
+
attr_accessor data_source_type: ("ADOBE_ANALYTICS" | "AMAZON_ELASTICSEARCH" | "ATHENA" | "AURORA" | "AURORA_POSTGRESQL" | "AWS_IOT_ANALYTICS" | "GITHUB" | "JIRA" | "MARIADB" | "MYSQL" | "ORACLE" | "POSTGRESQL" | "PRESTO" | "REDSHIFT" | "S3" | "S3_TABLES" | "SALESFORCE" | "SERVICENOW" | "SNOWFLAKE" | "SPARK" | "SQLSERVER" | "TERADATA" | "TWITTER" | "TIMESTREAM" | "AMAZON_OPENSEARCH" | "EXASOL" | "DATABRICKS" | "STARBURST" | "TRINO" | "BIGQUERY" | "GOOGLESHEETS" | "GOOGLE_DRIVE" | "CONFLUENCE" | "SHAREPOINT" | "ONE_DRIVE" | "WEB_CRAWLER" | "S3_KNOWLEDGE_BASE" | "QBUSINESS")
|
|
2323
|
+
attr_accessor identity_provider_vpc_connection_properties: Types::VpcConnectionProperties
|
|
2324
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
2325
|
+
SENSITIVE: [:client_id, :client_secret, :o_auth_token_endpoint_url, :o_auth_authorization_endpoint_url]
|
|
2326
|
+
end
|
|
2327
|
+
|
|
2328
|
+
class CreateOAuthClientApplicationResponse
|
|
2329
|
+
attr_accessor arn: ::String
|
|
2330
|
+
attr_accessor o_auth_client_application_id: ::String
|
|
2331
|
+
attr_accessor creation_status: ("CREATION_IN_PROGRESS" | "CREATION_SUCCESSFUL" | "CREATION_FAILED" | "UPDATE_IN_PROGRESS" | "UPDATE_SUCCESSFUL" | "UPDATE_FAILED" | "DELETED")
|
|
2332
|
+
attr_accessor request_id: ::String
|
|
2333
|
+
attr_accessor status: ::Integer
|
|
2334
|
+
SENSITIVE: []
|
|
2335
|
+
end
|
|
2336
|
+
|
|
2232
2337
|
class CreateRefreshScheduleRequest
|
|
2233
2338
|
attr_accessor data_set_id: ::String
|
|
2234
2339
|
attr_accessor aws_account_id: ::String
|
|
@@ -2258,6 +2363,21 @@ module Aws::QuickSight
|
|
|
2258
2363
|
SENSITIVE: []
|
|
2259
2364
|
end
|
|
2260
2365
|
|
|
2366
|
+
class CreateSpaceRequest
|
|
2367
|
+
attr_accessor aws_account_id: ::String
|
|
2368
|
+
attr_accessor space_id: ::String
|
|
2369
|
+
attr_accessor name: ::String
|
|
2370
|
+
attr_accessor description: ::String
|
|
2371
|
+
SENSITIVE: [:description]
|
|
2372
|
+
end
|
|
2373
|
+
|
|
2374
|
+
class CreateSpaceResponse
|
|
2375
|
+
attr_accessor space_id: ::String
|
|
2376
|
+
attr_accessor space_arn: ::String
|
|
2377
|
+
attr_accessor request_id: ::String
|
|
2378
|
+
SENSITIVE: []
|
|
2379
|
+
end
|
|
2380
|
+
|
|
2261
2381
|
class CreateTemplateAliasRequest
|
|
2262
2382
|
attr_accessor aws_account_id: ::String
|
|
2263
2383
|
attr_accessor template_id: ::String
|
|
@@ -2521,6 +2641,49 @@ module Aws::QuickSight
|
|
|
2521
2641
|
SENSITIVE: []
|
|
2522
2642
|
end
|
|
2523
2643
|
|
|
2644
|
+
class CustomPromptInput
|
|
2645
|
+
attr_accessor existing_prompt: Types::CustomPromptProfile
|
|
2646
|
+
attr_accessor new_prompt: Types::CustomPromptInputParameters
|
|
2647
|
+
attr_accessor unknown: untyped
|
|
2648
|
+
SENSITIVE: []
|
|
2649
|
+
|
|
2650
|
+
class ExistingPrompt < CustomPromptInput
|
|
2651
|
+
end
|
|
2652
|
+
class NewPrompt < CustomPromptInput
|
|
2653
|
+
end
|
|
2654
|
+
class Unknown < CustomPromptInput
|
|
2655
|
+
end
|
|
2656
|
+
end
|
|
2657
|
+
|
|
2658
|
+
class CustomPromptInputParameters
|
|
2659
|
+
attr_accessor response_length: ::String
|
|
2660
|
+
attr_accessor output_style: ::String
|
|
2661
|
+
attr_accessor identity: ::String
|
|
2662
|
+
attr_accessor tone: ::String
|
|
2663
|
+
attr_accessor custom_instructions: ::String
|
|
2664
|
+
SENSITIVE: [:response_length, :output_style, :identity, :tone, :custom_instructions]
|
|
2665
|
+
end
|
|
2666
|
+
|
|
2667
|
+
class CustomPromptInterface
|
|
2668
|
+
attr_accessor model_profile_id: ::String
|
|
2669
|
+
attr_accessor subscription_id: ::String
|
|
2670
|
+
attr_accessor qbs_aws_account_id: ::String
|
|
2671
|
+
attr_accessor response_length: ::String
|
|
2672
|
+
attr_accessor output_style: ::String
|
|
2673
|
+
attr_accessor identity: ::String
|
|
2674
|
+
attr_accessor tone: ::String
|
|
2675
|
+
attr_accessor custom_instructions: ::String
|
|
2676
|
+
attr_accessor prompt_summary: ::String
|
|
2677
|
+
SENSITIVE: [:response_length, :output_style, :identity, :tone, :custom_instructions, :prompt_summary]
|
|
2678
|
+
end
|
|
2679
|
+
|
|
2680
|
+
class CustomPromptProfile
|
|
2681
|
+
attr_accessor model_profile_id: ::String
|
|
2682
|
+
attr_accessor subscription_id: ::String
|
|
2683
|
+
attr_accessor qbs_aws_account_id: ::String
|
|
2684
|
+
SENSITIVE: []
|
|
2685
|
+
end
|
|
2686
|
+
|
|
2524
2687
|
class CustomSql
|
|
2525
2688
|
attr_accessor data_source_arn: ::String
|
|
2526
2689
|
attr_accessor name: ::String
|
|
@@ -3439,6 +3602,17 @@ module Aws::QuickSight
|
|
|
3439
3602
|
SENSITIVE: []
|
|
3440
3603
|
end
|
|
3441
3604
|
|
|
3605
|
+
class DeleteAgentRequest
|
|
3606
|
+
attr_accessor agent_id: ::String
|
|
3607
|
+
attr_accessor aws_account_id: ::String
|
|
3608
|
+
SENSITIVE: []
|
|
3609
|
+
end
|
|
3610
|
+
|
|
3611
|
+
class DeleteAgentResponse
|
|
3612
|
+
attr_accessor request_id: ::String
|
|
3613
|
+
SENSITIVE: []
|
|
3614
|
+
end
|
|
3615
|
+
|
|
3442
3616
|
class DeleteAnalysisRequest
|
|
3443
3617
|
attr_accessor aws_account_id: ::String
|
|
3444
3618
|
attr_accessor analysis_id: ::String
|
|
@@ -3557,6 +3731,18 @@ module Aws::QuickSight
|
|
|
3557
3731
|
SENSITIVE: []
|
|
3558
3732
|
end
|
|
3559
3733
|
|
|
3734
|
+
class DeleteFlowRequest
|
|
3735
|
+
attr_accessor aws_account_id: ::String
|
|
3736
|
+
attr_accessor flow_id: ::String
|
|
3737
|
+
SENSITIVE: []
|
|
3738
|
+
end
|
|
3739
|
+
|
|
3740
|
+
class DeleteFlowResponse
|
|
3741
|
+
attr_accessor request_id: ::String
|
|
3742
|
+
attr_accessor status: ::Integer
|
|
3743
|
+
SENSITIVE: []
|
|
3744
|
+
end
|
|
3745
|
+
|
|
3560
3746
|
class DeleteFolderMembershipRequest
|
|
3561
3747
|
attr_accessor aws_account_id: ::String
|
|
3562
3748
|
attr_accessor folder_id: ::String
|
|
@@ -3650,6 +3836,20 @@ module Aws::QuickSight
|
|
|
3650
3836
|
SENSITIVE: []
|
|
3651
3837
|
end
|
|
3652
3838
|
|
|
3839
|
+
class DeleteOAuthClientApplicationRequest
|
|
3840
|
+
attr_accessor aws_account_id: ::String
|
|
3841
|
+
attr_accessor o_auth_client_application_id: ::String
|
|
3842
|
+
SENSITIVE: []
|
|
3843
|
+
end
|
|
3844
|
+
|
|
3845
|
+
class DeleteOAuthClientApplicationResponse
|
|
3846
|
+
attr_accessor arn: ::String
|
|
3847
|
+
attr_accessor o_auth_client_application_id: ::String
|
|
3848
|
+
attr_accessor request_id: ::String
|
|
3849
|
+
attr_accessor status: ::Integer
|
|
3850
|
+
SENSITIVE: []
|
|
3851
|
+
end
|
|
3852
|
+
|
|
3653
3853
|
class DeleteRefreshScheduleRequest
|
|
3654
3854
|
attr_accessor data_set_id: ::String
|
|
3655
3855
|
attr_accessor aws_account_id: ::String
|
|
@@ -3692,6 +3892,19 @@ module Aws::QuickSight
|
|
|
3692
3892
|
SENSITIVE: []
|
|
3693
3893
|
end
|
|
3694
3894
|
|
|
3895
|
+
class DeleteSpaceRequest
|
|
3896
|
+
attr_accessor aws_account_id: ::String
|
|
3897
|
+
attr_accessor space_id: ::String
|
|
3898
|
+
SENSITIVE: []
|
|
3899
|
+
end
|
|
3900
|
+
|
|
3901
|
+
class DeleteSpaceResponse
|
|
3902
|
+
attr_accessor space_id: ::String
|
|
3903
|
+
attr_accessor space_arn: ::String
|
|
3904
|
+
attr_accessor request_id: ::String
|
|
3905
|
+
SENSITIVE: []
|
|
3906
|
+
end
|
|
3907
|
+
|
|
3695
3908
|
class DeleteTemplateAliasRequest
|
|
3696
3909
|
attr_accessor aws_account_id: ::String
|
|
3697
3910
|
attr_accessor template_id: ::String
|
|
@@ -3920,6 +4133,32 @@ module Aws::QuickSight
|
|
|
3920
4133
|
SENSITIVE: []
|
|
3921
4134
|
end
|
|
3922
4135
|
|
|
4136
|
+
class DescribeAgentPermissionsRequest
|
|
4137
|
+
attr_accessor agent_id: ::String
|
|
4138
|
+
attr_accessor aws_account_id: ::String
|
|
4139
|
+
SENSITIVE: []
|
|
4140
|
+
end
|
|
4141
|
+
|
|
4142
|
+
class DescribeAgentPermissionsResponse
|
|
4143
|
+
attr_accessor arn: ::String
|
|
4144
|
+
attr_accessor agent_id: ::String
|
|
4145
|
+
attr_accessor permissions: ::Array[Types::ResourcePermission]
|
|
4146
|
+
attr_accessor request_id: ::String
|
|
4147
|
+
SENSITIVE: []
|
|
4148
|
+
end
|
|
4149
|
+
|
|
4150
|
+
class DescribeAgentRequest
|
|
4151
|
+
attr_accessor agent_id: ::String
|
|
4152
|
+
attr_accessor aws_account_id: ::String
|
|
4153
|
+
SENSITIVE: []
|
|
4154
|
+
end
|
|
4155
|
+
|
|
4156
|
+
class DescribeAgentResponse
|
|
4157
|
+
attr_accessor agent: Types::Agent
|
|
4158
|
+
attr_accessor request_id: ::String
|
|
4159
|
+
SENSITIVE: []
|
|
4160
|
+
end
|
|
4161
|
+
|
|
3923
4162
|
class DescribeAnalysisDefinitionRequest
|
|
3924
4163
|
attr_accessor aws_account_id: ::String
|
|
3925
4164
|
attr_accessor analysis_id: ::String
|
|
@@ -4281,6 +4520,20 @@ module Aws::QuickSight
|
|
|
4281
4520
|
SENSITIVE: []
|
|
4282
4521
|
end
|
|
4283
4522
|
|
|
4523
|
+
class DescribeFlowRequest
|
|
4524
|
+
attr_accessor aws_account_id: ::String
|
|
4525
|
+
attr_accessor flow_id: ::String
|
|
4526
|
+
attr_accessor publish_state: ("PUBLISHED" | "DRAFT" | "PENDING_APPROVAL")
|
|
4527
|
+
SENSITIVE: []
|
|
4528
|
+
end
|
|
4529
|
+
|
|
4530
|
+
class DescribeFlowResponse
|
|
4531
|
+
attr_accessor flow: Types::FlowDetail
|
|
4532
|
+
attr_accessor request_id: ::String
|
|
4533
|
+
attr_accessor status: ::Integer
|
|
4534
|
+
SENSITIVE: []
|
|
4535
|
+
end
|
|
4536
|
+
|
|
4284
4537
|
class DescribeFolderPermissionsRequest
|
|
4285
4538
|
attr_accessor aws_account_id: ::String
|
|
4286
4539
|
attr_accessor folder_id: ::String
|
|
@@ -4433,6 +4686,19 @@ module Aws::QuickSight
|
|
|
4433
4686
|
SENSITIVE: []
|
|
4434
4687
|
end
|
|
4435
4688
|
|
|
4689
|
+
class DescribeOAuthClientApplicationRequest
|
|
4690
|
+
attr_accessor aws_account_id: ::String
|
|
4691
|
+
attr_accessor o_auth_client_application_id: ::String
|
|
4692
|
+
SENSITIVE: []
|
|
4693
|
+
end
|
|
4694
|
+
|
|
4695
|
+
class DescribeOAuthClientApplicationResponse
|
|
4696
|
+
attr_accessor o_auth_client_application: Types::OAuthClientApplication
|
|
4697
|
+
attr_accessor request_id: ::String
|
|
4698
|
+
attr_accessor status: ::Integer
|
|
4699
|
+
SENSITIVE: []
|
|
4700
|
+
end
|
|
4701
|
+
|
|
4436
4702
|
class DescribeQPersonalizationConfigurationRequest
|
|
4437
4703
|
attr_accessor aws_account_id: ::String
|
|
4438
4704
|
SENSITIVE: []
|
|
@@ -4499,6 +4765,36 @@ module Aws::QuickSight
|
|
|
4499
4765
|
SENSITIVE: []
|
|
4500
4766
|
end
|
|
4501
4767
|
|
|
4768
|
+
class DescribeSpacePermissionsRequest
|
|
4769
|
+
attr_accessor aws_account_id: ::String
|
|
4770
|
+
attr_accessor space_id: ::String
|
|
4771
|
+
SENSITIVE: []
|
|
4772
|
+
end
|
|
4773
|
+
|
|
4774
|
+
class DescribeSpacePermissionsResponse
|
|
4775
|
+
attr_accessor space_id: ::String
|
|
4776
|
+
attr_accessor space_arn: ::String
|
|
4777
|
+
attr_accessor permissions: ::Array[Types::ResourcePermission]
|
|
4778
|
+
attr_accessor request_id: ::String
|
|
4779
|
+
SENSITIVE: []
|
|
4780
|
+
end
|
|
4781
|
+
|
|
4782
|
+
class DescribeSpaceRequest
|
|
4783
|
+
attr_accessor aws_account_id: ::String
|
|
4784
|
+
attr_accessor space_id: ::String
|
|
4785
|
+
attr_accessor max_contributors: ::Integer
|
|
4786
|
+
SENSITIVE: []
|
|
4787
|
+
end
|
|
4788
|
+
|
|
4789
|
+
class DescribeSpaceResponse
|
|
4790
|
+
attr_accessor space_id: ::String
|
|
4791
|
+
attr_accessor space_arn: ::String
|
|
4792
|
+
attr_accessor space: Types::SpaceDetails
|
|
4793
|
+
attr_accessor contributors: ::Array[Types::SpaceContributor]
|
|
4794
|
+
attr_accessor request_id: ::String
|
|
4795
|
+
SENSITIVE: []
|
|
4796
|
+
end
|
|
4797
|
+
|
|
4502
4798
|
class DescribeTemplateAliasRequest
|
|
4503
4799
|
attr_accessor aws_account_id: ::String
|
|
4504
4800
|
attr_accessor template_id: ::String
|
|
@@ -4848,6 +5144,20 @@ module Aws::QuickSight
|
|
|
4848
5144
|
SENSITIVE: []
|
|
4849
5145
|
end
|
|
4850
5146
|
|
|
5147
|
+
class FailedSpaceResourceOperation
|
|
5148
|
+
attr_accessor resource_type: ("TOPIC" | "DASHBOARD" | "KNOWLEDGE_BASE" | "SPACE" | "ACTION_CONNECTOR" | "DATA_SET" | "ARTIFACT")
|
|
5149
|
+
attr_accessor resource_details: Types::SpaceQuickSightResourceDetails
|
|
5150
|
+
attr_accessor error_message: ::String
|
|
5151
|
+
SENSITIVE: []
|
|
5152
|
+
end
|
|
5153
|
+
|
|
5154
|
+
class FailedToUpdateAssociation
|
|
5155
|
+
attr_accessor arn: ::String
|
|
5156
|
+
attr_accessor error_message: ::String
|
|
5157
|
+
attr_accessor error_code: ::String
|
|
5158
|
+
SENSITIVE: []
|
|
5159
|
+
end
|
|
5160
|
+
|
|
4851
5161
|
class FieldBarSeriesItem
|
|
4852
5162
|
attr_accessor field_id: ::String
|
|
4853
5163
|
attr_accessor settings: Types::BarChartSeriesSettings
|
|
@@ -5135,6 +5445,21 @@ module Aws::QuickSight
|
|
|
5135
5445
|
SENSITIVE: []
|
|
5136
5446
|
end
|
|
5137
5447
|
|
|
5448
|
+
class FlowDetail
|
|
5449
|
+
attr_accessor arn: ::String
|
|
5450
|
+
attr_accessor flow_id: ::String
|
|
5451
|
+
attr_accessor name: ::String
|
|
5452
|
+
attr_accessor description: ::String
|
|
5453
|
+
attr_accessor publish_state: ("PUBLISHED" | "DRAFT" | "PENDING_APPROVAL")
|
|
5454
|
+
attr_accessor created_time: ::Time
|
|
5455
|
+
attr_accessor created_by: ::String
|
|
5456
|
+
attr_accessor last_updated_time: ::Time
|
|
5457
|
+
attr_accessor last_updated_by: ::String
|
|
5458
|
+
attr_accessor flow_definition: untyped
|
|
5459
|
+
attr_accessor step_aliases: ::Array[Types::StepAliasMapping]
|
|
5460
|
+
SENSITIVE: [:flow_definition]
|
|
5461
|
+
end
|
|
5462
|
+
|
|
5138
5463
|
class FlowSummary
|
|
5139
5464
|
attr_accessor arn: ::String
|
|
5140
5465
|
attr_accessor flow_id: ::String
|
|
@@ -6653,6 +6978,20 @@ module Aws::QuickSight
|
|
|
6653
6978
|
SENSITIVE: []
|
|
6654
6979
|
end
|
|
6655
6980
|
|
|
6981
|
+
class ListAgentsRequest
|
|
6982
|
+
attr_accessor aws_account_id: ::String
|
|
6983
|
+
attr_accessor max_results: ::Integer
|
|
6984
|
+
attr_accessor next_token: ::String
|
|
6985
|
+
SENSITIVE: []
|
|
6986
|
+
end
|
|
6987
|
+
|
|
6988
|
+
class ListAgentsResponse
|
|
6989
|
+
attr_accessor request_id: ::String
|
|
6990
|
+
attr_accessor agent_summaries: ::Array[Types::AgentSummary]
|
|
6991
|
+
attr_accessor next_token: ::String
|
|
6992
|
+
SENSITIVE: []
|
|
6993
|
+
end
|
|
6994
|
+
|
|
6656
6995
|
class ListAnalysesRequest
|
|
6657
6996
|
attr_accessor aws_account_id: ::String
|
|
6658
6997
|
attr_accessor next_token: ::String
|
|
@@ -6980,6 +7319,21 @@ module Aws::QuickSight
|
|
|
6980
7319
|
SENSITIVE: []
|
|
6981
7320
|
end
|
|
6982
7321
|
|
|
7322
|
+
class ListOAuthClientApplicationsRequest
|
|
7323
|
+
attr_accessor aws_account_id: ::String
|
|
7324
|
+
attr_accessor next_token: ::String
|
|
7325
|
+
attr_accessor max_results: ::Integer
|
|
7326
|
+
SENSITIVE: []
|
|
7327
|
+
end
|
|
7328
|
+
|
|
7329
|
+
class ListOAuthClientApplicationsResponse
|
|
7330
|
+
attr_accessor o_auth_client_applications: ::Array[Types::OAuthClientApplicationSummary]
|
|
7331
|
+
attr_accessor next_token: ::String
|
|
7332
|
+
attr_accessor request_id: ::String
|
|
7333
|
+
attr_accessor status: ::Integer
|
|
7334
|
+
SENSITIVE: []
|
|
7335
|
+
end
|
|
7336
|
+
|
|
6983
7337
|
class ListRefreshSchedulesRequest
|
|
6984
7338
|
attr_accessor aws_account_id: ::String
|
|
6985
7339
|
attr_accessor data_set_id: ::String
|
|
@@ -7026,6 +7380,36 @@ module Aws::QuickSight
|
|
|
7026
7380
|
SENSITIVE: []
|
|
7027
7381
|
end
|
|
7028
7382
|
|
|
7383
|
+
class ListSpaceResourcesRequest
|
|
7384
|
+
attr_accessor aws_account_id: ::String
|
|
7385
|
+
attr_accessor space_id: ::String
|
|
7386
|
+
SENSITIVE: []
|
|
7387
|
+
end
|
|
7388
|
+
|
|
7389
|
+
class ListSpaceResourcesResponse
|
|
7390
|
+
attr_accessor space_id: ::String
|
|
7391
|
+
attr_accessor space_arn: ::String
|
|
7392
|
+
attr_accessor space_resources: ::Array[Types::SpaceResourceSummary]
|
|
7393
|
+
attr_accessor request_id: ::String
|
|
7394
|
+
SENSITIVE: []
|
|
7395
|
+
end
|
|
7396
|
+
|
|
7397
|
+
class ListSpacesRequest
|
|
7398
|
+
attr_accessor aws_account_id: ::String
|
|
7399
|
+
attr_accessor next_token: ::String
|
|
7400
|
+
attr_accessor max_results: ::Integer
|
|
7401
|
+
SENSITIVE: []
|
|
7402
|
+
end
|
|
7403
|
+
|
|
7404
|
+
class ListSpacesResponse
|
|
7405
|
+
attr_accessor space_id: ::String
|
|
7406
|
+
attr_accessor space_arn: ::String
|
|
7407
|
+
attr_accessor space_summaries: ::Array[Types::SpaceSummary]
|
|
7408
|
+
attr_accessor next_token: ::String
|
|
7409
|
+
attr_accessor request_id: ::String
|
|
7410
|
+
SENSITIVE: []
|
|
7411
|
+
end
|
|
7412
|
+
|
|
7029
7413
|
class ListTagsForResourceRequest
|
|
7030
7414
|
attr_accessor resource_arn: ::String
|
|
7031
7415
|
SENSITIVE: []
|
|
@@ -7551,6 +7935,33 @@ module Aws::QuickSight
|
|
|
7551
7935
|
SENSITIVE: []
|
|
7552
7936
|
end
|
|
7553
7937
|
|
|
7938
|
+
class OAuthClientApplication
|
|
7939
|
+
attr_accessor o_auth_client_application_id: ::String
|
|
7940
|
+
attr_accessor name: ::String
|
|
7941
|
+
attr_accessor o_auth_client_authentication_type: ("TOKEN")
|
|
7942
|
+
attr_accessor o_auth_token_endpoint_url: ::String
|
|
7943
|
+
attr_accessor o_auth_authorization_endpoint_url: ::String
|
|
7944
|
+
attr_accessor o_auth_scopes: ::String
|
|
7945
|
+
attr_accessor data_source_type: ("ADOBE_ANALYTICS" | "AMAZON_ELASTICSEARCH" | "ATHENA" | "AURORA" | "AURORA_POSTGRESQL" | "AWS_IOT_ANALYTICS" | "GITHUB" | "JIRA" | "MARIADB" | "MYSQL" | "ORACLE" | "POSTGRESQL" | "PRESTO" | "REDSHIFT" | "S3" | "S3_TABLES" | "SALESFORCE" | "SERVICENOW" | "SNOWFLAKE" | "SPARK" | "SQLSERVER" | "TERADATA" | "TWITTER" | "TIMESTREAM" | "AMAZON_OPENSEARCH" | "EXASOL" | "DATABRICKS" | "STARBURST" | "TRINO" | "BIGQUERY" | "GOOGLESHEETS" | "GOOGLE_DRIVE" | "CONFLUENCE" | "SHAREPOINT" | "ONE_DRIVE" | "WEB_CRAWLER" | "S3_KNOWLEDGE_BASE" | "QBUSINESS")
|
|
7946
|
+
attr_accessor identity_provider_vpc_connection_properties: Types::VpcConnectionProperties
|
|
7947
|
+
attr_accessor created_time: ::Time
|
|
7948
|
+
attr_accessor last_updated_time: ::Time
|
|
7949
|
+
attr_accessor arn: ::String
|
|
7950
|
+
SENSITIVE: [:o_auth_token_endpoint_url, :o_auth_authorization_endpoint_url]
|
|
7951
|
+
end
|
|
7952
|
+
|
|
7953
|
+
class OAuthClientApplicationSummary
|
|
7954
|
+
attr_accessor o_auth_client_application_id: ::String
|
|
7955
|
+
attr_accessor name: ::String
|
|
7956
|
+
attr_accessor o_auth_client_authentication_type: ("TOKEN")
|
|
7957
|
+
attr_accessor data_source_type: ("ADOBE_ANALYTICS" | "AMAZON_ELASTICSEARCH" | "ATHENA" | "AURORA" | "AURORA_POSTGRESQL" | "AWS_IOT_ANALYTICS" | "GITHUB" | "JIRA" | "MARIADB" | "MYSQL" | "ORACLE" | "POSTGRESQL" | "PRESTO" | "REDSHIFT" | "S3" | "S3_TABLES" | "SALESFORCE" | "SERVICENOW" | "SNOWFLAKE" | "SPARK" | "SQLSERVER" | "TERADATA" | "TWITTER" | "TIMESTREAM" | "AMAZON_OPENSEARCH" | "EXASOL" | "DATABRICKS" | "STARBURST" | "TRINO" | "BIGQUERY" | "GOOGLESHEETS" | "GOOGLE_DRIVE" | "CONFLUENCE" | "SHAREPOINT" | "ONE_DRIVE" | "WEB_CRAWLER" | "S3_KNOWLEDGE_BASE" | "QBUSINESS")
|
|
7958
|
+
attr_accessor identity_provider_vpc_connection_properties: Types::VpcConnectionProperties
|
|
7959
|
+
attr_accessor created_time: ::Time
|
|
7960
|
+
attr_accessor last_updated_time: ::Time
|
|
7961
|
+
attr_accessor arn: ::String
|
|
7962
|
+
SENSITIVE: []
|
|
7963
|
+
end
|
|
7964
|
+
|
|
7554
7965
|
class OAuthClientCredentials
|
|
7555
7966
|
attr_accessor client_id: ::String
|
|
7556
7967
|
attr_accessor client_secret: ::String
|
|
@@ -8884,6 +9295,21 @@ module Aws::QuickSight
|
|
|
8884
9295
|
SENSITIVE: []
|
|
8885
9296
|
end
|
|
8886
9297
|
|
|
9298
|
+
class SearchAgentsRequest
|
|
9299
|
+
attr_accessor aws_account_id: ::String
|
|
9300
|
+
attr_accessor filters: ::Array[Types::AgentSearchFilter]
|
|
9301
|
+
attr_accessor max_results: ::Integer
|
|
9302
|
+
attr_accessor next_token: ::String
|
|
9303
|
+
SENSITIVE: []
|
|
9304
|
+
end
|
|
9305
|
+
|
|
9306
|
+
class SearchAgentsResponse
|
|
9307
|
+
attr_accessor agent_summaries: ::Array[Types::AgentSummary]
|
|
9308
|
+
attr_accessor next_token: ::String
|
|
9309
|
+
attr_accessor request_id: ::String
|
|
9310
|
+
SENSITIVE: []
|
|
9311
|
+
end
|
|
9312
|
+
|
|
8887
9313
|
class SearchAnalysesRequest
|
|
8888
9314
|
attr_accessor aws_account_id: ::String
|
|
8889
9315
|
attr_accessor filters: ::Array[Types::AnalysisSearchFilter]
|
|
@@ -9004,6 +9430,23 @@ module Aws::QuickSight
|
|
|
9004
9430
|
SENSITIVE: []
|
|
9005
9431
|
end
|
|
9006
9432
|
|
|
9433
|
+
class SearchSpacesRequest
|
|
9434
|
+
attr_accessor aws_account_id: ::String
|
|
9435
|
+
attr_accessor next_token: ::String
|
|
9436
|
+
attr_accessor max_results: ::Integer
|
|
9437
|
+
attr_accessor filters: ::Array[Types::SpaceQuicksightSearchFilter]
|
|
9438
|
+
SENSITIVE: []
|
|
9439
|
+
end
|
|
9440
|
+
|
|
9441
|
+
class SearchSpacesResponse
|
|
9442
|
+
attr_accessor space_id: ::String
|
|
9443
|
+
attr_accessor space_arn: ::String
|
|
9444
|
+
attr_accessor space_summaries: ::Array[Types::SpaceSummary]
|
|
9445
|
+
attr_accessor next_token: ::String
|
|
9446
|
+
attr_accessor request_id: ::String
|
|
9447
|
+
SENSITIVE: []
|
|
9448
|
+
end
|
|
9449
|
+
|
|
9007
9450
|
class SearchTopicsRequest
|
|
9008
9451
|
attr_accessor aws_account_id: ::String
|
|
9009
9452
|
attr_accessor filters: ::Array[Types::TopicSearchFilter]
|
|
@@ -9466,6 +9909,79 @@ module Aws::QuickSight
|
|
|
9466
9909
|
SENSITIVE: []
|
|
9467
9910
|
end
|
|
9468
9911
|
|
|
9912
|
+
class SpaceContributor
|
|
9913
|
+
attr_accessor user_name: ::String
|
|
9914
|
+
attr_accessor raw_file_size_bytes: ::Integer
|
|
9915
|
+
attr_accessor percentage: ::Float
|
|
9916
|
+
SENSITIVE: []
|
|
9917
|
+
end
|
|
9918
|
+
|
|
9919
|
+
class SpaceDetails
|
|
9920
|
+
attr_accessor name: ::String
|
|
9921
|
+
attr_accessor description: ::String
|
|
9922
|
+
attr_accessor resources: ::Array[Types::SpaceQuickSightResource]
|
|
9923
|
+
attr_accessor created_at: ::Time
|
|
9924
|
+
attr_accessor updated_at: ::Time
|
|
9925
|
+
attr_accessor consumed_source_size: ::Integer
|
|
9926
|
+
attr_accessor consumed_source_doc_count: ::Integer
|
|
9927
|
+
attr_accessor created_by: ::String
|
|
9928
|
+
attr_accessor created_by_arn: ::String
|
|
9929
|
+
SENSITIVE: [:description]
|
|
9930
|
+
end
|
|
9931
|
+
|
|
9932
|
+
class SpaceQuickSightResource
|
|
9933
|
+
attr_accessor resource_type: ("TOPIC" | "DASHBOARD" | "KNOWLEDGE_BASE" | "SPACE" | "ACTION_CONNECTOR" | "DATA_SET" | "ARTIFACT")
|
|
9934
|
+
attr_accessor resource_details: Types::SpaceQuickSightResourceDetails
|
|
9935
|
+
SENSITIVE: []
|
|
9936
|
+
end
|
|
9937
|
+
|
|
9938
|
+
class SpaceQuickSightResourceDetails
|
|
9939
|
+
attr_accessor resource_arn: ::String
|
|
9940
|
+
attr_accessor unknown: untyped
|
|
9941
|
+
SENSITIVE: []
|
|
9942
|
+
|
|
9943
|
+
class ResourceArn < SpaceQuickSightResourceDetails
|
|
9944
|
+
end
|
|
9945
|
+
class Unknown < SpaceQuickSightResourceDetails
|
|
9946
|
+
end
|
|
9947
|
+
end
|
|
9948
|
+
|
|
9949
|
+
class SpaceQuicksightSearchFilter
|
|
9950
|
+
attr_accessor name: ("SPACE_ID" | "SPACE_NAME" | "DIRECT_QUICKSIGHT_OWNER" | "DIRECT_QUICKSIGHT_VIEWER_OR_OWNER" | "DIRECT_QUICKSIGHT_SOLE_OWNER" | "CONTRIBUTED_BY" | "CONSUMED_SOURCE_SIZE" | "CREATED_BY")
|
|
9951
|
+
attr_accessor operator: ("STRING_EQUALS" | "STRING_LIKE" | "NUMBER_RANGE")
|
|
9952
|
+
attr_accessor value: ::String
|
|
9953
|
+
SENSITIVE: []
|
|
9954
|
+
end
|
|
9955
|
+
|
|
9956
|
+
class SpaceResourceOperation
|
|
9957
|
+
attr_accessor resource_type: ("TOPIC" | "DASHBOARD" | "KNOWLEDGE_BASE" | "SPACE" | "ACTION_CONNECTOR" | "DATA_SET" | "ARTIFACT")
|
|
9958
|
+
attr_accessor resource_details: Types::SpaceQuickSightResourceDetails
|
|
9959
|
+
SENSITIVE: []
|
|
9960
|
+
end
|
|
9961
|
+
|
|
9962
|
+
class SpaceResourceSummary
|
|
9963
|
+
attr_accessor resource_type: ("TOPIC" | "DASHBOARD" | "KNOWLEDGE_BASE" | "SPACE" | "ACTION_CONNECTOR" | "DATA_SET" | "ARTIFACT")
|
|
9964
|
+
attr_accessor resource_details: Types::SpaceQuickSightResourceDetails
|
|
9965
|
+
attr_accessor resource_name: ::String
|
|
9966
|
+
attr_accessor updated_at: ::Time
|
|
9967
|
+
SENSITIVE: []
|
|
9968
|
+
end
|
|
9969
|
+
|
|
9970
|
+
class SpaceSummary
|
|
9971
|
+
attr_accessor space_id: ::String
|
|
9972
|
+
attr_accessor space_arn: ::String
|
|
9973
|
+
attr_accessor name: ::String
|
|
9974
|
+
attr_accessor description: ::String
|
|
9975
|
+
attr_accessor updated_at: ::Time
|
|
9976
|
+
attr_accessor consumed_source_size: ::Integer
|
|
9977
|
+
attr_accessor consumed_source_doc_count: ::Integer
|
|
9978
|
+
attr_accessor created_at: ::Time
|
|
9979
|
+
attr_accessor created_by: ::String
|
|
9980
|
+
attr_accessor created_by_arn: ::String
|
|
9981
|
+
attr_accessor resources_count: ::Integer
|
|
9982
|
+
SENSITIVE: [:description]
|
|
9983
|
+
end
|
|
9984
|
+
|
|
9469
9985
|
class Spacing
|
|
9470
9986
|
attr_accessor top: ::String
|
|
9471
9987
|
attr_accessor bottom: ::String
|
|
@@ -9640,6 +10156,12 @@ module Aws::QuickSight
|
|
|
9640
10156
|
SENSITIVE: []
|
|
9641
10157
|
end
|
|
9642
10158
|
|
|
10159
|
+
class StepAliasMapping
|
|
10160
|
+
attr_accessor step_id: ::String
|
|
10161
|
+
attr_accessor step_alias: ::String
|
|
10162
|
+
SENSITIVE: []
|
|
10163
|
+
end
|
|
10164
|
+
|
|
9643
10165
|
class StringDatasetParameter
|
|
9644
10166
|
attr_accessor id: ::String
|
|
9645
10167
|
attr_accessor name: ::String
|
|
@@ -10855,6 +11377,50 @@ module Aws::QuickSight
|
|
|
10855
11377
|
SENSITIVE: []
|
|
10856
11378
|
end
|
|
10857
11379
|
|
|
11380
|
+
class UpdateAgentPermissionsRequest
|
|
11381
|
+
attr_accessor agent_id: ::String
|
|
11382
|
+
attr_accessor aws_account_id: ::String
|
|
11383
|
+
attr_accessor grant_permissions: ::Array[Types::ResourcePermission]
|
|
11384
|
+
attr_accessor revoke_permissions: ::Array[Types::ResourcePermission]
|
|
11385
|
+
SENSITIVE: []
|
|
11386
|
+
end
|
|
11387
|
+
|
|
11388
|
+
class UpdateAgentPermissionsResponse
|
|
11389
|
+
attr_accessor arn: ::String
|
|
11390
|
+
attr_accessor agent_id: ::String
|
|
11391
|
+
attr_accessor request_id: ::String
|
|
11392
|
+
attr_accessor permissions: ::Array[Types::ResourcePermission]
|
|
11393
|
+
SENSITIVE: []
|
|
11394
|
+
end
|
|
11395
|
+
|
|
11396
|
+
class UpdateAgentRequest
|
|
11397
|
+
attr_accessor agent_id: ::String
|
|
11398
|
+
attr_accessor aws_account_id: ::String
|
|
11399
|
+
attr_accessor name: ::String
|
|
11400
|
+
attr_accessor description: ::String
|
|
11401
|
+
attr_accessor icon_id: ::String
|
|
11402
|
+
attr_accessor starter_prompts: ::Array[::String]
|
|
11403
|
+
attr_accessor welcome_message: ::String
|
|
11404
|
+
attr_accessor custom_prompt_input: Types::CustomPromptInput
|
|
11405
|
+
attr_accessor spaces_to_add: ::Array[::String]
|
|
11406
|
+
attr_accessor spaces_to_remove: ::Array[::String]
|
|
11407
|
+
attr_accessor action_connectors_to_add: ::Array[::String]
|
|
11408
|
+
attr_accessor action_connectors_to_remove: ::Array[::String]
|
|
11409
|
+
SENSITIVE: [:starter_prompts, :welcome_message, :custom_prompt_input]
|
|
11410
|
+
end
|
|
11411
|
+
|
|
11412
|
+
class UpdateAgentResponse
|
|
11413
|
+
attr_accessor arn: ::String
|
|
11414
|
+
attr_accessor agent_id: ::String
|
|
11415
|
+
attr_accessor agent_status: ("ACTIVE" | "UPDATING" | "FAILED" | "CREATING")
|
|
11416
|
+
attr_accessor failed_to_add_spaces: ::Array[Types::FailedToUpdateAssociation]
|
|
11417
|
+
attr_accessor failed_to_remove_spaces: ::Array[Types::FailedToUpdateAssociation]
|
|
11418
|
+
attr_accessor failed_to_add_action_connectors: ::Array[Types::FailedToUpdateAssociation]
|
|
11419
|
+
attr_accessor failed_to_remove_action_connectors: ::Array[Types::FailedToUpdateAssociation]
|
|
11420
|
+
attr_accessor request_id: ::String
|
|
11421
|
+
SENSITIVE: []
|
|
11422
|
+
end
|
|
11423
|
+
|
|
10858
11424
|
class UpdateAnalysisPermissionsRequest
|
|
10859
11425
|
attr_accessor aws_account_id: ::String
|
|
10860
11426
|
attr_accessor analysis_id: ::String
|
|
@@ -11157,6 +11723,24 @@ module Aws::QuickSight
|
|
|
11157
11723
|
SENSITIVE: []
|
|
11158
11724
|
end
|
|
11159
11725
|
|
|
11726
|
+
class UpdateFlowRequest
|
|
11727
|
+
attr_accessor aws_account_id: ::String
|
|
11728
|
+
attr_accessor flow_id: ::String
|
|
11729
|
+
attr_accessor name: ::String
|
|
11730
|
+
attr_accessor description: ::String
|
|
11731
|
+
attr_accessor flow_definition: untyped
|
|
11732
|
+
attr_accessor client_token: ::String
|
|
11733
|
+
SENSITIVE: [:flow_definition]
|
|
11734
|
+
end
|
|
11735
|
+
|
|
11736
|
+
class UpdateFlowResponse
|
|
11737
|
+
attr_accessor arn: ::String
|
|
11738
|
+
attr_accessor flow_id: ::String
|
|
11739
|
+
attr_accessor request_id: ::String
|
|
11740
|
+
attr_accessor status: ::Integer
|
|
11741
|
+
SENSITIVE: []
|
|
11742
|
+
end
|
|
11743
|
+
|
|
11160
11744
|
class UpdateFolderPermissionsRequest
|
|
11161
11745
|
attr_accessor aws_account_id: ::String
|
|
11162
11746
|
attr_accessor folder_id: ::String
|
|
@@ -11267,6 +11851,29 @@ module Aws::QuickSight
|
|
|
11267
11851
|
SENSITIVE: []
|
|
11268
11852
|
end
|
|
11269
11853
|
|
|
11854
|
+
class UpdateOAuthClientApplicationRequest
|
|
11855
|
+
attr_accessor aws_account_id: ::String
|
|
11856
|
+
attr_accessor o_auth_client_application_id: ::String
|
|
11857
|
+
attr_accessor name: ::String
|
|
11858
|
+
attr_accessor client_id: ::String
|
|
11859
|
+
attr_accessor client_secret: ::String
|
|
11860
|
+
attr_accessor o_auth_token_endpoint_url: ::String
|
|
11861
|
+
attr_accessor o_auth_authorization_endpoint_url: ::String
|
|
11862
|
+
attr_accessor o_auth_scopes: ::String
|
|
11863
|
+
attr_accessor data_source_type: ("ADOBE_ANALYTICS" | "AMAZON_ELASTICSEARCH" | "ATHENA" | "AURORA" | "AURORA_POSTGRESQL" | "AWS_IOT_ANALYTICS" | "GITHUB" | "JIRA" | "MARIADB" | "MYSQL" | "ORACLE" | "POSTGRESQL" | "PRESTO" | "REDSHIFT" | "S3" | "S3_TABLES" | "SALESFORCE" | "SERVICENOW" | "SNOWFLAKE" | "SPARK" | "SQLSERVER" | "TERADATA" | "TWITTER" | "TIMESTREAM" | "AMAZON_OPENSEARCH" | "EXASOL" | "DATABRICKS" | "STARBURST" | "TRINO" | "BIGQUERY" | "GOOGLESHEETS" | "GOOGLE_DRIVE" | "CONFLUENCE" | "SHAREPOINT" | "ONE_DRIVE" | "WEB_CRAWLER" | "S3_KNOWLEDGE_BASE" | "QBUSINESS")
|
|
11864
|
+
attr_accessor identity_provider_vpc_connection_properties: Types::VpcConnectionProperties
|
|
11865
|
+
SENSITIVE: [:client_id, :client_secret, :o_auth_token_endpoint_url, :o_auth_authorization_endpoint_url]
|
|
11866
|
+
end
|
|
11867
|
+
|
|
11868
|
+
class UpdateOAuthClientApplicationResponse
|
|
11869
|
+
attr_accessor arn: ::String
|
|
11870
|
+
attr_accessor o_auth_client_application_id: ::String
|
|
11871
|
+
attr_accessor update_status: ("CREATION_IN_PROGRESS" | "CREATION_SUCCESSFUL" | "CREATION_FAILED" | "UPDATE_IN_PROGRESS" | "UPDATE_SUCCESSFUL" | "UPDATE_FAILED" | "DELETED")
|
|
11872
|
+
attr_accessor request_id: ::String
|
|
11873
|
+
attr_accessor status: ::Integer
|
|
11874
|
+
SENSITIVE: []
|
|
11875
|
+
end
|
|
11876
|
+
|
|
11270
11877
|
class UpdatePublicSharingSettingsRequest
|
|
11271
11878
|
attr_accessor aws_account_id: ::String
|
|
11272
11879
|
attr_accessor public_sharing_enabled: bool
|
|
@@ -11374,6 +11981,53 @@ module Aws::QuickSight
|
|
|
11374
11981
|
SENSITIVE: []
|
|
11375
11982
|
end
|
|
11376
11983
|
|
|
11984
|
+
class UpdateSpacePermissionsRequest
|
|
11985
|
+
attr_accessor aws_account_id: ::String
|
|
11986
|
+
attr_accessor space_id: ::String
|
|
11987
|
+
attr_accessor grant_permissions: ::Array[Types::ResourcePermission]
|
|
11988
|
+
attr_accessor revoke_permissions: ::Array[Types::ResourcePermission]
|
|
11989
|
+
SENSITIVE: []
|
|
11990
|
+
end
|
|
11991
|
+
|
|
11992
|
+
class UpdateSpacePermissionsResponse
|
|
11993
|
+
attr_accessor space_id: ::String
|
|
11994
|
+
attr_accessor space_arn: ::String
|
|
11995
|
+
attr_accessor permissions: ::Array[Types::ResourcePermission]
|
|
11996
|
+
attr_accessor request_id: ::String
|
|
11997
|
+
SENSITIVE: []
|
|
11998
|
+
end
|
|
11999
|
+
|
|
12000
|
+
class UpdateSpaceRequest
|
|
12001
|
+
attr_accessor aws_account_id: ::String
|
|
12002
|
+
attr_accessor space_id: ::String
|
|
12003
|
+
attr_accessor name: ::String
|
|
12004
|
+
attr_accessor description: ::String
|
|
12005
|
+
SENSITIVE: [:description]
|
|
12006
|
+
end
|
|
12007
|
+
|
|
12008
|
+
class UpdateSpaceResourcesRequest
|
|
12009
|
+
attr_accessor aws_account_id: ::String
|
|
12010
|
+
attr_accessor space_id: ::String
|
|
12011
|
+
attr_accessor add_resources: ::Array[Types::SpaceResourceOperation]
|
|
12012
|
+
attr_accessor remove_resources: ::Array[Types::SpaceResourceOperation]
|
|
12013
|
+
SENSITIVE: []
|
|
12014
|
+
end
|
|
12015
|
+
|
|
12016
|
+
class UpdateSpaceResourcesResponse
|
|
12017
|
+
attr_accessor space_id: ::String
|
|
12018
|
+
attr_accessor space_arn: ::String
|
|
12019
|
+
attr_accessor failed_resource_operations: ::Array[Types::FailedSpaceResourceOperation]
|
|
12020
|
+
attr_accessor request_id: ::String
|
|
12021
|
+
SENSITIVE: []
|
|
12022
|
+
end
|
|
12023
|
+
|
|
12024
|
+
class UpdateSpaceResponse
|
|
12025
|
+
attr_accessor space_id: ::String
|
|
12026
|
+
attr_accessor space_arn: ::String
|
|
12027
|
+
attr_accessor request_id: ::String
|
|
12028
|
+
SENSITIVE: []
|
|
12029
|
+
end
|
|
12030
|
+
|
|
11377
12031
|
class UpdateTemplateAliasRequest
|
|
11378
12032
|
attr_accessor aws_account_id: ::String
|
|
11379
12033
|
attr_accessor template_id: ::String
|