aws-sdk-datazone 1.19.0 → 1.20.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.
@@ -38,6 +38,32 @@ module Aws::DataZone
38
38
  end
39
39
  end
40
40
 
41
+ class AddEntityOwner
42
+ def self.build(context)
43
+ unless context.config.regional_endpoint
44
+ endpoint = context.config.endpoint.to_s
45
+ end
46
+ Aws::DataZone::EndpointParameters.new(
47
+ region: context.config.region,
48
+ use_fips: context.config.use_fips_endpoint,
49
+ endpoint: endpoint,
50
+ )
51
+ end
52
+ end
53
+
54
+ class AddPolicyGrant
55
+ def self.build(context)
56
+ unless context.config.regional_endpoint
57
+ endpoint = context.config.endpoint.to_s
58
+ end
59
+ Aws::DataZone::EndpointParameters.new(
60
+ region: context.config.region,
61
+ use_fips: context.config.use_fips_endpoint,
62
+ endpoint: endpoint,
63
+ )
64
+ end
65
+ end
66
+
41
67
  class AssociateEnvironmentRole
42
68
  def self.build(context)
43
69
  unless context.config.regional_endpoint
@@ -181,6 +207,19 @@ module Aws::DataZone
181
207
  end
182
208
  end
183
209
 
210
+ class CreateDomainUnit
211
+ def self.build(context)
212
+ unless context.config.regional_endpoint
213
+ endpoint = context.config.endpoint.to_s
214
+ end
215
+ Aws::DataZone::EndpointParameters.new(
216
+ region: context.config.region,
217
+ use_fips: context.config.use_fips_endpoint,
218
+ endpoint: endpoint,
219
+ )
220
+ end
221
+ end
222
+
184
223
  class CreateEnvironment
185
224
  def self.build(context)
186
225
  unless context.config.regional_endpoint
@@ -441,6 +480,19 @@ module Aws::DataZone
441
480
  end
442
481
  end
443
482
 
483
+ class DeleteDomainUnit
484
+ def self.build(context)
485
+ unless context.config.regional_endpoint
486
+ endpoint = context.config.endpoint.to_s
487
+ end
488
+ Aws::DataZone::EndpointParameters.new(
489
+ region: context.config.region,
490
+ use_fips: context.config.use_fips_endpoint,
491
+ endpoint: endpoint,
492
+ )
493
+ end
494
+ end
495
+
444
496
  class DeleteEnvironment
445
497
  def self.build(context)
446
498
  unless context.config.regional_endpoint
@@ -727,6 +779,19 @@ module Aws::DataZone
727
779
  end
728
780
  end
729
781
 
782
+ class GetDomainUnit
783
+ def self.build(context)
784
+ unless context.config.regional_endpoint
785
+ endpoint = context.config.endpoint.to_s
786
+ end
787
+ Aws::DataZone::EndpointParameters.new(
788
+ region: context.config.region,
789
+ use_fips: context.config.use_fips_endpoint,
790
+ endpoint: endpoint,
791
+ )
792
+ end
793
+ end
794
+
730
795
  class GetEnvironment
731
796
  def self.build(context)
732
797
  unless context.config.regional_endpoint
@@ -1078,6 +1143,19 @@ module Aws::DataZone
1078
1143
  end
1079
1144
  end
1080
1145
 
1146
+ class ListDomainUnitsForParent
1147
+ def self.build(context)
1148
+ unless context.config.regional_endpoint
1149
+ endpoint = context.config.endpoint.to_s
1150
+ end
1151
+ Aws::DataZone::EndpointParameters.new(
1152
+ region: context.config.region,
1153
+ use_fips: context.config.use_fips_endpoint,
1154
+ endpoint: endpoint,
1155
+ )
1156
+ end
1157
+ end
1158
+
1081
1159
  class ListDomains
1082
1160
  def self.build(context)
1083
1161
  unless context.config.regional_endpoint
@@ -1091,6 +1169,19 @@ module Aws::DataZone
1091
1169
  end
1092
1170
  end
1093
1171
 
1172
+ class ListEntityOwners
1173
+ def self.build(context)
1174
+ unless context.config.regional_endpoint
1175
+ endpoint = context.config.endpoint.to_s
1176
+ end
1177
+ Aws::DataZone::EndpointParameters.new(
1178
+ region: context.config.region,
1179
+ use_fips: context.config.use_fips_endpoint,
1180
+ endpoint: endpoint,
1181
+ )
1182
+ end
1183
+ end
1184
+
1094
1185
  class ListEnvironmentActions
1095
1186
  def self.build(context)
1096
1187
  unless context.config.regional_endpoint
@@ -1195,6 +1286,19 @@ module Aws::DataZone
1195
1286
  end
1196
1287
  end
1197
1288
 
1289
+ class ListPolicyGrants
1290
+ def self.build(context)
1291
+ unless context.config.regional_endpoint
1292
+ endpoint = context.config.endpoint.to_s
1293
+ end
1294
+ Aws::DataZone::EndpointParameters.new(
1295
+ region: context.config.region,
1296
+ use_fips: context.config.use_fips_endpoint,
1297
+ endpoint: endpoint,
1298
+ )
1299
+ end
1300
+ end
1301
+
1198
1302
  class ListProjectMemberships
1199
1303
  def self.build(context)
1200
1304
  unless context.config.regional_endpoint
@@ -1364,6 +1468,32 @@ module Aws::DataZone
1364
1468
  end
1365
1469
  end
1366
1470
 
1471
+ class RemoveEntityOwner
1472
+ def self.build(context)
1473
+ unless context.config.regional_endpoint
1474
+ endpoint = context.config.endpoint.to_s
1475
+ end
1476
+ Aws::DataZone::EndpointParameters.new(
1477
+ region: context.config.region,
1478
+ use_fips: context.config.use_fips_endpoint,
1479
+ endpoint: endpoint,
1480
+ )
1481
+ end
1482
+ end
1483
+
1484
+ class RemovePolicyGrant
1485
+ def self.build(context)
1486
+ unless context.config.regional_endpoint
1487
+ endpoint = context.config.endpoint.to_s
1488
+ end
1489
+ Aws::DataZone::EndpointParameters.new(
1490
+ region: context.config.region,
1491
+ use_fips: context.config.use_fips_endpoint,
1492
+ endpoint: endpoint,
1493
+ )
1494
+ end
1495
+ end
1496
+
1367
1497
  class RevokeSubscription
1368
1498
  def self.build(context)
1369
1499
  unless context.config.regional_endpoint
@@ -1533,6 +1663,19 @@ module Aws::DataZone
1533
1663
  end
1534
1664
  end
1535
1665
 
1666
+ class UpdateDomainUnit
1667
+ def self.build(context)
1668
+ unless context.config.regional_endpoint
1669
+ endpoint = context.config.endpoint.to_s
1670
+ end
1671
+ Aws::DataZone::EndpointParameters.new(
1672
+ region: context.config.region,
1673
+ use_fips: context.config.use_fips_endpoint,
1674
+ endpoint: endpoint,
1675
+ )
1676
+ end
1677
+ end
1678
+
1536
1679
  class UpdateEnvironment
1537
1680
  def self.build(context)
1538
1681
  unless context.config.regional_endpoint
@@ -62,6 +62,10 @@ module Aws::DataZone
62
62
  Aws::DataZone::Endpoints::AcceptPredictions.build(context)
63
63
  when :accept_subscription_request
64
64
  Aws::DataZone::Endpoints::AcceptSubscriptionRequest.build(context)
65
+ when :add_entity_owner
66
+ Aws::DataZone::Endpoints::AddEntityOwner.build(context)
67
+ when :add_policy_grant
68
+ Aws::DataZone::Endpoints::AddPolicyGrant.build(context)
65
69
  when :associate_environment_role
66
70
  Aws::DataZone::Endpoints::AssociateEnvironmentRole.build(context)
67
71
  when :cancel_metadata_generation_run
@@ -84,6 +88,8 @@ module Aws::DataZone
84
88
  Aws::DataZone::Endpoints::CreateDataSource.build(context)
85
89
  when :create_domain
86
90
  Aws::DataZone::Endpoints::CreateDomain.build(context)
91
+ when :create_domain_unit
92
+ Aws::DataZone::Endpoints::CreateDomainUnit.build(context)
87
93
  when :create_environment
88
94
  Aws::DataZone::Endpoints::CreateEnvironment.build(context)
89
95
  when :create_environment_action
@@ -124,6 +130,8 @@ module Aws::DataZone
124
130
  Aws::DataZone::Endpoints::DeleteDataSource.build(context)
125
131
  when :delete_domain
126
132
  Aws::DataZone::Endpoints::DeleteDomain.build(context)
133
+ when :delete_domain_unit
134
+ Aws::DataZone::Endpoints::DeleteDomainUnit.build(context)
127
135
  when :delete_environment
128
136
  Aws::DataZone::Endpoints::DeleteEnvironment.build(context)
129
137
  when :delete_environment_action
@@ -168,6 +176,8 @@ module Aws::DataZone
168
176
  Aws::DataZone::Endpoints::GetDataSourceRun.build(context)
169
177
  when :get_domain
170
178
  Aws::DataZone::Endpoints::GetDomain.build(context)
179
+ when :get_domain_unit
180
+ Aws::DataZone::Endpoints::GetDomainUnit.build(context)
171
181
  when :get_environment
172
182
  Aws::DataZone::Endpoints::GetEnvironment.build(context)
173
183
  when :get_environment_action
@@ -222,8 +232,12 @@ module Aws::DataZone
222
232
  Aws::DataZone::Endpoints::ListDataSourceRuns.build(context)
223
233
  when :list_data_sources
224
234
  Aws::DataZone::Endpoints::ListDataSources.build(context)
235
+ when :list_domain_units_for_parent
236
+ Aws::DataZone::Endpoints::ListDomainUnitsForParent.build(context)
225
237
  when :list_domains
226
238
  Aws::DataZone::Endpoints::ListDomains.build(context)
239
+ when :list_entity_owners
240
+ Aws::DataZone::Endpoints::ListEntityOwners.build(context)
227
241
  when :list_environment_actions
228
242
  Aws::DataZone::Endpoints::ListEnvironmentActions.build(context)
229
243
  when :list_environment_blueprint_configurations
@@ -240,6 +254,8 @@ module Aws::DataZone
240
254
  Aws::DataZone::Endpoints::ListMetadataGenerationRuns.build(context)
241
255
  when :list_notifications
242
256
  Aws::DataZone::Endpoints::ListNotifications.build(context)
257
+ when :list_policy_grants
258
+ Aws::DataZone::Endpoints::ListPolicyGrants.build(context)
243
259
  when :list_project_memberships
244
260
  Aws::DataZone::Endpoints::ListProjectMemberships.build(context)
245
261
  when :list_projects
@@ -266,6 +282,10 @@ module Aws::DataZone
266
282
  Aws::DataZone::Endpoints::RejectPredictions.build(context)
267
283
  when :reject_subscription_request
268
284
  Aws::DataZone::Endpoints::RejectSubscriptionRequest.build(context)
285
+ when :remove_entity_owner
286
+ Aws::DataZone::Endpoints::RemoveEntityOwner.build(context)
287
+ when :remove_policy_grant
288
+ Aws::DataZone::Endpoints::RemovePolicyGrant.build(context)
269
289
  when :revoke_subscription
270
290
  Aws::DataZone::Endpoints::RevokeSubscription.build(context)
271
291
  when :search
@@ -292,6 +312,8 @@ module Aws::DataZone
292
312
  Aws::DataZone::Endpoints::UpdateDataSource.build(context)
293
313
  when :update_domain
294
314
  Aws::DataZone::Endpoints::UpdateDomain.build(context)
315
+ when :update_domain_unit
316
+ Aws::DataZone::Endpoints::UpdateDomainUnit.build(context)
295
317
  when :update_environment
296
318
  Aws::DataZone::Endpoints::UpdateEnvironment.build(context)
297
319
  when :update_environment_action