aws-sdk-datazone 1.50.0 → 1.52.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.
@@ -899,6 +899,15 @@ module Aws::DataZone
899
899
 
900
900
  # Cancels the metadata generation run.
901
901
  #
902
+ # Prerequisites:
903
+ #
904
+ # * The run must exist and be in a cancelable status (e.g., SUBMITTED,
905
+ # IN\_PROGRESS).
906
+ #
907
+ # * Runs in SUCCEEDED status cannot be cancelled.
908
+ #
909
+ # * User must have access to the run and cancel permissions.
910
+ #
902
911
  # @option params [required, String] :domain_identifier
903
912
  # The ID of the Amazon DataZone domain in which the metadata generation
904
913
  # run is to be cancelled.
@@ -1093,6 +1102,42 @@ module Aws::DataZone
1093
1102
 
1094
1103
  # Creates an asset in Amazon DataZone catalog.
1095
1104
  #
1105
+ # Before creating assets, make sure that the following requirements are
1106
+ # met:
1107
+ #
1108
+ # * `--domain-identifier` must refer to an existing domain.
1109
+ #
1110
+ # * `--owning-project-identifier` must be a valid project within the
1111
+ # domain.
1112
+ #
1113
+ # * Asset type must be created beforehand using `create-asset-type`, or
1114
+ # be a supported system-defined type. For more information, see
1115
+ # [create-asset-type][1].
1116
+ #
1117
+ # * `--type-revision` (if used) must match a valid revision of the asset
1118
+ # type.
1119
+ #
1120
+ # * Form type must exist and be associated with the asset type. Use
1121
+ # `create-form-type` to define. For more information, see
1122
+ # [create-form-type][2].
1123
+ #
1124
+ # * Form content must include all required fields as per the form schema
1125
+ # (e.g., `bucketArn`).
1126
+ #
1127
+ # You must invoke the following pre-requisite commands before invoking
1128
+ # this API:
1129
+ #
1130
+ # * [CreateFormType][3]
1131
+ #
1132
+ # * [CreateAssetType][4]
1133
+ #
1134
+ #
1135
+ #
1136
+ # [1]: https://docs.aws.amazon.com/cli/latest/reference/datazone/create-asset-type.html
1137
+ # [2]: https://docs.aws.amazon.com/cli/latest/reference/datazone/create-form-type.html
1138
+ # [3]: https://docs.aws.amazon.com/datazone/latest/APIReference/API_CreateFormType.html
1139
+ # [4]: https://docs.aws.amazon.com/datazone/latest/APIReference/API_CreateAssetType.html
1140
+ #
1096
1141
  # @option params [String] :client_token
1097
1142
  # A unique, case-sensitive identifier that is provided to ensure the
1098
1143
  # idempotency of the request.
@@ -1235,6 +1280,28 @@ module Aws::DataZone
1235
1280
 
1236
1281
  # Creates a data asset filter.
1237
1282
  #
1283
+ # Asset filters provide a sophisticated way to create controlled views
1284
+ # of data assets by selecting specific columns or applying row-level
1285
+ # filters. This capability is crucial for organizations that need to
1286
+ # share data while maintaining security and privacy controls. For
1287
+ # example, your database might be filtered to show only non-PII fields
1288
+ # to certain users, or sales data might be filtered by region for
1289
+ # different regional teams. Asset filters enable fine-grained access
1290
+ # control while maintaining a single source of truth.
1291
+ #
1292
+ # Prerequisites:
1293
+ #
1294
+ # * A valid domain (`--domain-identifier`) must exist.
1295
+ #
1296
+ # * A data asset (`--asset-identifier`) must already be created under
1297
+ # that domain.
1298
+ #
1299
+ # * The asset must have the referenced columns available in its schema
1300
+ # for column-based filtering.
1301
+ #
1302
+ # * You cannot specify both (`columnConfiguration`,
1303
+ # `rowConfiguration`)at the same time.
1304
+ #
1238
1305
  # @option params [required, String] :asset_identifier
1239
1306
  # The ID of the data asset.
1240
1307
  #
@@ -1405,6 +1472,28 @@ module Aws::DataZone
1405
1472
 
1406
1473
  # Creates a revision of the asset.
1407
1474
  #
1475
+ # Asset revisions represent new versions of existing assets, capturing
1476
+ # changes to either the underlying data or its metadata. They maintain a
1477
+ # historical record of how assets evolve over time, who made changes,
1478
+ # and when those changes occurred. This versioning capability is crucial
1479
+ # for governance and compliance, allowing organizations to track
1480
+ # changes, understand their impact, and roll back if necessary.
1481
+ #
1482
+ # Prerequisites:
1483
+ #
1484
+ # * Asset must already exist in the domain with identifier.
1485
+ #
1486
+ # * The form type with correct revision must be registered in the same
1487
+ # domain.
1488
+ #
1489
+ # * The form content must include all required fields (e.g., `bucketArn`
1490
+ # for `S3ObjectCollectionForm`).
1491
+ #
1492
+ # * The owning project of the original asset must still exist and be
1493
+ # active.
1494
+ #
1495
+ # * User must have write access to the project and domain.
1496
+ #
1408
1497
  # @option params [String] :client_token
1409
1498
  # A unique, case-sensitive identifier that is provided to ensure the
1410
1499
  # idempotency of the request.
@@ -1538,6 +1627,22 @@ module Aws::DataZone
1538
1627
 
1539
1628
  # Creates a custom asset type.
1540
1629
  #
1630
+ # Prerequisites:
1631
+ #
1632
+ # * The form type with `typeIdentifier` and `typeRevision` must exist
1633
+ # and be published.
1634
+ #
1635
+ # * You must have `CreateAssetType` permissions.
1636
+ #
1637
+ # * The domain-identifier and owning-project-identifier must be valid
1638
+ # and active.
1639
+ #
1640
+ # * The name of the asset type must be unique within the domain —
1641
+ # duplicate names will cause failure.
1642
+ #
1643
+ # * JSON input must be valid — incorrect formatting causes Invalid JSON
1644
+ # errors.
1645
+ #
1541
1646
  # @option params [String] :description
1542
1647
  # The descripton of the custom asset type.
1543
1648
  #
@@ -1910,6 +2015,27 @@ module Aws::DataZone
1910
2015
 
1911
2016
  # Creates a data product.
1912
2017
  #
2018
+ # A data product is a comprehensive package that combines data assets
2019
+ # with their associated metadata, documentation, and access controls.
2020
+ # It's designed to serve specific business needs or use cases, making
2021
+ # it easier for users to find and consume data appropriately. Data
2022
+ # products include important information about data quality, freshness,
2023
+ # and usage guidelines, effectively bridging the gap between data
2024
+ # producers and consumers while ensuring proper governance.
2025
+ #
2026
+ # Prerequisites:
2027
+ #
2028
+ # * The domain must exist and be accessible.
2029
+ #
2030
+ # * The owning project must be valid and active.
2031
+ #
2032
+ # * The name must be unique within the domain (no existing data product
2033
+ # with the same name).
2034
+ #
2035
+ # * User must have create permissions for data products in the project.
2036
+ #
2037
+ # * The domain must have Amazon DataZone publishing enabled.
2038
+ #
1913
2039
  # @option params [String] :client_token
1914
2040
  # A unique, case-sensitive identifier that is provided to ensure the
1915
2041
  # idempotency of the request.
@@ -2020,6 +2146,17 @@ module Aws::DataZone
2020
2146
 
2021
2147
  # Creates a data product revision.
2022
2148
  #
2149
+ # Prerequisites:
2150
+ #
2151
+ # * The original data product must exist in the given domain.
2152
+ #
2153
+ # * User must have permissions on the data product.
2154
+ #
2155
+ # * The domain must be valid and accessible.
2156
+ #
2157
+ # * The new revision name must comply with naming constraints (if
2158
+ # required).
2159
+ #
2023
2160
  # @option params [String] :client_token
2024
2161
  # A unique, case-sensitive identifier that is provided to ensure the
2025
2162
  # idempotency of the request.
@@ -2661,6 +2798,7 @@ module Aws::DataZone
2661
2798
  # resp.user_parameters[0].field_type #=> String
2662
2799
  # resp.user_parameters[0].is_editable #=> Boolean
2663
2800
  # resp.user_parameters[0].is_optional #=> Boolean
2801
+ # resp.user_parameters[0].is_update_supported #=> Boolean
2664
2802
  # resp.user_parameters[0].key_name #=> String
2665
2803
  #
2666
2804
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateEnvironment AWS API Documentation
@@ -2733,6 +2871,91 @@ module Aws::DataZone
2733
2871
  req.send_request(options)
2734
2872
  end
2735
2873
 
2874
+ # Creates a Amazon DataZone blueprint.
2875
+ #
2876
+ # @option params [String] :description
2877
+ # The description of the Amazon DataZone blueprint.
2878
+ #
2879
+ # @option params [required, String] :domain_identifier
2880
+ # The identifier of the domain in which this blueprint is created.
2881
+ #
2882
+ # @option params [required, String] :name
2883
+ # The name of this Amazon DataZone blueprint.
2884
+ #
2885
+ # @option params [required, Types::ProvisioningProperties] :provisioning_properties
2886
+ # The provisioning properties of this Amazon DataZone blueprint.
2887
+ #
2888
+ # @option params [Array<Types::CustomParameter>] :user_parameters
2889
+ # The user parameters of this Amazon DataZone blueprint.
2890
+ #
2891
+ # @return [Types::CreateEnvironmentBlueprintOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2892
+ #
2893
+ # * {Types::CreateEnvironmentBlueprintOutput#created_at #created_at} => Time
2894
+ # * {Types::CreateEnvironmentBlueprintOutput#deployment_properties #deployment_properties} => Types::DeploymentProperties
2895
+ # * {Types::CreateEnvironmentBlueprintOutput#description #description} => String
2896
+ # * {Types::CreateEnvironmentBlueprintOutput#glossary_terms #glossary_terms} => Array&lt;String&gt;
2897
+ # * {Types::CreateEnvironmentBlueprintOutput#id #id} => String
2898
+ # * {Types::CreateEnvironmentBlueprintOutput#name #name} => String
2899
+ # * {Types::CreateEnvironmentBlueprintOutput#provider #provider} => String
2900
+ # * {Types::CreateEnvironmentBlueprintOutput#provisioning_properties #provisioning_properties} => Types::ProvisioningProperties
2901
+ # * {Types::CreateEnvironmentBlueprintOutput#updated_at #updated_at} => Time
2902
+ # * {Types::CreateEnvironmentBlueprintOutput#user_parameters #user_parameters} => Array&lt;Types::CustomParameter&gt;
2903
+ #
2904
+ # @example Request syntax with placeholder values
2905
+ #
2906
+ # resp = client.create_environment_blueprint({
2907
+ # description: "Description",
2908
+ # domain_identifier: "DomainId", # required
2909
+ # name: "EnvironmentBlueprintName", # required
2910
+ # provisioning_properties: { # required
2911
+ # cloud_formation: {
2912
+ # template_url: "String", # required
2913
+ # },
2914
+ # },
2915
+ # user_parameters: [
2916
+ # {
2917
+ # default_value: "String",
2918
+ # description: "Description",
2919
+ # field_type: "String", # required
2920
+ # is_editable: false,
2921
+ # is_optional: false,
2922
+ # is_update_supported: false,
2923
+ # key_name: "CustomParameterKeyNameString", # required
2924
+ # },
2925
+ # ],
2926
+ # })
2927
+ #
2928
+ # @example Response structure
2929
+ #
2930
+ # resp.created_at #=> Time
2931
+ # resp.deployment_properties.end_timeout_minutes #=> Integer
2932
+ # resp.deployment_properties.start_timeout_minutes #=> Integer
2933
+ # resp.description #=> String
2934
+ # resp.glossary_terms #=> Array
2935
+ # resp.glossary_terms[0] #=> String
2936
+ # resp.id #=> String
2937
+ # resp.name #=> String
2938
+ # resp.provider #=> String
2939
+ # resp.provisioning_properties.cloud_formation.template_url #=> String
2940
+ # resp.updated_at #=> Time
2941
+ # resp.user_parameters #=> Array
2942
+ # resp.user_parameters[0].default_value #=> String
2943
+ # resp.user_parameters[0].description #=> String
2944
+ # resp.user_parameters[0].field_type #=> String
2945
+ # resp.user_parameters[0].is_editable #=> Boolean
2946
+ # resp.user_parameters[0].is_optional #=> Boolean
2947
+ # resp.user_parameters[0].is_update_supported #=> Boolean
2948
+ # resp.user_parameters[0].key_name #=> String
2949
+ #
2950
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateEnvironmentBlueprint AWS API Documentation
2951
+ #
2952
+ # @overload create_environment_blueprint(params = {})
2953
+ # @param [Hash] params ({})
2954
+ def create_environment_blueprint(params = {}, options = {})
2955
+ req = build_request(:create_environment_blueprint, params)
2956
+ req.send_request(options)
2957
+ end
2958
+
2736
2959
  # Creates an Amazon DataZone environment profile.
2737
2960
  #
2738
2961
  # @option params [String] :aws_account_id
@@ -2816,6 +3039,7 @@ module Aws::DataZone
2816
3039
  # resp.user_parameters[0].field_type #=> String
2817
3040
  # resp.user_parameters[0].is_editable #=> Boolean
2818
3041
  # resp.user_parameters[0].is_optional #=> Boolean
3042
+ # resp.user_parameters[0].is_update_supported #=> Boolean
2819
3043
  # resp.user_parameters[0].key_name #=> String
2820
3044
  #
2821
3045
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateEnvironmentProfile AWS API Documentation
@@ -2829,6 +3053,14 @@ module Aws::DataZone
2829
3053
 
2830
3054
  # Creates a metadata form type.
2831
3055
  #
3056
+ # Prerequisites:
3057
+ #
3058
+ # * The domain must exist and be in an `ENABLED` state.
3059
+ #
3060
+ # * The owning project must exist and be accessible.
3061
+ #
3062
+ # * The name must be unique within the domain.
3063
+ #
2832
3064
  # @option params [String] :description
2833
3065
  # The description of this Amazon DataZone metadata form type.
2834
3066
  #
@@ -2893,6 +3125,25 @@ module Aws::DataZone
2893
3125
 
2894
3126
  # Creates an Amazon DataZone business glossary.
2895
3127
  #
3128
+ # Specifies that this is a create glossary policy.
3129
+ #
3130
+ # A glossary serves as the central repository for business terminology
3131
+ # and definitions within an organization. It helps establish and
3132
+ # maintain a common language across different departments and teams,
3133
+ # reducing miscommunication and ensuring consistent interpretation of
3134
+ # business concepts. Glossaries can include hierarchical relationships
3135
+ # between terms, cross-references, and links to actual data assets,
3136
+ # making them invaluable for both business users and technical teams
3137
+ # trying to understand and use data correctly.
3138
+ #
3139
+ # Prerequisites:
3140
+ #
3141
+ # * Domain must exist and be in an active state.
3142
+ #
3143
+ # * Owning project must exist and be accessible by the caller.
3144
+ #
3145
+ # * The glossary name must be unique within the domain.
3146
+ #
2896
3147
  # @option params [String] :client_token
2897
3148
  # A unique, case-sensitive identifier that is provided to ensure the
2898
3149
  # idempotency of the request.
@@ -2963,6 +3214,27 @@ module Aws::DataZone
2963
3214
 
2964
3215
  # Creates a business glossary term.
2965
3216
  #
3217
+ # A glossary term represents an individual entry within the Amazon
3218
+ # DataZone glossary, serving as a standardized definition for a specific
3219
+ # business concept or data element. Each term can include rich metadata
3220
+ # such as detailed definitions, synonyms, related terms, and usage
3221
+ # examples. Glossary terms can be linked directly to data assets,
3222
+ # providing business context to technical data elements. This linking
3223
+ # capability helps users understand the business meaning of data fields
3224
+ # and ensures consistent interpretation across different systems and
3225
+ # teams. Terms can also have relationships with other terms, creating a
3226
+ # semantic network that reflects the complexity of business concepts.
3227
+ #
3228
+ # Prerequisites:
3229
+ #
3230
+ # * Domain must exist.
3231
+ #
3232
+ # * Glossary must exist and be in an ENABLED state.
3233
+ #
3234
+ # * The term name must be unique within the glossary.
3235
+ #
3236
+ # * Ensure term does not conflict with existing terms in hierarchy.
3237
+ #
2966
3238
  # @option params [String] :client_token
2967
3239
  # A unique, case-sensitive identifier that is provided to ensure the
2968
3240
  # idempotency of the request.
@@ -3915,6 +4187,7 @@ module Aws::DataZone
3915
4187
  # @example Response structure
3916
4188
  #
3917
4189
  # resp.details.iam.arn #=> String
4190
+ # resp.details.iam.principal_id #=> String
3918
4191
  # resp.details.sso.first_name #=> String
3919
4192
  # resp.details.sso.last_name #=> String
3920
4193
  # resp.details.sso.username #=> String
@@ -3960,6 +4233,17 @@ module Aws::DataZone
3960
4233
 
3961
4234
  # Deletes an asset in Amazon DataZone.
3962
4235
  #
4236
+ # * --domain-identifier must refer to a valid and existing domain.
4237
+ #
4238
+ # * --identifier must refer to an existing asset in the specified
4239
+ # domain.
4240
+ #
4241
+ # * Asset must not be referenced in any existing asset filters.
4242
+ #
4243
+ # * Asset must not be linked to any draft or published data product.
4244
+ #
4245
+ # * User must have delete permissions for the domain and project.
4246
+ #
3963
4247
  # @option params [required, String] :domain_identifier
3964
4248
  # The ID of the Amazon DataZone domain in which the asset is deleted.
3965
4249
  #
@@ -3986,6 +4270,14 @@ module Aws::DataZone
3986
4270
 
3987
4271
  # Deletes an asset filter.
3988
4272
  #
4273
+ # Prerequisites:
4274
+ #
4275
+ # * The asset filter must exist.
4276
+ #
4277
+ # * The domain and asset must not have been deleted.
4278
+ #
4279
+ # * Ensure the --identifier refers to a valid filter ID.
4280
+ #
3989
4281
  # @option params [required, String] :asset_identifier
3990
4282
  # The ID of the data asset.
3991
4283
  #
@@ -4016,6 +4308,18 @@ module Aws::DataZone
4016
4308
 
4017
4309
  # Deletes an asset type in Amazon DataZone.
4018
4310
  #
4311
+ # Prerequisites:
4312
+ #
4313
+ # * The asset type must exist in the domain.
4314
+ #
4315
+ # * You must have DeleteAssetType permission.
4316
+ #
4317
+ # * The asset type must not be in use (e.g., assigned to any asset). If
4318
+ # used, deletion will fail.
4319
+ #
4320
+ # * You should retrieve the asset type using get-asset-type to confirm
4321
+ # its presence before deletion.
4322
+ #
4019
4323
  # @option params [required, String] :domain_identifier
4020
4324
  # The ID of the Amazon DataZone domain in which the asset type is
4021
4325
  # deleted.
@@ -4077,6 +4381,17 @@ module Aws::DataZone
4077
4381
 
4078
4382
  # Deletes a data product in Amazon DataZone.
4079
4383
  #
4384
+ # Prerequisites:
4385
+ #
4386
+ # * The data product must exist and not be deleted or archived.
4387
+ #
4388
+ # * The user must have delete permissions for the data product.
4389
+ #
4390
+ # * Ensure there are no active dependencies (e.g., published links,
4391
+ # assets using the product).
4392
+ #
4393
+ # * Domain and project must be active.
4394
+ #
4080
4395
  # @option params [required, String] :domain_identifier
4081
4396
  # The ID of the Amazon DataZone domain in which the data product is
4082
4397
  # deleted.
@@ -4360,6 +4675,33 @@ module Aws::DataZone
4360
4675
  req.send_request(options)
4361
4676
  end
4362
4677
 
4678
+ # Deletes a blueprint in Amazon DataZone.
4679
+ #
4680
+ # @option params [required, String] :domain_identifier
4681
+ # The ID of the Amazon DataZone domain in which the blueprint is
4682
+ # deleted.
4683
+ #
4684
+ # @option params [required, String] :identifier
4685
+ # The ID of the blueprint that is deleted.
4686
+ #
4687
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4688
+ #
4689
+ # @example Request syntax with placeholder values
4690
+ #
4691
+ # resp = client.delete_environment_blueprint({
4692
+ # domain_identifier: "DomainId", # required
4693
+ # identifier: "EnvironmentBlueprintId", # required
4694
+ # })
4695
+ #
4696
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteEnvironmentBlueprint AWS API Documentation
4697
+ #
4698
+ # @overload delete_environment_blueprint(params = {})
4699
+ # @param [Hash] params ({})
4700
+ def delete_environment_blueprint(params = {}, options = {})
4701
+ req = build_request(:delete_environment_blueprint, params)
4702
+ req.send_request(options)
4703
+ end
4704
+
4363
4705
  # Deletes the blueprint configuration in Amazon DataZone.
4364
4706
  #
4365
4707
  # @option params [required, String] :domain_identifier
@@ -4414,7 +4756,19 @@ module Aws::DataZone
4414
4756
  req.send_request(options)
4415
4757
  end
4416
4758
 
4417
- # Delets and metadata form type in Amazon DataZone.
4759
+ # Deletes and metadata form type in Amazon DataZone.
4760
+ #
4761
+ # Prerequisites:
4762
+ #
4763
+ # * The form type must exist in the domain.
4764
+ #
4765
+ # * The form type must not be in use by any asset types or assets.
4766
+ #
4767
+ # * The domain must be valid and accessible.
4768
+ #
4769
+ # * User must have delete permissions on the form type.
4770
+ #
4771
+ # * Any dependencies (such as linked asset types) must be removed first.
4418
4772
  #
4419
4773
  # @option params [required, String] :domain_identifier
4420
4774
  # The ID of the Amazon DataZone domain in which the metadata form type
@@ -4443,6 +4797,19 @@ module Aws::DataZone
4443
4797
 
4444
4798
  # Deletes a business glossary in Amazon DataZone.
4445
4799
  #
4800
+ # Prerequisites:
4801
+ #
4802
+ # * The glossary must be in DISABLED state.
4803
+ #
4804
+ # * The glossary must not have any glossary terms associated with it.
4805
+ #
4806
+ # * The glossary must exist in the specified domain.
4807
+ #
4808
+ # * The caller must have the `datazone:DeleteGlossary` permission in the
4809
+ # domain and glossary.
4810
+ #
4811
+ # * There should be no active assets or metadata linked to the glossary.
4812
+ #
4446
4813
  # @option params [required, String] :domain_identifier
4447
4814
  # The ID of the Amazon DataZone domain in which the business glossary is
4448
4815
  # deleted.
@@ -4470,6 +4837,17 @@ module Aws::DataZone
4470
4837
 
4471
4838
  # Deletes a business glossary term in Amazon DataZone.
4472
4839
  #
4840
+ # Prerequisites:
4841
+ #
4842
+ # * Glossary term must exist and be active.
4843
+ #
4844
+ # * The term must not be linked to other assets or child terms.
4845
+ #
4846
+ # * Caller must have delete permissions in the domain/glossary.
4847
+ #
4848
+ # * Ensure all associations (such as to assets or parent terms) are
4849
+ # removed before deletion.
4850
+ #
4473
4851
  # @option params [required, String] :domain_identifier
4474
4852
  # The ID of the Amazon DataZone domain in which the business glossary
4475
4853
  # term is deleted.
@@ -4945,6 +5323,24 @@ module Aws::DataZone
4945
5323
 
4946
5324
  # Gets an Amazon DataZone asset.
4947
5325
  #
5326
+ # An asset is the fundamental building block in Amazon DataZone,
5327
+ # representing any data resource that needs to be cataloged and managed.
5328
+ # It can take many forms, from Amazon S3 buckets and database tables to
5329
+ # dashboards and machine learning models. Each asset contains
5330
+ # comprehensive metadata about the resource, including its location,
5331
+ # schema, ownership, and lineage information. Assets are essential for
5332
+ # organizing and managing data resources across an organization, making
5333
+ # them discoverable and usable while maintaining proper governance.
5334
+ #
5335
+ # Before using the Amazon DataZone GetAsset command, ensure the
5336
+ # following prerequisites are met:
5337
+ #
5338
+ # * Domain identifier must exist and be valid
5339
+ #
5340
+ # * Asset identifier must exist
5341
+ #
5342
+ # * User must have the required permissions to perform the action
5343
+ #
4948
5344
  # @option params [required, String] :domain_identifier
4949
5345
  # The ID of the Amazon DataZone domain to which the asset belongs.
4950
5346
  #
@@ -5039,6 +5435,15 @@ module Aws::DataZone
5039
5435
 
5040
5436
  # Gets an asset filter.
5041
5437
  #
5438
+ # Prerequisites:
5439
+ #
5440
+ # * Domain (`--domain-identifier`), asset (`--asset-identifier`), and
5441
+ # filter (`--identifier`) must all exist.
5442
+ #
5443
+ # * The asset filter should not have been deleted.
5444
+ #
5445
+ # * The asset must still exist (since the filter is linked to it).
5446
+ #
5042
5447
  # @option params [required, String] :asset_identifier
5043
5448
  # The ID of the data asset.
5044
5449
  #
@@ -5126,6 +5531,24 @@ module Aws::DataZone
5126
5531
 
5127
5532
  # Gets an Amazon DataZone asset type.
5128
5533
  #
5534
+ # Asset types define the categories and characteristics of different
5535
+ # kinds of data assets within Amazon DataZone.. They determine what
5536
+ # metadata fields are required, what operations are possible, and how
5537
+ # the asset integrates with other Amazon Web Services services. Asset
5538
+ # types can range from built-in types like Amazon S3 buckets and Amazon
5539
+ # Web Services Glue tables to custom types defined for specific
5540
+ # organizational needs. Understanding asset types is crucial for
5541
+ # properly organizing and managing different kinds of data resources.
5542
+ #
5543
+ # Prerequisites:
5544
+ #
5545
+ # * The asset type with identifier must exist in the domain.
5546
+ # ResourceNotFoundException.
5547
+ #
5548
+ # * You must have the GetAssetType permission.
5549
+ #
5550
+ # * Ensure the domain-identifier value is correct and accessible.
5551
+ #
5129
5552
  # @option params [required, String] :domain_identifier
5130
5553
  # The ID of the Amazon DataZone domain in which the asset type exists.
5131
5554
  #
@@ -5346,6 +5769,14 @@ module Aws::DataZone
5346
5769
 
5347
5770
  # Gets the data product.
5348
5771
  #
5772
+ # Prerequisites:
5773
+ #
5774
+ # * The data product ID must exist.
5775
+ #
5776
+ # * The domain must be valid and accessible.
5777
+ #
5778
+ # * User must have read or discovery permissions for the data product.
5779
+ #
5349
5780
  # @option params [required, String] :domain_identifier
5350
5781
  # The ID of the domain where the data product lives.
5351
5782
  #
@@ -5796,6 +6227,7 @@ module Aws::DataZone
5796
6227
  # resp.user_parameters[0].field_type #=> String
5797
6228
  # resp.user_parameters[0].is_editable #=> Boolean
5798
6229
  # resp.user_parameters[0].is_optional #=> Boolean
6230
+ # resp.user_parameters[0].is_update_supported #=> Boolean
5799
6231
  # resp.user_parameters[0].key_name #=> String
5800
6232
  #
5801
6233
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetEnvironment AWS API Documentation
@@ -5901,6 +6333,7 @@ module Aws::DataZone
5901
6333
  # resp.user_parameters[0].field_type #=> String
5902
6334
  # resp.user_parameters[0].is_editable #=> Boolean
5903
6335
  # resp.user_parameters[0].is_optional #=> Boolean
6336
+ # resp.user_parameters[0].is_update_supported #=> Boolean
5904
6337
  # resp.user_parameters[0].key_name #=> String
5905
6338
  #
5906
6339
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetEnvironmentBlueprint AWS API Documentation
@@ -6057,6 +6490,7 @@ module Aws::DataZone
6057
6490
  # resp.user_parameters[0].field_type #=> String
6058
6491
  # resp.user_parameters[0].is_editable #=> Boolean
6059
6492
  # resp.user_parameters[0].is_optional #=> Boolean
6493
+ # resp.user_parameters[0].is_update_supported #=> Boolean
6060
6494
  # resp.user_parameters[0].key_name #=> String
6061
6495
  #
6062
6496
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetEnvironmentProfile AWS API Documentation
@@ -6070,6 +6504,23 @@ module Aws::DataZone
6070
6504
 
6071
6505
  # Gets a metadata form type in Amazon DataZone.
6072
6506
  #
6507
+ # Form types define the structure and validation rules for collecting
6508
+ # metadata about assets in Amazon DataZone. They act as templates that
6509
+ # ensure consistent metadata capture across similar types of assets,
6510
+ # while allowing for customization to meet specific organizational
6511
+ # needs. Form types can include required fields, validation rules, and
6512
+ # dependencies, helping maintain high-quality metadata that makes data
6513
+ # assets more discoverable and usable.
6514
+ #
6515
+ # * The form type with the specified identifier must exist in the given
6516
+ # domain.
6517
+ #
6518
+ # * The domain must be valid and active.
6519
+ #
6520
+ # * User must have permission on the form type.
6521
+ #
6522
+ # * The form type should not be deleted or in an invalid state.
6523
+ #
6073
6524
  # @option params [required, String] :domain_identifier
6074
6525
  # The ID of the Amazon DataZone domain in which this metadata form type
6075
6526
  # exists.
@@ -6131,6 +6582,14 @@ module Aws::DataZone
6131
6582
 
6132
6583
  # Gets a business glossary in Amazon DataZone.
6133
6584
  #
6585
+ # Prerequisites:
6586
+ #
6587
+ # * The specified glossary ID must exist and be associated with the
6588
+ # given domain.
6589
+ #
6590
+ # * The caller must have the `datazone:GetGlossary` permission on the
6591
+ # domain.
6592
+ #
6134
6593
  # @option params [required, String] :domain_identifier
6135
6594
  # The ID of the Amazon DataZone domain in which this business glossary
6136
6595
  # exists.
@@ -6185,6 +6644,14 @@ module Aws::DataZone
6185
6644
 
6186
6645
  # Gets a business glossary term in Amazon DataZone.
6187
6646
  #
6647
+ # Prerequisites:
6648
+ #
6649
+ # * Glossary term with identifier must exist in the domain.
6650
+ #
6651
+ # * User must have permission on the glossary term.
6652
+ #
6653
+ # * Domain must be accessible and active.
6654
+ #
6188
6655
  # @option params [required, String] :domain_identifier
6189
6656
  # The ID of the Amazon DataZone domain in which this business glossary
6190
6657
  # term exists.
@@ -6587,6 +7054,14 @@ module Aws::DataZone
6587
7054
 
6588
7055
  # Gets a metadata generation run in Amazon DataZone.
6589
7056
  #
7057
+ # Prerequisites:
7058
+ #
7059
+ # * Valid domain and run identifier.
7060
+ #
7061
+ # * The metadata generation run must exist.
7062
+ #
7063
+ # * User must have read access to the metadata run.
7064
+ #
6590
7065
  # @option params [required, String] :domain_identifier
6591
7066
  # The ID of the Amazon DataZone domain the metadata generation run of
6592
7067
  # which you want to get.
@@ -7258,6 +7733,7 @@ module Aws::DataZone
7258
7733
  # @example Response structure
7259
7734
  #
7260
7735
  # resp.details.iam.arn #=> String
7736
+ # resp.details.iam.principal_id #=> String
7261
7737
  # resp.details.sso.first_name #=> String
7262
7738
  # resp.details.sso.last_name #=> String
7263
7739
  # resp.details.sso.username #=> String
@@ -7404,6 +7880,12 @@ module Aws::DataZone
7404
7880
 
7405
7881
  # Lists asset filters.
7406
7882
  #
7883
+ # Prerequisites:
7884
+ #
7885
+ # * A valid domain and asset must exist.
7886
+ #
7887
+ # * The asset must have at least one filter created to return results.
7888
+ #
7407
7889
  # @option params [required, String] :asset_identifier
7408
7890
  # The ID of the data asset.
7409
7891
  #
@@ -7472,6 +7954,17 @@ module Aws::DataZone
7472
7954
 
7473
7955
  # Lists the revisions for the asset.
7474
7956
  #
7957
+ # Prerequisites:
7958
+ #
7959
+ # * The asset must exist in the domain.
7960
+ #
7961
+ # * There must be at least one revision of the asset (which happens
7962
+ # automatically after creation).
7963
+ #
7964
+ # * The domain must be valid and active.
7965
+ #
7966
+ # * User must have permissions on the asset and domain.
7967
+ #
7475
7968
  # @option params [required, String] :domain_identifier
7476
7969
  # The identifier of the domain.
7477
7970
  #
@@ -7710,6 +8203,14 @@ module Aws::DataZone
7710
8203
 
7711
8204
  # Lists data product revisions.
7712
8205
  #
8206
+ # Prerequisites:
8207
+ #
8208
+ # * The data product ID must exist within the domain.
8209
+ #
8210
+ # * User must have view permissions on the data product.
8211
+ #
8212
+ # * The domain must be in a valid and accessible state.
8213
+ #
7713
8214
  # @option params [required, String] :domain_identifier
7714
8215
  # The ID of the domain of the data product revisions that you want to
7715
8216
  # list.
@@ -8797,6 +9298,20 @@ module Aws::DataZone
8797
9298
 
8798
9299
  # Lists all metadata generation runs.
8799
9300
  #
9301
+ # Metadata generation runs represent automated processes that leverage
9302
+ # AI/ML capabilities to create or enhance asset metadata at scale. This
9303
+ # feature helps organizations maintain comprehensive and consistent
9304
+ # metadata across large numbers of assets without manual intervention.
9305
+ # It can automatically generate business descriptions, tags, and other
9306
+ # metadata elements, significantly reducing the time and effort required
9307
+ # for metadata management while improving consistency and completeness.
9308
+ #
9309
+ # Prerequisites:
9310
+ #
9311
+ # * Valid domain identifier.
9312
+ #
9313
+ # * User must have access to metadata generation runs in the domain.
9314
+ #
8800
9315
  # @option params [required, String] :domain_identifier
8801
9316
  # The ID of the Amazon DataZone domain where you want to list metadata
8802
9317
  # generation runs.
@@ -10020,6 +10535,9 @@ module Aws::DataZone
10020
10535
  # @option params [String] :environment_role_permission_boundary
10021
10536
  # The environment role permissions boundary.
10022
10537
  #
10538
+ # @option params [Hash<String,String>] :global_parameters
10539
+ # Region-agnostic environment blueprint parameters.
10540
+ #
10023
10541
  # @option params [String] :manage_access_role_arn
10024
10542
  # The ARN of the manage access role.
10025
10543
  #
@@ -10052,6 +10570,9 @@ module Aws::DataZone
10052
10570
  # enabled_regions: ["RegionName"], # required
10053
10571
  # environment_blueprint_identifier: "EnvironmentBlueprintId", # required
10054
10572
  # environment_role_permission_boundary: "PolicyArn",
10573
+ # global_parameters: {
10574
+ # "String" => "String",
10575
+ # },
10055
10576
  # manage_access_role_arn: "RoleArn",
10056
10577
  # provisioning_configurations: [
10057
10578
  # {
@@ -10479,6 +11000,39 @@ module Aws::DataZone
10479
11000
 
10480
11001
  # Searches for assets in Amazon DataZone.
10481
11002
  #
11003
+ # Search in Amazon DataZone is a powerful capability that enables users
11004
+ # to discover and explore data assets, glossary terms, and data products
11005
+ # across their organization. It provides both basic and advanced search
11006
+ # functionality, allowing users to find resources based on names,
11007
+ # descriptions, metadata, and other attributes. Search can be scoped to
11008
+ # specific types of resources (like assets, glossary terms, or data
11009
+ # products) and can be filtered using various criteria such as creation
11010
+ # date, owner, or status. The search functionality is essential for
11011
+ # making the wealth of data resources in an organization discoverable
11012
+ # and usable, helping users find the right data for their needs quickly
11013
+ # and efficiently.
11014
+ #
11015
+ # Many search commands in Amazon DataZone are paginated, including
11016
+ # `search` and `search-types`. When the result set is large, Amazon
11017
+ # DataZone returns a `nextToken` in the response. This token can be used
11018
+ # to retrieve the next page of results.
11019
+ #
11020
+ # Prerequisites:
11021
+ #
11022
+ # * The --domain-identifier must refer to an existing Amazon DataZone
11023
+ # domain.
11024
+ #
11025
+ # * --search-scope must be one of: ASSET, GLOSSARY\_TERM, DATA\_PRODUCT,
11026
+ # or GLOSSARY.
11027
+ #
11028
+ # * The user must have search permissions in the specified domain.
11029
+ #
11030
+ # * If using --filters, ensure that the JSON is well-formed and that
11031
+ # each filter includes valid attribute and value keys.
11032
+ #
11033
+ # * For paginated results, be prepared to use --next-token to fetch
11034
+ # additional pages.
11035
+ #
10482
11036
  # @option params [Array<String>] :additional_attributes
10483
11037
  # Specifies additional attributes for the `Search` action.
10484
11038
  #
@@ -10913,6 +11467,23 @@ module Aws::DataZone
10913
11467
 
10914
11468
  # Searches for types in Amazon DataZone.
10915
11469
  #
11470
+ # Prerequisites:
11471
+ #
11472
+ # * The --domain-identifier must refer to an existing Amazon DataZone
11473
+ # domain.
11474
+ #
11475
+ # * --search-scope must be one of the valid values including:
11476
+ # ASSET\_TYPE, GLOSSARY\_TERM\_TYPE, DATA\_PRODUCT\_TYPE.
11477
+ #
11478
+ # * The --managed flag must be present without a value.
11479
+ #
11480
+ # * The user must have permissions for form or asset types in the
11481
+ # domain.
11482
+ #
11483
+ # * If using --filters, ensure that the JSON is valid.
11484
+ #
11485
+ # * Filters contain correct structure (attribute, value, operator).
11486
+ #
10916
11487
  # @option params [required, String] :domain_identifier
10917
11488
  # The identifier of the Amazon DataZone domain in which to invoke the
10918
11489
  # `SearchTypes` action.
@@ -11098,6 +11669,7 @@ module Aws::DataZone
11098
11669
  #
11099
11670
  # resp.items #=> Array
11100
11671
  # resp.items[0].details.iam.arn #=> String
11672
+ # resp.items[0].details.iam.principal_id #=> String
11101
11673
  # resp.items[0].details.sso.first_name #=> String
11102
11674
  # resp.items[0].details.sso.last_name #=> String
11103
11675
  # resp.items[0].details.sso.username #=> String
@@ -11188,6 +11760,21 @@ module Aws::DataZone
11188
11760
 
11189
11761
  # Starts the metadata generation run.
11190
11762
  #
11763
+ # Prerequisites:
11764
+ #
11765
+ # * Asset must be created and belong to the specified domain and
11766
+ # project.
11767
+ #
11768
+ # * Asset type must be supported for metadata generation (e.g., Amazon
11769
+ # Web Services Glue table).
11770
+ #
11771
+ # * Asset must have a structured schema with valid rows and columns.
11772
+ #
11773
+ # * Valid values for --type: BUSINESS\_DESCRIPTIONS, BUSINESS\_NAMES.
11774
+ #
11775
+ # * The user must have permission to run metadata generation in the
11776
+ # domain/project.
11777
+ #
11191
11778
  # @option params [String] :client_token
11192
11779
  # A unique, case-sensitive identifier to ensure idempotency of the
11193
11780
  # request. This field is automatically populated if not provided.
@@ -11397,6 +11984,15 @@ module Aws::DataZone
11397
11984
 
11398
11985
  # Updates an asset filter.
11399
11986
  #
11987
+ # Prerequisites:
11988
+ #
11989
+ # * The domain, asset, and asset filter identifier must all exist.
11990
+ #
11991
+ # * The asset must contain the columns being referenced in the update.
11992
+ #
11993
+ # * If applying a row filter, ensure the column referenced in the
11994
+ # expression exists in the asset schema.
11995
+ #
11400
11996
  # @option params [required, String] :asset_identifier
11401
11997
  # The ID of the data asset.
11402
11998
  #
@@ -12260,6 +12856,7 @@ module Aws::DataZone
12260
12856
  # resp.user_parameters[0].field_type #=> String
12261
12857
  # resp.user_parameters[0].is_editable #=> Boolean
12262
12858
  # resp.user_parameters[0].is_optional #=> Boolean
12859
+ # resp.user_parameters[0].is_update_supported #=> Boolean
12263
12860
  # resp.user_parameters[0].key_name #=> String
12264
12861
  #
12265
12862
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateEnvironment AWS API Documentation
@@ -12333,6 +12930,95 @@ module Aws::DataZone
12333
12930
  req.send_request(options)
12334
12931
  end
12335
12932
 
12933
+ # Updates an environment blueprint in Amazon DataZone.
12934
+ #
12935
+ # @option params [String] :description
12936
+ # The description to be updated as part of the
12937
+ # `UpdateEnvironmentBlueprint` action.
12938
+ #
12939
+ # @option params [required, String] :domain_identifier
12940
+ # The identifier of the Amazon DataZone domain in which an environment
12941
+ # blueprint is to be updated.
12942
+ #
12943
+ # @option params [required, String] :identifier
12944
+ # The identifier of the environment blueprint to be updated.
12945
+ #
12946
+ # @option params [Types::ProvisioningProperties] :provisioning_properties
12947
+ # The provisioning properties to be updated as part of the
12948
+ # `UpdateEnvironmentBlueprint` action.
12949
+ #
12950
+ # @option params [Array<Types::CustomParameter>] :user_parameters
12951
+ # The user parameters to be updated as part of the
12952
+ # `UpdateEnvironmentBlueprint` action.
12953
+ #
12954
+ # @return [Types::UpdateEnvironmentBlueprintOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
12955
+ #
12956
+ # * {Types::UpdateEnvironmentBlueprintOutput#created_at #created_at} => Time
12957
+ # * {Types::UpdateEnvironmentBlueprintOutput#deployment_properties #deployment_properties} => Types::DeploymentProperties
12958
+ # * {Types::UpdateEnvironmentBlueprintOutput#description #description} => String
12959
+ # * {Types::UpdateEnvironmentBlueprintOutput#glossary_terms #glossary_terms} => Array&lt;String&gt;
12960
+ # * {Types::UpdateEnvironmentBlueprintOutput#id #id} => String
12961
+ # * {Types::UpdateEnvironmentBlueprintOutput#name #name} => String
12962
+ # * {Types::UpdateEnvironmentBlueprintOutput#provider #provider} => String
12963
+ # * {Types::UpdateEnvironmentBlueprintOutput#provisioning_properties #provisioning_properties} => Types::ProvisioningProperties
12964
+ # * {Types::UpdateEnvironmentBlueprintOutput#updated_at #updated_at} => Time
12965
+ # * {Types::UpdateEnvironmentBlueprintOutput#user_parameters #user_parameters} => Array&lt;Types::CustomParameter&gt;
12966
+ #
12967
+ # @example Request syntax with placeholder values
12968
+ #
12969
+ # resp = client.update_environment_blueprint({
12970
+ # description: "String",
12971
+ # domain_identifier: "DomainId", # required
12972
+ # identifier: "EnvironmentBlueprintId", # required
12973
+ # provisioning_properties: {
12974
+ # cloud_formation: {
12975
+ # template_url: "String", # required
12976
+ # },
12977
+ # },
12978
+ # user_parameters: [
12979
+ # {
12980
+ # default_value: "String",
12981
+ # description: "Description",
12982
+ # field_type: "String", # required
12983
+ # is_editable: false,
12984
+ # is_optional: false,
12985
+ # is_update_supported: false,
12986
+ # key_name: "CustomParameterKeyNameString", # required
12987
+ # },
12988
+ # ],
12989
+ # })
12990
+ #
12991
+ # @example Response structure
12992
+ #
12993
+ # resp.created_at #=> Time
12994
+ # resp.deployment_properties.end_timeout_minutes #=> Integer
12995
+ # resp.deployment_properties.start_timeout_minutes #=> Integer
12996
+ # resp.description #=> String
12997
+ # resp.glossary_terms #=> Array
12998
+ # resp.glossary_terms[0] #=> String
12999
+ # resp.id #=> String
13000
+ # resp.name #=> String
13001
+ # resp.provider #=> String
13002
+ # resp.provisioning_properties.cloud_formation.template_url #=> String
13003
+ # resp.updated_at #=> Time
13004
+ # resp.user_parameters #=> Array
13005
+ # resp.user_parameters[0].default_value #=> String
13006
+ # resp.user_parameters[0].description #=> String
13007
+ # resp.user_parameters[0].field_type #=> String
13008
+ # resp.user_parameters[0].is_editable #=> Boolean
13009
+ # resp.user_parameters[0].is_optional #=> Boolean
13010
+ # resp.user_parameters[0].is_update_supported #=> Boolean
13011
+ # resp.user_parameters[0].key_name #=> String
13012
+ #
13013
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateEnvironmentBlueprint AWS API Documentation
13014
+ #
13015
+ # @overload update_environment_blueprint(params = {})
13016
+ # @param [Hash] params ({})
13017
+ def update_environment_blueprint(params = {}, options = {})
13018
+ req = build_request(:update_environment_blueprint, params)
13019
+ req.send_request(options)
13020
+ end
13021
+
12336
13022
  # Updates the specified environment profile in Amazon DataZone.
12337
13023
  #
12338
13024
  # @option params [String] :aws_account_id
@@ -12413,6 +13099,7 @@ module Aws::DataZone
12413
13099
  # resp.user_parameters[0].field_type #=> String
12414
13100
  # resp.user_parameters[0].is_editable #=> Boolean
12415
13101
  # resp.user_parameters[0].is_optional #=> Boolean
13102
+ # resp.user_parameters[0].is_update_supported #=> Boolean
12416
13103
  # resp.user_parameters[0].key_name #=> String
12417
13104
  #
12418
13105
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateEnvironmentProfile AWS API Documentation
@@ -12426,6 +13113,18 @@ module Aws::DataZone
12426
13113
 
12427
13114
  # Updates the business glossary in Amazon DataZone.
12428
13115
  #
13116
+ # Prerequisites:
13117
+ #
13118
+ # * The glossary must exist in the given domain.
13119
+ #
13120
+ # * The caller must have the `datazone:UpdateGlossary` permission to
13121
+ # update it.
13122
+ #
13123
+ # * When updating the name, the new name must be unique within the
13124
+ # domain.
13125
+ #
13126
+ # * The glossary must not be deleted or in a terminal state.
13127
+ #
12429
13128
  # @option params [String] :client_token
12430
13129
  # A unique, case-sensitive identifier that is provided to ensure the
12431
13130
  # idempotency of the request.
@@ -12492,6 +13191,16 @@ module Aws::DataZone
12492
13191
 
12493
13192
  # Updates a business glossary term in Amazon DataZone.
12494
13193
  #
13194
+ # Prerequisites:
13195
+ #
13196
+ # * Glossary term must exist in the specified domain.
13197
+ #
13198
+ # * New name must not conflict with existing terms in the same glossary.
13199
+ #
13200
+ # * User must have permissions on the term.
13201
+ #
13202
+ # * The term must not be in DELETED status.
13203
+ #
12495
13204
  # @option params [required, String] :domain_identifier
12496
13205
  # The identifier of the Amazon DataZone domain in which a business
12497
13206
  # glossary term is to be updated.
@@ -13313,6 +14022,7 @@ module Aws::DataZone
13313
14022
  # @example Response structure
13314
14023
  #
13315
14024
  # resp.details.iam.arn #=> String
14025
+ # resp.details.iam.principal_id #=> String
13316
14026
  # resp.details.sso.first_name #=> String
13317
14027
  # resp.details.sso.last_name #=> String
13318
14028
  # resp.details.sso.username #=> String
@@ -13348,7 +14058,7 @@ module Aws::DataZone
13348
14058
  tracer: tracer
13349
14059
  )
13350
14060
  context[:gem_name] = 'aws-sdk-datazone'
13351
- context[:gem_version] = '1.50.0'
14061
+ context[:gem_version] = '1.52.0'
13352
14062
  Seahorse::Client::Request.new(handlers, context)
13353
14063
  end
13354
14064