aws-sdk-datazone 1.26.0 → 1.27.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datazone/client.rb +6 -6
- data/lib/aws-sdk-datazone/endpoint_parameters.rb +8 -3
- data/lib/aws-sdk-datazone/endpoints.rb +2 -1388
- data/lib/aws-sdk-datazone/plugins/endpoints.rb +1 -284
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +3 -3
- data/sig/types.rbs +3 -3
- metadata +4 -4
@@ -27,7 +27,7 @@ The endpoint provider used to resolve endpoints. Any object that responds to
|
|
27
27
|
class Handler < Seahorse::Client::Handler
|
28
28
|
def call(context)
|
29
29
|
unless context[:discovered_endpoint]
|
30
|
-
params = parameters_for_operation(context)
|
30
|
+
params = Aws::DataZone::Endpoints.parameters_for_operation(context)
|
31
31
|
endpoint = context.config.endpoint_provider.resolve_endpoint(params)
|
32
32
|
|
33
33
|
context.http_request.endpoint = endpoint.url
|
@@ -67,289 +67,6 @@ The endpoint provider used to resolve endpoints. Any object that responds to
|
|
67
67
|
context.http_request.headers[key] = value
|
68
68
|
end
|
69
69
|
end
|
70
|
-
|
71
|
-
def parameters_for_operation(context)
|
72
|
-
case context.operation_name
|
73
|
-
when :accept_predictions
|
74
|
-
Aws::DataZone::Endpoints::AcceptPredictions.build(context)
|
75
|
-
when :accept_subscription_request
|
76
|
-
Aws::DataZone::Endpoints::AcceptSubscriptionRequest.build(context)
|
77
|
-
when :add_entity_owner
|
78
|
-
Aws::DataZone::Endpoints::AddEntityOwner.build(context)
|
79
|
-
when :add_policy_grant
|
80
|
-
Aws::DataZone::Endpoints::AddPolicyGrant.build(context)
|
81
|
-
when :associate_environment_role
|
82
|
-
Aws::DataZone::Endpoints::AssociateEnvironmentRole.build(context)
|
83
|
-
when :cancel_metadata_generation_run
|
84
|
-
Aws::DataZone::Endpoints::CancelMetadataGenerationRun.build(context)
|
85
|
-
when :cancel_subscription
|
86
|
-
Aws::DataZone::Endpoints::CancelSubscription.build(context)
|
87
|
-
when :create_asset
|
88
|
-
Aws::DataZone::Endpoints::CreateAsset.build(context)
|
89
|
-
when :create_asset_filter
|
90
|
-
Aws::DataZone::Endpoints::CreateAssetFilter.build(context)
|
91
|
-
when :create_asset_revision
|
92
|
-
Aws::DataZone::Endpoints::CreateAssetRevision.build(context)
|
93
|
-
when :create_asset_type
|
94
|
-
Aws::DataZone::Endpoints::CreateAssetType.build(context)
|
95
|
-
when :create_data_product
|
96
|
-
Aws::DataZone::Endpoints::CreateDataProduct.build(context)
|
97
|
-
when :create_data_product_revision
|
98
|
-
Aws::DataZone::Endpoints::CreateDataProductRevision.build(context)
|
99
|
-
when :create_data_source
|
100
|
-
Aws::DataZone::Endpoints::CreateDataSource.build(context)
|
101
|
-
when :create_domain
|
102
|
-
Aws::DataZone::Endpoints::CreateDomain.build(context)
|
103
|
-
when :create_domain_unit
|
104
|
-
Aws::DataZone::Endpoints::CreateDomainUnit.build(context)
|
105
|
-
when :create_environment
|
106
|
-
Aws::DataZone::Endpoints::CreateEnvironment.build(context)
|
107
|
-
when :create_environment_action
|
108
|
-
Aws::DataZone::Endpoints::CreateEnvironmentAction.build(context)
|
109
|
-
when :create_environment_profile
|
110
|
-
Aws::DataZone::Endpoints::CreateEnvironmentProfile.build(context)
|
111
|
-
when :create_form_type
|
112
|
-
Aws::DataZone::Endpoints::CreateFormType.build(context)
|
113
|
-
when :create_glossary
|
114
|
-
Aws::DataZone::Endpoints::CreateGlossary.build(context)
|
115
|
-
when :create_glossary_term
|
116
|
-
Aws::DataZone::Endpoints::CreateGlossaryTerm.build(context)
|
117
|
-
when :create_group_profile
|
118
|
-
Aws::DataZone::Endpoints::CreateGroupProfile.build(context)
|
119
|
-
when :create_listing_change_set
|
120
|
-
Aws::DataZone::Endpoints::CreateListingChangeSet.build(context)
|
121
|
-
when :create_project
|
122
|
-
Aws::DataZone::Endpoints::CreateProject.build(context)
|
123
|
-
when :create_project_membership
|
124
|
-
Aws::DataZone::Endpoints::CreateProjectMembership.build(context)
|
125
|
-
when :create_subscription_grant
|
126
|
-
Aws::DataZone::Endpoints::CreateSubscriptionGrant.build(context)
|
127
|
-
when :create_subscription_request
|
128
|
-
Aws::DataZone::Endpoints::CreateSubscriptionRequest.build(context)
|
129
|
-
when :create_subscription_target
|
130
|
-
Aws::DataZone::Endpoints::CreateSubscriptionTarget.build(context)
|
131
|
-
when :create_user_profile
|
132
|
-
Aws::DataZone::Endpoints::CreateUserProfile.build(context)
|
133
|
-
when :delete_asset
|
134
|
-
Aws::DataZone::Endpoints::DeleteAsset.build(context)
|
135
|
-
when :delete_asset_filter
|
136
|
-
Aws::DataZone::Endpoints::DeleteAssetFilter.build(context)
|
137
|
-
when :delete_asset_type
|
138
|
-
Aws::DataZone::Endpoints::DeleteAssetType.build(context)
|
139
|
-
when :delete_data_product
|
140
|
-
Aws::DataZone::Endpoints::DeleteDataProduct.build(context)
|
141
|
-
when :delete_data_source
|
142
|
-
Aws::DataZone::Endpoints::DeleteDataSource.build(context)
|
143
|
-
when :delete_domain
|
144
|
-
Aws::DataZone::Endpoints::DeleteDomain.build(context)
|
145
|
-
when :delete_domain_unit
|
146
|
-
Aws::DataZone::Endpoints::DeleteDomainUnit.build(context)
|
147
|
-
when :delete_environment
|
148
|
-
Aws::DataZone::Endpoints::DeleteEnvironment.build(context)
|
149
|
-
when :delete_environment_action
|
150
|
-
Aws::DataZone::Endpoints::DeleteEnvironmentAction.build(context)
|
151
|
-
when :delete_environment_blueprint_configuration
|
152
|
-
Aws::DataZone::Endpoints::DeleteEnvironmentBlueprintConfiguration.build(context)
|
153
|
-
when :delete_environment_profile
|
154
|
-
Aws::DataZone::Endpoints::DeleteEnvironmentProfile.build(context)
|
155
|
-
when :delete_form_type
|
156
|
-
Aws::DataZone::Endpoints::DeleteFormType.build(context)
|
157
|
-
when :delete_glossary
|
158
|
-
Aws::DataZone::Endpoints::DeleteGlossary.build(context)
|
159
|
-
when :delete_glossary_term
|
160
|
-
Aws::DataZone::Endpoints::DeleteGlossaryTerm.build(context)
|
161
|
-
when :delete_listing
|
162
|
-
Aws::DataZone::Endpoints::DeleteListing.build(context)
|
163
|
-
when :delete_project
|
164
|
-
Aws::DataZone::Endpoints::DeleteProject.build(context)
|
165
|
-
when :delete_project_membership
|
166
|
-
Aws::DataZone::Endpoints::DeleteProjectMembership.build(context)
|
167
|
-
when :delete_subscription_grant
|
168
|
-
Aws::DataZone::Endpoints::DeleteSubscriptionGrant.build(context)
|
169
|
-
when :delete_subscription_request
|
170
|
-
Aws::DataZone::Endpoints::DeleteSubscriptionRequest.build(context)
|
171
|
-
when :delete_subscription_target
|
172
|
-
Aws::DataZone::Endpoints::DeleteSubscriptionTarget.build(context)
|
173
|
-
when :delete_time_series_data_points
|
174
|
-
Aws::DataZone::Endpoints::DeleteTimeSeriesDataPoints.build(context)
|
175
|
-
when :disassociate_environment_role
|
176
|
-
Aws::DataZone::Endpoints::DisassociateEnvironmentRole.build(context)
|
177
|
-
when :get_asset
|
178
|
-
Aws::DataZone::Endpoints::GetAsset.build(context)
|
179
|
-
when :get_asset_filter
|
180
|
-
Aws::DataZone::Endpoints::GetAssetFilter.build(context)
|
181
|
-
when :get_asset_type
|
182
|
-
Aws::DataZone::Endpoints::GetAssetType.build(context)
|
183
|
-
when :get_data_product
|
184
|
-
Aws::DataZone::Endpoints::GetDataProduct.build(context)
|
185
|
-
when :get_data_source
|
186
|
-
Aws::DataZone::Endpoints::GetDataSource.build(context)
|
187
|
-
when :get_data_source_run
|
188
|
-
Aws::DataZone::Endpoints::GetDataSourceRun.build(context)
|
189
|
-
when :get_domain
|
190
|
-
Aws::DataZone::Endpoints::GetDomain.build(context)
|
191
|
-
when :get_domain_unit
|
192
|
-
Aws::DataZone::Endpoints::GetDomainUnit.build(context)
|
193
|
-
when :get_environment
|
194
|
-
Aws::DataZone::Endpoints::GetEnvironment.build(context)
|
195
|
-
when :get_environment_action
|
196
|
-
Aws::DataZone::Endpoints::GetEnvironmentAction.build(context)
|
197
|
-
when :get_environment_blueprint
|
198
|
-
Aws::DataZone::Endpoints::GetEnvironmentBlueprint.build(context)
|
199
|
-
when :get_environment_blueprint_configuration
|
200
|
-
Aws::DataZone::Endpoints::GetEnvironmentBlueprintConfiguration.build(context)
|
201
|
-
when :get_environment_credentials
|
202
|
-
Aws::DataZone::Endpoints::GetEnvironmentCredentials.build(context)
|
203
|
-
when :get_environment_profile
|
204
|
-
Aws::DataZone::Endpoints::GetEnvironmentProfile.build(context)
|
205
|
-
when :get_form_type
|
206
|
-
Aws::DataZone::Endpoints::GetFormType.build(context)
|
207
|
-
when :get_glossary
|
208
|
-
Aws::DataZone::Endpoints::GetGlossary.build(context)
|
209
|
-
when :get_glossary_term
|
210
|
-
Aws::DataZone::Endpoints::GetGlossaryTerm.build(context)
|
211
|
-
when :get_group_profile
|
212
|
-
Aws::DataZone::Endpoints::GetGroupProfile.build(context)
|
213
|
-
when :get_iam_portal_login_url
|
214
|
-
Aws::DataZone::Endpoints::GetIamPortalLoginUrl.build(context)
|
215
|
-
when :get_lineage_node
|
216
|
-
Aws::DataZone::Endpoints::GetLineageNode.build(context)
|
217
|
-
when :get_listing
|
218
|
-
Aws::DataZone::Endpoints::GetListing.build(context)
|
219
|
-
when :get_metadata_generation_run
|
220
|
-
Aws::DataZone::Endpoints::GetMetadataGenerationRun.build(context)
|
221
|
-
when :get_project
|
222
|
-
Aws::DataZone::Endpoints::GetProject.build(context)
|
223
|
-
when :get_subscription
|
224
|
-
Aws::DataZone::Endpoints::GetSubscription.build(context)
|
225
|
-
when :get_subscription_grant
|
226
|
-
Aws::DataZone::Endpoints::GetSubscriptionGrant.build(context)
|
227
|
-
when :get_subscription_request_details
|
228
|
-
Aws::DataZone::Endpoints::GetSubscriptionRequestDetails.build(context)
|
229
|
-
when :get_subscription_target
|
230
|
-
Aws::DataZone::Endpoints::GetSubscriptionTarget.build(context)
|
231
|
-
when :get_time_series_data_point
|
232
|
-
Aws::DataZone::Endpoints::GetTimeSeriesDataPoint.build(context)
|
233
|
-
when :get_user_profile
|
234
|
-
Aws::DataZone::Endpoints::GetUserProfile.build(context)
|
235
|
-
when :list_asset_filters
|
236
|
-
Aws::DataZone::Endpoints::ListAssetFilters.build(context)
|
237
|
-
when :list_asset_revisions
|
238
|
-
Aws::DataZone::Endpoints::ListAssetRevisions.build(context)
|
239
|
-
when :list_data_product_revisions
|
240
|
-
Aws::DataZone::Endpoints::ListDataProductRevisions.build(context)
|
241
|
-
when :list_data_source_run_activities
|
242
|
-
Aws::DataZone::Endpoints::ListDataSourceRunActivities.build(context)
|
243
|
-
when :list_data_source_runs
|
244
|
-
Aws::DataZone::Endpoints::ListDataSourceRuns.build(context)
|
245
|
-
when :list_data_sources
|
246
|
-
Aws::DataZone::Endpoints::ListDataSources.build(context)
|
247
|
-
when :list_domain_units_for_parent
|
248
|
-
Aws::DataZone::Endpoints::ListDomainUnitsForParent.build(context)
|
249
|
-
when :list_domains
|
250
|
-
Aws::DataZone::Endpoints::ListDomains.build(context)
|
251
|
-
when :list_entity_owners
|
252
|
-
Aws::DataZone::Endpoints::ListEntityOwners.build(context)
|
253
|
-
when :list_environment_actions
|
254
|
-
Aws::DataZone::Endpoints::ListEnvironmentActions.build(context)
|
255
|
-
when :list_environment_blueprint_configurations
|
256
|
-
Aws::DataZone::Endpoints::ListEnvironmentBlueprintConfigurations.build(context)
|
257
|
-
when :list_environment_blueprints
|
258
|
-
Aws::DataZone::Endpoints::ListEnvironmentBlueprints.build(context)
|
259
|
-
when :list_environment_profiles
|
260
|
-
Aws::DataZone::Endpoints::ListEnvironmentProfiles.build(context)
|
261
|
-
when :list_environments
|
262
|
-
Aws::DataZone::Endpoints::ListEnvironments.build(context)
|
263
|
-
when :list_lineage_node_history
|
264
|
-
Aws::DataZone::Endpoints::ListLineageNodeHistory.build(context)
|
265
|
-
when :list_metadata_generation_runs
|
266
|
-
Aws::DataZone::Endpoints::ListMetadataGenerationRuns.build(context)
|
267
|
-
when :list_notifications
|
268
|
-
Aws::DataZone::Endpoints::ListNotifications.build(context)
|
269
|
-
when :list_policy_grants
|
270
|
-
Aws::DataZone::Endpoints::ListPolicyGrants.build(context)
|
271
|
-
when :list_project_memberships
|
272
|
-
Aws::DataZone::Endpoints::ListProjectMemberships.build(context)
|
273
|
-
when :list_projects
|
274
|
-
Aws::DataZone::Endpoints::ListProjects.build(context)
|
275
|
-
when :list_subscription_grants
|
276
|
-
Aws::DataZone::Endpoints::ListSubscriptionGrants.build(context)
|
277
|
-
when :list_subscription_requests
|
278
|
-
Aws::DataZone::Endpoints::ListSubscriptionRequests.build(context)
|
279
|
-
when :list_subscription_targets
|
280
|
-
Aws::DataZone::Endpoints::ListSubscriptionTargets.build(context)
|
281
|
-
when :list_subscriptions
|
282
|
-
Aws::DataZone::Endpoints::ListSubscriptions.build(context)
|
283
|
-
when :list_tags_for_resource
|
284
|
-
Aws::DataZone::Endpoints::ListTagsForResource.build(context)
|
285
|
-
when :list_time_series_data_points
|
286
|
-
Aws::DataZone::Endpoints::ListTimeSeriesDataPoints.build(context)
|
287
|
-
when :post_lineage_event
|
288
|
-
Aws::DataZone::Endpoints::PostLineageEvent.build(context)
|
289
|
-
when :post_time_series_data_points
|
290
|
-
Aws::DataZone::Endpoints::PostTimeSeriesDataPoints.build(context)
|
291
|
-
when :put_environment_blueprint_configuration
|
292
|
-
Aws::DataZone::Endpoints::PutEnvironmentBlueprintConfiguration.build(context)
|
293
|
-
when :reject_predictions
|
294
|
-
Aws::DataZone::Endpoints::RejectPredictions.build(context)
|
295
|
-
when :reject_subscription_request
|
296
|
-
Aws::DataZone::Endpoints::RejectSubscriptionRequest.build(context)
|
297
|
-
when :remove_entity_owner
|
298
|
-
Aws::DataZone::Endpoints::RemoveEntityOwner.build(context)
|
299
|
-
when :remove_policy_grant
|
300
|
-
Aws::DataZone::Endpoints::RemovePolicyGrant.build(context)
|
301
|
-
when :revoke_subscription
|
302
|
-
Aws::DataZone::Endpoints::RevokeSubscription.build(context)
|
303
|
-
when :search
|
304
|
-
Aws::DataZone::Endpoints::Search.build(context)
|
305
|
-
when :search_group_profiles
|
306
|
-
Aws::DataZone::Endpoints::SearchGroupProfiles.build(context)
|
307
|
-
when :search_listings
|
308
|
-
Aws::DataZone::Endpoints::SearchListings.build(context)
|
309
|
-
when :search_types
|
310
|
-
Aws::DataZone::Endpoints::SearchTypes.build(context)
|
311
|
-
when :search_user_profiles
|
312
|
-
Aws::DataZone::Endpoints::SearchUserProfiles.build(context)
|
313
|
-
when :start_data_source_run
|
314
|
-
Aws::DataZone::Endpoints::StartDataSourceRun.build(context)
|
315
|
-
when :start_metadata_generation_run
|
316
|
-
Aws::DataZone::Endpoints::StartMetadataGenerationRun.build(context)
|
317
|
-
when :tag_resource
|
318
|
-
Aws::DataZone::Endpoints::TagResource.build(context)
|
319
|
-
when :untag_resource
|
320
|
-
Aws::DataZone::Endpoints::UntagResource.build(context)
|
321
|
-
when :update_asset_filter
|
322
|
-
Aws::DataZone::Endpoints::UpdateAssetFilter.build(context)
|
323
|
-
when :update_data_source
|
324
|
-
Aws::DataZone::Endpoints::UpdateDataSource.build(context)
|
325
|
-
when :update_domain
|
326
|
-
Aws::DataZone::Endpoints::UpdateDomain.build(context)
|
327
|
-
when :update_domain_unit
|
328
|
-
Aws::DataZone::Endpoints::UpdateDomainUnit.build(context)
|
329
|
-
when :update_environment
|
330
|
-
Aws::DataZone::Endpoints::UpdateEnvironment.build(context)
|
331
|
-
when :update_environment_action
|
332
|
-
Aws::DataZone::Endpoints::UpdateEnvironmentAction.build(context)
|
333
|
-
when :update_environment_profile
|
334
|
-
Aws::DataZone::Endpoints::UpdateEnvironmentProfile.build(context)
|
335
|
-
when :update_glossary
|
336
|
-
Aws::DataZone::Endpoints::UpdateGlossary.build(context)
|
337
|
-
when :update_glossary_term
|
338
|
-
Aws::DataZone::Endpoints::UpdateGlossaryTerm.build(context)
|
339
|
-
when :update_group_profile
|
340
|
-
Aws::DataZone::Endpoints::UpdateGroupProfile.build(context)
|
341
|
-
when :update_project
|
342
|
-
Aws::DataZone::Endpoints::UpdateProject.build(context)
|
343
|
-
when :update_subscription_grant_status
|
344
|
-
Aws::DataZone::Endpoints::UpdateSubscriptionGrantStatus.build(context)
|
345
|
-
when :update_subscription_request
|
346
|
-
Aws::DataZone::Endpoints::UpdateSubscriptionRequest.build(context)
|
347
|
-
when :update_subscription_target
|
348
|
-
Aws::DataZone::Endpoints::UpdateSubscriptionTarget.build(context)
|
349
|
-
when :update_user_profile
|
350
|
-
Aws::DataZone::Endpoints::UpdateUserProfile.build(context)
|
351
|
-
end
|
352
|
-
end
|
353
70
|
end
|
354
71
|
|
355
72
|
def add_handlers(handlers, _config)
|
data/lib/aws-sdk-datazone.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -206,7 +206,7 @@ module Aws
|
|
206
206
|
group_identifier: ::String?
|
207
207
|
}?,
|
208
208
|
project: {
|
209
|
-
project_designation: ("OWNER" | "CONTRIBUTOR"),
|
209
|
+
project_designation: ("OWNER" | "CONTRIBUTOR" | "PROJECT_CATALOG_STEWARD"),
|
210
210
|
project_grant_filter: {
|
211
211
|
domain_unit_filter: {
|
212
212
|
domain_unit: ::String,
|
@@ -945,7 +945,7 @@ module Aws
|
|
945
945
|
end
|
946
946
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_project_membership-instance_method
|
947
947
|
def create_project_membership: (
|
948
|
-
designation: ("PROJECT_OWNER" | "PROJECT_CONTRIBUTOR"),
|
948
|
+
designation: ("PROJECT_OWNER" | "PROJECT_CONTRIBUTOR" | "PROJECT_CATALOG_VIEWER" | "PROJECT_CATALOG_CONSUMER" | "PROJECT_CATALOG_STEWARD"),
|
949
949
|
domain_identifier: ::String,
|
950
950
|
member: {
|
951
951
|
group_identifier: ::String?,
|
@@ -2524,7 +2524,7 @@ module Aws
|
|
2524
2524
|
group_identifier: ::String?
|
2525
2525
|
}?,
|
2526
2526
|
project: {
|
2527
|
-
project_designation: ("OWNER" | "CONTRIBUTOR"),
|
2527
|
+
project_designation: ("OWNER" | "CONTRIBUTOR" | "PROJECT_CATALOG_STEWARD"),
|
2528
2528
|
project_grant_filter: {
|
2529
2529
|
domain_unit_filter: {
|
2530
2530
|
domain_unit: ::String,
|
data/sig/types.rbs
CHANGED
@@ -830,7 +830,7 @@ module Aws::DataZone
|
|
830
830
|
end
|
831
831
|
|
832
832
|
class CreateProjectMembershipInput
|
833
|
-
attr_accessor designation: ("PROJECT_OWNER" | "PROJECT_CONTRIBUTOR")
|
833
|
+
attr_accessor designation: ("PROJECT_OWNER" | "PROJECT_CONTRIBUTOR" | "PROJECT_CATALOG_VIEWER" | "PROJECT_CATALOG_CONSUMER" | "PROJECT_CATALOG_STEWARD")
|
834
834
|
attr_accessor domain_identifier: ::String
|
835
835
|
attr_accessor member: Types::Member
|
836
836
|
attr_accessor project_identifier: ::String
|
@@ -3147,13 +3147,13 @@ module Aws::DataZone
|
|
3147
3147
|
end
|
3148
3148
|
|
3149
3149
|
class ProjectMember
|
3150
|
-
attr_accessor designation: ("PROJECT_OWNER" | "PROJECT_CONTRIBUTOR")
|
3150
|
+
attr_accessor designation: ("PROJECT_OWNER" | "PROJECT_CONTRIBUTOR" | "PROJECT_CATALOG_VIEWER" | "PROJECT_CATALOG_CONSUMER" | "PROJECT_CATALOG_STEWARD")
|
3151
3151
|
attr_accessor member_details: Types::MemberDetails
|
3152
3152
|
SENSITIVE: []
|
3153
3153
|
end
|
3154
3154
|
|
3155
3155
|
class ProjectPolicyGrantPrincipal
|
3156
|
-
attr_accessor project_designation: ("OWNER" | "CONTRIBUTOR")
|
3156
|
+
attr_accessor project_designation: ("OWNER" | "CONTRIBUTOR" | "PROJECT_CATALOG_STEWARD")
|
3157
3157
|
attr_accessor project_grant_filter: Types::ProjectGrantFilter
|
3158
3158
|
attr_accessor project_identifier: ::String
|
3159
3159
|
SENSITIVE: []
|
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.27.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-10-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.210.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.210.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|