aws-sdk-quicksight 1.79.0 → 1.80.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 +754 -3
- data/lib/aws-sdk-quicksight/client_api.rb +455 -2
- data/lib/aws-sdk-quicksight/endpoints.rb +84 -0
- data/lib/aws-sdk-quicksight/plugins/endpoints.rb +12 -0
- data/lib/aws-sdk-quicksight/types.rb +1284 -23
- data/lib/aws-sdk-quicksight.rb +1 -1
- metadata +2 -2
@@ -725,6 +725,34 @@ module Aws::QuickSight
|
|
725
725
|
end
|
726
726
|
end
|
727
727
|
|
728
|
+
class DescribeAssetBundleExportJob
|
729
|
+
def self.build(context)
|
730
|
+
unless context.config.regional_endpoint
|
731
|
+
endpoint = context.config.endpoint.to_s
|
732
|
+
end
|
733
|
+
Aws::QuickSight::EndpointParameters.new(
|
734
|
+
region: context.config.region,
|
735
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
736
|
+
use_fips: context.config.use_fips_endpoint,
|
737
|
+
endpoint: endpoint,
|
738
|
+
)
|
739
|
+
end
|
740
|
+
end
|
741
|
+
|
742
|
+
class DescribeAssetBundleImportJob
|
743
|
+
def self.build(context)
|
744
|
+
unless context.config.regional_endpoint
|
745
|
+
endpoint = context.config.endpoint.to_s
|
746
|
+
end
|
747
|
+
Aws::QuickSight::EndpointParameters.new(
|
748
|
+
region: context.config.region,
|
749
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
750
|
+
use_fips: context.config.use_fips_endpoint,
|
751
|
+
endpoint: endpoint,
|
752
|
+
)
|
753
|
+
end
|
754
|
+
end
|
755
|
+
|
728
756
|
class DescribeDashboard
|
729
757
|
def self.build(context)
|
730
758
|
unless context.config.regional_endpoint
|
@@ -1229,6 +1257,34 @@ module Aws::QuickSight
|
|
1229
1257
|
end
|
1230
1258
|
end
|
1231
1259
|
|
1260
|
+
class ListAssetBundleExportJobs
|
1261
|
+
def self.build(context)
|
1262
|
+
unless context.config.regional_endpoint
|
1263
|
+
endpoint = context.config.endpoint.to_s
|
1264
|
+
end
|
1265
|
+
Aws::QuickSight::EndpointParameters.new(
|
1266
|
+
region: context.config.region,
|
1267
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1268
|
+
use_fips: context.config.use_fips_endpoint,
|
1269
|
+
endpoint: endpoint,
|
1270
|
+
)
|
1271
|
+
end
|
1272
|
+
end
|
1273
|
+
|
1274
|
+
class ListAssetBundleImportJobs
|
1275
|
+
def self.build(context)
|
1276
|
+
unless context.config.regional_endpoint
|
1277
|
+
endpoint = context.config.endpoint.to_s
|
1278
|
+
end
|
1279
|
+
Aws::QuickSight::EndpointParameters.new(
|
1280
|
+
region: context.config.region,
|
1281
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1282
|
+
use_fips: context.config.use_fips_endpoint,
|
1283
|
+
endpoint: endpoint,
|
1284
|
+
)
|
1285
|
+
end
|
1286
|
+
end
|
1287
|
+
|
1232
1288
|
class ListDashboardVersions
|
1233
1289
|
def self.build(context)
|
1234
1290
|
unless context.config.regional_endpoint
|
@@ -1705,6 +1761,34 @@ module Aws::QuickSight
|
|
1705
1761
|
end
|
1706
1762
|
end
|
1707
1763
|
|
1764
|
+
class StartAssetBundleExportJob
|
1765
|
+
def self.build(context)
|
1766
|
+
unless context.config.regional_endpoint
|
1767
|
+
endpoint = context.config.endpoint.to_s
|
1768
|
+
end
|
1769
|
+
Aws::QuickSight::EndpointParameters.new(
|
1770
|
+
region: context.config.region,
|
1771
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1772
|
+
use_fips: context.config.use_fips_endpoint,
|
1773
|
+
endpoint: endpoint,
|
1774
|
+
)
|
1775
|
+
end
|
1776
|
+
end
|
1777
|
+
|
1778
|
+
class StartAssetBundleImportJob
|
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
|
+
|
1708
1792
|
class TagResource
|
1709
1793
|
def self.build(context)
|
1710
1794
|
unless context.config.regional_endpoint
|
@@ -158,6 +158,10 @@ module Aws::QuickSight
|
|
158
158
|
Aws::QuickSight::Endpoints::DescribeAnalysisDefinition.build(context)
|
159
159
|
when :describe_analysis_permissions
|
160
160
|
Aws::QuickSight::Endpoints::DescribeAnalysisPermissions.build(context)
|
161
|
+
when :describe_asset_bundle_export_job
|
162
|
+
Aws::QuickSight::Endpoints::DescribeAssetBundleExportJob.build(context)
|
163
|
+
when :describe_asset_bundle_import_job
|
164
|
+
Aws::QuickSight::Endpoints::DescribeAssetBundleImportJob.build(context)
|
161
165
|
when :describe_dashboard
|
162
166
|
Aws::QuickSight::Endpoints::DescribeDashboard.build(context)
|
163
167
|
when :describe_dashboard_definition
|
@@ -230,6 +234,10 @@ module Aws::QuickSight
|
|
230
234
|
Aws::QuickSight::Endpoints::GetSessionEmbedUrl.build(context)
|
231
235
|
when :list_analyses
|
232
236
|
Aws::QuickSight::Endpoints::ListAnalyses.build(context)
|
237
|
+
when :list_asset_bundle_export_jobs
|
238
|
+
Aws::QuickSight::Endpoints::ListAssetBundleExportJobs.build(context)
|
239
|
+
when :list_asset_bundle_import_jobs
|
240
|
+
Aws::QuickSight::Endpoints::ListAssetBundleImportJobs.build(context)
|
233
241
|
when :list_dashboard_versions
|
234
242
|
Aws::QuickSight::Endpoints::ListDashboardVersions.build(context)
|
235
243
|
when :list_dashboards
|
@@ -298,6 +306,10 @@ module Aws::QuickSight
|
|
298
306
|
Aws::QuickSight::Endpoints::SearchFolders.build(context)
|
299
307
|
when :search_groups
|
300
308
|
Aws::QuickSight::Endpoints::SearchGroups.build(context)
|
309
|
+
when :start_asset_bundle_export_job
|
310
|
+
Aws::QuickSight::Endpoints::StartAssetBundleExportJob.build(context)
|
311
|
+
when :start_asset_bundle_import_job
|
312
|
+
Aws::QuickSight::Endpoints::StartAssetBundleImportJob.build(context)
|
301
313
|
when :tag_resource
|
302
314
|
Aws::QuickSight::Endpoints::TagResource.build(context)
|
303
315
|
when :untag_resource
|