1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
open Awso_datazone
open Awso_lwt
module Io = Http.Io
let eval ?endpoint_url ?cfg endpoint input =
Io.bind (Io.resolve_cfg cfg)
(fun cfg ->
let meth = Endpoints.method_of_endpoint endpoint in
let uri = Endpoints.uri_of_endpoint endpoint input in
Io.map
(Io.call ?endpoint_url ~cfg ~service:Values.service meth
(Endpoints.to_request endpoint input) uri)
(fun resp_result -> Endpoints.of_response endpoint resp_result))
let accept_predictions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AcceptPredictions input
let accept_subscription_request ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AcceptSubscriptionRequest input
let add_entity_owner ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AddEntityOwner input
let add_policy_grant ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AddPolicyGrant input
let associate_environment_role ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AssociateEnvironmentRole input
let associate_governed_terms ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AssociateGovernedTerms input
let batch_get_attributes_metadata ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchGetAttributesMetadata input
let batch_put_attributes_metadata ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchPutAttributesMetadata input
let cancel_metadata_generation_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CancelMetadataGenerationRun input
let cancel_subscription ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CancelSubscription input
let create_account_pool ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateAccountPool input
let create_asset ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateAsset input
let create_asset_filter ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateAssetFilter input
let create_asset_revision ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateAssetRevision input
let create_asset_type ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateAssetType input
let create_connection ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateConnection input
let create_data_product ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateDataProduct input
let create_data_product_revision ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateDataProductRevision input
let create_data_source ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateDataSource input
let create_domain ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateDomain input
let create_domain_unit ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateDomainUnit input
let create_environment ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateEnvironment input
let create_environment_action ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateEnvironmentAction input
let create_environment_blueprint ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateEnvironmentBlueprint input
let create_environment_profile ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateEnvironmentProfile input
let create_form_type ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateFormType input
let create_glossary ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateGlossary input
let create_glossary_term ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateGlossaryTerm input
let create_group_profile ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateGroupProfile input
let create_listing_change_set ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateListingChangeSet input
let create_notebook ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateNotebook input
let create_project ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateProject input
let create_project_membership ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateProjectMembership input
let create_project_profile ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateProjectProfile input
let create_rule ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateRule input
let create_subscription_grant ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateSubscriptionGrant input
let create_subscription_request ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateSubscriptionRequest input
let create_subscription_target ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateSubscriptionTarget input
let create_user_profile ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateUserProfile input
let delete_account_pool ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteAccountPool input
let delete_asset ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteAsset input
let delete_asset_filter ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteAssetFilter input
let delete_asset_type ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteAssetType input
let delete_connection ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteConnection input
let delete_data_export_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteDataExportConfiguration input
let delete_data_product ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteDataProduct input
let delete_data_source ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteDataSource input
let delete_domain ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteDomain input
let delete_domain_unit ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteDomainUnit input
let delete_environment ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteEnvironment input
let delete_environment_action ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteEnvironmentAction input
let delete_environment_blueprint ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteEnvironmentBlueprint input
let delete_environment_blueprint_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteEnvironmentBlueprintConfiguration
input
let delete_environment_profile ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteEnvironmentProfile input
let delete_form_type ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteFormType input
let delete_glossary ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteGlossary input
let delete_glossary_term ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteGlossaryTerm input
let delete_listing ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteListing input
let delete_notebook ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteNotebook input
let delete_project ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteProject input
let delete_project_membership ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteProjectMembership input
let delete_project_profile ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteProjectProfile input
let delete_rule ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteRule input
let delete_subscription_grant ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteSubscriptionGrant input
let delete_subscription_request ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteSubscriptionRequest input
let delete_subscription_target ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteSubscriptionTarget input
let delete_time_series_data_points ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteTimeSeriesDataPoints input
let disassociate_environment_role ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DisassociateEnvironmentRole input
let disassociate_governed_terms ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DisassociateGovernedTerms input
let get_account_pool ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetAccountPool input
let get_asset ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetAsset input
let get_asset_filter ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetAssetFilter input
let get_asset_type ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetAssetType input
let get_connection ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetConnection input
let get_data_export_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetDataExportConfiguration input
let get_data_product ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetDataProduct input
let get_data_source ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetDataSource input
let get_data_source_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetDataSourceRun input
let get_domain ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetDomain input
let get_domain_unit ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetDomainUnit input
let get_environment ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetEnvironment input
let get_environment_action ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetEnvironmentAction input
let get_environment_blueprint ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetEnvironmentBlueprint input
let get_environment_blueprint_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetEnvironmentBlueprintConfiguration
input
let get_environment_credentials ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetEnvironmentCredentials input
let get_environment_profile ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetEnvironmentProfile input
let get_form_type ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetFormType input
let get_glossary ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetGlossary input
let get_glossary_term ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetGlossaryTerm input
let get_group_profile ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetGroupProfile input
let get_iam_portal_login_url ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetIamPortalLoginUrl input
let get_job_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetJobRun input
let get_lineage_event ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetLineageEvent input
let get_lineage_node ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetLineageNode input
let get_listing ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetListing input
let get_metadata_generation_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetMetadataGenerationRun input
let get_notebook ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetNotebook input
let get_notebook_export ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetNotebookExport input
let get_notebook_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetNotebookRun input
let get_project ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetProject input
let get_project_profile ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetProjectProfile input
let get_rule ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetRule input
let get_subscription ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetSubscription input
let get_subscription_grant ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetSubscriptionGrant input
let get_subscription_request_details ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetSubscriptionRequestDetails input
let get_subscription_target ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetSubscriptionTarget input
let get_time_series_data_point ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetTimeSeriesDataPoint input
let get_user_profile ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetUserProfile input
let list_account_pools ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListAccountPools input
let list_accounts_in_account_pool ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListAccountsInAccountPool input
let list_asset_filters ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListAssetFilters input
let list_asset_revisions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListAssetRevisions input
let list_connections ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListConnections input
let list_data_product_revisions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListDataProductRevisions input
let list_data_source_run_activities ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListDataSourceRunActivities input
let list_data_source_runs ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListDataSourceRuns input
let list_data_sources ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListDataSources input
let list_domain_units_for_parent ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListDomainUnitsForParent input
let list_domains ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListDomains input
let list_entity_owners ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListEntityOwners input
let list_environment_actions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListEnvironmentActions input
let list_environment_blueprint_configurations ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListEnvironmentBlueprintConfigurations
input
let list_environment_blueprints ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListEnvironmentBlueprints input
let list_environment_profiles ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListEnvironmentProfiles input
let list_environments ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListEnvironments input
let list_job_runs ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListJobRuns input
let list_lineage_events ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListLineageEvents input
let list_lineage_node_history ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListLineageNodeHistory input
let list_metadata_generation_runs ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListMetadataGenerationRuns input
let list_notebook_runs ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListNotebookRuns input
let list_notebooks ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListNotebooks input
let list_notifications ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListNotifications input
let list_policy_grants ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListPolicyGrants input
let list_project_memberships ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListProjectMemberships input
let list_project_profiles ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListProjectProfiles input
let list_projects ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListProjects input
let list_rules ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListRules input
let list_subscription_grants ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListSubscriptionGrants input
let list_subscription_requests ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListSubscriptionRequests input
let list_subscription_targets ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListSubscriptionTargets input
let list_subscriptions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListSubscriptions input
let list_tags_for_resource ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListTagsForResource input
let list_time_series_data_points ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListTimeSeriesDataPoints input
let post_lineage_event ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.PostLineageEvent input
let post_time_series_data_points ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.PostTimeSeriesDataPoints input
let put_data_export_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.PutDataExportConfiguration input
let put_environment_blueprint_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.PutEnvironmentBlueprintConfiguration
input
let query_graph ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.QueryGraph input
let reject_predictions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.RejectPredictions input
let reject_subscription_request ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.RejectSubscriptionRequest input
let remove_entity_owner ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.RemoveEntityOwner input
let remove_policy_grant ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.RemovePolicyGrant input
let revoke_subscription ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.RevokeSubscription input
let search ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.Search input
let search_group_profiles ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchGroupProfiles input
let search_listings ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchListings input
let search_types ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchTypes input
let search_user_profiles ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SearchUserProfiles input
let start_data_source_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartDataSourceRun input
let start_metadata_generation_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartMetadataGenerationRun input
let start_notebook_export ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartNotebookExport input
let start_notebook_import ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartNotebookImport input
let start_notebook_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartNotebookRun input
let stop_notebook_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StopNotebookRun input
let tag_resource ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.TagResource input
let untag_resource ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UntagResource input
let update_account_pool ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateAccountPool input
let update_asset_filter ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateAssetFilter input
let update_connection ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateConnection input
let update_data_source ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateDataSource input
let update_domain ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateDomain input
let update_domain_unit ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateDomainUnit input
let update_environment ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateEnvironment input
let update_environment_action ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateEnvironmentAction input
let update_environment_blueprint ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateEnvironmentBlueprint input
let update_environment_profile ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateEnvironmentProfile input
let update_glossary ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateGlossary input
let update_glossary_term ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateGlossaryTerm input
let update_group_profile ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateGroupProfile input
let update_notebook ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateNotebook input
let update_project ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateProject input
let update_project_profile ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateProjectProfile input
let update_root_domain_unit_owner ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateRootDomainUnitOwner input
let update_rule ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateRule input
let update_subscription_grant_status ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateSubscriptionGrantStatus input
let update_subscription_request ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateSubscriptionRequest input
let update_subscription_target ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateSubscriptionTarget input
let update_user_profile ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateUserProfile input