aws-sdk-datazone 1.13.0 → 1.15.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 +547 -1
- data/lib/aws-sdk-datazone/client_api.rb +335 -3
- data/lib/aws-sdk-datazone/endpoints.rb +65 -0
- data/lib/aws-sdk-datazone/plugins/endpoints.rb +10 -0
- data/lib/aws-sdk-datazone/types.rb +920 -18
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +231 -0
- data/sig/types.rbs +285 -0
- metadata +2 -2
@@ -90,6 +90,19 @@ module Aws::DataZone
|
|
90
90
|
end
|
91
91
|
end
|
92
92
|
|
93
|
+
class CreateAssetFilter
|
94
|
+
def self.build(context)
|
95
|
+
unless context.config.regional_endpoint
|
96
|
+
endpoint = context.config.endpoint.to_s
|
97
|
+
end
|
98
|
+
Aws::DataZone::EndpointParameters.new(
|
99
|
+
region: context.config.region,
|
100
|
+
use_fips: context.config.use_fips_endpoint,
|
101
|
+
endpoint: endpoint,
|
102
|
+
)
|
103
|
+
end
|
104
|
+
end
|
105
|
+
|
93
106
|
class CreateAssetRevision
|
94
107
|
def self.build(context)
|
95
108
|
unless context.config.regional_endpoint
|
@@ -337,6 +350,19 @@ module Aws::DataZone
|
|
337
350
|
end
|
338
351
|
end
|
339
352
|
|
353
|
+
class DeleteAssetFilter
|
354
|
+
def self.build(context)
|
355
|
+
unless context.config.regional_endpoint
|
356
|
+
endpoint = context.config.endpoint.to_s
|
357
|
+
end
|
358
|
+
Aws::DataZone::EndpointParameters.new(
|
359
|
+
region: context.config.region,
|
360
|
+
use_fips: context.config.use_fips_endpoint,
|
361
|
+
endpoint: endpoint,
|
362
|
+
)
|
363
|
+
end
|
364
|
+
end
|
365
|
+
|
340
366
|
class DeleteAssetType
|
341
367
|
def self.build(context)
|
342
368
|
unless context.config.regional_endpoint
|
@@ -584,6 +610,19 @@ module Aws::DataZone
|
|
584
610
|
end
|
585
611
|
end
|
586
612
|
|
613
|
+
class GetAssetFilter
|
614
|
+
def self.build(context)
|
615
|
+
unless context.config.regional_endpoint
|
616
|
+
endpoint = context.config.endpoint.to_s
|
617
|
+
end
|
618
|
+
Aws::DataZone::EndpointParameters.new(
|
619
|
+
region: context.config.region,
|
620
|
+
use_fips: context.config.use_fips_endpoint,
|
621
|
+
endpoint: endpoint,
|
622
|
+
)
|
623
|
+
end
|
624
|
+
end
|
625
|
+
|
587
626
|
class GetAssetType
|
588
627
|
def self.build(context)
|
589
628
|
unless context.config.regional_endpoint
|
@@ -896,6 +935,19 @@ module Aws::DataZone
|
|
896
935
|
end
|
897
936
|
end
|
898
937
|
|
938
|
+
class ListAssetFilters
|
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
|
+
|
899
951
|
class ListAssetRevisions
|
900
952
|
def self.build(context)
|
901
953
|
unless context.config.regional_endpoint
|
@@ -1364,6 +1416,19 @@ module Aws::DataZone
|
|
1364
1416
|
end
|
1365
1417
|
end
|
1366
1418
|
|
1419
|
+
class UpdateAssetFilter
|
1420
|
+
def self.build(context)
|
1421
|
+
unless context.config.regional_endpoint
|
1422
|
+
endpoint = context.config.endpoint.to_s
|
1423
|
+
end
|
1424
|
+
Aws::DataZone::EndpointParameters.new(
|
1425
|
+
region: context.config.region,
|
1426
|
+
use_fips: context.config.use_fips_endpoint,
|
1427
|
+
endpoint: endpoint,
|
1428
|
+
)
|
1429
|
+
end
|
1430
|
+
end
|
1431
|
+
|
1367
1432
|
class UpdateDataSource
|
1368
1433
|
def self.build(context)
|
1369
1434
|
unless context.config.regional_endpoint
|
@@ -70,6 +70,8 @@ module Aws::DataZone
|
|
70
70
|
Aws::DataZone::Endpoints::CancelSubscription.build(context)
|
71
71
|
when :create_asset
|
72
72
|
Aws::DataZone::Endpoints::CreateAsset.build(context)
|
73
|
+
when :create_asset_filter
|
74
|
+
Aws::DataZone::Endpoints::CreateAssetFilter.build(context)
|
73
75
|
when :create_asset_revision
|
74
76
|
Aws::DataZone::Endpoints::CreateAssetRevision.build(context)
|
75
77
|
when :create_asset_type
|
@@ -108,6 +110,8 @@ module Aws::DataZone
|
|
108
110
|
Aws::DataZone::Endpoints::CreateUserProfile.build(context)
|
109
111
|
when :delete_asset
|
110
112
|
Aws::DataZone::Endpoints::DeleteAsset.build(context)
|
113
|
+
when :delete_asset_filter
|
114
|
+
Aws::DataZone::Endpoints::DeleteAssetFilter.build(context)
|
111
115
|
when :delete_asset_type
|
112
116
|
Aws::DataZone::Endpoints::DeleteAssetType.build(context)
|
113
117
|
when :delete_data_source
|
@@ -146,6 +150,8 @@ module Aws::DataZone
|
|
146
150
|
Aws::DataZone::Endpoints::DisassociateEnvironmentRole.build(context)
|
147
151
|
when :get_asset
|
148
152
|
Aws::DataZone::Endpoints::GetAsset.build(context)
|
153
|
+
when :get_asset_filter
|
154
|
+
Aws::DataZone::Endpoints::GetAssetFilter.build(context)
|
149
155
|
when :get_asset_type
|
150
156
|
Aws::DataZone::Endpoints::GetAssetType.build(context)
|
151
157
|
when :get_data_source
|
@@ -194,6 +200,8 @@ module Aws::DataZone
|
|
194
200
|
Aws::DataZone::Endpoints::GetTimeSeriesDataPoint.build(context)
|
195
201
|
when :get_user_profile
|
196
202
|
Aws::DataZone::Endpoints::GetUserProfile.build(context)
|
203
|
+
when :list_asset_filters
|
204
|
+
Aws::DataZone::Endpoints::ListAssetFilters.build(context)
|
197
205
|
when :list_asset_revisions
|
198
206
|
Aws::DataZone::Endpoints::ListAssetRevisions.build(context)
|
199
207
|
when :list_data_source_run_activities
|
@@ -266,6 +274,8 @@ module Aws::DataZone
|
|
266
274
|
Aws::DataZone::Endpoints::TagResource.build(context)
|
267
275
|
when :untag_resource
|
268
276
|
Aws::DataZone::Endpoints::UntagResource.build(context)
|
277
|
+
when :update_asset_filter
|
278
|
+
Aws::DataZone::Endpoints::UpdateAssetFilter.build(context)
|
269
279
|
when :update_data_source
|
270
280
|
Aws::DataZone::Endpoints::UpdateDataSource.build(context)
|
271
281
|
when :update_domain
|