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
@@ -23,7 +23,7 @@ module Aws::DataZone
|
|
23
23
|
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
24
24
|
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
25
25
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
26
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
26
|
+
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
27
27
|
return Aws::Endpoints::Endpoint.new(url: "https://datazone-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
28
28
|
end
|
29
29
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
@@ -31,7 +31,7 @@ module Aws::DataZone
|
|
31
31
|
return Aws::Endpoints::Endpoint.new(url: "https://datazone.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
32
32
|
end
|
33
33
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
34
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
34
|
+
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
35
35
|
return Aws::Endpoints::Endpoint.new(url: "https://datazone-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
36
36
|
end
|
37
37
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
@@ -38,6 +38,19 @@ module Aws::DataZone
|
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
+
class CancelMetadataGenerationRun
|
42
|
+
def self.build(context)
|
43
|
+
unless context.config.regional_endpoint
|
44
|
+
endpoint = context.config.endpoint.to_s
|
45
|
+
end
|
46
|
+
Aws::DataZone::EndpointParameters.new(
|
47
|
+
region: context.config.region,
|
48
|
+
use_fips: context.config.use_fips_endpoint,
|
49
|
+
endpoint: endpoint,
|
50
|
+
)
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
41
54
|
class CancelSubscription
|
42
55
|
def self.build(context)
|
43
56
|
unless context.config.regional_endpoint
|
@@ -493,6 +506,19 @@ module Aws::DataZone
|
|
493
506
|
end
|
494
507
|
end
|
495
508
|
|
509
|
+
class DeleteTimeSeriesDataPoints
|
510
|
+
def self.build(context)
|
511
|
+
unless context.config.regional_endpoint
|
512
|
+
endpoint = context.config.endpoint.to_s
|
513
|
+
end
|
514
|
+
Aws::DataZone::EndpointParameters.new(
|
515
|
+
region: context.config.region,
|
516
|
+
use_fips: context.config.use_fips_endpoint,
|
517
|
+
endpoint: endpoint,
|
518
|
+
)
|
519
|
+
end
|
520
|
+
end
|
521
|
+
|
496
522
|
class GetAsset
|
497
523
|
def self.build(context)
|
498
524
|
unless context.config.regional_endpoint
|
@@ -688,6 +714,19 @@ module Aws::DataZone
|
|
688
714
|
end
|
689
715
|
end
|
690
716
|
|
717
|
+
class GetMetadataGenerationRun
|
718
|
+
def self.build(context)
|
719
|
+
unless context.config.regional_endpoint
|
720
|
+
endpoint = context.config.endpoint.to_s
|
721
|
+
end
|
722
|
+
Aws::DataZone::EndpointParameters.new(
|
723
|
+
region: context.config.region,
|
724
|
+
use_fips: context.config.use_fips_endpoint,
|
725
|
+
endpoint: endpoint,
|
726
|
+
)
|
727
|
+
end
|
728
|
+
end
|
729
|
+
|
691
730
|
class GetProject
|
692
731
|
def self.build(context)
|
693
732
|
unless context.config.regional_endpoint
|
@@ -753,6 +792,19 @@ module Aws::DataZone
|
|
753
792
|
end
|
754
793
|
end
|
755
794
|
|
795
|
+
class GetTimeSeriesDataPoint
|
796
|
+
def self.build(context)
|
797
|
+
unless context.config.regional_endpoint
|
798
|
+
endpoint = context.config.endpoint.to_s
|
799
|
+
end
|
800
|
+
Aws::DataZone::EndpointParameters.new(
|
801
|
+
region: context.config.region,
|
802
|
+
use_fips: context.config.use_fips_endpoint,
|
803
|
+
endpoint: endpoint,
|
804
|
+
)
|
805
|
+
end
|
806
|
+
end
|
807
|
+
|
756
808
|
class GetUserProfile
|
757
809
|
def self.build(context)
|
758
810
|
unless context.config.regional_endpoint
|
@@ -883,6 +935,19 @@ module Aws::DataZone
|
|
883
935
|
end
|
884
936
|
end
|
885
937
|
|
938
|
+
class ListMetadataGenerationRuns
|
939
|
+
def self.build(context)
|
940
|
+
unless context.config.regional_endpoint
|
941
|
+
endpoint = context.config.endpoint.to_s
|
942
|
+
end
|
943
|
+
Aws::DataZone::EndpointParameters.new(
|
944
|
+
region: context.config.region,
|
945
|
+
use_fips: context.config.use_fips_endpoint,
|
946
|
+
endpoint: endpoint,
|
947
|
+
)
|
948
|
+
end
|
949
|
+
end
|
950
|
+
|
886
951
|
class ListNotifications
|
887
952
|
def self.build(context)
|
888
953
|
unless context.config.regional_endpoint
|
@@ -987,6 +1052,32 @@ module Aws::DataZone
|
|
987
1052
|
end
|
988
1053
|
end
|
989
1054
|
|
1055
|
+
class ListTimeSeriesDataPoints
|
1056
|
+
def self.build(context)
|
1057
|
+
unless context.config.regional_endpoint
|
1058
|
+
endpoint = context.config.endpoint.to_s
|
1059
|
+
end
|
1060
|
+
Aws::DataZone::EndpointParameters.new(
|
1061
|
+
region: context.config.region,
|
1062
|
+
use_fips: context.config.use_fips_endpoint,
|
1063
|
+
endpoint: endpoint,
|
1064
|
+
)
|
1065
|
+
end
|
1066
|
+
end
|
1067
|
+
|
1068
|
+
class PostTimeSeriesDataPoints
|
1069
|
+
def self.build(context)
|
1070
|
+
unless context.config.regional_endpoint
|
1071
|
+
endpoint = context.config.endpoint.to_s
|
1072
|
+
end
|
1073
|
+
Aws::DataZone::EndpointParameters.new(
|
1074
|
+
region: context.config.region,
|
1075
|
+
use_fips: context.config.use_fips_endpoint,
|
1076
|
+
endpoint: endpoint,
|
1077
|
+
)
|
1078
|
+
end
|
1079
|
+
end
|
1080
|
+
|
990
1081
|
class PutEnvironmentBlueprintConfiguration
|
991
1082
|
def self.build(context)
|
992
1083
|
unless context.config.regional_endpoint
|
@@ -1117,6 +1208,19 @@ module Aws::DataZone
|
|
1117
1208
|
end
|
1118
1209
|
end
|
1119
1210
|
|
1211
|
+
class StartMetadataGenerationRun
|
1212
|
+
def self.build(context)
|
1213
|
+
unless context.config.regional_endpoint
|
1214
|
+
endpoint = context.config.endpoint.to_s
|
1215
|
+
end
|
1216
|
+
Aws::DataZone::EndpointParameters.new(
|
1217
|
+
region: context.config.region,
|
1218
|
+
use_fips: context.config.use_fips_endpoint,
|
1219
|
+
endpoint: endpoint,
|
1220
|
+
)
|
1221
|
+
end
|
1222
|
+
end
|
1223
|
+
|
1120
1224
|
class TagResource
|
1121
1225
|
def self.build(context)
|
1122
1226
|
unless context.config.regional_endpoint
|
@@ -62,6 +62,8 @@ module Aws::DataZone
|
|
62
62
|
Aws::DataZone::Endpoints::AcceptPredictions.build(context)
|
63
63
|
when :accept_subscription_request
|
64
64
|
Aws::DataZone::Endpoints::AcceptSubscriptionRequest.build(context)
|
65
|
+
when :cancel_metadata_generation_run
|
66
|
+
Aws::DataZone::Endpoints::CancelMetadataGenerationRun.build(context)
|
65
67
|
when :cancel_subscription
|
66
68
|
Aws::DataZone::Endpoints::CancelSubscription.build(context)
|
67
69
|
when :create_asset
|
@@ -132,6 +134,8 @@ module Aws::DataZone
|
|
132
134
|
Aws::DataZone::Endpoints::DeleteSubscriptionRequest.build(context)
|
133
135
|
when :delete_subscription_target
|
134
136
|
Aws::DataZone::Endpoints::DeleteSubscriptionTarget.build(context)
|
137
|
+
when :delete_time_series_data_points
|
138
|
+
Aws::DataZone::Endpoints::DeleteTimeSeriesDataPoints.build(context)
|
135
139
|
when :get_asset
|
136
140
|
Aws::DataZone::Endpoints::GetAsset.build(context)
|
137
141
|
when :get_asset_type
|
@@ -162,6 +166,8 @@ module Aws::DataZone
|
|
162
166
|
Aws::DataZone::Endpoints::GetIamPortalLoginUrl.build(context)
|
163
167
|
when :get_listing
|
164
168
|
Aws::DataZone::Endpoints::GetListing.build(context)
|
169
|
+
when :get_metadata_generation_run
|
170
|
+
Aws::DataZone::Endpoints::GetMetadataGenerationRun.build(context)
|
165
171
|
when :get_project
|
166
172
|
Aws::DataZone::Endpoints::GetProject.build(context)
|
167
173
|
when :get_subscription
|
@@ -172,6 +178,8 @@ module Aws::DataZone
|
|
172
178
|
Aws::DataZone::Endpoints::GetSubscriptionRequestDetails.build(context)
|
173
179
|
when :get_subscription_target
|
174
180
|
Aws::DataZone::Endpoints::GetSubscriptionTarget.build(context)
|
181
|
+
when :get_time_series_data_point
|
182
|
+
Aws::DataZone::Endpoints::GetTimeSeriesDataPoint.build(context)
|
175
183
|
when :get_user_profile
|
176
184
|
Aws::DataZone::Endpoints::GetUserProfile.build(context)
|
177
185
|
when :list_asset_revisions
|
@@ -192,6 +200,8 @@ module Aws::DataZone
|
|
192
200
|
Aws::DataZone::Endpoints::ListEnvironmentProfiles.build(context)
|
193
201
|
when :list_environments
|
194
202
|
Aws::DataZone::Endpoints::ListEnvironments.build(context)
|
203
|
+
when :list_metadata_generation_runs
|
204
|
+
Aws::DataZone::Endpoints::ListMetadataGenerationRuns.build(context)
|
195
205
|
when :list_notifications
|
196
206
|
Aws::DataZone::Endpoints::ListNotifications.build(context)
|
197
207
|
when :list_project_memberships
|
@@ -208,6 +218,10 @@ module Aws::DataZone
|
|
208
218
|
Aws::DataZone::Endpoints::ListSubscriptions.build(context)
|
209
219
|
when :list_tags_for_resource
|
210
220
|
Aws::DataZone::Endpoints::ListTagsForResource.build(context)
|
221
|
+
when :list_time_series_data_points
|
222
|
+
Aws::DataZone::Endpoints::ListTimeSeriesDataPoints.build(context)
|
223
|
+
when :post_time_series_data_points
|
224
|
+
Aws::DataZone::Endpoints::PostTimeSeriesDataPoints.build(context)
|
211
225
|
when :put_environment_blueprint_configuration
|
212
226
|
Aws::DataZone::Endpoints::PutEnvironmentBlueprintConfiguration.build(context)
|
213
227
|
when :reject_predictions
|
@@ -228,6 +242,8 @@ module Aws::DataZone
|
|
228
242
|
Aws::DataZone::Endpoints::SearchUserProfiles.build(context)
|
229
243
|
when :start_data_source_run
|
230
244
|
Aws::DataZone::Endpoints::StartDataSourceRun.build(context)
|
245
|
+
when :start_metadata_generation_run
|
246
|
+
Aws::DataZone::Endpoints::StartMetadataGenerationRun.build(context)
|
231
247
|
when :tag_resource
|
232
248
|
Aws::DataZone::Endpoints::TagResource.build(context)
|
233
249
|
when :untag_resource
|