aws-sdk-datazone 1.48.0 → 1.49.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datazone/client.rb +122 -5
- data/lib/aws-sdk-datazone/client_api.rb +94 -0
- data/lib/aws-sdk-datazone/types.rb +153 -9
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +38 -4
- data/sig/types.rbs +41 -4
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c3ae66f8c3d5670709e55e6b892b60c0f46ae03cdb83e4715676560e129756d8
|
4
|
+
data.tar.gz: ee312b5a793c651d26be87a24ebc2a4a0565566a0d4ea0f149e428585250bfc0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d064ca23e9b89ecca0d96409e91d6d8b01aee3a2570972a68830c414bbfec0b4d483e94be75f073532dc1a6a59bca56caa53f761416c8270ad91ed1413d15cdc
|
7
|
+
data.tar.gz: f13553326922e53eda5e185f799187acd2aa2eb6395e0f7ed8b2e8e7d70861336f48fa1e82ccfd3c8809ba80bee80e981e82ddfed3115465a4a1d7a73aec9005
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.49.0 (2025-08-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Releasing the following features - Asset classification that lets users use restricted terms for classifying assets if they have the right permissions. Also adding a new enum value "Moving" to project status.
|
8
|
+
|
4
9
|
1.48.0 (2025-08-20)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.49.0
|
@@ -861,6 +861,42 @@ module Aws::DataZone
|
|
861
861
|
req.send_request(options)
|
862
862
|
end
|
863
863
|
|
864
|
+
# Associates governed terms with an asset.
|
865
|
+
#
|
866
|
+
# @option params [required, String] :domain_identifier
|
867
|
+
# The ID of the domain where governed terms are to be associated with an
|
868
|
+
# asset.
|
869
|
+
#
|
870
|
+
# @option params [required, String] :entity_identifier
|
871
|
+
# The ID of the asset with which you want to associate a governed term.
|
872
|
+
#
|
873
|
+
# @option params [required, String] :entity_type
|
874
|
+
# The type of the asset with which you want to associate a governed
|
875
|
+
# term.
|
876
|
+
#
|
877
|
+
# @option params [required, Array<String>] :governed_glossary_terms
|
878
|
+
# The glossary terms in a restricted glossary.
|
879
|
+
#
|
880
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
881
|
+
#
|
882
|
+
# @example Request syntax with placeholder values
|
883
|
+
#
|
884
|
+
# resp = client.associate_governed_terms({
|
885
|
+
# domain_identifier: "DomainId", # required
|
886
|
+
# entity_identifier: "EntityIdentifier", # required
|
887
|
+
# entity_type: "ASSET", # required, accepts ASSET
|
888
|
+
# governed_glossary_terms: ["GlossaryTermId"], # required
|
889
|
+
# })
|
890
|
+
#
|
891
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AssociateGovernedTerms AWS API Documentation
|
892
|
+
#
|
893
|
+
# @overload associate_governed_terms(params = {})
|
894
|
+
# @param [Hash] params ({})
|
895
|
+
def associate_governed_terms(params = {}, options = {})
|
896
|
+
req = build_request(:associate_governed_terms, params)
|
897
|
+
req.send_request(options)
|
898
|
+
end
|
899
|
+
|
864
900
|
# Cancels the metadata generation run.
|
865
901
|
#
|
866
902
|
# @option params [required, String] :domain_identifier
|
@@ -1109,6 +1145,7 @@ module Aws::DataZone
|
|
1109
1145
|
# * {Types::CreateAssetOutput#first_revision_created_by #first_revision_created_by} => String
|
1110
1146
|
# * {Types::CreateAssetOutput#forms_output #forms_output} => Array<Types::FormOutput>
|
1111
1147
|
# * {Types::CreateAssetOutput#glossary_terms #glossary_terms} => Array<String>
|
1148
|
+
# * {Types::CreateAssetOutput#governed_glossary_terms #governed_glossary_terms} => Array<String>
|
1112
1149
|
# * {Types::CreateAssetOutput#id #id} => String
|
1113
1150
|
# * {Types::CreateAssetOutput#latest_time_series_data_point_forms_output #latest_time_series_data_point_forms_output} => Array<Types::TimeSeriesDataPointSummaryFormOutput>
|
1114
1151
|
# * {Types::CreateAssetOutput#listing #listing} => Types::AssetListingDetails
|
@@ -1163,6 +1200,8 @@ module Aws::DataZone
|
|
1163
1200
|
# resp.forms_output[0].type_revision #=> String
|
1164
1201
|
# resp.glossary_terms #=> Array
|
1165
1202
|
# resp.glossary_terms[0] #=> String
|
1203
|
+
# resp.governed_glossary_terms #=> Array
|
1204
|
+
# resp.governed_glossary_terms[0] #=> String
|
1166
1205
|
# resp.id #=> String
|
1167
1206
|
# resp.latest_time_series_data_point_forms_output #=> Array
|
1168
1207
|
# resp.latest_time_series_data_point_forms_output[0].content_summary #=> String
|
@@ -1411,6 +1450,7 @@ module Aws::DataZone
|
|
1411
1450
|
# * {Types::CreateAssetRevisionOutput#first_revision_created_by #first_revision_created_by} => String
|
1412
1451
|
# * {Types::CreateAssetRevisionOutput#forms_output #forms_output} => Array<Types::FormOutput>
|
1413
1452
|
# * {Types::CreateAssetRevisionOutput#glossary_terms #glossary_terms} => Array<String>
|
1453
|
+
# * {Types::CreateAssetRevisionOutput#governed_glossary_terms #governed_glossary_terms} => Array<String>
|
1414
1454
|
# * {Types::CreateAssetRevisionOutput#id #id} => String
|
1415
1455
|
# * {Types::CreateAssetRevisionOutput#latest_time_series_data_point_forms_output #latest_time_series_data_point_forms_output} => Array<Types::TimeSeriesDataPointSummaryFormOutput>
|
1416
1456
|
# * {Types::CreateAssetRevisionOutput#listing #listing} => Types::AssetListingDetails
|
@@ -1463,6 +1503,8 @@ module Aws::DataZone
|
|
1463
1503
|
# resp.forms_output[0].type_revision #=> String
|
1464
1504
|
# resp.glossary_terms #=> Array
|
1465
1505
|
# resp.glossary_terms[0] #=> String
|
1506
|
+
# resp.governed_glossary_terms #=> Array
|
1507
|
+
# resp.governed_glossary_terms[0] #=> String
|
1466
1508
|
# resp.id #=> String
|
1467
1509
|
# resp.latest_time_series_data_point_forms_output #=> Array
|
1468
1510
|
# resp.latest_time_series_data_point_forms_output[0].content_summary #=> String
|
@@ -2874,6 +2916,9 @@ module Aws::DataZone
|
|
2874
2916
|
# @option params [String] :status
|
2875
2917
|
# The status of this business glossary.
|
2876
2918
|
#
|
2919
|
+
# @option params [Array<String>] :usage_restrictions
|
2920
|
+
# The usage restriction of the restricted glossary.
|
2921
|
+
#
|
2877
2922
|
# @return [Types::CreateGlossaryOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2878
2923
|
#
|
2879
2924
|
# * {Types::CreateGlossaryOutput#description #description} => String
|
@@ -2882,6 +2927,7 @@ module Aws::DataZone
|
|
2882
2927
|
# * {Types::CreateGlossaryOutput#name #name} => String
|
2883
2928
|
# * {Types::CreateGlossaryOutput#owning_project_id #owning_project_id} => String
|
2884
2929
|
# * {Types::CreateGlossaryOutput#status #status} => String
|
2930
|
+
# * {Types::CreateGlossaryOutput#usage_restrictions #usage_restrictions} => Array<String>
|
2885
2931
|
#
|
2886
2932
|
# @example Request syntax with placeholder values
|
2887
2933
|
#
|
@@ -2892,6 +2938,7 @@ module Aws::DataZone
|
|
2892
2938
|
# name: "GlossaryName", # required
|
2893
2939
|
# owning_project_identifier: "ProjectId", # required
|
2894
2940
|
# status: "DISABLED", # accepts DISABLED, ENABLED
|
2941
|
+
# usage_restrictions: ["ASSET_GOVERNED_TERMS"], # accepts ASSET_GOVERNED_TERMS
|
2895
2942
|
# })
|
2896
2943
|
#
|
2897
2944
|
# @example Response structure
|
@@ -2902,6 +2949,8 @@ module Aws::DataZone
|
|
2902
2949
|
# resp.name #=> String
|
2903
2950
|
# resp.owning_project_id #=> String
|
2904
2951
|
# resp.status #=> String, one of "DISABLED", "ENABLED"
|
2952
|
+
# resp.usage_restrictions #=> Array
|
2953
|
+
# resp.usage_restrictions[0] #=> String, one of "ASSET_GOVERNED_TERMS"
|
2905
2954
|
#
|
2906
2955
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateGlossary AWS API Documentation
|
2907
2956
|
#
|
@@ -2953,6 +3002,7 @@ module Aws::DataZone
|
|
2953
3002
|
# * {Types::CreateGlossaryTermOutput#short_description #short_description} => String
|
2954
3003
|
# * {Types::CreateGlossaryTermOutput#status #status} => String
|
2955
3004
|
# * {Types::CreateGlossaryTermOutput#term_relations #term_relations} => Types::TermRelations
|
3005
|
+
# * {Types::CreateGlossaryTermOutput#usage_restrictions #usage_restrictions} => Array<String>
|
2956
3006
|
#
|
2957
3007
|
# @example Request syntax with placeholder values
|
2958
3008
|
#
|
@@ -2983,6 +3033,8 @@ module Aws::DataZone
|
|
2983
3033
|
# resp.term_relations.classifies[0] #=> String
|
2984
3034
|
# resp.term_relations.is_a #=> Array
|
2985
3035
|
# resp.term_relations.is_a[0] #=> String
|
3036
|
+
# resp.usage_restrictions #=> Array
|
3037
|
+
# resp.usage_restrictions[0] #=> String, one of "ASSET_GOVERNED_TERMS"
|
2986
3038
|
#
|
2987
3039
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateGlossaryTerm AWS API Documentation
|
2988
3040
|
#
|
@@ -3188,7 +3240,7 @@ module Aws::DataZone
|
|
3188
3240
|
# resp.last_updated_at #=> Time
|
3189
3241
|
# resp.name #=> String
|
3190
3242
|
# resp.project_profile_id #=> String
|
3191
|
-
# resp.project_status #=> String, one of "ACTIVE", "DELETING", "DELETE_FAILED", "UPDATING", "UPDATE_FAILED"
|
3243
|
+
# resp.project_status #=> String, one of "ACTIVE", "DELETING", "DELETE_FAILED", "UPDATING", "UPDATE_FAILED", "MOVING"
|
3192
3244
|
# resp.user_parameters #=> Array
|
3193
3245
|
# resp.user_parameters[0].environment_configuration_name #=> String
|
3194
3246
|
# resp.user_parameters[0].environment_id #=> String
|
@@ -4794,6 +4846,44 @@ module Aws::DataZone
|
|
4794
4846
|
req.send_request(options)
|
4795
4847
|
end
|
4796
4848
|
|
4849
|
+
# Disassociates restricted terms from an asset.
|
4850
|
+
#
|
4851
|
+
# @option params [required, String] :domain_identifier
|
4852
|
+
# The ID of the domain where you want to disassociate restricted terms
|
4853
|
+
# from an asset.
|
4854
|
+
#
|
4855
|
+
# @option params [required, String] :entity_identifier
|
4856
|
+
# The ID of an asset from which you want to disassociate restricted
|
4857
|
+
# terms.
|
4858
|
+
#
|
4859
|
+
# @option params [required, String] :entity_type
|
4860
|
+
# The type of the asset from which you want to disassociate restricted
|
4861
|
+
# terms.
|
4862
|
+
#
|
4863
|
+
# @option params [required, Array<String>] :governed_glossary_terms
|
4864
|
+
# The restricted glossary terms that you want to disassociate from an
|
4865
|
+
# asset.
|
4866
|
+
#
|
4867
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4868
|
+
#
|
4869
|
+
# @example Request syntax with placeholder values
|
4870
|
+
#
|
4871
|
+
# resp = client.disassociate_governed_terms({
|
4872
|
+
# domain_identifier: "DomainId", # required
|
4873
|
+
# entity_identifier: "EntityIdentifier", # required
|
4874
|
+
# entity_type: "ASSET", # required, accepts ASSET
|
4875
|
+
# governed_glossary_terms: ["GlossaryTermId"], # required
|
4876
|
+
# })
|
4877
|
+
#
|
4878
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DisassociateGovernedTerms AWS API Documentation
|
4879
|
+
#
|
4880
|
+
# @overload disassociate_governed_terms(params = {})
|
4881
|
+
# @param [Hash] params ({})
|
4882
|
+
def disassociate_governed_terms(params = {}, options = {})
|
4883
|
+
req = build_request(:disassociate_governed_terms, params)
|
4884
|
+
req.send_request(options)
|
4885
|
+
end
|
4886
|
+
|
4797
4887
|
# Gets the details of the account pool.
|
4798
4888
|
#
|
4799
4889
|
# @option params [required, String] :domain_identifier
|
@@ -4880,6 +4970,7 @@ module Aws::DataZone
|
|
4880
4970
|
# * {Types::GetAssetOutput#first_revision_created_by #first_revision_created_by} => String
|
4881
4971
|
# * {Types::GetAssetOutput#forms_output #forms_output} => Array<Types::FormOutput>
|
4882
4972
|
# * {Types::GetAssetOutput#glossary_terms #glossary_terms} => Array<String>
|
4973
|
+
# * {Types::GetAssetOutput#governed_glossary_terms #governed_glossary_terms} => Array<String>
|
4883
4974
|
# * {Types::GetAssetOutput#id #id} => String
|
4884
4975
|
# * {Types::GetAssetOutput#latest_time_series_data_point_forms_output #latest_time_series_data_point_forms_output} => Array<Types::TimeSeriesDataPointSummaryFormOutput>
|
4885
4976
|
# * {Types::GetAssetOutput#listing #listing} => Types::AssetListingDetails
|
@@ -4914,6 +5005,8 @@ module Aws::DataZone
|
|
4914
5005
|
# resp.forms_output[0].type_revision #=> String
|
4915
5006
|
# resp.glossary_terms #=> Array
|
4916
5007
|
# resp.glossary_terms[0] #=> String
|
5008
|
+
# resp.governed_glossary_terms #=> Array
|
5009
|
+
# resp.governed_glossary_terms[0] #=> String
|
4917
5010
|
# resp.id #=> String
|
4918
5011
|
# resp.latest_time_series_data_point_forms_output #=> Array
|
4919
5012
|
# resp.latest_time_series_data_point_forms_output[0].content_summary #=> String
|
@@ -6057,6 +6150,7 @@ module Aws::DataZone
|
|
6057
6150
|
# * {Types::GetGlossaryOutput#status #status} => String
|
6058
6151
|
# * {Types::GetGlossaryOutput#updated_at #updated_at} => Time
|
6059
6152
|
# * {Types::GetGlossaryOutput#updated_by #updated_by} => String
|
6153
|
+
# * {Types::GetGlossaryOutput#usage_restrictions #usage_restrictions} => Array<String>
|
6060
6154
|
#
|
6061
6155
|
# @example Request syntax with placeholder values
|
6062
6156
|
#
|
@@ -6077,6 +6171,8 @@ module Aws::DataZone
|
|
6077
6171
|
# resp.status #=> String, one of "DISABLED", "ENABLED"
|
6078
6172
|
# resp.updated_at #=> Time
|
6079
6173
|
# resp.updated_by #=> String
|
6174
|
+
# resp.usage_restrictions #=> Array
|
6175
|
+
# resp.usage_restrictions[0] #=> String, one of "ASSET_GOVERNED_TERMS"
|
6080
6176
|
#
|
6081
6177
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetGlossary AWS API Documentation
|
6082
6178
|
#
|
@@ -6110,6 +6206,7 @@ module Aws::DataZone
|
|
6110
6206
|
# * {Types::GetGlossaryTermOutput#term_relations #term_relations} => Types::TermRelations
|
6111
6207
|
# * {Types::GetGlossaryTermOutput#updated_at #updated_at} => Time
|
6112
6208
|
# * {Types::GetGlossaryTermOutput#updated_by #updated_by} => String
|
6209
|
+
# * {Types::GetGlossaryTermOutput#usage_restrictions #usage_restrictions} => Array<String>
|
6113
6210
|
#
|
6114
6211
|
# @example Request syntax with placeholder values
|
6115
6212
|
#
|
@@ -6135,6 +6232,8 @@ module Aws::DataZone
|
|
6135
6232
|
# resp.term_relations.is_a[0] #=> String
|
6136
6233
|
# resp.updated_at #=> Time
|
6137
6234
|
# resp.updated_by #=> String
|
6235
|
+
# resp.usage_restrictions #=> Array
|
6236
|
+
# resp.usage_restrictions[0] #=> String, one of "ASSET_GOVERNED_TERMS"
|
6138
6237
|
#
|
6139
6238
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetGlossaryTerm AWS API Documentation
|
6140
6239
|
#
|
@@ -6446,6 +6545,9 @@ module Aws::DataZone
|
|
6446
6545
|
# resp.item.asset_listing.glossary_terms #=> Array
|
6447
6546
|
# resp.item.asset_listing.glossary_terms[0].name #=> String
|
6448
6547
|
# resp.item.asset_listing.glossary_terms[0].short_description #=> String
|
6548
|
+
# resp.item.asset_listing.governed_glossary_terms #=> Array
|
6549
|
+
# resp.item.asset_listing.governed_glossary_terms[0].name #=> String
|
6550
|
+
# resp.item.asset_listing.governed_glossary_terms[0].short_description #=> String
|
6449
6551
|
# resp.item.asset_listing.latest_time_series_data_point_forms #=> Array
|
6450
6552
|
# resp.item.asset_listing.latest_time_series_data_point_forms[0].content_summary #=> String
|
6451
6553
|
# resp.item.asset_listing.latest_time_series_data_point_forms[0].form_name #=> String
|
@@ -6585,7 +6687,7 @@ module Aws::DataZone
|
|
6585
6687
|
# resp.last_updated_at #=> Time
|
6586
6688
|
# resp.name #=> String
|
6587
6689
|
# resp.project_profile_id #=> String
|
6588
|
-
# resp.project_status #=> String, one of "ACTIVE", "DELETING", "DELETE_FAILED", "UPDATING", "UPDATE_FAILED"
|
6690
|
+
# resp.project_status #=> String, one of "ACTIVE", "DELETING", "DELETE_FAILED", "UPDATING", "UPDATE_FAILED", "MOVING"
|
6589
6691
|
# resp.user_parameters #=> Array
|
6590
6692
|
# resp.user_parameters[0].environment_configuration_name #=> String
|
6591
6693
|
# resp.user_parameters[0].environment_id #=> String
|
@@ -9127,7 +9229,7 @@ module Aws::DataZone
|
|
9127
9229
|
# resp.items[0].failure_reasons[0].message #=> String
|
9128
9230
|
# resp.items[0].id #=> String
|
9129
9231
|
# resp.items[0].name #=> String
|
9130
|
-
# resp.items[0].project_status #=> String, one of "ACTIVE", "DELETING", "DELETE_FAILED", "UPDATING", "UPDATE_FAILED"
|
9232
|
+
# resp.items[0].project_status #=> String, one of "ACTIVE", "DELETING", "DELETE_FAILED", "UPDATING", "UPDATE_FAILED", "MOVING"
|
9131
9233
|
# resp.items[0].updated_at #=> Time
|
9132
9234
|
# resp.next_token #=> String
|
9133
9235
|
#
|
@@ -10496,6 +10598,8 @@ module Aws::DataZone
|
|
10496
10598
|
# resp.items[0].asset_item.first_revision_created_by #=> String
|
10497
10599
|
# resp.items[0].asset_item.glossary_terms #=> Array
|
10498
10600
|
# resp.items[0].asset_item.glossary_terms[0] #=> String
|
10601
|
+
# resp.items[0].asset_item.governed_glossary_terms #=> Array
|
10602
|
+
# resp.items[0].asset_item.governed_glossary_terms[0] #=> String
|
10499
10603
|
# resp.items[0].asset_item.identifier #=> String
|
10500
10604
|
# resp.items[0].asset_item.name #=> String
|
10501
10605
|
# resp.items[0].asset_item.owning_project_id #=> String
|
@@ -10536,6 +10640,8 @@ module Aws::DataZone
|
|
10536
10640
|
# resp.items[0].glossary_item.status #=> String, one of "DISABLED", "ENABLED"
|
10537
10641
|
# resp.items[0].glossary_item.updated_at #=> Time
|
10538
10642
|
# resp.items[0].glossary_item.updated_by #=> String
|
10643
|
+
# resp.items[0].glossary_item.usage_restrictions #=> Array
|
10644
|
+
# resp.items[0].glossary_item.usage_restrictions[0] #=> String, one of "ASSET_GOVERNED_TERMS"
|
10539
10645
|
# resp.items[0].glossary_term_item.additional_attributes.match_rationale #=> Array
|
10540
10646
|
# resp.items[0].glossary_term_item.additional_attributes.match_rationale[0].text_matches #=> Array
|
10541
10647
|
# resp.items[0].glossary_term_item.additional_attributes.match_rationale[0].text_matches[0].attribute #=> String
|
@@ -10558,6 +10664,8 @@ module Aws::DataZone
|
|
10558
10664
|
# resp.items[0].glossary_term_item.term_relations.is_a[0] #=> String
|
10559
10665
|
# resp.items[0].glossary_term_item.updated_at #=> Time
|
10560
10666
|
# resp.items[0].glossary_term_item.updated_by #=> String
|
10667
|
+
# resp.items[0].glossary_term_item.usage_restrictions #=> Array
|
10668
|
+
# resp.items[0].glossary_term_item.usage_restrictions[0] #=> String, one of "ASSET_GOVERNED_TERMS"
|
10561
10669
|
# resp.next_token #=> String
|
10562
10670
|
# resp.total_match_count #=> Integer
|
10563
10671
|
#
|
@@ -10755,6 +10863,9 @@ module Aws::DataZone
|
|
10755
10863
|
# resp.items[0].asset_listing.glossary_terms #=> Array
|
10756
10864
|
# resp.items[0].asset_listing.glossary_terms[0].name #=> String
|
10757
10865
|
# resp.items[0].asset_listing.glossary_terms[0].short_description #=> String
|
10866
|
+
# resp.items[0].asset_listing.governed_glossary_terms #=> Array
|
10867
|
+
# resp.items[0].asset_listing.governed_glossary_terms[0].name #=> String
|
10868
|
+
# resp.items[0].asset_listing.governed_glossary_terms[0].short_description #=> String
|
10758
10869
|
# resp.items[0].asset_listing.listing_created_by #=> String
|
10759
10870
|
# resp.items[0].asset_listing.listing_id #=> String
|
10760
10871
|
# resp.items[0].asset_listing.listing_revision #=> String
|
@@ -12346,6 +12457,7 @@ module Aws::DataZone
|
|
12346
12457
|
# * {Types::UpdateGlossaryOutput#name #name} => String
|
12347
12458
|
# * {Types::UpdateGlossaryOutput#owning_project_id #owning_project_id} => String
|
12348
12459
|
# * {Types::UpdateGlossaryOutput#status #status} => String
|
12460
|
+
# * {Types::UpdateGlossaryOutput#usage_restrictions #usage_restrictions} => Array<String>
|
12349
12461
|
#
|
12350
12462
|
# @example Request syntax with placeholder values
|
12351
12463
|
#
|
@@ -12366,6 +12478,8 @@ module Aws::DataZone
|
|
12366
12478
|
# resp.name #=> String
|
12367
12479
|
# resp.owning_project_id #=> String
|
12368
12480
|
# resp.status #=> String, one of "DISABLED", "ENABLED"
|
12481
|
+
# resp.usage_restrictions #=> Array
|
12482
|
+
# resp.usage_restrictions[0] #=> String, one of "ASSET_GOVERNED_TERMS"
|
12369
12483
|
#
|
12370
12484
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateGlossary AWS API Documentation
|
12371
12485
|
#
|
@@ -12417,6 +12531,7 @@ module Aws::DataZone
|
|
12417
12531
|
# * {Types::UpdateGlossaryTermOutput#short_description #short_description} => String
|
12418
12532
|
# * {Types::UpdateGlossaryTermOutput#status #status} => String
|
12419
12533
|
# * {Types::UpdateGlossaryTermOutput#term_relations #term_relations} => Types::TermRelations
|
12534
|
+
# * {Types::UpdateGlossaryTermOutput#usage_restrictions #usage_restrictions} => Array<String>
|
12420
12535
|
#
|
12421
12536
|
# @example Request syntax with placeholder values
|
12422
12537
|
#
|
@@ -12447,6 +12562,8 @@ module Aws::DataZone
|
|
12447
12562
|
# resp.term_relations.classifies[0] #=> String
|
12448
12563
|
# resp.term_relations.is_a #=> Array
|
12449
12564
|
# resp.term_relations.is_a[0] #=> String
|
12565
|
+
# resp.usage_restrictions #=> Array
|
12566
|
+
# resp.usage_restrictions[0] #=> String, one of "ASSET_GOVERNED_TERMS"
|
12450
12567
|
#
|
12451
12568
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateGlossaryTerm AWS API Documentation
|
12452
12569
|
#
|
@@ -12610,7 +12727,7 @@ module Aws::DataZone
|
|
12610
12727
|
# resp.last_updated_at #=> Time
|
12611
12728
|
# resp.name #=> String
|
12612
12729
|
# resp.project_profile_id #=> String
|
12613
|
-
# resp.project_status #=> String, one of "ACTIVE", "DELETING", "DELETE_FAILED", "UPDATING", "UPDATE_FAILED"
|
12730
|
+
# resp.project_status #=> String, one of "ACTIVE", "DELETING", "DELETE_FAILED", "UPDATING", "UPDATE_FAILED", "MOVING"
|
12614
12731
|
# resp.user_parameters #=> Array
|
12615
12732
|
# resp.user_parameters[0].environment_configuration_name #=> String
|
12616
12733
|
# resp.user_parameters[0].environment_id #=> String
|
@@ -13231,7 +13348,7 @@ module Aws::DataZone
|
|
13231
13348
|
tracer: tracer
|
13232
13349
|
)
|
13233
13350
|
context[:gem_name] = 'aws-sdk-datazone'
|
13234
|
-
context[:gem_version] = '1.
|
13351
|
+
context[:gem_version] = '1.49.0'
|
13235
13352
|
Seahorse::Client::Request.new(handlers, context)
|
13236
13353
|
end
|
13237
13354
|
|