aws-sdk-quicksight 1.77.0 → 1.78.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-quicksight/client.rb +399 -19
- data/lib/aws-sdk-quicksight/client_api.rb +267 -0
- data/lib/aws-sdk-quicksight/endpoints.rb +112 -0
- data/lib/aws-sdk-quicksight/plugins/endpoints.rb +16 -0
- data/lib/aws-sdk-quicksight/types.rb +706 -170
- data/lib/aws-sdk-quicksight.rb +1 -1
- metadata +2 -2
@@ -207,6 +207,20 @@ module Aws::QuickSight
|
|
207
207
|
end
|
208
208
|
end
|
209
209
|
|
210
|
+
class CreateRefreshSchedule
|
211
|
+
def self.build(context)
|
212
|
+
unless context.config.regional_endpoint
|
213
|
+
endpoint = context.config.endpoint.to_s
|
214
|
+
end
|
215
|
+
Aws::QuickSight::EndpointParameters.new(
|
216
|
+
region: context.config.region,
|
217
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
218
|
+
use_fips: context.config.use_fips_endpoint,
|
219
|
+
endpoint: endpoint,
|
220
|
+
)
|
221
|
+
end
|
222
|
+
end
|
223
|
+
|
210
224
|
class CreateTemplate
|
211
225
|
def self.build(context)
|
212
226
|
unless context.config.regional_endpoint
|
@@ -333,6 +347,20 @@ module Aws::QuickSight
|
|
333
347
|
end
|
334
348
|
end
|
335
349
|
|
350
|
+
class DeleteDataSetRefreshProperties
|
351
|
+
def self.build(context)
|
352
|
+
unless context.config.regional_endpoint
|
353
|
+
endpoint = context.config.endpoint.to_s
|
354
|
+
end
|
355
|
+
Aws::QuickSight::EndpointParameters.new(
|
356
|
+
region: context.config.region,
|
357
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
358
|
+
use_fips: context.config.use_fips_endpoint,
|
359
|
+
endpoint: endpoint,
|
360
|
+
)
|
361
|
+
end
|
362
|
+
end
|
363
|
+
|
336
364
|
class DeleteDataSource
|
337
365
|
def self.build(context)
|
338
366
|
unless context.config.regional_endpoint
|
@@ -431,6 +459,20 @@ module Aws::QuickSight
|
|
431
459
|
end
|
432
460
|
end
|
433
461
|
|
462
|
+
class DeleteRefreshSchedule
|
463
|
+
def self.build(context)
|
464
|
+
unless context.config.regional_endpoint
|
465
|
+
endpoint = context.config.endpoint.to_s
|
466
|
+
end
|
467
|
+
Aws::QuickSight::EndpointParameters.new(
|
468
|
+
region: context.config.region,
|
469
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
470
|
+
use_fips: context.config.use_fips_endpoint,
|
471
|
+
endpoint: endpoint,
|
472
|
+
)
|
473
|
+
end
|
474
|
+
end
|
475
|
+
|
434
476
|
class DeleteTemplate
|
435
477
|
def self.build(context)
|
436
478
|
unless context.config.regional_endpoint
|
@@ -669,6 +711,20 @@ module Aws::QuickSight
|
|
669
711
|
end
|
670
712
|
end
|
671
713
|
|
714
|
+
class DescribeDataSetRefreshProperties
|
715
|
+
def self.build(context)
|
716
|
+
unless context.config.regional_endpoint
|
717
|
+
endpoint = context.config.endpoint.to_s
|
718
|
+
end
|
719
|
+
Aws::QuickSight::EndpointParameters.new(
|
720
|
+
region: context.config.region,
|
721
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
722
|
+
use_fips: context.config.use_fips_endpoint,
|
723
|
+
endpoint: endpoint,
|
724
|
+
)
|
725
|
+
end
|
726
|
+
end
|
727
|
+
|
672
728
|
class DescribeDataSource
|
673
729
|
def self.build(context)
|
674
730
|
unless context.config.regional_endpoint
|
@@ -823,6 +879,20 @@ module Aws::QuickSight
|
|
823
879
|
end
|
824
880
|
end
|
825
881
|
|
882
|
+
class DescribeRefreshSchedule
|
883
|
+
def self.build(context)
|
884
|
+
unless context.config.regional_endpoint
|
885
|
+
endpoint = context.config.endpoint.to_s
|
886
|
+
end
|
887
|
+
Aws::QuickSight::EndpointParameters.new(
|
888
|
+
region: context.config.region,
|
889
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
890
|
+
use_fips: context.config.use_fips_endpoint,
|
891
|
+
endpoint: endpoint,
|
892
|
+
)
|
893
|
+
end
|
894
|
+
end
|
895
|
+
|
826
896
|
class DescribeTemplate
|
827
897
|
def self.build(context)
|
828
898
|
unless context.config.regional_endpoint
|
@@ -1173,6 +1243,20 @@ module Aws::QuickSight
|
|
1173
1243
|
end
|
1174
1244
|
end
|
1175
1245
|
|
1246
|
+
class ListRefreshSchedules
|
1247
|
+
def self.build(context)
|
1248
|
+
unless context.config.regional_endpoint
|
1249
|
+
endpoint = context.config.endpoint.to_s
|
1250
|
+
end
|
1251
|
+
Aws::QuickSight::EndpointParameters.new(
|
1252
|
+
region: context.config.region,
|
1253
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1254
|
+
use_fips: context.config.use_fips_endpoint,
|
1255
|
+
endpoint: endpoint,
|
1256
|
+
)
|
1257
|
+
end
|
1258
|
+
end
|
1259
|
+
|
1176
1260
|
class ListTagsForResource
|
1177
1261
|
def self.build(context)
|
1178
1262
|
unless context.config.regional_endpoint
|
@@ -1299,6 +1383,20 @@ module Aws::QuickSight
|
|
1299
1383
|
end
|
1300
1384
|
end
|
1301
1385
|
|
1386
|
+
class PutDataSetRefreshProperties
|
1387
|
+
def self.build(context)
|
1388
|
+
unless context.config.regional_endpoint
|
1389
|
+
endpoint = context.config.endpoint.to_s
|
1390
|
+
end
|
1391
|
+
Aws::QuickSight::EndpointParameters.new(
|
1392
|
+
region: context.config.region,
|
1393
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1394
|
+
use_fips: context.config.use_fips_endpoint,
|
1395
|
+
endpoint: endpoint,
|
1396
|
+
)
|
1397
|
+
end
|
1398
|
+
end
|
1399
|
+
|
1302
1400
|
class RegisterUser
|
1303
1401
|
def self.build(context)
|
1304
1402
|
unless context.config.regional_endpoint
|
@@ -1677,6 +1775,20 @@ module Aws::QuickSight
|
|
1677
1775
|
end
|
1678
1776
|
end
|
1679
1777
|
|
1778
|
+
class UpdateRefreshSchedule
|
1779
|
+
def self.build(context)
|
1780
|
+
unless context.config.regional_endpoint
|
1781
|
+
endpoint = context.config.endpoint.to_s
|
1782
|
+
end
|
1783
|
+
Aws::QuickSight::EndpointParameters.new(
|
1784
|
+
region: context.config.region,
|
1785
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1786
|
+
use_fips: context.config.use_fips_endpoint,
|
1787
|
+
endpoint: endpoint,
|
1788
|
+
)
|
1789
|
+
end
|
1790
|
+
end
|
1791
|
+
|
1680
1792
|
class UpdateTemplate
|
1681
1793
|
def self.build(context)
|
1682
1794
|
unless context.config.regional_endpoint
|
@@ -84,6 +84,8 @@ module Aws::QuickSight
|
|
84
84
|
Aws::QuickSight::Endpoints::CreateIngestion.build(context)
|
85
85
|
when :create_namespace
|
86
86
|
Aws::QuickSight::Endpoints::CreateNamespace.build(context)
|
87
|
+
when :create_refresh_schedule
|
88
|
+
Aws::QuickSight::Endpoints::CreateRefreshSchedule.build(context)
|
87
89
|
when :create_template
|
88
90
|
Aws::QuickSight::Endpoints::CreateTemplate.build(context)
|
89
91
|
when :create_template_alias
|
@@ -102,6 +104,8 @@ module Aws::QuickSight
|
|
102
104
|
Aws::QuickSight::Endpoints::DeleteDashboard.build(context)
|
103
105
|
when :delete_data_set
|
104
106
|
Aws::QuickSight::Endpoints::DeleteDataSet.build(context)
|
107
|
+
when :delete_data_set_refresh_properties
|
108
|
+
Aws::QuickSight::Endpoints::DeleteDataSetRefreshProperties.build(context)
|
105
109
|
when :delete_data_source
|
106
110
|
Aws::QuickSight::Endpoints::DeleteDataSource.build(context)
|
107
111
|
when :delete_folder
|
@@ -116,6 +120,8 @@ module Aws::QuickSight
|
|
116
120
|
Aws::QuickSight::Endpoints::DeleteIAMPolicyAssignment.build(context)
|
117
121
|
when :delete_namespace
|
118
122
|
Aws::QuickSight::Endpoints::DeleteNamespace.build(context)
|
123
|
+
when :delete_refresh_schedule
|
124
|
+
Aws::QuickSight::Endpoints::DeleteRefreshSchedule.build(context)
|
119
125
|
when :delete_template
|
120
126
|
Aws::QuickSight::Endpoints::DeleteTemplate.build(context)
|
121
127
|
when :delete_template_alias
|
@@ -150,6 +156,8 @@ module Aws::QuickSight
|
|
150
156
|
Aws::QuickSight::Endpoints::DescribeDataSet.build(context)
|
151
157
|
when :describe_data_set_permissions
|
152
158
|
Aws::QuickSight::Endpoints::DescribeDataSetPermissions.build(context)
|
159
|
+
when :describe_data_set_refresh_properties
|
160
|
+
Aws::QuickSight::Endpoints::DescribeDataSetRefreshProperties.build(context)
|
153
161
|
when :describe_data_source
|
154
162
|
Aws::QuickSight::Endpoints::DescribeDataSource.build(context)
|
155
163
|
when :describe_data_source_permissions
|
@@ -172,6 +180,8 @@ module Aws::QuickSight
|
|
172
180
|
Aws::QuickSight::Endpoints::DescribeIpRestriction.build(context)
|
173
181
|
when :describe_namespace
|
174
182
|
Aws::QuickSight::Endpoints::DescribeNamespace.build(context)
|
183
|
+
when :describe_refresh_schedule
|
184
|
+
Aws::QuickSight::Endpoints::DescribeRefreshSchedule.build(context)
|
175
185
|
when :describe_template
|
176
186
|
Aws::QuickSight::Endpoints::DescribeTemplate.build(context)
|
177
187
|
when :describe_template_alias
|
@@ -222,6 +232,8 @@ module Aws::QuickSight
|
|
222
232
|
Aws::QuickSight::Endpoints::ListIngestions.build(context)
|
223
233
|
when :list_namespaces
|
224
234
|
Aws::QuickSight::Endpoints::ListNamespaces.build(context)
|
235
|
+
when :list_refresh_schedules
|
236
|
+
Aws::QuickSight::Endpoints::ListRefreshSchedules.build(context)
|
225
237
|
when :list_tags_for_resource
|
226
238
|
Aws::QuickSight::Endpoints::ListTagsForResource.build(context)
|
227
239
|
when :list_template_aliases
|
@@ -240,6 +252,8 @@ module Aws::QuickSight
|
|
240
252
|
Aws::QuickSight::Endpoints::ListUserGroups.build(context)
|
241
253
|
when :list_users
|
242
254
|
Aws::QuickSight::Endpoints::ListUsers.build(context)
|
255
|
+
when :put_data_set_refresh_properties
|
256
|
+
Aws::QuickSight::Endpoints::PutDataSetRefreshProperties.build(context)
|
243
257
|
when :register_user
|
244
258
|
Aws::QuickSight::Endpoints::RegisterUser.build(context)
|
245
259
|
when :restore_analysis
|
@@ -294,6 +308,8 @@ module Aws::QuickSight
|
|
294
308
|
Aws::QuickSight::Endpoints::UpdateIpRestriction.build(context)
|
295
309
|
when :update_public_sharing_settings
|
296
310
|
Aws::QuickSight::Endpoints::UpdatePublicSharingSettings.build(context)
|
311
|
+
when :update_refresh_schedule
|
312
|
+
Aws::QuickSight::Endpoints::UpdateRefreshSchedule.build(context)
|
297
313
|
when :update_template
|
298
314
|
Aws::QuickSight::Endpoints::UpdateTemplate.build(context)
|
299
315
|
when :update_template_alias
|