aws-sdk-datazone 1.3.0 → 1.5.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datazone/client.rb +591 -7
- data/lib/aws-sdk-datazone/client_api.rb +342 -3
- data/lib/aws-sdk-datazone/endpoint_provider.rb +2 -2
- data/lib/aws-sdk-datazone/endpoints.rb +104 -0
- data/lib/aws-sdk-datazone/plugins/endpoints.rb +16 -0
- data/lib/aws-sdk-datazone/types.rb +899 -18
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +161 -6
- data/sig/types.rbs +203 -3
- metadata +2 -2
data/sig/types.rbs
CHANGED
@@ -9,9 +9,10 @@ module Aws::DataZone
|
|
9
9
|
module Types
|
10
10
|
|
11
11
|
class AcceptChoice
|
12
|
+
attr_accessor edited_value: ::String
|
12
13
|
attr_accessor prediction_choice: ::Integer
|
13
14
|
attr_accessor prediction_target: ::String
|
14
|
-
SENSITIVE: []
|
15
|
+
SENSITIVE: [:edited_value]
|
15
16
|
end
|
16
17
|
|
17
18
|
class AcceptPredictionsInput
|
@@ -85,6 +86,7 @@ module Aws::DataZone
|
|
85
86
|
|
86
87
|
class AssetItemAdditionalAttributes
|
87
88
|
attr_accessor forms_output: ::Array[Types::FormOutput]
|
89
|
+
attr_accessor latest_time_series_data_point_forms_output: ::Array[Types::TimeSeriesDataPointSummaryFormOutput]
|
88
90
|
attr_accessor read_only_forms_output: ::Array[Types::FormOutput]
|
89
91
|
SENSITIVE: []
|
90
92
|
end
|
@@ -96,6 +98,7 @@ module Aws::DataZone
|
|
96
98
|
attr_accessor created_at: ::Time
|
97
99
|
attr_accessor forms: ::String
|
98
100
|
attr_accessor glossary_terms: ::Array[Types::DetailedGlossaryTerm]
|
101
|
+
attr_accessor latest_time_series_data_point_forms: ::Array[Types::TimeSeriesDataPointSummaryFormOutput]
|
99
102
|
attr_accessor owning_project_id: ::String
|
100
103
|
SENSITIVE: []
|
101
104
|
end
|
@@ -125,6 +128,7 @@ module Aws::DataZone
|
|
125
128
|
|
126
129
|
class AssetListingItemAdditionalAttributes
|
127
130
|
attr_accessor forms: ::String
|
131
|
+
attr_accessor latest_time_series_data_point_forms: ::Array[Types::TimeSeriesDataPointSummaryFormOutput]
|
128
132
|
SENSITIVE: []
|
129
133
|
end
|
130
134
|
|
@@ -164,6 +168,15 @@ module Aws::DataZone
|
|
164
168
|
SENSITIVE: []
|
165
169
|
end
|
166
170
|
|
171
|
+
class CancelMetadataGenerationRunInput
|
172
|
+
attr_accessor domain_identifier: ::String
|
173
|
+
attr_accessor identifier: ::String
|
174
|
+
SENSITIVE: []
|
175
|
+
end
|
176
|
+
|
177
|
+
class CancelMetadataGenerationRunOutput < Aws::EmptyStructure
|
178
|
+
end
|
179
|
+
|
167
180
|
class CancelSubscriptionInput
|
168
181
|
attr_accessor domain_identifier: ::String
|
169
182
|
attr_accessor identifier: ::String
|
@@ -234,6 +247,7 @@ module Aws::DataZone
|
|
234
247
|
attr_accessor forms_output: ::Array[Types::FormOutput]
|
235
248
|
attr_accessor glossary_terms: ::Array[::String]
|
236
249
|
attr_accessor id: ::String
|
250
|
+
attr_accessor latest_time_series_data_point_forms_output: ::Array[Types::TimeSeriesDataPointSummaryFormOutput]
|
237
251
|
attr_accessor listing: Types::AssetListingDetails
|
238
252
|
attr_accessor name: ::String
|
239
253
|
attr_accessor owning_project_id: ::String
|
@@ -269,6 +283,7 @@ module Aws::DataZone
|
|
269
283
|
attr_accessor forms_output: ::Array[Types::FormOutput]
|
270
284
|
attr_accessor glossary_terms: ::Array[::String]
|
271
285
|
attr_accessor id: ::String
|
286
|
+
attr_accessor latest_time_series_data_point_forms_output: ::Array[Types::TimeSeriesDataPointSummaryFormOutput]
|
272
287
|
attr_accessor listing: Types::AssetListingDetails
|
273
288
|
attr_accessor name: ::String
|
274
289
|
attr_accessor owning_project_id: ::String
|
@@ -556,10 +571,12 @@ module Aws::DataZone
|
|
556
571
|
attr_accessor created_by: ::String
|
557
572
|
attr_accessor description: ::String
|
558
573
|
attr_accessor domain_id: ::String
|
574
|
+
attr_accessor failure_reasons: ::Array[Types::ProjectDeletionError]
|
559
575
|
attr_accessor glossary_terms: ::Array[::String]
|
560
576
|
attr_accessor id: ::String
|
561
577
|
attr_accessor last_updated_at: ::Time
|
562
578
|
attr_accessor name: ::String
|
579
|
+
attr_accessor project_status: ("ACTIVE" | "DELETING" | "DELETE_FAILED")
|
563
580
|
SENSITIVE: [:description, :name]
|
564
581
|
end
|
565
582
|
|
@@ -826,6 +843,7 @@ module Aws::DataZone
|
|
826
843
|
class DeleteDomainInput
|
827
844
|
attr_accessor client_token: ::String
|
828
845
|
attr_accessor identifier: ::String
|
846
|
+
attr_accessor skip_deletion_check: bool
|
829
847
|
SENSITIVE: []
|
830
848
|
end
|
831
849
|
|
@@ -894,6 +912,7 @@ module Aws::DataZone
|
|
894
912
|
class DeleteProjectInput
|
895
913
|
attr_accessor domain_identifier: ::String
|
896
914
|
attr_accessor identifier: ::String
|
915
|
+
attr_accessor skip_deletion_check: bool
|
897
916
|
SENSITIVE: []
|
898
917
|
end
|
899
918
|
|
@@ -944,6 +963,18 @@ module Aws::DataZone
|
|
944
963
|
SENSITIVE: []
|
945
964
|
end
|
946
965
|
|
966
|
+
class DeleteTimeSeriesDataPointsInput
|
967
|
+
attr_accessor client_token: ::String
|
968
|
+
attr_accessor domain_identifier: ::String
|
969
|
+
attr_accessor entity_identifier: ::String
|
970
|
+
attr_accessor entity_type: ("ASSET" | "LISTING")
|
971
|
+
attr_accessor form_name: ::String
|
972
|
+
SENSITIVE: []
|
973
|
+
end
|
974
|
+
|
975
|
+
class DeleteTimeSeriesDataPointsOutput < Aws::EmptyStructure
|
976
|
+
end
|
977
|
+
|
947
978
|
class Deployment
|
948
979
|
attr_accessor deployment_id: ::String
|
949
980
|
attr_accessor deployment_status: ("IN_PROGRESS" | "SUCCESSFUL" | "FAILED" | "PENDING_DEPLOYMENT")
|
@@ -1144,6 +1175,7 @@ module Aws::DataZone
|
|
1144
1175
|
attr_accessor forms_output: ::Array[Types::FormOutput]
|
1145
1176
|
attr_accessor glossary_terms: ::Array[::String]
|
1146
1177
|
attr_accessor id: ::String
|
1178
|
+
attr_accessor latest_time_series_data_point_forms_output: ::Array[Types::TimeSeriesDataPointSummaryFormOutput]
|
1147
1179
|
attr_accessor listing: Types::AssetListingDetails
|
1148
1180
|
attr_accessor name: ::String
|
1149
1181
|
attr_accessor owning_project_id: ::String
|
@@ -1455,6 +1487,24 @@ module Aws::DataZone
|
|
1455
1487
|
SENSITIVE: [:description]
|
1456
1488
|
end
|
1457
1489
|
|
1490
|
+
class GetMetadataGenerationRunInput
|
1491
|
+
attr_accessor domain_identifier: ::String
|
1492
|
+
attr_accessor identifier: ::String
|
1493
|
+
SENSITIVE: []
|
1494
|
+
end
|
1495
|
+
|
1496
|
+
class GetMetadataGenerationRunOutput
|
1497
|
+
attr_accessor created_at: ::Time
|
1498
|
+
attr_accessor created_by: ::String
|
1499
|
+
attr_accessor domain_id: ::String
|
1500
|
+
attr_accessor id: ::String
|
1501
|
+
attr_accessor owning_project_id: ::String
|
1502
|
+
attr_accessor status: ("SUBMITTED" | "IN_PROGRESS" | "CANCELED" | "SUCCEEDED" | "FAILED")
|
1503
|
+
attr_accessor target: Types::MetadataGenerationRunTarget
|
1504
|
+
attr_accessor type: ("BUSINESS_DESCRIPTIONS")
|
1505
|
+
SENSITIVE: []
|
1506
|
+
end
|
1507
|
+
|
1458
1508
|
class GetProjectInput
|
1459
1509
|
attr_accessor domain_identifier: ::String
|
1460
1510
|
attr_accessor identifier: ::String
|
@@ -1466,10 +1516,12 @@ module Aws::DataZone
|
|
1466
1516
|
attr_accessor created_by: ::String
|
1467
1517
|
attr_accessor description: ::String
|
1468
1518
|
attr_accessor domain_id: ::String
|
1519
|
+
attr_accessor failure_reasons: ::Array[Types::ProjectDeletionError]
|
1469
1520
|
attr_accessor glossary_terms: ::Array[::String]
|
1470
1521
|
attr_accessor id: ::String
|
1471
1522
|
attr_accessor last_updated_at: ::Time
|
1472
1523
|
attr_accessor name: ::String
|
1524
|
+
attr_accessor project_status: ("ACTIVE" | "DELETING" | "DELETE_FAILED")
|
1473
1525
|
SENSITIVE: [:description, :name]
|
1474
1526
|
end
|
1475
1527
|
|
@@ -1563,6 +1615,24 @@ module Aws::DataZone
|
|
1563
1615
|
SENSITIVE: [:name]
|
1564
1616
|
end
|
1565
1617
|
|
1618
|
+
class GetTimeSeriesDataPointInput
|
1619
|
+
attr_accessor domain_identifier: ::String
|
1620
|
+
attr_accessor entity_identifier: ::String
|
1621
|
+
attr_accessor entity_type: ("ASSET" | "LISTING")
|
1622
|
+
attr_accessor form_name: ::String
|
1623
|
+
attr_accessor identifier: ::String
|
1624
|
+
SENSITIVE: []
|
1625
|
+
end
|
1626
|
+
|
1627
|
+
class GetTimeSeriesDataPointOutput
|
1628
|
+
attr_accessor domain_id: ::String
|
1629
|
+
attr_accessor entity_id: ::String
|
1630
|
+
attr_accessor entity_type: ("ASSET" | "LISTING")
|
1631
|
+
attr_accessor form: Types::TimeSeriesDataPointFormOutput
|
1632
|
+
attr_accessor form_name: ::String
|
1633
|
+
SENSITIVE: []
|
1634
|
+
end
|
1635
|
+
|
1566
1636
|
class GetUserProfileInput
|
1567
1637
|
attr_accessor domain_identifier: ::String
|
1568
1638
|
attr_accessor type: ("IAM" | "SSO")
|
@@ -1610,6 +1680,7 @@ module Aws::DataZone
|
|
1610
1680
|
end
|
1611
1681
|
|
1612
1682
|
class GlueRunConfigurationInput
|
1683
|
+
attr_accessor auto_import_data_quality_result: bool
|
1613
1684
|
attr_accessor data_access_role: ::String
|
1614
1685
|
attr_accessor relational_filter_configurations: ::Array[Types::RelationalFilterConfiguration]
|
1615
1686
|
SENSITIVE: []
|
@@ -1617,6 +1688,7 @@ module Aws::DataZone
|
|
1617
1688
|
|
1618
1689
|
class GlueRunConfigurationOutput
|
1619
1690
|
attr_accessor account_id: ::String
|
1691
|
+
attr_accessor auto_import_data_quality_result: bool
|
1620
1692
|
attr_accessor data_access_role: ::String
|
1621
1693
|
attr_accessor region: ::String
|
1622
1694
|
attr_accessor relational_filter_configurations: ::Array[Types::RelationalFilterConfiguration]
|
@@ -1816,6 +1888,21 @@ module Aws::DataZone
|
|
1816
1888
|
SENSITIVE: []
|
1817
1889
|
end
|
1818
1890
|
|
1891
|
+
class ListMetadataGenerationRunsInput
|
1892
|
+
attr_accessor domain_identifier: ::String
|
1893
|
+
attr_accessor max_results: ::Integer
|
1894
|
+
attr_accessor next_token: ::String
|
1895
|
+
attr_accessor status: ("SUBMITTED" | "IN_PROGRESS" | "CANCELED" | "SUCCEEDED" | "FAILED")
|
1896
|
+
attr_accessor type: ("BUSINESS_DESCRIPTIONS")
|
1897
|
+
SENSITIVE: []
|
1898
|
+
end
|
1899
|
+
|
1900
|
+
class ListMetadataGenerationRunsOutput
|
1901
|
+
attr_accessor items: ::Array[Types::MetadataGenerationRunItem]
|
1902
|
+
attr_accessor next_token: ::String
|
1903
|
+
SENSITIVE: []
|
1904
|
+
end
|
1905
|
+
|
1819
1906
|
class ListNotificationsInput
|
1820
1907
|
attr_accessor after_timestamp: ::Time
|
1821
1908
|
attr_accessor before_timestamp: ::Time
|
@@ -1950,6 +2037,24 @@ module Aws::DataZone
|
|
1950
2037
|
SENSITIVE: []
|
1951
2038
|
end
|
1952
2039
|
|
2040
|
+
class ListTimeSeriesDataPointsInput
|
2041
|
+
attr_accessor domain_identifier: ::String
|
2042
|
+
attr_accessor ended_at: ::Time
|
2043
|
+
attr_accessor entity_identifier: ::String
|
2044
|
+
attr_accessor entity_type: ("ASSET" | "LISTING")
|
2045
|
+
attr_accessor form_name: ::String
|
2046
|
+
attr_accessor max_results: ::Integer
|
2047
|
+
attr_accessor next_token: ::String
|
2048
|
+
attr_accessor started_at: ::Time
|
2049
|
+
SENSITIVE: []
|
2050
|
+
end
|
2051
|
+
|
2052
|
+
class ListTimeSeriesDataPointsOutput
|
2053
|
+
attr_accessor items: ::Array[Types::TimeSeriesDataPointSummaryFormOutput]
|
2054
|
+
attr_accessor next_token: ::String
|
2055
|
+
SENSITIVE: []
|
2056
|
+
end
|
2057
|
+
|
1953
2058
|
class ListingItem
|
1954
2059
|
attr_accessor asset_listing: Types::AssetListing
|
1955
2060
|
attr_accessor unknown: untyped
|
@@ -2001,6 +2106,25 @@ module Aws::DataZone
|
|
2001
2106
|
end
|
2002
2107
|
end
|
2003
2108
|
|
2109
|
+
class MetadataGenerationRunItem
|
2110
|
+
attr_accessor created_at: ::Time
|
2111
|
+
attr_accessor created_by: ::String
|
2112
|
+
attr_accessor domain_id: ::String
|
2113
|
+
attr_accessor id: ::String
|
2114
|
+
attr_accessor owning_project_id: ::String
|
2115
|
+
attr_accessor status: ("SUBMITTED" | "IN_PROGRESS" | "CANCELED" | "SUCCEEDED" | "FAILED")
|
2116
|
+
attr_accessor target: Types::MetadataGenerationRunTarget
|
2117
|
+
attr_accessor type: ("BUSINESS_DESCRIPTIONS")
|
2118
|
+
SENSITIVE: []
|
2119
|
+
end
|
2120
|
+
|
2121
|
+
class MetadataGenerationRunTarget
|
2122
|
+
attr_accessor identifier: ::String
|
2123
|
+
attr_accessor revision: ::String
|
2124
|
+
attr_accessor type: ("ASSET")
|
2125
|
+
SENSITIVE: []
|
2126
|
+
end
|
2127
|
+
|
2004
2128
|
class Model
|
2005
2129
|
attr_accessor smithy: ::String
|
2006
2130
|
attr_accessor unknown: untyped
|
@@ -2034,11 +2158,34 @@ module Aws::DataZone
|
|
2034
2158
|
SENSITIVE: []
|
2035
2159
|
end
|
2036
2160
|
|
2161
|
+
class PostTimeSeriesDataPointsInput
|
2162
|
+
attr_accessor client_token: ::String
|
2163
|
+
attr_accessor domain_identifier: ::String
|
2164
|
+
attr_accessor entity_identifier: ::String
|
2165
|
+
attr_accessor entity_type: ("ASSET" | "LISTING")
|
2166
|
+
attr_accessor forms: ::Array[Types::TimeSeriesDataPointFormInput]
|
2167
|
+
SENSITIVE: []
|
2168
|
+
end
|
2169
|
+
|
2170
|
+
class PostTimeSeriesDataPointsOutput
|
2171
|
+
attr_accessor domain_id: ::String
|
2172
|
+
attr_accessor entity_id: ::String
|
2173
|
+
attr_accessor entity_type: ("ASSET" | "LISTING")
|
2174
|
+
attr_accessor forms: ::Array[Types::TimeSeriesDataPointFormOutput]
|
2175
|
+
SENSITIVE: []
|
2176
|
+
end
|
2177
|
+
|
2037
2178
|
class PredictionConfiguration
|
2038
2179
|
attr_accessor business_name_generation: Types::BusinessNameGenerationConfiguration
|
2039
2180
|
SENSITIVE: []
|
2040
2181
|
end
|
2041
2182
|
|
2183
|
+
class ProjectDeletionError
|
2184
|
+
attr_accessor code: ::String
|
2185
|
+
attr_accessor message: ::String
|
2186
|
+
SENSITIVE: []
|
2187
|
+
end
|
2188
|
+
|
2042
2189
|
class ProjectMember
|
2043
2190
|
attr_accessor designation: ("PROJECT_OWNER" | "PROJECT_CONTRIBUTOR")
|
2044
2191
|
attr_accessor member_details: Types::MemberDetails
|
@@ -2050,8 +2197,10 @@ module Aws::DataZone
|
|
2050
2197
|
attr_accessor created_by: ::String
|
2051
2198
|
attr_accessor description: ::String
|
2052
2199
|
attr_accessor domain_id: ::String
|
2200
|
+
attr_accessor failure_reasons: ::Array[Types::ProjectDeletionError]
|
2053
2201
|
attr_accessor id: ::String
|
2054
2202
|
attr_accessor name: ::String
|
2203
|
+
attr_accessor project_status: ("ACTIVE" | "DELETING" | "DELETE_FAILED")
|
2055
2204
|
attr_accessor updated_at: ::Time
|
2056
2205
|
SENSITIVE: [:description, :name]
|
2057
2206
|
end
|
@@ -2271,7 +2420,7 @@ module Aws::DataZone
|
|
2271
2420
|
end
|
2272
2421
|
|
2273
2422
|
class SearchInput
|
2274
|
-
attr_accessor additional_attributes: ::Array[("FORMS")]
|
2423
|
+
attr_accessor additional_attributes: ::Array[("FORMS" | "TIME_SERIES_DATA_POINT_FORMS")]
|
2275
2424
|
attr_accessor domain_identifier: ::String
|
2276
2425
|
attr_accessor filters: Types::FilterClause
|
2277
2426
|
attr_accessor max_results: ::Integer
|
@@ -2305,7 +2454,7 @@ module Aws::DataZone
|
|
2305
2454
|
end
|
2306
2455
|
|
2307
2456
|
class SearchListingsInput
|
2308
|
-
attr_accessor additional_attributes: ::Array[("FORMS")]
|
2457
|
+
attr_accessor additional_attributes: ::Array[("FORMS" | "TIME_SERIES_DATA_POINT_FORMS")]
|
2309
2458
|
attr_accessor domain_identifier: ::String
|
2310
2459
|
attr_accessor filters: Types::FilterClause
|
2311
2460
|
attr_accessor max_results: ::Integer
|
@@ -2438,6 +2587,26 @@ module Aws::DataZone
|
|
2438
2587
|
SENSITIVE: []
|
2439
2588
|
end
|
2440
2589
|
|
2590
|
+
class StartMetadataGenerationRunInput
|
2591
|
+
attr_accessor client_token: ::String
|
2592
|
+
attr_accessor domain_identifier: ::String
|
2593
|
+
attr_accessor owning_project_identifier: ::String
|
2594
|
+
attr_accessor target: Types::MetadataGenerationRunTarget
|
2595
|
+
attr_accessor type: ("BUSINESS_DESCRIPTIONS")
|
2596
|
+
SENSITIVE: []
|
2597
|
+
end
|
2598
|
+
|
2599
|
+
class StartMetadataGenerationRunOutput
|
2600
|
+
attr_accessor created_at: ::Time
|
2601
|
+
attr_accessor created_by: ::String
|
2602
|
+
attr_accessor domain_id: ::String
|
2603
|
+
attr_accessor id: ::String
|
2604
|
+
attr_accessor owning_project_id: ::String
|
2605
|
+
attr_accessor status: ("SUBMITTED" | "IN_PROGRESS" | "CANCELED" | "SUCCEEDED" | "FAILED")
|
2606
|
+
attr_accessor type: ("BUSINESS_DESCRIPTIONS")
|
2607
|
+
SENSITIVE: []
|
2608
|
+
end
|
2609
|
+
|
2441
2610
|
class SubscribedAsset
|
2442
2611
|
attr_accessor asset_id: ::String
|
2443
2612
|
attr_accessor asset_revision: ::String
|
@@ -2609,6 +2778,35 @@ module Aws::DataZone
|
|
2609
2778
|
SENSITIVE: []
|
2610
2779
|
end
|
2611
2780
|
|
2781
|
+
class TimeSeriesDataPointFormInput
|
2782
|
+
attr_accessor content: ::String
|
2783
|
+
attr_accessor form_name: ::String
|
2784
|
+
attr_accessor timestamp: ::Time
|
2785
|
+
attr_accessor type_identifier: ::String
|
2786
|
+
attr_accessor type_revision: ::String
|
2787
|
+
SENSITIVE: []
|
2788
|
+
end
|
2789
|
+
|
2790
|
+
class TimeSeriesDataPointFormOutput
|
2791
|
+
attr_accessor content: ::String
|
2792
|
+
attr_accessor form_name: ::String
|
2793
|
+
attr_accessor id: ::String
|
2794
|
+
attr_accessor timestamp: ::Time
|
2795
|
+
attr_accessor type_identifier: ::String
|
2796
|
+
attr_accessor type_revision: ::String
|
2797
|
+
SENSITIVE: []
|
2798
|
+
end
|
2799
|
+
|
2800
|
+
class TimeSeriesDataPointSummaryFormOutput
|
2801
|
+
attr_accessor content_summary: ::String
|
2802
|
+
attr_accessor form_name: ::String
|
2803
|
+
attr_accessor id: ::String
|
2804
|
+
attr_accessor timestamp: ::Time
|
2805
|
+
attr_accessor type_identifier: ::String
|
2806
|
+
attr_accessor type_revision: ::String
|
2807
|
+
SENSITIVE: []
|
2808
|
+
end
|
2809
|
+
|
2612
2810
|
class Topic
|
2613
2811
|
attr_accessor resource: Types::NotificationResource
|
2614
2812
|
attr_accessor role: ("PROJECT_OWNER" | "PROJECT_CONTRIBUTOR" | "PROJECT_VIEWER" | "DOMAIN_OWNER" | "PROJECT_SUBSCRIBER")
|
@@ -2822,10 +3020,12 @@ module Aws::DataZone
|
|
2822
3020
|
attr_accessor created_by: ::String
|
2823
3021
|
attr_accessor description: ::String
|
2824
3022
|
attr_accessor domain_id: ::String
|
3023
|
+
attr_accessor failure_reasons: ::Array[Types::ProjectDeletionError]
|
2825
3024
|
attr_accessor glossary_terms: ::Array[::String]
|
2826
3025
|
attr_accessor id: ::String
|
2827
3026
|
attr_accessor last_updated_at: ::Time
|
2828
3027
|
attr_accessor name: ::String
|
3028
|
+
attr_accessor project_status: ("ACTIVE" | "DELETING" | "DELETE_FAILED")
|
2829
3029
|
SENSITIVE: [:description, :name]
|
2830
3030
|
end
|
2831
3031
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-datazone
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-04-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|