aws-sdk-datazone 1.16.0 → 1.18.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 +595 -5
- data/lib/aws-sdk-datazone/client_api.rb +328 -5
- data/lib/aws-sdk-datazone/endpoints.rb +78 -0
- data/lib/aws-sdk-datazone/plugins/endpoints.rb +12 -0
- data/lib/aws-sdk-datazone/types.rb +905 -12
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +154 -2
- data/sig/types.rbs +232 -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
|
@@ -727,6 +779,19 @@ module Aws::DataZone
|
|
727
779
|
end
|
728
780
|
end
|
729
781
|
|
782
|
+
class GetEnvironmentCredentials
|
783
|
+
def self.build(context)
|
784
|
+
unless context.config.regional_endpoint
|
785
|
+
endpoint = context.config.endpoint.to_s
|
786
|
+
end
|
787
|
+
Aws::DataZone::EndpointParameters.new(
|
788
|
+
region: context.config.region,
|
789
|
+
use_fips: context.config.use_fips_endpoint,
|
790
|
+
endpoint: endpoint,
|
791
|
+
)
|
792
|
+
end
|
793
|
+
end
|
794
|
+
|
730
795
|
class GetEnvironmentProfile
|
731
796
|
def self.build(context)
|
732
797
|
unless context.config.regional_endpoint
|
@@ -961,6 +1026,19 @@ module Aws::DataZone
|
|
961
1026
|
end
|
962
1027
|
end
|
963
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
|
+
|
964
1042
|
class ListDataSourceRunActivities
|
965
1043
|
def self.build(context)
|
966
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
|
@@ -168,6 +176,8 @@ module Aws::DataZone
|
|
168
176
|
Aws::DataZone::Endpoints::GetEnvironmentBlueprint.build(context)
|
169
177
|
when :get_environment_blueprint_configuration
|
170
178
|
Aws::DataZone::Endpoints::GetEnvironmentBlueprintConfiguration.build(context)
|
179
|
+
when :get_environment_credentials
|
180
|
+
Aws::DataZone::Endpoints::GetEnvironmentCredentials.build(context)
|
171
181
|
when :get_environment_profile
|
172
182
|
Aws::DataZone::Endpoints::GetEnvironmentProfile.build(context)
|
173
183
|
when :get_form_type
|
@@ -204,6 +214,8 @@ module Aws::DataZone
|
|
204
214
|
Aws::DataZone::Endpoints::ListAssetFilters.build(context)
|
205
215
|
when :list_asset_revisions
|
206
216
|
Aws::DataZone::Endpoints::ListAssetRevisions.build(context)
|
217
|
+
when :list_data_product_revisions
|
218
|
+
Aws::DataZone::Endpoints::ListDataProductRevisions.build(context)
|
207
219
|
when :list_data_source_run_activities
|
208
220
|
Aws::DataZone::Endpoints::ListDataSourceRunActivities.build(context)
|
209
221
|
when :list_data_source_runs
|