aws-sdk-datazone 1.17.0 → 1.18.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 +556 -5
- data/lib/aws-sdk-datazone/client_api.rb +302 -5
- 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 +878 -30
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +140 -2
- data/sig/types.rbs +218 -2
- metadata +2 -2
@@ -129,6 +129,32 @@ module Aws::DataZone
|
|
129
129
|
end
|
130
130
|
end
|
131
131
|
|
132
|
+
class CreateDataProduct
|
133
|
+
def self.build(context)
|
134
|
+
unless context.config.regional_endpoint
|
135
|
+
endpoint = context.config.endpoint.to_s
|
136
|
+
end
|
137
|
+
Aws::DataZone::EndpointParameters.new(
|
138
|
+
region: context.config.region,
|
139
|
+
use_fips: context.config.use_fips_endpoint,
|
140
|
+
endpoint: endpoint,
|
141
|
+
)
|
142
|
+
end
|
143
|
+
end
|
144
|
+
|
145
|
+
class CreateDataProductRevision
|
146
|
+
def self.build(context)
|
147
|
+
unless context.config.regional_endpoint
|
148
|
+
endpoint = context.config.endpoint.to_s
|
149
|
+
end
|
150
|
+
Aws::DataZone::EndpointParameters.new(
|
151
|
+
region: context.config.region,
|
152
|
+
use_fips: context.config.use_fips_endpoint,
|
153
|
+
endpoint: endpoint,
|
154
|
+
)
|
155
|
+
end
|
156
|
+
end
|
157
|
+
|
132
158
|
class CreateDataSource
|
133
159
|
def self.build(context)
|
134
160
|
unless context.config.regional_endpoint
|
@@ -376,6 +402,19 @@ module Aws::DataZone
|
|
376
402
|
end
|
377
403
|
end
|
378
404
|
|
405
|
+
class DeleteDataProduct
|
406
|
+
def self.build(context)
|
407
|
+
unless context.config.regional_endpoint
|
408
|
+
endpoint = context.config.endpoint.to_s
|
409
|
+
end
|
410
|
+
Aws::DataZone::EndpointParameters.new(
|
411
|
+
region: context.config.region,
|
412
|
+
use_fips: context.config.use_fips_endpoint,
|
413
|
+
endpoint: endpoint,
|
414
|
+
)
|
415
|
+
end
|
416
|
+
end
|
417
|
+
|
379
418
|
class DeleteDataSource
|
380
419
|
def self.build(context)
|
381
420
|
unless context.config.regional_endpoint
|
@@ -636,6 +675,19 @@ module Aws::DataZone
|
|
636
675
|
end
|
637
676
|
end
|
638
677
|
|
678
|
+
class GetDataProduct
|
679
|
+
def self.build(context)
|
680
|
+
unless context.config.regional_endpoint
|
681
|
+
endpoint = context.config.endpoint.to_s
|
682
|
+
end
|
683
|
+
Aws::DataZone::EndpointParameters.new(
|
684
|
+
region: context.config.region,
|
685
|
+
use_fips: context.config.use_fips_endpoint,
|
686
|
+
endpoint: endpoint,
|
687
|
+
)
|
688
|
+
end
|
689
|
+
end
|
690
|
+
|
639
691
|
class GetDataSource
|
640
692
|
def self.build(context)
|
641
693
|
unless context.config.regional_endpoint
|
@@ -974,6 +1026,19 @@ module Aws::DataZone
|
|
974
1026
|
end
|
975
1027
|
end
|
976
1028
|
|
1029
|
+
class ListDataProductRevisions
|
1030
|
+
def self.build(context)
|
1031
|
+
unless context.config.regional_endpoint
|
1032
|
+
endpoint = context.config.endpoint.to_s
|
1033
|
+
end
|
1034
|
+
Aws::DataZone::EndpointParameters.new(
|
1035
|
+
region: context.config.region,
|
1036
|
+
use_fips: context.config.use_fips_endpoint,
|
1037
|
+
endpoint: endpoint,
|
1038
|
+
)
|
1039
|
+
end
|
1040
|
+
end
|
1041
|
+
|
977
1042
|
class ListDataSourceRunActivities
|
978
1043
|
def self.build(context)
|
979
1044
|
unless context.config.regional_endpoint
|
@@ -76,6 +76,10 @@ module Aws::DataZone
|
|
76
76
|
Aws::DataZone::Endpoints::CreateAssetRevision.build(context)
|
77
77
|
when :create_asset_type
|
78
78
|
Aws::DataZone::Endpoints::CreateAssetType.build(context)
|
79
|
+
when :create_data_product
|
80
|
+
Aws::DataZone::Endpoints::CreateDataProduct.build(context)
|
81
|
+
when :create_data_product_revision
|
82
|
+
Aws::DataZone::Endpoints::CreateDataProductRevision.build(context)
|
79
83
|
when :create_data_source
|
80
84
|
Aws::DataZone::Endpoints::CreateDataSource.build(context)
|
81
85
|
when :create_domain
|
@@ -114,6 +118,8 @@ module Aws::DataZone
|
|
114
118
|
Aws::DataZone::Endpoints::DeleteAssetFilter.build(context)
|
115
119
|
when :delete_asset_type
|
116
120
|
Aws::DataZone::Endpoints::DeleteAssetType.build(context)
|
121
|
+
when :delete_data_product
|
122
|
+
Aws::DataZone::Endpoints::DeleteDataProduct.build(context)
|
117
123
|
when :delete_data_source
|
118
124
|
Aws::DataZone::Endpoints::DeleteDataSource.build(context)
|
119
125
|
when :delete_domain
|
@@ -154,6 +160,8 @@ module Aws::DataZone
|
|
154
160
|
Aws::DataZone::Endpoints::GetAssetFilter.build(context)
|
155
161
|
when :get_asset_type
|
156
162
|
Aws::DataZone::Endpoints::GetAssetType.build(context)
|
163
|
+
when :get_data_product
|
164
|
+
Aws::DataZone::Endpoints::GetDataProduct.build(context)
|
157
165
|
when :get_data_source
|
158
166
|
Aws::DataZone::Endpoints::GetDataSource.build(context)
|
159
167
|
when :get_data_source_run
|
@@ -206,6 +214,8 @@ module Aws::DataZone
|
|
206
214
|
Aws::DataZone::Endpoints::ListAssetFilters.build(context)
|
207
215
|
when :list_asset_revisions
|
208
216
|
Aws::DataZone::Endpoints::ListAssetRevisions.build(context)
|
217
|
+
when :list_data_product_revisions
|
218
|
+
Aws::DataZone::Endpoints::ListDataProductRevisions.build(context)
|
209
219
|
when :list_data_source_run_activities
|
210
220
|
Aws::DataZone::Endpoints::ListDataSourceRunActivities.build(context)
|
211
221
|
when :list_data_source_runs
|