aws-sdk-quicksight 1.71.0 → 1.72.1
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 +11 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-quicksight/client.rb +275 -342
- data/lib/aws-sdk-quicksight/client_api.rb +3371 -103
- 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 +20480 -11645
- data/lib/aws-sdk-quicksight.rb +1 -1
- metadata +2 -2
@@ -571,6 +571,20 @@ module Aws::QuickSight
|
|
571
571
|
end
|
572
572
|
end
|
573
573
|
|
574
|
+
class DescribeAnalysisDefinition
|
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
|
+
|
574
588
|
class DescribeAnalysisPermissions
|
575
589
|
def self.build(context)
|
576
590
|
unless context.config.regional_endpoint
|
@@ -599,6 +613,20 @@ module Aws::QuickSight
|
|
599
613
|
end
|
600
614
|
end
|
601
615
|
|
616
|
+
class DescribeDashboardDefinition
|
617
|
+
def self.build(context)
|
618
|
+
unless context.config.regional_endpoint
|
619
|
+
endpoint = context.config.endpoint.to_s
|
620
|
+
end
|
621
|
+
Aws::QuickSight::EndpointParameters.new(
|
622
|
+
region: context.config.region,
|
623
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
624
|
+
use_fips: context.config.use_fips_endpoint,
|
625
|
+
endpoint: endpoint,
|
626
|
+
)
|
627
|
+
end
|
628
|
+
end
|
629
|
+
|
602
630
|
class DescribeDashboardPermissions
|
603
631
|
def self.build(context)
|
604
632
|
unless context.config.regional_endpoint
|
@@ -823,6 +851,20 @@ module Aws::QuickSight
|
|
823
851
|
end
|
824
852
|
end
|
825
853
|
|
854
|
+
class DescribeTemplateDefinition
|
855
|
+
def self.build(context)
|
856
|
+
unless context.config.regional_endpoint
|
857
|
+
endpoint = context.config.endpoint.to_s
|
858
|
+
end
|
859
|
+
Aws::QuickSight::EndpointParameters.new(
|
860
|
+
region: context.config.region,
|
861
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
862
|
+
use_fips: context.config.use_fips_endpoint,
|
863
|
+
endpoint: endpoint,
|
864
|
+
)
|
865
|
+
end
|
866
|
+
end
|
867
|
+
|
826
868
|
class DescribeTemplatePermissions
|
827
869
|
def self.build(context)
|
828
870
|
unless context.config.regional_endpoint
|
@@ -136,10 +136,14 @@ module Aws::QuickSight
|
|
136
136
|
Aws::QuickSight::Endpoints::DescribeAccountSubscription.build(context)
|
137
137
|
when :describe_analysis
|
138
138
|
Aws::QuickSight::Endpoints::DescribeAnalysis.build(context)
|
139
|
+
when :describe_analysis_definition
|
140
|
+
Aws::QuickSight::Endpoints::DescribeAnalysisDefinition.build(context)
|
139
141
|
when :describe_analysis_permissions
|
140
142
|
Aws::QuickSight::Endpoints::DescribeAnalysisPermissions.build(context)
|
141
143
|
when :describe_dashboard
|
142
144
|
Aws::QuickSight::Endpoints::DescribeDashboard.build(context)
|
145
|
+
when :describe_dashboard_definition
|
146
|
+
Aws::QuickSight::Endpoints::DescribeDashboardDefinition.build(context)
|
143
147
|
when :describe_dashboard_permissions
|
144
148
|
Aws::QuickSight::Endpoints::DescribeDashboardPermissions.build(context)
|
145
149
|
when :describe_data_set
|
@@ -172,6 +176,8 @@ module Aws::QuickSight
|
|
172
176
|
Aws::QuickSight::Endpoints::DescribeTemplate.build(context)
|
173
177
|
when :describe_template_alias
|
174
178
|
Aws::QuickSight::Endpoints::DescribeTemplateAlias.build(context)
|
179
|
+
when :describe_template_definition
|
180
|
+
Aws::QuickSight::Endpoints::DescribeTemplateDefinition.build(context)
|
175
181
|
when :describe_template_permissions
|
176
182
|
Aws::QuickSight::Endpoints::DescribeTemplatePermissions.build(context)
|
177
183
|
when :describe_theme
|