aws-sdk-quicksight 1.77.0 → 1.79.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 +2132 -71
- data/lib/aws-sdk-quicksight/client_api.rb +1281 -4
- data/lib/aws-sdk-quicksight/endpoints.rb +364 -0
- data/lib/aws-sdk-quicksight/plugins/endpoints.rb +52 -0
- data/lib/aws-sdk-quicksight/types.rb +3537 -330
- 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
|
@@ -263,6 +277,48 @@ module Aws::QuickSight
|
|
263
277
|
end
|
264
278
|
end
|
265
279
|
|
280
|
+
class CreateTopic
|
281
|
+
def self.build(context)
|
282
|
+
unless context.config.regional_endpoint
|
283
|
+
endpoint = context.config.endpoint.to_s
|
284
|
+
end
|
285
|
+
Aws::QuickSight::EndpointParameters.new(
|
286
|
+
region: context.config.region,
|
287
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
288
|
+
use_fips: context.config.use_fips_endpoint,
|
289
|
+
endpoint: endpoint,
|
290
|
+
)
|
291
|
+
end
|
292
|
+
end
|
293
|
+
|
294
|
+
class CreateTopicRefreshSchedule
|
295
|
+
def self.build(context)
|
296
|
+
unless context.config.regional_endpoint
|
297
|
+
endpoint = context.config.endpoint.to_s
|
298
|
+
end
|
299
|
+
Aws::QuickSight::EndpointParameters.new(
|
300
|
+
region: context.config.region,
|
301
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
302
|
+
use_fips: context.config.use_fips_endpoint,
|
303
|
+
endpoint: endpoint,
|
304
|
+
)
|
305
|
+
end
|
306
|
+
end
|
307
|
+
|
308
|
+
class CreateVPCConnection
|
309
|
+
def self.build(context)
|
310
|
+
unless context.config.regional_endpoint
|
311
|
+
endpoint = context.config.endpoint.to_s
|
312
|
+
end
|
313
|
+
Aws::QuickSight::EndpointParameters.new(
|
314
|
+
region: context.config.region,
|
315
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
316
|
+
use_fips: context.config.use_fips_endpoint,
|
317
|
+
endpoint: endpoint,
|
318
|
+
)
|
319
|
+
end
|
320
|
+
end
|
321
|
+
|
266
322
|
class DeleteAccountCustomization
|
267
323
|
def self.build(context)
|
268
324
|
unless context.config.regional_endpoint
|
@@ -333,6 +389,20 @@ module Aws::QuickSight
|
|
333
389
|
end
|
334
390
|
end
|
335
391
|
|
392
|
+
class DeleteDataSetRefreshProperties
|
393
|
+
def self.build(context)
|
394
|
+
unless context.config.regional_endpoint
|
395
|
+
endpoint = context.config.endpoint.to_s
|
396
|
+
end
|
397
|
+
Aws::QuickSight::EndpointParameters.new(
|
398
|
+
region: context.config.region,
|
399
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
400
|
+
use_fips: context.config.use_fips_endpoint,
|
401
|
+
endpoint: endpoint,
|
402
|
+
)
|
403
|
+
end
|
404
|
+
end
|
405
|
+
|
336
406
|
class DeleteDataSource
|
337
407
|
def self.build(context)
|
338
408
|
unless context.config.regional_endpoint
|
@@ -431,6 +501,20 @@ module Aws::QuickSight
|
|
431
501
|
end
|
432
502
|
end
|
433
503
|
|
504
|
+
class DeleteRefreshSchedule
|
505
|
+
def self.build(context)
|
506
|
+
unless context.config.regional_endpoint
|
507
|
+
endpoint = context.config.endpoint.to_s
|
508
|
+
end
|
509
|
+
Aws::QuickSight::EndpointParameters.new(
|
510
|
+
region: context.config.region,
|
511
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
512
|
+
use_fips: context.config.use_fips_endpoint,
|
513
|
+
endpoint: endpoint,
|
514
|
+
)
|
515
|
+
end
|
516
|
+
end
|
517
|
+
|
434
518
|
class DeleteTemplate
|
435
519
|
def self.build(context)
|
436
520
|
unless context.config.regional_endpoint
|
@@ -487,6 +571,34 @@ module Aws::QuickSight
|
|
487
571
|
end
|
488
572
|
end
|
489
573
|
|
574
|
+
class DeleteTopic
|
575
|
+
def self.build(context)
|
576
|
+
unless context.config.regional_endpoint
|
577
|
+
endpoint = context.config.endpoint.to_s
|
578
|
+
end
|
579
|
+
Aws::QuickSight::EndpointParameters.new(
|
580
|
+
region: context.config.region,
|
581
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
582
|
+
use_fips: context.config.use_fips_endpoint,
|
583
|
+
endpoint: endpoint,
|
584
|
+
)
|
585
|
+
end
|
586
|
+
end
|
587
|
+
|
588
|
+
class DeleteTopicRefreshSchedule
|
589
|
+
def self.build(context)
|
590
|
+
unless context.config.regional_endpoint
|
591
|
+
endpoint = context.config.endpoint.to_s
|
592
|
+
end
|
593
|
+
Aws::QuickSight::EndpointParameters.new(
|
594
|
+
region: context.config.region,
|
595
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
596
|
+
use_fips: context.config.use_fips_endpoint,
|
597
|
+
endpoint: endpoint,
|
598
|
+
)
|
599
|
+
end
|
600
|
+
end
|
601
|
+
|
490
602
|
class DeleteUser
|
491
603
|
def self.build(context)
|
492
604
|
unless context.config.regional_endpoint
|
@@ -515,6 +627,20 @@ module Aws::QuickSight
|
|
515
627
|
end
|
516
628
|
end
|
517
629
|
|
630
|
+
class DeleteVPCConnection
|
631
|
+
def self.build(context)
|
632
|
+
unless context.config.regional_endpoint
|
633
|
+
endpoint = context.config.endpoint.to_s
|
634
|
+
end
|
635
|
+
Aws::QuickSight::EndpointParameters.new(
|
636
|
+
region: context.config.region,
|
637
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
638
|
+
use_fips: context.config.use_fips_endpoint,
|
639
|
+
endpoint: endpoint,
|
640
|
+
)
|
641
|
+
end
|
642
|
+
end
|
643
|
+
|
518
644
|
class DescribeAccountCustomization
|
519
645
|
def self.build(context)
|
520
646
|
unless context.config.regional_endpoint
|
@@ -669,6 +795,20 @@ module Aws::QuickSight
|
|
669
795
|
end
|
670
796
|
end
|
671
797
|
|
798
|
+
class DescribeDataSetRefreshProperties
|
799
|
+
def self.build(context)
|
800
|
+
unless context.config.regional_endpoint
|
801
|
+
endpoint = context.config.endpoint.to_s
|
802
|
+
end
|
803
|
+
Aws::QuickSight::EndpointParameters.new(
|
804
|
+
region: context.config.region,
|
805
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
806
|
+
use_fips: context.config.use_fips_endpoint,
|
807
|
+
endpoint: endpoint,
|
808
|
+
)
|
809
|
+
end
|
810
|
+
end
|
811
|
+
|
672
812
|
class DescribeDataSource
|
673
813
|
def self.build(context)
|
674
814
|
unless context.config.regional_endpoint
|
@@ -823,6 +963,20 @@ module Aws::QuickSight
|
|
823
963
|
end
|
824
964
|
end
|
825
965
|
|
966
|
+
class DescribeRefreshSchedule
|
967
|
+
def self.build(context)
|
968
|
+
unless context.config.regional_endpoint
|
969
|
+
endpoint = context.config.endpoint.to_s
|
970
|
+
end
|
971
|
+
Aws::QuickSight::EndpointParameters.new(
|
972
|
+
region: context.config.region,
|
973
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
974
|
+
use_fips: context.config.use_fips_endpoint,
|
975
|
+
endpoint: endpoint,
|
976
|
+
)
|
977
|
+
end
|
978
|
+
end
|
979
|
+
|
826
980
|
class DescribeTemplate
|
827
981
|
def self.build(context)
|
828
982
|
unless context.config.regional_endpoint
|
@@ -921,6 +1075,62 @@ module Aws::QuickSight
|
|
921
1075
|
end
|
922
1076
|
end
|
923
1077
|
|
1078
|
+
class DescribeTopic
|
1079
|
+
def self.build(context)
|
1080
|
+
unless context.config.regional_endpoint
|
1081
|
+
endpoint = context.config.endpoint.to_s
|
1082
|
+
end
|
1083
|
+
Aws::QuickSight::EndpointParameters.new(
|
1084
|
+
region: context.config.region,
|
1085
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1086
|
+
use_fips: context.config.use_fips_endpoint,
|
1087
|
+
endpoint: endpoint,
|
1088
|
+
)
|
1089
|
+
end
|
1090
|
+
end
|
1091
|
+
|
1092
|
+
class DescribeTopicPermissions
|
1093
|
+
def self.build(context)
|
1094
|
+
unless context.config.regional_endpoint
|
1095
|
+
endpoint = context.config.endpoint.to_s
|
1096
|
+
end
|
1097
|
+
Aws::QuickSight::EndpointParameters.new(
|
1098
|
+
region: context.config.region,
|
1099
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1100
|
+
use_fips: context.config.use_fips_endpoint,
|
1101
|
+
endpoint: endpoint,
|
1102
|
+
)
|
1103
|
+
end
|
1104
|
+
end
|
1105
|
+
|
1106
|
+
class DescribeTopicRefresh
|
1107
|
+
def self.build(context)
|
1108
|
+
unless context.config.regional_endpoint
|
1109
|
+
endpoint = context.config.endpoint.to_s
|
1110
|
+
end
|
1111
|
+
Aws::QuickSight::EndpointParameters.new(
|
1112
|
+
region: context.config.region,
|
1113
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1114
|
+
use_fips: context.config.use_fips_endpoint,
|
1115
|
+
endpoint: endpoint,
|
1116
|
+
)
|
1117
|
+
end
|
1118
|
+
end
|
1119
|
+
|
1120
|
+
class DescribeTopicRefreshSchedule
|
1121
|
+
def self.build(context)
|
1122
|
+
unless context.config.regional_endpoint
|
1123
|
+
endpoint = context.config.endpoint.to_s
|
1124
|
+
end
|
1125
|
+
Aws::QuickSight::EndpointParameters.new(
|
1126
|
+
region: context.config.region,
|
1127
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1128
|
+
use_fips: context.config.use_fips_endpoint,
|
1129
|
+
endpoint: endpoint,
|
1130
|
+
)
|
1131
|
+
end
|
1132
|
+
end
|
1133
|
+
|
924
1134
|
class DescribeUser
|
925
1135
|
def self.build(context)
|
926
1136
|
unless context.config.regional_endpoint
|
@@ -935,6 +1145,20 @@ module Aws::QuickSight
|
|
935
1145
|
end
|
936
1146
|
end
|
937
1147
|
|
1148
|
+
class DescribeVPCConnection
|
1149
|
+
def self.build(context)
|
1150
|
+
unless context.config.regional_endpoint
|
1151
|
+
endpoint = context.config.endpoint.to_s
|
1152
|
+
end
|
1153
|
+
Aws::QuickSight::EndpointParameters.new(
|
1154
|
+
region: context.config.region,
|
1155
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1156
|
+
use_fips: context.config.use_fips_endpoint,
|
1157
|
+
endpoint: endpoint,
|
1158
|
+
)
|
1159
|
+
end
|
1160
|
+
end
|
1161
|
+
|
938
1162
|
class GenerateEmbedUrlForAnonymousUser
|
939
1163
|
def self.build(context)
|
940
1164
|
unless context.config.regional_endpoint
|
@@ -1173,6 +1397,20 @@ module Aws::QuickSight
|
|
1173
1397
|
end
|
1174
1398
|
end
|
1175
1399
|
|
1400
|
+
class ListRefreshSchedules
|
1401
|
+
def self.build(context)
|
1402
|
+
unless context.config.regional_endpoint
|
1403
|
+
endpoint = context.config.endpoint.to_s
|
1404
|
+
end
|
1405
|
+
Aws::QuickSight::EndpointParameters.new(
|
1406
|
+
region: context.config.region,
|
1407
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1408
|
+
use_fips: context.config.use_fips_endpoint,
|
1409
|
+
endpoint: endpoint,
|
1410
|
+
)
|
1411
|
+
end
|
1412
|
+
end
|
1413
|
+
|
1176
1414
|
class ListTagsForResource
|
1177
1415
|
def self.build(context)
|
1178
1416
|
unless context.config.regional_endpoint
|
@@ -1271,6 +1509,34 @@ module Aws::QuickSight
|
|
1271
1509
|
end
|
1272
1510
|
end
|
1273
1511
|
|
1512
|
+
class ListTopicRefreshSchedules
|
1513
|
+
def self.build(context)
|
1514
|
+
unless context.config.regional_endpoint
|
1515
|
+
endpoint = context.config.endpoint.to_s
|
1516
|
+
end
|
1517
|
+
Aws::QuickSight::EndpointParameters.new(
|
1518
|
+
region: context.config.region,
|
1519
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1520
|
+
use_fips: context.config.use_fips_endpoint,
|
1521
|
+
endpoint: endpoint,
|
1522
|
+
)
|
1523
|
+
end
|
1524
|
+
end
|
1525
|
+
|
1526
|
+
class ListTopics
|
1527
|
+
def self.build(context)
|
1528
|
+
unless context.config.regional_endpoint
|
1529
|
+
endpoint = context.config.endpoint.to_s
|
1530
|
+
end
|
1531
|
+
Aws::QuickSight::EndpointParameters.new(
|
1532
|
+
region: context.config.region,
|
1533
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1534
|
+
use_fips: context.config.use_fips_endpoint,
|
1535
|
+
endpoint: endpoint,
|
1536
|
+
)
|
1537
|
+
end
|
1538
|
+
end
|
1539
|
+
|
1274
1540
|
class ListUserGroups
|
1275
1541
|
def self.build(context)
|
1276
1542
|
unless context.config.regional_endpoint
|
@@ -1299,6 +1565,34 @@ module Aws::QuickSight
|
|
1299
1565
|
end
|
1300
1566
|
end
|
1301
1567
|
|
1568
|
+
class ListVPCConnections
|
1569
|
+
def self.build(context)
|
1570
|
+
unless context.config.regional_endpoint
|
1571
|
+
endpoint = context.config.endpoint.to_s
|
1572
|
+
end
|
1573
|
+
Aws::QuickSight::EndpointParameters.new(
|
1574
|
+
region: context.config.region,
|
1575
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1576
|
+
use_fips: context.config.use_fips_endpoint,
|
1577
|
+
endpoint: endpoint,
|
1578
|
+
)
|
1579
|
+
end
|
1580
|
+
end
|
1581
|
+
|
1582
|
+
class PutDataSetRefreshProperties
|
1583
|
+
def self.build(context)
|
1584
|
+
unless context.config.regional_endpoint
|
1585
|
+
endpoint = context.config.endpoint.to_s
|
1586
|
+
end
|
1587
|
+
Aws::QuickSight::EndpointParameters.new(
|
1588
|
+
region: context.config.region,
|
1589
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1590
|
+
use_fips: context.config.use_fips_endpoint,
|
1591
|
+
endpoint: endpoint,
|
1592
|
+
)
|
1593
|
+
end
|
1594
|
+
end
|
1595
|
+
|
1302
1596
|
class RegisterUser
|
1303
1597
|
def self.build(context)
|
1304
1598
|
unless context.config.regional_endpoint
|
@@ -1677,6 +1971,20 @@ module Aws::QuickSight
|
|
1677
1971
|
end
|
1678
1972
|
end
|
1679
1973
|
|
1974
|
+
class UpdateRefreshSchedule
|
1975
|
+
def self.build(context)
|
1976
|
+
unless context.config.regional_endpoint
|
1977
|
+
endpoint = context.config.endpoint.to_s
|
1978
|
+
end
|
1979
|
+
Aws::QuickSight::EndpointParameters.new(
|
1980
|
+
region: context.config.region,
|
1981
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1982
|
+
use_fips: context.config.use_fips_endpoint,
|
1983
|
+
endpoint: endpoint,
|
1984
|
+
)
|
1985
|
+
end
|
1986
|
+
end
|
1987
|
+
|
1680
1988
|
class UpdateTemplate
|
1681
1989
|
def self.build(context)
|
1682
1990
|
unless context.config.regional_endpoint
|
@@ -1761,6 +2069,48 @@ module Aws::QuickSight
|
|
1761
2069
|
end
|
1762
2070
|
end
|
1763
2071
|
|
2072
|
+
class UpdateTopic
|
2073
|
+
def self.build(context)
|
2074
|
+
unless context.config.regional_endpoint
|
2075
|
+
endpoint = context.config.endpoint.to_s
|
2076
|
+
end
|
2077
|
+
Aws::QuickSight::EndpointParameters.new(
|
2078
|
+
region: context.config.region,
|
2079
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
2080
|
+
use_fips: context.config.use_fips_endpoint,
|
2081
|
+
endpoint: endpoint,
|
2082
|
+
)
|
2083
|
+
end
|
2084
|
+
end
|
2085
|
+
|
2086
|
+
class UpdateTopicPermissions
|
2087
|
+
def self.build(context)
|
2088
|
+
unless context.config.regional_endpoint
|
2089
|
+
endpoint = context.config.endpoint.to_s
|
2090
|
+
end
|
2091
|
+
Aws::QuickSight::EndpointParameters.new(
|
2092
|
+
region: context.config.region,
|
2093
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
2094
|
+
use_fips: context.config.use_fips_endpoint,
|
2095
|
+
endpoint: endpoint,
|
2096
|
+
)
|
2097
|
+
end
|
2098
|
+
end
|
2099
|
+
|
2100
|
+
class UpdateTopicRefreshSchedule
|
2101
|
+
def self.build(context)
|
2102
|
+
unless context.config.regional_endpoint
|
2103
|
+
endpoint = context.config.endpoint.to_s
|
2104
|
+
end
|
2105
|
+
Aws::QuickSight::EndpointParameters.new(
|
2106
|
+
region: context.config.region,
|
2107
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
2108
|
+
use_fips: context.config.use_fips_endpoint,
|
2109
|
+
endpoint: endpoint,
|
2110
|
+
)
|
2111
|
+
end
|
2112
|
+
end
|
2113
|
+
|
1764
2114
|
class UpdateUser
|
1765
2115
|
def self.build(context)
|
1766
2116
|
unless context.config.regional_endpoint
|
@@ -1775,5 +2125,19 @@ module Aws::QuickSight
|
|
1775
2125
|
end
|
1776
2126
|
end
|
1777
2127
|
|
2128
|
+
class UpdateVPCConnection
|
2129
|
+
def self.build(context)
|
2130
|
+
unless context.config.regional_endpoint
|
2131
|
+
endpoint = context.config.endpoint.to_s
|
2132
|
+
end
|
2133
|
+
Aws::QuickSight::EndpointParameters.new(
|
2134
|
+
region: context.config.region,
|
2135
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
2136
|
+
use_fips: context.config.use_fips_endpoint,
|
2137
|
+
endpoint: endpoint,
|
2138
|
+
)
|
2139
|
+
end
|
2140
|
+
end
|
2141
|
+
|
1778
2142
|
end
|
1779
2143
|
end
|
@@ -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
|
@@ -92,6 +94,12 @@ module Aws::QuickSight
|
|
92
94
|
Aws::QuickSight::Endpoints::CreateTheme.build(context)
|
93
95
|
when :create_theme_alias
|
94
96
|
Aws::QuickSight::Endpoints::CreateThemeAlias.build(context)
|
97
|
+
when :create_topic
|
98
|
+
Aws::QuickSight::Endpoints::CreateTopic.build(context)
|
99
|
+
when :create_topic_refresh_schedule
|
100
|
+
Aws::QuickSight::Endpoints::CreateTopicRefreshSchedule.build(context)
|
101
|
+
when :create_vpc_connection
|
102
|
+
Aws::QuickSight::Endpoints::CreateVPCConnection.build(context)
|
95
103
|
when :delete_account_customization
|
96
104
|
Aws::QuickSight::Endpoints::DeleteAccountCustomization.build(context)
|
97
105
|
when :delete_account_subscription
|
@@ -102,6 +110,8 @@ module Aws::QuickSight
|
|
102
110
|
Aws::QuickSight::Endpoints::DeleteDashboard.build(context)
|
103
111
|
when :delete_data_set
|
104
112
|
Aws::QuickSight::Endpoints::DeleteDataSet.build(context)
|
113
|
+
when :delete_data_set_refresh_properties
|
114
|
+
Aws::QuickSight::Endpoints::DeleteDataSetRefreshProperties.build(context)
|
105
115
|
when :delete_data_source
|
106
116
|
Aws::QuickSight::Endpoints::DeleteDataSource.build(context)
|
107
117
|
when :delete_folder
|
@@ -116,6 +126,8 @@ module Aws::QuickSight
|
|
116
126
|
Aws::QuickSight::Endpoints::DeleteIAMPolicyAssignment.build(context)
|
117
127
|
when :delete_namespace
|
118
128
|
Aws::QuickSight::Endpoints::DeleteNamespace.build(context)
|
129
|
+
when :delete_refresh_schedule
|
130
|
+
Aws::QuickSight::Endpoints::DeleteRefreshSchedule.build(context)
|
119
131
|
when :delete_template
|
120
132
|
Aws::QuickSight::Endpoints::DeleteTemplate.build(context)
|
121
133
|
when :delete_template_alias
|
@@ -124,10 +136,16 @@ module Aws::QuickSight
|
|
124
136
|
Aws::QuickSight::Endpoints::DeleteTheme.build(context)
|
125
137
|
when :delete_theme_alias
|
126
138
|
Aws::QuickSight::Endpoints::DeleteThemeAlias.build(context)
|
139
|
+
when :delete_topic
|
140
|
+
Aws::QuickSight::Endpoints::DeleteTopic.build(context)
|
141
|
+
when :delete_topic_refresh_schedule
|
142
|
+
Aws::QuickSight::Endpoints::DeleteTopicRefreshSchedule.build(context)
|
127
143
|
when :delete_user
|
128
144
|
Aws::QuickSight::Endpoints::DeleteUser.build(context)
|
129
145
|
when :delete_user_by_principal_id
|
130
146
|
Aws::QuickSight::Endpoints::DeleteUserByPrincipalId.build(context)
|
147
|
+
when :delete_vpc_connection
|
148
|
+
Aws::QuickSight::Endpoints::DeleteVPCConnection.build(context)
|
131
149
|
when :describe_account_customization
|
132
150
|
Aws::QuickSight::Endpoints::DescribeAccountCustomization.build(context)
|
133
151
|
when :describe_account_settings
|
@@ -150,6 +168,8 @@ module Aws::QuickSight
|
|
150
168
|
Aws::QuickSight::Endpoints::DescribeDataSet.build(context)
|
151
169
|
when :describe_data_set_permissions
|
152
170
|
Aws::QuickSight::Endpoints::DescribeDataSetPermissions.build(context)
|
171
|
+
when :describe_data_set_refresh_properties
|
172
|
+
Aws::QuickSight::Endpoints::DescribeDataSetRefreshProperties.build(context)
|
153
173
|
when :describe_data_source
|
154
174
|
Aws::QuickSight::Endpoints::DescribeDataSource.build(context)
|
155
175
|
when :describe_data_source_permissions
|
@@ -172,6 +192,8 @@ module Aws::QuickSight
|
|
172
192
|
Aws::QuickSight::Endpoints::DescribeIpRestriction.build(context)
|
173
193
|
when :describe_namespace
|
174
194
|
Aws::QuickSight::Endpoints::DescribeNamespace.build(context)
|
195
|
+
when :describe_refresh_schedule
|
196
|
+
Aws::QuickSight::Endpoints::DescribeRefreshSchedule.build(context)
|
175
197
|
when :describe_template
|
176
198
|
Aws::QuickSight::Endpoints::DescribeTemplate.build(context)
|
177
199
|
when :describe_template_alias
|
@@ -186,8 +208,18 @@ module Aws::QuickSight
|
|
186
208
|
Aws::QuickSight::Endpoints::DescribeThemeAlias.build(context)
|
187
209
|
when :describe_theme_permissions
|
188
210
|
Aws::QuickSight::Endpoints::DescribeThemePermissions.build(context)
|
211
|
+
when :describe_topic
|
212
|
+
Aws::QuickSight::Endpoints::DescribeTopic.build(context)
|
213
|
+
when :describe_topic_permissions
|
214
|
+
Aws::QuickSight::Endpoints::DescribeTopicPermissions.build(context)
|
215
|
+
when :describe_topic_refresh
|
216
|
+
Aws::QuickSight::Endpoints::DescribeTopicRefresh.build(context)
|
217
|
+
when :describe_topic_refresh_schedule
|
218
|
+
Aws::QuickSight::Endpoints::DescribeTopicRefreshSchedule.build(context)
|
189
219
|
when :describe_user
|
190
220
|
Aws::QuickSight::Endpoints::DescribeUser.build(context)
|
221
|
+
when :describe_vpc_connection
|
222
|
+
Aws::QuickSight::Endpoints::DescribeVPCConnection.build(context)
|
191
223
|
when :generate_embed_url_for_anonymous_user
|
192
224
|
Aws::QuickSight::Endpoints::GenerateEmbedUrlForAnonymousUser.build(context)
|
193
225
|
when :generate_embed_url_for_registered_user
|
@@ -222,6 +254,8 @@ module Aws::QuickSight
|
|
222
254
|
Aws::QuickSight::Endpoints::ListIngestions.build(context)
|
223
255
|
when :list_namespaces
|
224
256
|
Aws::QuickSight::Endpoints::ListNamespaces.build(context)
|
257
|
+
when :list_refresh_schedules
|
258
|
+
Aws::QuickSight::Endpoints::ListRefreshSchedules.build(context)
|
225
259
|
when :list_tags_for_resource
|
226
260
|
Aws::QuickSight::Endpoints::ListTagsForResource.build(context)
|
227
261
|
when :list_template_aliases
|
@@ -236,10 +270,18 @@ module Aws::QuickSight
|
|
236
270
|
Aws::QuickSight::Endpoints::ListThemeVersions.build(context)
|
237
271
|
when :list_themes
|
238
272
|
Aws::QuickSight::Endpoints::ListThemes.build(context)
|
273
|
+
when :list_topic_refresh_schedules
|
274
|
+
Aws::QuickSight::Endpoints::ListTopicRefreshSchedules.build(context)
|
275
|
+
when :list_topics
|
276
|
+
Aws::QuickSight::Endpoints::ListTopics.build(context)
|
239
277
|
when :list_user_groups
|
240
278
|
Aws::QuickSight::Endpoints::ListUserGroups.build(context)
|
241
279
|
when :list_users
|
242
280
|
Aws::QuickSight::Endpoints::ListUsers.build(context)
|
281
|
+
when :list_vpc_connections
|
282
|
+
Aws::QuickSight::Endpoints::ListVPCConnections.build(context)
|
283
|
+
when :put_data_set_refresh_properties
|
284
|
+
Aws::QuickSight::Endpoints::PutDataSetRefreshProperties.build(context)
|
243
285
|
when :register_user
|
244
286
|
Aws::QuickSight::Endpoints::RegisterUser.build(context)
|
245
287
|
when :restore_analysis
|
@@ -294,6 +336,8 @@ module Aws::QuickSight
|
|
294
336
|
Aws::QuickSight::Endpoints::UpdateIpRestriction.build(context)
|
295
337
|
when :update_public_sharing_settings
|
296
338
|
Aws::QuickSight::Endpoints::UpdatePublicSharingSettings.build(context)
|
339
|
+
when :update_refresh_schedule
|
340
|
+
Aws::QuickSight::Endpoints::UpdateRefreshSchedule.build(context)
|
297
341
|
when :update_template
|
298
342
|
Aws::QuickSight::Endpoints::UpdateTemplate.build(context)
|
299
343
|
when :update_template_alias
|
@@ -306,8 +350,16 @@ module Aws::QuickSight
|
|
306
350
|
Aws::QuickSight::Endpoints::UpdateThemeAlias.build(context)
|
307
351
|
when :update_theme_permissions
|
308
352
|
Aws::QuickSight::Endpoints::UpdateThemePermissions.build(context)
|
353
|
+
when :update_topic
|
354
|
+
Aws::QuickSight::Endpoints::UpdateTopic.build(context)
|
355
|
+
when :update_topic_permissions
|
356
|
+
Aws::QuickSight::Endpoints::UpdateTopicPermissions.build(context)
|
357
|
+
when :update_topic_refresh_schedule
|
358
|
+
Aws::QuickSight::Endpoints::UpdateTopicRefreshSchedule.build(context)
|
309
359
|
when :update_user
|
310
360
|
Aws::QuickSight::Endpoints::UpdateUser.build(context)
|
361
|
+
when :update_vpc_connection
|
362
|
+
Aws::QuickSight::Endpoints::UpdateVPCConnection.build(context)
|
311
363
|
end
|
312
364
|
end
|
313
365
|
end
|