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
@@ -748,6 +748,10 @@ module Aws::DataZone
|
|
748
748
|
# The glossary terms attached to the Amazon DataZone inventory asset.
|
749
749
|
# @return [Array<String>]
|
750
750
|
#
|
751
|
+
# @!attribute [rw] governed_glossary_terms
|
752
|
+
# The restricted glossary terms accociated with an asset.
|
753
|
+
# @return [Array<String>]
|
754
|
+
#
|
751
755
|
# @!attribute [rw] identifier
|
752
756
|
# the identifier of the Amazon DataZone inventory asset.
|
753
757
|
# @return [String]
|
@@ -782,6 +786,7 @@ module Aws::DataZone
|
|
782
786
|
:first_revision_created_at,
|
783
787
|
:first_revision_created_by,
|
784
788
|
:glossary_terms,
|
789
|
+
:governed_glossary_terms,
|
785
790
|
:identifier,
|
786
791
|
:name,
|
787
792
|
:owning_project_id,
|
@@ -852,6 +857,10 @@ module Aws::DataZone
|
|
852
857
|
# DataZone catalog.
|
853
858
|
# @return [Array<Types::DetailedGlossaryTerm>]
|
854
859
|
#
|
860
|
+
# @!attribute [rw] governed_glossary_terms
|
861
|
+
# The restricted glossary terms associated with an asset.
|
862
|
+
# @return [Array<Types::DetailedGlossaryTerm>]
|
863
|
+
#
|
855
864
|
# @!attribute [rw] latest_time_series_data_point_forms
|
856
865
|
# The latest time series data points forms included in the additional
|
857
866
|
# attributes of an asset.
|
@@ -871,6 +880,7 @@ module Aws::DataZone
|
|
871
880
|
:created_at,
|
872
881
|
:forms,
|
873
882
|
:glossary_terms,
|
883
|
+
:governed_glossary_terms,
|
874
884
|
:latest_time_series_data_point_forms,
|
875
885
|
:owning_project_id)
|
876
886
|
SENSITIVE = []
|
@@ -928,6 +938,10 @@ module Aws::DataZone
|
|
928
938
|
# Glossary terms attached to the inventory asset.
|
929
939
|
# @return [Array<Types::DetailedGlossaryTerm>]
|
930
940
|
#
|
941
|
+
# @!attribute [rw] governed_glossary_terms
|
942
|
+
# The restricted glossary terms associated with an asset.
|
943
|
+
# @return [Array<Types::DetailedGlossaryTerm>]
|
944
|
+
#
|
931
945
|
# @!attribute [rw] listing_created_by
|
932
946
|
# The Amazon DataZone user who created the listing.
|
933
947
|
# @return [String]
|
@@ -964,6 +978,7 @@ module Aws::DataZone
|
|
964
978
|
:entity_revision,
|
965
979
|
:entity_type,
|
966
980
|
:glossary_terms,
|
981
|
+
:governed_glossary_terms,
|
967
982
|
:listing_created_by,
|
968
983
|
:listing_id,
|
969
984
|
:listing_revision,
|
@@ -1201,6 +1216,40 @@ module Aws::DataZone
|
|
1201
1216
|
#
|
1202
1217
|
class AssociateEnvironmentRoleOutput < Aws::EmptyStructure; end
|
1203
1218
|
|
1219
|
+
# @!attribute [rw] domain_identifier
|
1220
|
+
# The ID of the domain where governed terms are to be associated with
|
1221
|
+
# an asset.
|
1222
|
+
# @return [String]
|
1223
|
+
#
|
1224
|
+
# @!attribute [rw] entity_identifier
|
1225
|
+
# The ID of the asset with which you want to associate a governed
|
1226
|
+
# term.
|
1227
|
+
# @return [String]
|
1228
|
+
#
|
1229
|
+
# @!attribute [rw] entity_type
|
1230
|
+
# The type of the asset with which you want to associate a governed
|
1231
|
+
# term.
|
1232
|
+
# @return [String]
|
1233
|
+
#
|
1234
|
+
# @!attribute [rw] governed_glossary_terms
|
1235
|
+
# The glossary terms in a restricted glossary.
|
1236
|
+
# @return [Array<String>]
|
1237
|
+
#
|
1238
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AssociateGovernedTermsInput AWS API Documentation
|
1239
|
+
#
|
1240
|
+
class AssociateGovernedTermsInput < Struct.new(
|
1241
|
+
:domain_identifier,
|
1242
|
+
:entity_identifier,
|
1243
|
+
:entity_type,
|
1244
|
+
:governed_glossary_terms)
|
1245
|
+
SENSITIVE = []
|
1246
|
+
include Aws::Structure
|
1247
|
+
end
|
1248
|
+
|
1249
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AssociateGovernedTermsOutput AWS API Documentation
|
1250
|
+
#
|
1251
|
+
class AssociateGovernedTermsOutput < Aws::EmptyStructure; end
|
1252
|
+
|
1204
1253
|
# The Amazon Athena properties of a connection.
|
1205
1254
|
#
|
1206
1255
|
# @!attribute [rw] workgroup_name
|
@@ -2217,6 +2266,10 @@ module Aws::DataZone
|
|
2217
2266
|
# The glossary terms that are attached to the created asset.
|
2218
2267
|
# @return [Array<String>]
|
2219
2268
|
#
|
2269
|
+
# @!attribute [rw] governed_glossary_terms
|
2270
|
+
# The glossary terms in a restricted glossary.
|
2271
|
+
# @return [Array<String>]
|
2272
|
+
#
|
2220
2273
|
# @!attribute [rw] id
|
2221
2274
|
# The unique identifier of the created asset.
|
2222
2275
|
# @return [String]
|
@@ -2271,6 +2324,7 @@ module Aws::DataZone
|
|
2271
2324
|
:first_revision_created_by,
|
2272
2325
|
:forms_output,
|
2273
2326
|
:glossary_terms,
|
2327
|
+
:governed_glossary_terms,
|
2274
2328
|
:id,
|
2275
2329
|
:latest_time_series_data_point_forms_output,
|
2276
2330
|
:listing,
|
@@ -2384,6 +2438,10 @@ module Aws::DataZone
|
|
2384
2438
|
# revision.
|
2385
2439
|
# @return [Array<String>]
|
2386
2440
|
#
|
2441
|
+
# @!attribute [rw] governed_glossary_terms
|
2442
|
+
# The glossary terms in a restricted glossary.
|
2443
|
+
# @return [Array<String>]
|
2444
|
+
#
|
2387
2445
|
# @!attribute [rw] id
|
2388
2446
|
# The unique identifier of the asset revision.
|
2389
2447
|
# @return [String]
|
@@ -2439,6 +2497,7 @@ module Aws::DataZone
|
|
2439
2497
|
:first_revision_created_by,
|
2440
2498
|
:forms_output,
|
2441
2499
|
:glossary_terms,
|
2500
|
+
:governed_glossary_terms,
|
2442
2501
|
:id,
|
2443
2502
|
:latest_time_series_data_point_forms_output,
|
2444
2503
|
:listing,
|
@@ -3918,6 +3977,10 @@ module Aws::DataZone
|
|
3918
3977
|
# The status of this business glossary.
|
3919
3978
|
# @return [String]
|
3920
3979
|
#
|
3980
|
+
# @!attribute [rw] usage_restrictions
|
3981
|
+
# The usage restriction of the restricted glossary.
|
3982
|
+
# @return [Array<String>]
|
3983
|
+
#
|
3921
3984
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateGlossaryInput AWS API Documentation
|
3922
3985
|
#
|
3923
3986
|
class CreateGlossaryInput < Struct.new(
|
@@ -3926,7 +3989,8 @@ module Aws::DataZone
|
|
3926
3989
|
:domain_identifier,
|
3927
3990
|
:name,
|
3928
3991
|
:owning_project_identifier,
|
3929
|
-
:status
|
3992
|
+
:status,
|
3993
|
+
:usage_restrictions)
|
3930
3994
|
SENSITIVE = [:description, :name]
|
3931
3995
|
include Aws::Structure
|
3932
3996
|
end
|
@@ -3956,6 +4020,10 @@ module Aws::DataZone
|
|
3956
4020
|
# The status of this business glossary.
|
3957
4021
|
# @return [String]
|
3958
4022
|
#
|
4023
|
+
# @!attribute [rw] usage_restrictions
|
4024
|
+
# The usage restriction of the restricted glossary.
|
4025
|
+
# @return [Array<String>]
|
4026
|
+
#
|
3959
4027
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateGlossaryOutput AWS API Documentation
|
3960
4028
|
#
|
3961
4029
|
class CreateGlossaryOutput < Struct.new(
|
@@ -3964,7 +4032,8 @@ module Aws::DataZone
|
|
3964
4032
|
:id,
|
3965
4033
|
:name,
|
3966
4034
|
:owning_project_id,
|
3967
|
-
:status
|
4035
|
+
:status,
|
4036
|
+
:usage_restrictions)
|
3968
4037
|
SENSITIVE = [:description, :name]
|
3969
4038
|
include Aws::Structure
|
3970
4039
|
end
|
@@ -4068,6 +4137,10 @@ module Aws::DataZone
|
|
4068
4137
|
# The term relations of this business glossary term.
|
4069
4138
|
# @return [Types::TermRelations]
|
4070
4139
|
#
|
4140
|
+
# @!attribute [rw] usage_restrictions
|
4141
|
+
# The usage restriction of the restricted glossary.
|
4142
|
+
# @return [Array<String>]
|
4143
|
+
#
|
4071
4144
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateGlossaryTermOutput AWS API Documentation
|
4072
4145
|
#
|
4073
4146
|
class CreateGlossaryTermOutput < Struct.new(
|
@@ -4078,7 +4151,8 @@ module Aws::DataZone
|
|
4078
4151
|
:name,
|
4079
4152
|
:short_description,
|
4080
4153
|
:status,
|
4081
|
-
:term_relations
|
4154
|
+
:term_relations,
|
4155
|
+
:usage_restrictions)
|
4082
4156
|
SENSITIVE = [:long_description, :name, :short_description]
|
4083
4157
|
include Aws::Structure
|
4084
4158
|
end
|
@@ -6614,6 +6688,41 @@ module Aws::DataZone
|
|
6614
6688
|
#
|
6615
6689
|
class DisassociateEnvironmentRoleOutput < Aws::EmptyStructure; end
|
6616
6690
|
|
6691
|
+
# @!attribute [rw] domain_identifier
|
6692
|
+
# The ID of the domain where you want to disassociate restricted terms
|
6693
|
+
# from an asset.
|
6694
|
+
# @return [String]
|
6695
|
+
#
|
6696
|
+
# @!attribute [rw] entity_identifier
|
6697
|
+
# The ID of an asset from which you want to disassociate restricted
|
6698
|
+
# terms.
|
6699
|
+
# @return [String]
|
6700
|
+
#
|
6701
|
+
# @!attribute [rw] entity_type
|
6702
|
+
# The type of the asset from which you want to disassociate restricted
|
6703
|
+
# terms.
|
6704
|
+
# @return [String]
|
6705
|
+
#
|
6706
|
+
# @!attribute [rw] governed_glossary_terms
|
6707
|
+
# The restricted glossary terms that you want to disassociate from an
|
6708
|
+
# asset.
|
6709
|
+
# @return [Array<String>]
|
6710
|
+
#
|
6711
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DisassociateGovernedTermsInput AWS API Documentation
|
6712
|
+
#
|
6713
|
+
class DisassociateGovernedTermsInput < Struct.new(
|
6714
|
+
:domain_identifier,
|
6715
|
+
:entity_identifier,
|
6716
|
+
:entity_type,
|
6717
|
+
:governed_glossary_terms)
|
6718
|
+
SENSITIVE = []
|
6719
|
+
include Aws::Structure
|
6720
|
+
end
|
6721
|
+
|
6722
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DisassociateGovernedTermsOutput AWS API Documentation
|
6723
|
+
#
|
6724
|
+
class DisassociateGovernedTermsOutput < Aws::EmptyStructure; end
|
6725
|
+
|
6617
6726
|
# A summary of a Amazon DataZone domain.
|
6618
6727
|
#
|
6619
6728
|
# @!attribute [rw] arn
|
@@ -7891,6 +8000,10 @@ module Aws::DataZone
|
|
7891
8000
|
# The business glossary terms attached to the asset.
|
7892
8001
|
# @return [Array<String>]
|
7893
8002
|
#
|
8003
|
+
# @!attribute [rw] governed_glossary_terms
|
8004
|
+
# The restricted glossary terms attached to an asset.
|
8005
|
+
# @return [Array<String>]
|
8006
|
+
#
|
7894
8007
|
# @!attribute [rw] id
|
7895
8008
|
# The ID of the asset.
|
7896
8009
|
# @return [String]
|
@@ -7940,6 +8053,7 @@ module Aws::DataZone
|
|
7940
8053
|
:first_revision_created_by,
|
7941
8054
|
:forms_output,
|
7942
8055
|
:glossary_terms,
|
8056
|
+
:governed_glossary_terms,
|
7943
8057
|
:id,
|
7944
8058
|
:latest_time_series_data_point_forms_output,
|
7945
8059
|
:listing,
|
@@ -9281,6 +9395,10 @@ module Aws::DataZone
|
|
9281
9395
|
# The Amazon DataZone user who updated the business glossary.
|
9282
9396
|
# @return [String]
|
9283
9397
|
#
|
9398
|
+
# @!attribute [rw] usage_restrictions
|
9399
|
+
# The usage restriction of the restricted glossary.
|
9400
|
+
# @return [Array<String>]
|
9401
|
+
#
|
9284
9402
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetGlossaryOutput AWS API Documentation
|
9285
9403
|
#
|
9286
9404
|
class GetGlossaryOutput < Struct.new(
|
@@ -9293,7 +9411,8 @@ module Aws::DataZone
|
|
9293
9411
|
:owning_project_id,
|
9294
9412
|
:status,
|
9295
9413
|
:updated_at,
|
9296
|
-
:updated_by
|
9414
|
+
:updated_by,
|
9415
|
+
:usage_restrictions)
|
9297
9416
|
SENSITIVE = [:description, :name]
|
9298
9417
|
include Aws::Structure
|
9299
9418
|
end
|
@@ -9365,6 +9484,10 @@ module Aws::DataZone
|
|
9365
9484
|
# The Amazon DataZone user who updated the business glossary term.
|
9366
9485
|
# @return [String]
|
9367
9486
|
#
|
9487
|
+
# @!attribute [rw] usage_restrictions
|
9488
|
+
# The usage restriction of a term within a restricted glossary.
|
9489
|
+
# @return [Array<String>]
|
9490
|
+
#
|
9368
9491
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetGlossaryTermOutput AWS API Documentation
|
9369
9492
|
#
|
9370
9493
|
class GetGlossaryTermOutput < Struct.new(
|
@@ -9379,7 +9502,8 @@ module Aws::DataZone
|
|
9379
9502
|
:status,
|
9380
9503
|
:term_relations,
|
9381
9504
|
:updated_at,
|
9382
|
-
:updated_by
|
9505
|
+
:updated_by,
|
9506
|
+
:usage_restrictions)
|
9383
9507
|
SENSITIVE = [:long_description, :name, :short_description]
|
9384
9508
|
include Aws::Structure
|
9385
9509
|
end
|
@@ -10674,6 +10798,10 @@ module Aws::DataZone
|
|
10674
10798
|
# The Amazon DataZone user who updated the business glossary.
|
10675
10799
|
# @return [String]
|
10676
10800
|
#
|
10801
|
+
# @!attribute [rw] usage_restrictions
|
10802
|
+
# The usage restrictions associated with a goverened glossary term.
|
10803
|
+
# @return [Array<String>]
|
10804
|
+
#
|
10677
10805
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GlossaryItem AWS API Documentation
|
10678
10806
|
#
|
10679
10807
|
class GlossaryItem < Struct.new(
|
@@ -10687,7 +10815,8 @@ module Aws::DataZone
|
|
10687
10815
|
:owning_project_id,
|
10688
10816
|
:status,
|
10689
10817
|
:updated_at,
|
10690
|
-
:updated_by
|
10818
|
+
:updated_by,
|
10819
|
+
:usage_restrictions)
|
10691
10820
|
SENSITIVE = [:description, :name]
|
10692
10821
|
include Aws::Structure
|
10693
10822
|
end
|
@@ -10761,6 +10890,10 @@ module Aws::DataZone
|
|
10761
10890
|
# The Amazon DataZone user who updated the business glossary term.
|
10762
10891
|
# @return [String]
|
10763
10892
|
#
|
10893
|
+
# @!attribute [rw] usage_restrictions
|
10894
|
+
# The usage restrictions associated with a goverened glossary term.
|
10895
|
+
# @return [Array<String>]
|
10896
|
+
#
|
10764
10897
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GlossaryTermItem AWS API Documentation
|
10765
10898
|
#
|
10766
10899
|
class GlossaryTermItem < Struct.new(
|
@@ -10776,7 +10909,8 @@ module Aws::DataZone
|
|
10776
10909
|
:status,
|
10777
10910
|
:term_relations,
|
10778
10911
|
:updated_at,
|
10779
|
-
:updated_by
|
10912
|
+
:updated_by,
|
10913
|
+
:usage_restrictions)
|
10780
10914
|
SENSITIVE = [:long_description, :name, :short_description]
|
10781
10915
|
include Aws::Structure
|
10782
10916
|
end
|
@@ -20266,6 +20400,10 @@ module Aws::DataZone
|
|
20266
20400
|
# The status to be updated as part of the `UpdateGlossary` action.
|
20267
20401
|
# @return [String]
|
20268
20402
|
#
|
20403
|
+
# @!attribute [rw] usage_restrictions
|
20404
|
+
# The usage restriction of the restricted glossary.
|
20405
|
+
# @return [Array<String>]
|
20406
|
+
#
|
20269
20407
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateGlossaryOutput AWS API Documentation
|
20270
20408
|
#
|
20271
20409
|
class UpdateGlossaryOutput < Struct.new(
|
@@ -20274,7 +20412,8 @@ module Aws::DataZone
|
|
20274
20412
|
:id,
|
20275
20413
|
:name,
|
20276
20414
|
:owning_project_id,
|
20277
|
-
:status
|
20415
|
+
:status,
|
20416
|
+
:usage_restrictions)
|
20278
20417
|
SENSITIVE = [:description, :name]
|
20279
20418
|
include Aws::Structure
|
20280
20419
|
end
|
@@ -20368,6 +20507,10 @@ module Aws::DataZone
|
|
20368
20507
|
# action.
|
20369
20508
|
# @return [Types::TermRelations]
|
20370
20509
|
#
|
20510
|
+
# @!attribute [rw] usage_restrictions
|
20511
|
+
# The usage restriction of a term within a restricted glossary.
|
20512
|
+
# @return [Array<String>]
|
20513
|
+
#
|
20371
20514
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateGlossaryTermOutput AWS API Documentation
|
20372
20515
|
#
|
20373
20516
|
class UpdateGlossaryTermOutput < Struct.new(
|
@@ -20378,7 +20521,8 @@ module Aws::DataZone
|
|
20378
20521
|
:name,
|
20379
20522
|
:short_description,
|
20380
20523
|
:status,
|
20381
|
-
:term_relations
|
20524
|
+
:term_relations,
|
20525
|
+
:usage_restrictions)
|
20382
20526
|
SENSITIVE = [:long_description, :name, :short_description]
|
20383
20527
|
include Aws::Structure
|
20384
20528
|
end
|
data/lib/aws-sdk-datazone.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -250,6 +250,18 @@ module Aws
|
|
250
250
|
) -> _AssociateEnvironmentRoleResponseSuccess
|
251
251
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateEnvironmentRoleResponseSuccess
|
252
252
|
|
253
|
+
interface _AssociateGovernedTermsResponseSuccess
|
254
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateGovernedTermsOutput]
|
255
|
+
end
|
256
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#associate_governed_terms-instance_method
|
257
|
+
def associate_governed_terms: (
|
258
|
+
domain_identifier: ::String,
|
259
|
+
entity_identifier: ::String,
|
260
|
+
entity_type: ("ASSET"),
|
261
|
+
governed_glossary_terms: Array[::String]
|
262
|
+
) -> _AssociateGovernedTermsResponseSuccess
|
263
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateGovernedTermsResponseSuccess
|
264
|
+
|
253
265
|
interface _CancelMetadataGenerationRunResponseSuccess
|
254
266
|
include ::Seahorse::Client::_ResponseSuccess[Types::CancelMetadataGenerationRunOutput]
|
255
267
|
end
|
@@ -328,6 +340,7 @@ module Aws
|
|
328
340
|
def first_revision_created_by: () -> ::String
|
329
341
|
def forms_output: () -> ::Array[Types::FormOutput]
|
330
342
|
def glossary_terms: () -> ::Array[::String]
|
343
|
+
def governed_glossary_terms: () -> ::Array[::String]
|
331
344
|
def id: () -> ::String
|
332
345
|
def latest_time_series_data_point_forms_output: () -> ::Array[Types::TimeSeriesDataPointSummaryFormOutput]
|
333
346
|
def listing: () -> Types::AssetListingDetails
|
@@ -465,6 +478,7 @@ module Aws
|
|
465
478
|
def first_revision_created_by: () -> ::String
|
466
479
|
def forms_output: () -> ::Array[Types::FormOutput]
|
467
480
|
def glossary_terms: () -> ::Array[::String]
|
481
|
+
def governed_glossary_terms: () -> ::Array[::String]
|
468
482
|
def id: () -> ::String
|
469
483
|
def latest_time_series_data_point_forms_output: () -> ::Array[Types::TimeSeriesDataPointSummaryFormOutput]
|
470
484
|
def listing: () -> Types::AssetListingDetails
|
@@ -1046,6 +1060,7 @@ module Aws
|
|
1046
1060
|
def name: () -> ::String
|
1047
1061
|
def owning_project_id: () -> ::String
|
1048
1062
|
def status: () -> ("DISABLED" | "ENABLED")
|
1063
|
+
def usage_restrictions: () -> ::Array[("ASSET_GOVERNED_TERMS")]
|
1049
1064
|
end
|
1050
1065
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_glossary-instance_method
|
1051
1066
|
def create_glossary: (
|
@@ -1054,7 +1069,8 @@ module Aws
|
|
1054
1069
|
domain_identifier: ::String,
|
1055
1070
|
name: ::String,
|
1056
1071
|
owning_project_identifier: ::String,
|
1057
|
-
?status: ("DISABLED" | "ENABLED")
|
1072
|
+
?status: ("DISABLED" | "ENABLED"),
|
1073
|
+
?usage_restrictions: Array[("ASSET_GOVERNED_TERMS")]
|
1058
1074
|
) -> _CreateGlossaryResponseSuccess
|
1059
1075
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGlossaryResponseSuccess
|
1060
1076
|
|
@@ -1068,6 +1084,7 @@ module Aws
|
|
1068
1084
|
def short_description: () -> ::String
|
1069
1085
|
def status: () -> ("ENABLED" | "DISABLED")
|
1070
1086
|
def term_relations: () -> Types::TermRelations
|
1087
|
+
def usage_restrictions: () -> ::Array[("ASSET_GOVERNED_TERMS")]
|
1071
1088
|
end
|
1072
1089
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_glossary_term-instance_method
|
1073
1090
|
def create_glossary_term: (
|
@@ -1131,7 +1148,7 @@ module Aws
|
|
1131
1148
|
def last_updated_at: () -> ::Time
|
1132
1149
|
def name: () -> ::String
|
1133
1150
|
def project_profile_id: () -> ::String
|
1134
|
-
def project_status: () -> ("ACTIVE" | "DELETING" | "DELETE_FAILED" | "UPDATING" | "UPDATE_FAILED")
|
1151
|
+
def project_status: () -> ("ACTIVE" | "DELETING" | "DELETE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "MOVING")
|
1135
1152
|
def user_parameters: () -> ::Array[Types::EnvironmentConfigurationUserParameter]
|
1136
1153
|
end
|
1137
1154
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_project-instance_method
|
@@ -1714,6 +1731,18 @@ module Aws
|
|
1714
1731
|
) -> _DisassociateEnvironmentRoleResponseSuccess
|
1715
1732
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateEnvironmentRoleResponseSuccess
|
1716
1733
|
|
1734
|
+
interface _DisassociateGovernedTermsResponseSuccess
|
1735
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateGovernedTermsOutput]
|
1736
|
+
end
|
1737
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#disassociate_governed_terms-instance_method
|
1738
|
+
def disassociate_governed_terms: (
|
1739
|
+
domain_identifier: ::String,
|
1740
|
+
entity_identifier: ::String,
|
1741
|
+
entity_type: ("ASSET"),
|
1742
|
+
governed_glossary_terms: Array[::String]
|
1743
|
+
) -> _DisassociateGovernedTermsResponseSuccess
|
1744
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateGovernedTermsResponseSuccess
|
1745
|
+
|
1717
1746
|
interface _GetAccountPoolResponseSuccess
|
1718
1747
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetAccountPoolOutput]
|
1719
1748
|
def account_source: () -> Types::AccountSource
|
@@ -1746,6 +1775,7 @@ module Aws
|
|
1746
1775
|
def first_revision_created_by: () -> ::String
|
1747
1776
|
def forms_output: () -> ::Array[Types::FormOutput]
|
1748
1777
|
def glossary_terms: () -> ::Array[::String]
|
1778
|
+
def governed_glossary_terms: () -> ::Array[::String]
|
1749
1779
|
def id: () -> ::String
|
1750
1780
|
def latest_time_series_data_point_forms_output: () -> ::Array[Types::TimeSeriesDataPointSummaryFormOutput]
|
1751
1781
|
def listing: () -> Types::AssetListingDetails
|
@@ -2118,6 +2148,7 @@ module Aws
|
|
2118
2148
|
def status: () -> ("DISABLED" | "ENABLED")
|
2119
2149
|
def updated_at: () -> ::Time
|
2120
2150
|
def updated_by: () -> ::String
|
2151
|
+
def usage_restrictions: () -> ::Array[("ASSET_GOVERNED_TERMS")]
|
2121
2152
|
end
|
2122
2153
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_glossary-instance_method
|
2123
2154
|
def get_glossary: (
|
@@ -2140,6 +2171,7 @@ module Aws
|
|
2140
2171
|
def term_relations: () -> Types::TermRelations
|
2141
2172
|
def updated_at: () -> ::Time
|
2142
2173
|
def updated_by: () -> ::String
|
2174
|
+
def usage_restrictions: () -> ::Array[("ASSET_GOVERNED_TERMS")]
|
2143
2175
|
end
|
2144
2176
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_glossary_term-instance_method
|
2145
2177
|
def get_glossary_term: (
|
@@ -2291,7 +2323,7 @@ module Aws
|
|
2291
2323
|
def last_updated_at: () -> ::Time
|
2292
2324
|
def name: () -> ::String
|
2293
2325
|
def project_profile_id: () -> ::String
|
2294
|
-
def project_status: () -> ("ACTIVE" | "DELETING" | "DELETE_FAILED" | "UPDATING" | "UPDATE_FAILED")
|
2326
|
+
def project_status: () -> ("ACTIVE" | "DELETING" | "DELETE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "MOVING")
|
2295
2327
|
def user_parameters: () -> ::Array[Types::EnvironmentConfigurationUserParameter]
|
2296
2328
|
end
|
2297
2329
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_project-instance_method
|
@@ -3896,6 +3928,7 @@ module Aws
|
|
3896
3928
|
def name: () -> ::String
|
3897
3929
|
def owning_project_id: () -> ::String
|
3898
3930
|
def status: () -> ("DISABLED" | "ENABLED")
|
3931
|
+
def usage_restrictions: () -> ::Array[("ASSET_GOVERNED_TERMS")]
|
3899
3932
|
end
|
3900
3933
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_glossary-instance_method
|
3901
3934
|
def update_glossary: (
|
@@ -3918,6 +3951,7 @@ module Aws
|
|
3918
3951
|
def short_description: () -> ::String
|
3919
3952
|
def status: () -> ("ENABLED" | "DISABLED")
|
3920
3953
|
def term_relations: () -> Types::TermRelations
|
3954
|
+
def usage_restrictions: () -> ::Array[("ASSET_GOVERNED_TERMS")]
|
3921
3955
|
end
|
3922
3956
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_glossary_term-instance_method
|
3923
3957
|
def update_glossary_term: (
|
@@ -3964,7 +3998,7 @@ module Aws
|
|
3964
3998
|
def last_updated_at: () -> ::Time
|
3965
3999
|
def name: () -> ::String
|
3966
4000
|
def project_profile_id: () -> ::String
|
3967
|
-
def project_status: () -> ("ACTIVE" | "DELETING" | "DELETE_FAILED" | "UPDATING" | "UPDATE_FAILED")
|
4001
|
+
def project_status: () -> ("ACTIVE" | "DELETING" | "DELETE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "MOVING")
|
3968
4002
|
def user_parameters: () -> ::Array[Types::EnvironmentConfigurationUserParameter]
|
3969
4003
|
end
|
3970
4004
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_project-instance_method
|