aws-sdk-quicksight 1.131.0 → 1.133.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 +69 -1
- data/lib/aws-sdk-quicksight/client_api.rb +38 -8
- data/lib/aws-sdk-quicksight/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-quicksight/endpoints.rb +2 -1978
- data/lib/aws-sdk-quicksight/plugins/endpoints.rb +1 -366
- data/lib/aws-sdk-quicksight/types.rb +61 -2
- data/lib/aws-sdk-quicksight.rb +1 -1
- data/sig/client.rbs +16 -1
- data/sig/types.rbs +15 -0
- metadata +4 -4
@@ -27,7 +27,7 @@ The endpoint provider used to resolve endpoints. Any object that responds to
|
|
27
27
|
class Handler < Seahorse::Client::Handler
|
28
28
|
def call(context)
|
29
29
|
unless context[:discovered_endpoint]
|
30
|
-
params = parameters_for_operation(context)
|
30
|
+
params = Aws::QuickSight::Endpoints.parameters_for_operation(context)
|
31
31
|
endpoint = context.config.endpoint_provider.resolve_endpoint(params)
|
32
32
|
|
33
33
|
context.http_request.endpoint = endpoint.url
|
@@ -67,371 +67,6 @@ The endpoint provider used to resolve endpoints. Any object that responds to
|
|
67
67
|
context.http_request.headers[key] = value
|
68
68
|
end
|
69
69
|
end
|
70
|
-
|
71
|
-
def parameters_for_operation(context)
|
72
|
-
case context.operation_name
|
73
|
-
when :batch_create_topic_reviewed_answer
|
74
|
-
Aws::QuickSight::Endpoints::BatchCreateTopicReviewedAnswer.build(context)
|
75
|
-
when :batch_delete_topic_reviewed_answer
|
76
|
-
Aws::QuickSight::Endpoints::BatchDeleteTopicReviewedAnswer.build(context)
|
77
|
-
when :cancel_ingestion
|
78
|
-
Aws::QuickSight::Endpoints::CancelIngestion.build(context)
|
79
|
-
when :create_account_customization
|
80
|
-
Aws::QuickSight::Endpoints::CreateAccountCustomization.build(context)
|
81
|
-
when :create_account_subscription
|
82
|
-
Aws::QuickSight::Endpoints::CreateAccountSubscription.build(context)
|
83
|
-
when :create_analysis
|
84
|
-
Aws::QuickSight::Endpoints::CreateAnalysis.build(context)
|
85
|
-
when :create_dashboard
|
86
|
-
Aws::QuickSight::Endpoints::CreateDashboard.build(context)
|
87
|
-
when :create_data_set
|
88
|
-
Aws::QuickSight::Endpoints::CreateDataSet.build(context)
|
89
|
-
when :create_data_source
|
90
|
-
Aws::QuickSight::Endpoints::CreateDataSource.build(context)
|
91
|
-
when :create_folder
|
92
|
-
Aws::QuickSight::Endpoints::CreateFolder.build(context)
|
93
|
-
when :create_folder_membership
|
94
|
-
Aws::QuickSight::Endpoints::CreateFolderMembership.build(context)
|
95
|
-
when :create_group
|
96
|
-
Aws::QuickSight::Endpoints::CreateGroup.build(context)
|
97
|
-
when :create_group_membership
|
98
|
-
Aws::QuickSight::Endpoints::CreateGroupMembership.build(context)
|
99
|
-
when :create_iam_policy_assignment
|
100
|
-
Aws::QuickSight::Endpoints::CreateIAMPolicyAssignment.build(context)
|
101
|
-
when :create_ingestion
|
102
|
-
Aws::QuickSight::Endpoints::CreateIngestion.build(context)
|
103
|
-
when :create_namespace
|
104
|
-
Aws::QuickSight::Endpoints::CreateNamespace.build(context)
|
105
|
-
when :create_refresh_schedule
|
106
|
-
Aws::QuickSight::Endpoints::CreateRefreshSchedule.build(context)
|
107
|
-
when :create_role_membership
|
108
|
-
Aws::QuickSight::Endpoints::CreateRoleMembership.build(context)
|
109
|
-
when :create_template
|
110
|
-
Aws::QuickSight::Endpoints::CreateTemplate.build(context)
|
111
|
-
when :create_template_alias
|
112
|
-
Aws::QuickSight::Endpoints::CreateTemplateAlias.build(context)
|
113
|
-
when :create_theme
|
114
|
-
Aws::QuickSight::Endpoints::CreateTheme.build(context)
|
115
|
-
when :create_theme_alias
|
116
|
-
Aws::QuickSight::Endpoints::CreateThemeAlias.build(context)
|
117
|
-
when :create_topic
|
118
|
-
Aws::QuickSight::Endpoints::CreateTopic.build(context)
|
119
|
-
when :create_topic_refresh_schedule
|
120
|
-
Aws::QuickSight::Endpoints::CreateTopicRefreshSchedule.build(context)
|
121
|
-
when :create_vpc_connection
|
122
|
-
Aws::QuickSight::Endpoints::CreateVPCConnection.build(context)
|
123
|
-
when :delete_account_customization
|
124
|
-
Aws::QuickSight::Endpoints::DeleteAccountCustomization.build(context)
|
125
|
-
when :delete_account_subscription
|
126
|
-
Aws::QuickSight::Endpoints::DeleteAccountSubscription.build(context)
|
127
|
-
when :delete_analysis
|
128
|
-
Aws::QuickSight::Endpoints::DeleteAnalysis.build(context)
|
129
|
-
when :delete_dashboard
|
130
|
-
Aws::QuickSight::Endpoints::DeleteDashboard.build(context)
|
131
|
-
when :delete_data_set
|
132
|
-
Aws::QuickSight::Endpoints::DeleteDataSet.build(context)
|
133
|
-
when :delete_data_set_refresh_properties
|
134
|
-
Aws::QuickSight::Endpoints::DeleteDataSetRefreshProperties.build(context)
|
135
|
-
when :delete_data_source
|
136
|
-
Aws::QuickSight::Endpoints::DeleteDataSource.build(context)
|
137
|
-
when :delete_folder
|
138
|
-
Aws::QuickSight::Endpoints::DeleteFolder.build(context)
|
139
|
-
when :delete_folder_membership
|
140
|
-
Aws::QuickSight::Endpoints::DeleteFolderMembership.build(context)
|
141
|
-
when :delete_group
|
142
|
-
Aws::QuickSight::Endpoints::DeleteGroup.build(context)
|
143
|
-
when :delete_group_membership
|
144
|
-
Aws::QuickSight::Endpoints::DeleteGroupMembership.build(context)
|
145
|
-
when :delete_iam_policy_assignment
|
146
|
-
Aws::QuickSight::Endpoints::DeleteIAMPolicyAssignment.build(context)
|
147
|
-
when :delete_identity_propagation_config
|
148
|
-
Aws::QuickSight::Endpoints::DeleteIdentityPropagationConfig.build(context)
|
149
|
-
when :delete_namespace
|
150
|
-
Aws::QuickSight::Endpoints::DeleteNamespace.build(context)
|
151
|
-
when :delete_refresh_schedule
|
152
|
-
Aws::QuickSight::Endpoints::DeleteRefreshSchedule.build(context)
|
153
|
-
when :delete_role_custom_permission
|
154
|
-
Aws::QuickSight::Endpoints::DeleteRoleCustomPermission.build(context)
|
155
|
-
when :delete_role_membership
|
156
|
-
Aws::QuickSight::Endpoints::DeleteRoleMembership.build(context)
|
157
|
-
when :delete_template
|
158
|
-
Aws::QuickSight::Endpoints::DeleteTemplate.build(context)
|
159
|
-
when :delete_template_alias
|
160
|
-
Aws::QuickSight::Endpoints::DeleteTemplateAlias.build(context)
|
161
|
-
when :delete_theme
|
162
|
-
Aws::QuickSight::Endpoints::DeleteTheme.build(context)
|
163
|
-
when :delete_theme_alias
|
164
|
-
Aws::QuickSight::Endpoints::DeleteThemeAlias.build(context)
|
165
|
-
when :delete_topic
|
166
|
-
Aws::QuickSight::Endpoints::DeleteTopic.build(context)
|
167
|
-
when :delete_topic_refresh_schedule
|
168
|
-
Aws::QuickSight::Endpoints::DeleteTopicRefreshSchedule.build(context)
|
169
|
-
when :delete_user
|
170
|
-
Aws::QuickSight::Endpoints::DeleteUser.build(context)
|
171
|
-
when :delete_user_by_principal_id
|
172
|
-
Aws::QuickSight::Endpoints::DeleteUserByPrincipalId.build(context)
|
173
|
-
when :delete_vpc_connection
|
174
|
-
Aws::QuickSight::Endpoints::DeleteVPCConnection.build(context)
|
175
|
-
when :describe_account_customization
|
176
|
-
Aws::QuickSight::Endpoints::DescribeAccountCustomization.build(context)
|
177
|
-
when :describe_account_settings
|
178
|
-
Aws::QuickSight::Endpoints::DescribeAccountSettings.build(context)
|
179
|
-
when :describe_account_subscription
|
180
|
-
Aws::QuickSight::Endpoints::DescribeAccountSubscription.build(context)
|
181
|
-
when :describe_analysis
|
182
|
-
Aws::QuickSight::Endpoints::DescribeAnalysis.build(context)
|
183
|
-
when :describe_analysis_definition
|
184
|
-
Aws::QuickSight::Endpoints::DescribeAnalysisDefinition.build(context)
|
185
|
-
when :describe_analysis_permissions
|
186
|
-
Aws::QuickSight::Endpoints::DescribeAnalysisPermissions.build(context)
|
187
|
-
when :describe_asset_bundle_export_job
|
188
|
-
Aws::QuickSight::Endpoints::DescribeAssetBundleExportJob.build(context)
|
189
|
-
when :describe_asset_bundle_import_job
|
190
|
-
Aws::QuickSight::Endpoints::DescribeAssetBundleImportJob.build(context)
|
191
|
-
when :describe_dashboard
|
192
|
-
Aws::QuickSight::Endpoints::DescribeDashboard.build(context)
|
193
|
-
when :describe_dashboard_definition
|
194
|
-
Aws::QuickSight::Endpoints::DescribeDashboardDefinition.build(context)
|
195
|
-
when :describe_dashboard_permissions
|
196
|
-
Aws::QuickSight::Endpoints::DescribeDashboardPermissions.build(context)
|
197
|
-
when :describe_dashboard_snapshot_job
|
198
|
-
Aws::QuickSight::Endpoints::DescribeDashboardSnapshotJob.build(context)
|
199
|
-
when :describe_dashboard_snapshot_job_result
|
200
|
-
Aws::QuickSight::Endpoints::DescribeDashboardSnapshotJobResult.build(context)
|
201
|
-
when :describe_data_set
|
202
|
-
Aws::QuickSight::Endpoints::DescribeDataSet.build(context)
|
203
|
-
when :describe_data_set_permissions
|
204
|
-
Aws::QuickSight::Endpoints::DescribeDataSetPermissions.build(context)
|
205
|
-
when :describe_data_set_refresh_properties
|
206
|
-
Aws::QuickSight::Endpoints::DescribeDataSetRefreshProperties.build(context)
|
207
|
-
when :describe_data_source
|
208
|
-
Aws::QuickSight::Endpoints::DescribeDataSource.build(context)
|
209
|
-
when :describe_data_source_permissions
|
210
|
-
Aws::QuickSight::Endpoints::DescribeDataSourcePermissions.build(context)
|
211
|
-
when :describe_folder
|
212
|
-
Aws::QuickSight::Endpoints::DescribeFolder.build(context)
|
213
|
-
when :describe_folder_permissions
|
214
|
-
Aws::QuickSight::Endpoints::DescribeFolderPermissions.build(context)
|
215
|
-
when :describe_folder_resolved_permissions
|
216
|
-
Aws::QuickSight::Endpoints::DescribeFolderResolvedPermissions.build(context)
|
217
|
-
when :describe_group
|
218
|
-
Aws::QuickSight::Endpoints::DescribeGroup.build(context)
|
219
|
-
when :describe_group_membership
|
220
|
-
Aws::QuickSight::Endpoints::DescribeGroupMembership.build(context)
|
221
|
-
when :describe_iam_policy_assignment
|
222
|
-
Aws::QuickSight::Endpoints::DescribeIAMPolicyAssignment.build(context)
|
223
|
-
when :describe_ingestion
|
224
|
-
Aws::QuickSight::Endpoints::DescribeIngestion.build(context)
|
225
|
-
when :describe_ip_restriction
|
226
|
-
Aws::QuickSight::Endpoints::DescribeIpRestriction.build(context)
|
227
|
-
when :describe_key_registration
|
228
|
-
Aws::QuickSight::Endpoints::DescribeKeyRegistration.build(context)
|
229
|
-
when :describe_namespace
|
230
|
-
Aws::QuickSight::Endpoints::DescribeNamespace.build(context)
|
231
|
-
when :describe_q_personalization_configuration
|
232
|
-
Aws::QuickSight::Endpoints::DescribeQPersonalizationConfiguration.build(context)
|
233
|
-
when :describe_refresh_schedule
|
234
|
-
Aws::QuickSight::Endpoints::DescribeRefreshSchedule.build(context)
|
235
|
-
when :describe_role_custom_permission
|
236
|
-
Aws::QuickSight::Endpoints::DescribeRoleCustomPermission.build(context)
|
237
|
-
when :describe_template
|
238
|
-
Aws::QuickSight::Endpoints::DescribeTemplate.build(context)
|
239
|
-
when :describe_template_alias
|
240
|
-
Aws::QuickSight::Endpoints::DescribeTemplateAlias.build(context)
|
241
|
-
when :describe_template_definition
|
242
|
-
Aws::QuickSight::Endpoints::DescribeTemplateDefinition.build(context)
|
243
|
-
when :describe_template_permissions
|
244
|
-
Aws::QuickSight::Endpoints::DescribeTemplatePermissions.build(context)
|
245
|
-
when :describe_theme
|
246
|
-
Aws::QuickSight::Endpoints::DescribeTheme.build(context)
|
247
|
-
when :describe_theme_alias
|
248
|
-
Aws::QuickSight::Endpoints::DescribeThemeAlias.build(context)
|
249
|
-
when :describe_theme_permissions
|
250
|
-
Aws::QuickSight::Endpoints::DescribeThemePermissions.build(context)
|
251
|
-
when :describe_topic
|
252
|
-
Aws::QuickSight::Endpoints::DescribeTopic.build(context)
|
253
|
-
when :describe_topic_permissions
|
254
|
-
Aws::QuickSight::Endpoints::DescribeTopicPermissions.build(context)
|
255
|
-
when :describe_topic_refresh
|
256
|
-
Aws::QuickSight::Endpoints::DescribeTopicRefresh.build(context)
|
257
|
-
when :describe_topic_refresh_schedule
|
258
|
-
Aws::QuickSight::Endpoints::DescribeTopicRefreshSchedule.build(context)
|
259
|
-
when :describe_user
|
260
|
-
Aws::QuickSight::Endpoints::DescribeUser.build(context)
|
261
|
-
when :describe_vpc_connection
|
262
|
-
Aws::QuickSight::Endpoints::DescribeVPCConnection.build(context)
|
263
|
-
when :generate_embed_url_for_anonymous_user
|
264
|
-
Aws::QuickSight::Endpoints::GenerateEmbedUrlForAnonymousUser.build(context)
|
265
|
-
when :generate_embed_url_for_registered_user
|
266
|
-
Aws::QuickSight::Endpoints::GenerateEmbedUrlForRegisteredUser.build(context)
|
267
|
-
when :get_dashboard_embed_url
|
268
|
-
Aws::QuickSight::Endpoints::GetDashboardEmbedUrl.build(context)
|
269
|
-
when :get_session_embed_url
|
270
|
-
Aws::QuickSight::Endpoints::GetSessionEmbedUrl.build(context)
|
271
|
-
when :list_analyses
|
272
|
-
Aws::QuickSight::Endpoints::ListAnalyses.build(context)
|
273
|
-
when :list_asset_bundle_export_jobs
|
274
|
-
Aws::QuickSight::Endpoints::ListAssetBundleExportJobs.build(context)
|
275
|
-
when :list_asset_bundle_import_jobs
|
276
|
-
Aws::QuickSight::Endpoints::ListAssetBundleImportJobs.build(context)
|
277
|
-
when :list_dashboard_versions
|
278
|
-
Aws::QuickSight::Endpoints::ListDashboardVersions.build(context)
|
279
|
-
when :list_dashboards
|
280
|
-
Aws::QuickSight::Endpoints::ListDashboards.build(context)
|
281
|
-
when :list_data_sets
|
282
|
-
Aws::QuickSight::Endpoints::ListDataSets.build(context)
|
283
|
-
when :list_data_sources
|
284
|
-
Aws::QuickSight::Endpoints::ListDataSources.build(context)
|
285
|
-
when :list_folder_members
|
286
|
-
Aws::QuickSight::Endpoints::ListFolderMembers.build(context)
|
287
|
-
when :list_folders
|
288
|
-
Aws::QuickSight::Endpoints::ListFolders.build(context)
|
289
|
-
when :list_folders_for_resource
|
290
|
-
Aws::QuickSight::Endpoints::ListFoldersForResource.build(context)
|
291
|
-
when :list_group_memberships
|
292
|
-
Aws::QuickSight::Endpoints::ListGroupMemberships.build(context)
|
293
|
-
when :list_groups
|
294
|
-
Aws::QuickSight::Endpoints::ListGroups.build(context)
|
295
|
-
when :list_iam_policy_assignments
|
296
|
-
Aws::QuickSight::Endpoints::ListIAMPolicyAssignments.build(context)
|
297
|
-
when :list_iam_policy_assignments_for_user
|
298
|
-
Aws::QuickSight::Endpoints::ListIAMPolicyAssignmentsForUser.build(context)
|
299
|
-
when :list_identity_propagation_configs
|
300
|
-
Aws::QuickSight::Endpoints::ListIdentityPropagationConfigs.build(context)
|
301
|
-
when :list_ingestions
|
302
|
-
Aws::QuickSight::Endpoints::ListIngestions.build(context)
|
303
|
-
when :list_namespaces
|
304
|
-
Aws::QuickSight::Endpoints::ListNamespaces.build(context)
|
305
|
-
when :list_refresh_schedules
|
306
|
-
Aws::QuickSight::Endpoints::ListRefreshSchedules.build(context)
|
307
|
-
when :list_role_memberships
|
308
|
-
Aws::QuickSight::Endpoints::ListRoleMemberships.build(context)
|
309
|
-
when :list_tags_for_resource
|
310
|
-
Aws::QuickSight::Endpoints::ListTagsForResource.build(context)
|
311
|
-
when :list_template_aliases
|
312
|
-
Aws::QuickSight::Endpoints::ListTemplateAliases.build(context)
|
313
|
-
when :list_template_versions
|
314
|
-
Aws::QuickSight::Endpoints::ListTemplateVersions.build(context)
|
315
|
-
when :list_templates
|
316
|
-
Aws::QuickSight::Endpoints::ListTemplates.build(context)
|
317
|
-
when :list_theme_aliases
|
318
|
-
Aws::QuickSight::Endpoints::ListThemeAliases.build(context)
|
319
|
-
when :list_theme_versions
|
320
|
-
Aws::QuickSight::Endpoints::ListThemeVersions.build(context)
|
321
|
-
when :list_themes
|
322
|
-
Aws::QuickSight::Endpoints::ListThemes.build(context)
|
323
|
-
when :list_topic_refresh_schedules
|
324
|
-
Aws::QuickSight::Endpoints::ListTopicRefreshSchedules.build(context)
|
325
|
-
when :list_topic_reviewed_answers
|
326
|
-
Aws::QuickSight::Endpoints::ListTopicReviewedAnswers.build(context)
|
327
|
-
when :list_topics
|
328
|
-
Aws::QuickSight::Endpoints::ListTopics.build(context)
|
329
|
-
when :list_user_groups
|
330
|
-
Aws::QuickSight::Endpoints::ListUserGroups.build(context)
|
331
|
-
when :list_users
|
332
|
-
Aws::QuickSight::Endpoints::ListUsers.build(context)
|
333
|
-
when :list_vpc_connections
|
334
|
-
Aws::QuickSight::Endpoints::ListVPCConnections.build(context)
|
335
|
-
when :put_data_set_refresh_properties
|
336
|
-
Aws::QuickSight::Endpoints::PutDataSetRefreshProperties.build(context)
|
337
|
-
when :register_user
|
338
|
-
Aws::QuickSight::Endpoints::RegisterUser.build(context)
|
339
|
-
when :restore_analysis
|
340
|
-
Aws::QuickSight::Endpoints::RestoreAnalysis.build(context)
|
341
|
-
when :search_analyses
|
342
|
-
Aws::QuickSight::Endpoints::SearchAnalyses.build(context)
|
343
|
-
when :search_dashboards
|
344
|
-
Aws::QuickSight::Endpoints::SearchDashboards.build(context)
|
345
|
-
when :search_data_sets
|
346
|
-
Aws::QuickSight::Endpoints::SearchDataSets.build(context)
|
347
|
-
when :search_data_sources
|
348
|
-
Aws::QuickSight::Endpoints::SearchDataSources.build(context)
|
349
|
-
when :search_folders
|
350
|
-
Aws::QuickSight::Endpoints::SearchFolders.build(context)
|
351
|
-
when :search_groups
|
352
|
-
Aws::QuickSight::Endpoints::SearchGroups.build(context)
|
353
|
-
when :start_asset_bundle_export_job
|
354
|
-
Aws::QuickSight::Endpoints::StartAssetBundleExportJob.build(context)
|
355
|
-
when :start_asset_bundle_import_job
|
356
|
-
Aws::QuickSight::Endpoints::StartAssetBundleImportJob.build(context)
|
357
|
-
when :start_dashboard_snapshot_job
|
358
|
-
Aws::QuickSight::Endpoints::StartDashboardSnapshotJob.build(context)
|
359
|
-
when :tag_resource
|
360
|
-
Aws::QuickSight::Endpoints::TagResource.build(context)
|
361
|
-
when :untag_resource
|
362
|
-
Aws::QuickSight::Endpoints::UntagResource.build(context)
|
363
|
-
when :update_account_customization
|
364
|
-
Aws::QuickSight::Endpoints::UpdateAccountCustomization.build(context)
|
365
|
-
when :update_account_settings
|
366
|
-
Aws::QuickSight::Endpoints::UpdateAccountSettings.build(context)
|
367
|
-
when :update_analysis
|
368
|
-
Aws::QuickSight::Endpoints::UpdateAnalysis.build(context)
|
369
|
-
when :update_analysis_permissions
|
370
|
-
Aws::QuickSight::Endpoints::UpdateAnalysisPermissions.build(context)
|
371
|
-
when :update_dashboard
|
372
|
-
Aws::QuickSight::Endpoints::UpdateDashboard.build(context)
|
373
|
-
when :update_dashboard_links
|
374
|
-
Aws::QuickSight::Endpoints::UpdateDashboardLinks.build(context)
|
375
|
-
when :update_dashboard_permissions
|
376
|
-
Aws::QuickSight::Endpoints::UpdateDashboardPermissions.build(context)
|
377
|
-
when :update_dashboard_published_version
|
378
|
-
Aws::QuickSight::Endpoints::UpdateDashboardPublishedVersion.build(context)
|
379
|
-
when :update_data_set
|
380
|
-
Aws::QuickSight::Endpoints::UpdateDataSet.build(context)
|
381
|
-
when :update_data_set_permissions
|
382
|
-
Aws::QuickSight::Endpoints::UpdateDataSetPermissions.build(context)
|
383
|
-
when :update_data_source
|
384
|
-
Aws::QuickSight::Endpoints::UpdateDataSource.build(context)
|
385
|
-
when :update_data_source_permissions
|
386
|
-
Aws::QuickSight::Endpoints::UpdateDataSourcePermissions.build(context)
|
387
|
-
when :update_folder
|
388
|
-
Aws::QuickSight::Endpoints::UpdateFolder.build(context)
|
389
|
-
when :update_folder_permissions
|
390
|
-
Aws::QuickSight::Endpoints::UpdateFolderPermissions.build(context)
|
391
|
-
when :update_group
|
392
|
-
Aws::QuickSight::Endpoints::UpdateGroup.build(context)
|
393
|
-
when :update_iam_policy_assignment
|
394
|
-
Aws::QuickSight::Endpoints::UpdateIAMPolicyAssignment.build(context)
|
395
|
-
when :update_identity_propagation_config
|
396
|
-
Aws::QuickSight::Endpoints::UpdateIdentityPropagationConfig.build(context)
|
397
|
-
when :update_ip_restriction
|
398
|
-
Aws::QuickSight::Endpoints::UpdateIpRestriction.build(context)
|
399
|
-
when :update_key_registration
|
400
|
-
Aws::QuickSight::Endpoints::UpdateKeyRegistration.build(context)
|
401
|
-
when :update_public_sharing_settings
|
402
|
-
Aws::QuickSight::Endpoints::UpdatePublicSharingSettings.build(context)
|
403
|
-
when :update_q_personalization_configuration
|
404
|
-
Aws::QuickSight::Endpoints::UpdateQPersonalizationConfiguration.build(context)
|
405
|
-
when :update_refresh_schedule
|
406
|
-
Aws::QuickSight::Endpoints::UpdateRefreshSchedule.build(context)
|
407
|
-
when :update_role_custom_permission
|
408
|
-
Aws::QuickSight::Endpoints::UpdateRoleCustomPermission.build(context)
|
409
|
-
when :update_spice_capacity_configuration
|
410
|
-
Aws::QuickSight::Endpoints::UpdateSPICECapacityConfiguration.build(context)
|
411
|
-
when :update_template
|
412
|
-
Aws::QuickSight::Endpoints::UpdateTemplate.build(context)
|
413
|
-
when :update_template_alias
|
414
|
-
Aws::QuickSight::Endpoints::UpdateTemplateAlias.build(context)
|
415
|
-
when :update_template_permissions
|
416
|
-
Aws::QuickSight::Endpoints::UpdateTemplatePermissions.build(context)
|
417
|
-
when :update_theme
|
418
|
-
Aws::QuickSight::Endpoints::UpdateTheme.build(context)
|
419
|
-
when :update_theme_alias
|
420
|
-
Aws::QuickSight::Endpoints::UpdateThemeAlias.build(context)
|
421
|
-
when :update_theme_permissions
|
422
|
-
Aws::QuickSight::Endpoints::UpdateThemePermissions.build(context)
|
423
|
-
when :update_topic
|
424
|
-
Aws::QuickSight::Endpoints::UpdateTopic.build(context)
|
425
|
-
when :update_topic_permissions
|
426
|
-
Aws::QuickSight::Endpoints::UpdateTopicPermissions.build(context)
|
427
|
-
when :update_topic_refresh_schedule
|
428
|
-
Aws::QuickSight::Endpoints::UpdateTopicRefreshSchedule.build(context)
|
429
|
-
when :update_user
|
430
|
-
Aws::QuickSight::Endpoints::UpdateUser.build(context)
|
431
|
-
when :update_vpc_connection
|
432
|
-
Aws::QuickSight::Endpoints::UpdateVPCConnection.build(context)
|
433
|
-
end
|
434
|
-
end
|
435
70
|
end
|
436
71
|
|
437
72
|
def add_handlers(handlers, _config)
|
@@ -25487,11 +25487,21 @@ module Aws::QuickSight
|
|
25487
25487
|
# The ID of the analysis that you're restoring.
|
25488
25488
|
# @return [String]
|
25489
25489
|
#
|
25490
|
+
# @!attribute [rw] restore_to_folders
|
25491
|
+
# A boolean value that determines if the analysis will be restored to
|
25492
|
+
# folders that it previously resided in. A `True` value restores
|
25493
|
+
# analysis back to all folders that it previously resided in. A
|
25494
|
+
# `False` value restores the analysis but does not restore the
|
25495
|
+
# analysis back to all previously resided folders. Restoring a
|
25496
|
+
# restricted analysis requires this parameter to be set to `True`.
|
25497
|
+
# @return [Boolean]
|
25498
|
+
#
|
25490
25499
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/RestoreAnalysisRequest AWS API Documentation
|
25491
25500
|
#
|
25492
25501
|
class RestoreAnalysisRequest < Struct.new(
|
25493
25502
|
:aws_account_id,
|
25494
|
-
:analysis_id
|
25503
|
+
:analysis_id,
|
25504
|
+
:restore_to_folders)
|
25495
25505
|
SENSITIVE = []
|
25496
25506
|
include Aws::Structure
|
25497
25507
|
end
|
@@ -25513,13 +25523,18 @@ module Aws::QuickSight
|
|
25513
25523
|
# The Amazon Web Services request ID for this operation.
|
25514
25524
|
# @return [String]
|
25515
25525
|
#
|
25526
|
+
# @!attribute [rw] restoration_failed_folder_arns
|
25527
|
+
# A list of folder arns thatthe analysis failed to be restored to.
|
25528
|
+
# @return [Array<String>]
|
25529
|
+
#
|
25516
25530
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/RestoreAnalysisResponse AWS API Documentation
|
25517
25531
|
#
|
25518
25532
|
class RestoreAnalysisResponse < Struct.new(
|
25519
25533
|
:status,
|
25520
25534
|
:arn,
|
25521
25535
|
:analysis_id,
|
25522
|
-
:request_id
|
25536
|
+
:request_id,
|
25537
|
+
:restoration_failed_folder_arns)
|
25523
25538
|
SENSITIVE = []
|
25524
25539
|
include Aws::Structure
|
25525
25540
|
end
|
@@ -28201,6 +28216,50 @@ module Aws::QuickSight
|
|
28201
28216
|
include Aws::Structure
|
28202
28217
|
end
|
28203
28218
|
|
28219
|
+
# @!attribute [rw] aws_account_id
|
28220
|
+
# The ID of the Amazon Web Services account that the dashboard
|
28221
|
+
# snapshot job is executed in.
|
28222
|
+
# @return [String]
|
28223
|
+
#
|
28224
|
+
# @!attribute [rw] dashboard_id
|
28225
|
+
# The ID of the dashboard that you want to start a snapshot job
|
28226
|
+
# schedule for.
|
28227
|
+
# @return [String]
|
28228
|
+
#
|
28229
|
+
# @!attribute [rw] schedule_id
|
28230
|
+
# The ID of the schedule that you want to start a snapshot job
|
28231
|
+
# schedule for. The schedule ID can be found in the Amazon QuickSight
|
28232
|
+
# console in the **Schedules** pane of the dashboard that the schedule
|
28233
|
+
# is configured for.
|
28234
|
+
# @return [String]
|
28235
|
+
#
|
28236
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/StartDashboardSnapshotJobScheduleRequest AWS API Documentation
|
28237
|
+
#
|
28238
|
+
class StartDashboardSnapshotJobScheduleRequest < Struct.new(
|
28239
|
+
:aws_account_id,
|
28240
|
+
:dashboard_id,
|
28241
|
+
:schedule_id)
|
28242
|
+
SENSITIVE = []
|
28243
|
+
include Aws::Structure
|
28244
|
+
end
|
28245
|
+
|
28246
|
+
# @!attribute [rw] request_id
|
28247
|
+
# The Amazon Web Services request ID for this operation.
|
28248
|
+
# @return [String]
|
28249
|
+
#
|
28250
|
+
# @!attribute [rw] status
|
28251
|
+
# The HTTP status of the request
|
28252
|
+
# @return [Integer]
|
28253
|
+
#
|
28254
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/StartDashboardSnapshotJobScheduleResponse AWS API Documentation
|
28255
|
+
#
|
28256
|
+
class StartDashboardSnapshotJobScheduleResponse < Struct.new(
|
28257
|
+
:request_id,
|
28258
|
+
:status)
|
28259
|
+
SENSITIVE = []
|
28260
|
+
include Aws::Structure
|
28261
|
+
end
|
28262
|
+
|
28204
28263
|
# The state perssitence configuration of an embedded dashboard.
|
28205
28264
|
#
|
28206
28265
|
# @!attribute [rw] enabled
|
data/lib/aws-sdk-quicksight.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -105164,11 +105164,13 @@ module Aws
|
|
105164
105164
|
def arn: () -> ::String
|
105165
105165
|
def analysis_id: () -> ::String
|
105166
105166
|
def request_id: () -> ::String
|
105167
|
+
def restoration_failed_folder_arns: () -> ::Array[::String]
|
105167
105168
|
end
|
105168
105169
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#restore_analysis-instance_method
|
105169
105170
|
def restore_analysis: (
|
105170
105171
|
aws_account_id: ::String,
|
105171
|
-
analysis_id: ::String
|
105172
|
+
analysis_id: ::String,
|
105173
|
+
?restore_to_folders: bool
|
105172
105174
|
) -> _RestoreAnalysisResponseSuccess
|
105173
105175
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreAnalysisResponseSuccess
|
105174
105176
|
|
@@ -105828,6 +105830,19 @@ module Aws
|
|
105828
105830
|
) -> _StartDashboardSnapshotJobResponseSuccess
|
105829
105831
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartDashboardSnapshotJobResponseSuccess
|
105830
105832
|
|
105833
|
+
interface _StartDashboardSnapshotJobScheduleResponseSuccess
|
105834
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartDashboardSnapshotJobScheduleResponse]
|
105835
|
+
def request_id: () -> ::String
|
105836
|
+
def status: () -> ::Integer
|
105837
|
+
end
|
105838
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#start_dashboard_snapshot_job_schedule-instance_method
|
105839
|
+
def start_dashboard_snapshot_job_schedule: (
|
105840
|
+
aws_account_id: ::String,
|
105841
|
+
dashboard_id: ::String,
|
105842
|
+
schedule_id: ::String
|
105843
|
+
) -> _StartDashboardSnapshotJobScheduleResponseSuccess
|
105844
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartDashboardSnapshotJobScheduleResponseSuccess
|
105845
|
+
|
105831
105846
|
interface _TagResourceResponseSuccess
|
105832
105847
|
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
|
105833
105848
|
def request_id: () -> ::String
|
data/sig/types.rbs
CHANGED
@@ -6492,6 +6492,7 @@ module Aws::QuickSight
|
|
6492
6492
|
class RestoreAnalysisRequest
|
6493
6493
|
attr_accessor aws_account_id: ::String
|
6494
6494
|
attr_accessor analysis_id: ::String
|
6495
|
+
attr_accessor restore_to_folders: bool
|
6495
6496
|
SENSITIVE: []
|
6496
6497
|
end
|
6497
6498
|
|
@@ -6500,6 +6501,7 @@ module Aws::QuickSight
|
|
6500
6501
|
attr_accessor arn: ::String
|
6501
6502
|
attr_accessor analysis_id: ::String
|
6502
6503
|
attr_accessor request_id: ::String
|
6504
|
+
attr_accessor restoration_failed_folder_arns: ::Array[::String]
|
6503
6505
|
SENSITIVE: []
|
6504
6506
|
end
|
6505
6507
|
|
@@ -7194,6 +7196,19 @@ module Aws::QuickSight
|
|
7194
7196
|
SENSITIVE: []
|
7195
7197
|
end
|
7196
7198
|
|
7199
|
+
class StartDashboardSnapshotJobScheduleRequest
|
7200
|
+
attr_accessor aws_account_id: ::String
|
7201
|
+
attr_accessor dashboard_id: ::String
|
7202
|
+
attr_accessor schedule_id: ::String
|
7203
|
+
SENSITIVE: []
|
7204
|
+
end
|
7205
|
+
|
7206
|
+
class StartDashboardSnapshotJobScheduleResponse
|
7207
|
+
attr_accessor request_id: ::String
|
7208
|
+
attr_accessor status: ::Integer
|
7209
|
+
SENSITIVE: []
|
7210
|
+
end
|
7211
|
+
|
7197
7212
|
class StatePersistenceConfigurations
|
7198
7213
|
attr_accessor enabled: bool
|
7199
7214
|
SENSITIVE: []
|
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.133.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-10-
|
11
|
+
date: 2024-10-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.210.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.210.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|