aws-sdk-quicksight 1.86.0 → 1.88.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 +334 -14
- data/lib/aws-sdk-quicksight/client_api.rb +306 -1
- data/lib/aws-sdk-quicksight/endpoints.rb +42 -0
- data/lib/aws-sdk-quicksight/plugins/endpoints.rb +6 -0
- data/lib/aws-sdk-quicksight/types.rb +803 -16
- data/lib/aws-sdk-quicksight.rb +1 -1
- metadata +2 -2
@@ -796,6 +796,34 @@ module Aws::QuickSight
|
|
796
796
|
end
|
797
797
|
end
|
798
798
|
|
799
|
+
class DescribeDashboardSnapshotJob
|
800
|
+
def self.build(context)
|
801
|
+
unless context.config.regional_endpoint
|
802
|
+
endpoint = context.config.endpoint.to_s
|
803
|
+
end
|
804
|
+
Aws::QuickSight::EndpointParameters.new(
|
805
|
+
region: context.config.region,
|
806
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
807
|
+
use_fips: context.config.use_fips_endpoint,
|
808
|
+
endpoint: endpoint,
|
809
|
+
)
|
810
|
+
end
|
811
|
+
end
|
812
|
+
|
813
|
+
class DescribeDashboardSnapshotJobResult
|
814
|
+
def self.build(context)
|
815
|
+
unless context.config.regional_endpoint
|
816
|
+
endpoint = context.config.endpoint.to_s
|
817
|
+
end
|
818
|
+
Aws::QuickSight::EndpointParameters.new(
|
819
|
+
region: context.config.region,
|
820
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
821
|
+
use_fips: context.config.use_fips_endpoint,
|
822
|
+
endpoint: endpoint,
|
823
|
+
)
|
824
|
+
end
|
825
|
+
end
|
826
|
+
|
799
827
|
class DescribeDataSet
|
800
828
|
def self.build(context)
|
801
829
|
unless context.config.regional_endpoint
|
@@ -1790,6 +1818,20 @@ module Aws::QuickSight
|
|
1790
1818
|
end
|
1791
1819
|
end
|
1792
1820
|
|
1821
|
+
class StartDashboardSnapshotJob
|
1822
|
+
def self.build(context)
|
1823
|
+
unless context.config.regional_endpoint
|
1824
|
+
endpoint = context.config.endpoint.to_s
|
1825
|
+
end
|
1826
|
+
Aws::QuickSight::EndpointParameters.new(
|
1827
|
+
region: context.config.region,
|
1828
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1829
|
+
use_fips: context.config.use_fips_endpoint,
|
1830
|
+
endpoint: endpoint,
|
1831
|
+
)
|
1832
|
+
end
|
1833
|
+
end
|
1834
|
+
|
1793
1835
|
class TagResource
|
1794
1836
|
def self.build(context)
|
1795
1837
|
unless context.config.regional_endpoint
|
@@ -168,6 +168,10 @@ module Aws::QuickSight
|
|
168
168
|
Aws::QuickSight::Endpoints::DescribeDashboardDefinition.build(context)
|
169
169
|
when :describe_dashboard_permissions
|
170
170
|
Aws::QuickSight::Endpoints::DescribeDashboardPermissions.build(context)
|
171
|
+
when :describe_dashboard_snapshot_job
|
172
|
+
Aws::QuickSight::Endpoints::DescribeDashboardSnapshotJob.build(context)
|
173
|
+
when :describe_dashboard_snapshot_job_result
|
174
|
+
Aws::QuickSight::Endpoints::DescribeDashboardSnapshotJobResult.build(context)
|
171
175
|
when :describe_data_set
|
172
176
|
Aws::QuickSight::Endpoints::DescribeDataSet.build(context)
|
173
177
|
when :describe_data_set_permissions
|
@@ -310,6 +314,8 @@ module Aws::QuickSight
|
|
310
314
|
Aws::QuickSight::Endpoints::StartAssetBundleExportJob.build(context)
|
311
315
|
when :start_asset_bundle_import_job
|
312
316
|
Aws::QuickSight::Endpoints::StartAssetBundleImportJob.build(context)
|
317
|
+
when :start_dashboard_snapshot_job
|
318
|
+
Aws::QuickSight::Endpoints::StartDashboardSnapshotJob.build(context)
|
313
319
|
when :tag_resource
|
314
320
|
Aws::QuickSight::Endpoints::TagResource.build(context)
|
315
321
|
when :untag_resource
|