aws-sdk-quicksight 1.94.0 → 1.96.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.
@@ -222,6 +222,20 @@ module Aws::QuickSight
222
222
  end
223
223
  end
224
224
 
225
+ class CreateRoleMembership
226
+ def self.build(context)
227
+ unless context.config.regional_endpoint
228
+ endpoint = context.config.endpoint.to_s
229
+ end
230
+ Aws::QuickSight::EndpointParameters.new(
231
+ region: context.config.region,
232
+ use_dual_stack: context.config.use_dualstack_endpoint,
233
+ use_fips: context.config.use_fips_endpoint,
234
+ endpoint: endpoint,
235
+ )
236
+ end
237
+ end
238
+
225
239
  class CreateTemplate
226
240
  def self.build(context)
227
241
  unless context.config.regional_endpoint
@@ -516,6 +530,34 @@ module Aws::QuickSight
516
530
  end
517
531
  end
518
532
 
533
+ class DeleteRoleCustomPermission
534
+ def self.build(context)
535
+ unless context.config.regional_endpoint
536
+ endpoint = context.config.endpoint.to_s
537
+ end
538
+ Aws::QuickSight::EndpointParameters.new(
539
+ region: context.config.region,
540
+ use_dual_stack: context.config.use_dualstack_endpoint,
541
+ use_fips: context.config.use_fips_endpoint,
542
+ endpoint: endpoint,
543
+ )
544
+ end
545
+ end
546
+
547
+ class DeleteRoleMembership
548
+ def self.build(context)
549
+ unless context.config.regional_endpoint
550
+ endpoint = context.config.endpoint.to_s
551
+ end
552
+ Aws::QuickSight::EndpointParameters.new(
553
+ region: context.config.region,
554
+ use_dual_stack: context.config.use_dualstack_endpoint,
555
+ use_fips: context.config.use_fips_endpoint,
556
+ endpoint: endpoint,
557
+ )
558
+ end
559
+ end
560
+
519
561
  class DeleteTemplate
520
562
  def self.build(context)
521
563
  unless context.config.regional_endpoint
@@ -1034,6 +1076,20 @@ module Aws::QuickSight
1034
1076
  end
1035
1077
  end
1036
1078
 
1079
+ class DescribeRoleCustomPermission
1080
+ def self.build(context)
1081
+ unless context.config.regional_endpoint
1082
+ endpoint = context.config.endpoint.to_s
1083
+ end
1084
+ Aws::QuickSight::EndpointParameters.new(
1085
+ region: context.config.region,
1086
+ use_dual_stack: context.config.use_dualstack_endpoint,
1087
+ use_fips: context.config.use_fips_endpoint,
1088
+ endpoint: endpoint,
1089
+ )
1090
+ end
1091
+ end
1092
+
1037
1093
  class DescribeTemplate
1038
1094
  def self.build(context)
1039
1095
  unless context.config.regional_endpoint
@@ -1496,6 +1552,20 @@ module Aws::QuickSight
1496
1552
  end
1497
1553
  end
1498
1554
 
1555
+ class ListRoleMemberships
1556
+ def self.build(context)
1557
+ unless context.config.regional_endpoint
1558
+ endpoint = context.config.endpoint.to_s
1559
+ end
1560
+ Aws::QuickSight::EndpointParameters.new(
1561
+ region: context.config.region,
1562
+ use_dual_stack: context.config.use_dualstack_endpoint,
1563
+ use_fips: context.config.use_fips_endpoint,
1564
+ endpoint: endpoint,
1565
+ )
1566
+ end
1567
+ end
1568
+
1499
1569
  class ListTagsForResource
1500
1570
  def self.build(context)
1501
1571
  unless context.config.regional_endpoint
@@ -2112,6 +2182,20 @@ module Aws::QuickSight
2112
2182
  end
2113
2183
  end
2114
2184
 
2185
+ class UpdateRoleCustomPermission
2186
+ def self.build(context)
2187
+ unless context.config.regional_endpoint
2188
+ endpoint = context.config.endpoint.to_s
2189
+ end
2190
+ Aws::QuickSight::EndpointParameters.new(
2191
+ region: context.config.region,
2192
+ use_dual_stack: context.config.use_dualstack_endpoint,
2193
+ use_fips: context.config.use_fips_endpoint,
2194
+ endpoint: endpoint,
2195
+ )
2196
+ end
2197
+ end
2198
+
2115
2199
  class UpdateTemplate
2116
2200
  def self.build(context)
2117
2201
  unless context.config.regional_endpoint
@@ -86,6 +86,8 @@ module Aws::QuickSight
86
86
  Aws::QuickSight::Endpoints::CreateNamespace.build(context)
87
87
  when :create_refresh_schedule
88
88
  Aws::QuickSight::Endpoints::CreateRefreshSchedule.build(context)
89
+ when :create_role_membership
90
+ Aws::QuickSight::Endpoints::CreateRoleMembership.build(context)
89
91
  when :create_template
90
92
  Aws::QuickSight::Endpoints::CreateTemplate.build(context)
91
93
  when :create_template_alias
@@ -128,6 +130,10 @@ module Aws::QuickSight
128
130
  Aws::QuickSight::Endpoints::DeleteNamespace.build(context)
129
131
  when :delete_refresh_schedule
130
132
  Aws::QuickSight::Endpoints::DeleteRefreshSchedule.build(context)
133
+ when :delete_role_custom_permission
134
+ Aws::QuickSight::Endpoints::DeleteRoleCustomPermission.build(context)
135
+ when :delete_role_membership
136
+ Aws::QuickSight::Endpoints::DeleteRoleMembership.build(context)
131
137
  when :delete_template
132
138
  Aws::QuickSight::Endpoints::DeleteTemplate.build(context)
133
139
  when :delete_template_alias
@@ -202,6 +208,8 @@ module Aws::QuickSight
202
208
  Aws::QuickSight::Endpoints::DescribeNamespace.build(context)
203
209
  when :describe_refresh_schedule
204
210
  Aws::QuickSight::Endpoints::DescribeRefreshSchedule.build(context)
211
+ when :describe_role_custom_permission
212
+ Aws::QuickSight::Endpoints::DescribeRoleCustomPermission.build(context)
205
213
  when :describe_template
206
214
  Aws::QuickSight::Endpoints::DescribeTemplate.build(context)
207
215
  when :describe_template_alias
@@ -268,6 +276,8 @@ module Aws::QuickSight
268
276
  Aws::QuickSight::Endpoints::ListNamespaces.build(context)
269
277
  when :list_refresh_schedules
270
278
  Aws::QuickSight::Endpoints::ListRefreshSchedules.build(context)
279
+ when :list_role_memberships
280
+ Aws::QuickSight::Endpoints::ListRoleMemberships.build(context)
271
281
  when :list_tags_for_resource
272
282
  Aws::QuickSight::Endpoints::ListTagsForResource.build(context)
273
283
  when :list_template_aliases
@@ -356,6 +366,8 @@ module Aws::QuickSight
356
366
  Aws::QuickSight::Endpoints::UpdatePublicSharingSettings.build(context)
357
367
  when :update_refresh_schedule
358
368
  Aws::QuickSight::Endpoints::UpdateRefreshSchedule.build(context)
369
+ when :update_role_custom_permission
370
+ Aws::QuickSight::Endpoints::UpdateRoleCustomPermission.build(context)
359
371
  when :update_template
360
372
  Aws::QuickSight::Endpoints::UpdateTemplate.build(context)
361
373
  when :update_template_alias