aws-sdk-datazone 1.8.0 → 1.10.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 +389 -3
- data/lib/aws-sdk-datazone/client_api.rb +262 -4
- data/lib/aws-sdk-datazone/endpoints.rb +91 -0
- data/lib/aws-sdk-datazone/plugins/endpoints.rb +14 -0
- data/lib/aws-sdk-datazone/types.rb +568 -1
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +119 -1
- data/sig/types.rbs +165 -0
- metadata +4 -4
@@ -38,6 +38,19 @@ module Aws::DataZone
|
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
+
class AssociateEnvironmentRole
|
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 CancelMetadataGenerationRun
|
42
55
|
def self.build(context)
|
43
56
|
unless context.config.regional_endpoint
|
@@ -142,6 +155,19 @@ module Aws::DataZone
|
|
142
155
|
end
|
143
156
|
end
|
144
157
|
|
158
|
+
class CreateEnvironmentAction
|
159
|
+
def self.build(context)
|
160
|
+
unless context.config.regional_endpoint
|
161
|
+
endpoint = context.config.endpoint.to_s
|
162
|
+
end
|
163
|
+
Aws::DataZone::EndpointParameters.new(
|
164
|
+
region: context.config.region,
|
165
|
+
use_fips: context.config.use_fips_endpoint,
|
166
|
+
endpoint: endpoint,
|
167
|
+
)
|
168
|
+
end
|
169
|
+
end
|
170
|
+
|
145
171
|
class CreateEnvironmentProfile
|
146
172
|
def self.build(context)
|
147
173
|
unless context.config.regional_endpoint
|
@@ -363,6 +389,19 @@ module Aws::DataZone
|
|
363
389
|
end
|
364
390
|
end
|
365
391
|
|
392
|
+
class DeleteEnvironmentAction
|
393
|
+
def self.build(context)
|
394
|
+
unless context.config.regional_endpoint
|
395
|
+
endpoint = context.config.endpoint.to_s
|
396
|
+
end
|
397
|
+
Aws::DataZone::EndpointParameters.new(
|
398
|
+
region: context.config.region,
|
399
|
+
use_fips: context.config.use_fips_endpoint,
|
400
|
+
endpoint: endpoint,
|
401
|
+
)
|
402
|
+
end
|
403
|
+
end
|
404
|
+
|
366
405
|
class DeleteEnvironmentBlueprintConfiguration
|
367
406
|
def self.build(context)
|
368
407
|
unless context.config.regional_endpoint
|
@@ -519,6 +558,19 @@ module Aws::DataZone
|
|
519
558
|
end
|
520
559
|
end
|
521
560
|
|
561
|
+
class DisassociateEnvironmentRole
|
562
|
+
def self.build(context)
|
563
|
+
unless context.config.regional_endpoint
|
564
|
+
endpoint = context.config.endpoint.to_s
|
565
|
+
end
|
566
|
+
Aws::DataZone::EndpointParameters.new(
|
567
|
+
region: context.config.region,
|
568
|
+
use_fips: context.config.use_fips_endpoint,
|
569
|
+
endpoint: endpoint,
|
570
|
+
)
|
571
|
+
end
|
572
|
+
end
|
573
|
+
|
522
574
|
class GetAsset
|
523
575
|
def self.build(context)
|
524
576
|
unless context.config.regional_endpoint
|
@@ -597,6 +649,19 @@ module Aws::DataZone
|
|
597
649
|
end
|
598
650
|
end
|
599
651
|
|
652
|
+
class GetEnvironmentAction
|
653
|
+
def self.build(context)
|
654
|
+
unless context.config.regional_endpoint
|
655
|
+
endpoint = context.config.endpoint.to_s
|
656
|
+
end
|
657
|
+
Aws::DataZone::EndpointParameters.new(
|
658
|
+
region: context.config.region,
|
659
|
+
use_fips: context.config.use_fips_endpoint,
|
660
|
+
endpoint: endpoint,
|
661
|
+
)
|
662
|
+
end
|
663
|
+
end
|
664
|
+
|
600
665
|
class GetEnvironmentBlueprint
|
601
666
|
def self.build(context)
|
602
667
|
unless context.config.regional_endpoint
|
@@ -883,6 +948,19 @@ module Aws::DataZone
|
|
883
948
|
end
|
884
949
|
end
|
885
950
|
|
951
|
+
class ListEnvironmentActions
|
952
|
+
def self.build(context)
|
953
|
+
unless context.config.regional_endpoint
|
954
|
+
endpoint = context.config.endpoint.to_s
|
955
|
+
end
|
956
|
+
Aws::DataZone::EndpointParameters.new(
|
957
|
+
region: context.config.region,
|
958
|
+
use_fips: context.config.use_fips_endpoint,
|
959
|
+
endpoint: endpoint,
|
960
|
+
)
|
961
|
+
end
|
962
|
+
end
|
963
|
+
|
886
964
|
class ListEnvironmentBlueprintConfigurations
|
887
965
|
def self.build(context)
|
888
966
|
unless context.config.regional_endpoint
|
@@ -1286,6 +1364,19 @@ module Aws::DataZone
|
|
1286
1364
|
end
|
1287
1365
|
end
|
1288
1366
|
|
1367
|
+
class UpdateEnvironmentAction
|
1368
|
+
def self.build(context)
|
1369
|
+
unless context.config.regional_endpoint
|
1370
|
+
endpoint = context.config.endpoint.to_s
|
1371
|
+
end
|
1372
|
+
Aws::DataZone::EndpointParameters.new(
|
1373
|
+
region: context.config.region,
|
1374
|
+
use_fips: context.config.use_fips_endpoint,
|
1375
|
+
endpoint: endpoint,
|
1376
|
+
)
|
1377
|
+
end
|
1378
|
+
end
|
1379
|
+
|
1289
1380
|
class UpdateEnvironmentProfile
|
1290
1381
|
def self.build(context)
|
1291
1382
|
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 :associate_environment_role
|
66
|
+
Aws::DataZone::Endpoints::AssociateEnvironmentRole.build(context)
|
65
67
|
when :cancel_metadata_generation_run
|
66
68
|
Aws::DataZone::Endpoints::CancelMetadataGenerationRun.build(context)
|
67
69
|
when :cancel_subscription
|
@@ -78,6 +80,8 @@ module Aws::DataZone
|
|
78
80
|
Aws::DataZone::Endpoints::CreateDomain.build(context)
|
79
81
|
when :create_environment
|
80
82
|
Aws::DataZone::Endpoints::CreateEnvironment.build(context)
|
83
|
+
when :create_environment_action
|
84
|
+
Aws::DataZone::Endpoints::CreateEnvironmentAction.build(context)
|
81
85
|
when :create_environment_profile
|
82
86
|
Aws::DataZone::Endpoints::CreateEnvironmentProfile.build(context)
|
83
87
|
when :create_form_type
|
@@ -112,6 +116,8 @@ module Aws::DataZone
|
|
112
116
|
Aws::DataZone::Endpoints::DeleteDomain.build(context)
|
113
117
|
when :delete_environment
|
114
118
|
Aws::DataZone::Endpoints::DeleteEnvironment.build(context)
|
119
|
+
when :delete_environment_action
|
120
|
+
Aws::DataZone::Endpoints::DeleteEnvironmentAction.build(context)
|
115
121
|
when :delete_environment_blueprint_configuration
|
116
122
|
Aws::DataZone::Endpoints::DeleteEnvironmentBlueprintConfiguration.build(context)
|
117
123
|
when :delete_environment_profile
|
@@ -136,6 +142,8 @@ module Aws::DataZone
|
|
136
142
|
Aws::DataZone::Endpoints::DeleteSubscriptionTarget.build(context)
|
137
143
|
when :delete_time_series_data_points
|
138
144
|
Aws::DataZone::Endpoints::DeleteTimeSeriesDataPoints.build(context)
|
145
|
+
when :disassociate_environment_role
|
146
|
+
Aws::DataZone::Endpoints::DisassociateEnvironmentRole.build(context)
|
139
147
|
when :get_asset
|
140
148
|
Aws::DataZone::Endpoints::GetAsset.build(context)
|
141
149
|
when :get_asset_type
|
@@ -148,6 +156,8 @@ module Aws::DataZone
|
|
148
156
|
Aws::DataZone::Endpoints::GetDomain.build(context)
|
149
157
|
when :get_environment
|
150
158
|
Aws::DataZone::Endpoints::GetEnvironment.build(context)
|
159
|
+
when :get_environment_action
|
160
|
+
Aws::DataZone::Endpoints::GetEnvironmentAction.build(context)
|
151
161
|
when :get_environment_blueprint
|
152
162
|
Aws::DataZone::Endpoints::GetEnvironmentBlueprint.build(context)
|
153
163
|
when :get_environment_blueprint_configuration
|
@@ -192,6 +202,8 @@ module Aws::DataZone
|
|
192
202
|
Aws::DataZone::Endpoints::ListDataSources.build(context)
|
193
203
|
when :list_domains
|
194
204
|
Aws::DataZone::Endpoints::ListDomains.build(context)
|
205
|
+
when :list_environment_actions
|
206
|
+
Aws::DataZone::Endpoints::ListEnvironmentActions.build(context)
|
195
207
|
when :list_environment_blueprint_configurations
|
196
208
|
Aws::DataZone::Endpoints::ListEnvironmentBlueprintConfigurations.build(context)
|
197
209
|
when :list_environment_blueprints
|
@@ -254,6 +266,8 @@ module Aws::DataZone
|
|
254
266
|
Aws::DataZone::Endpoints::UpdateDomain.build(context)
|
255
267
|
when :update_environment
|
256
268
|
Aws::DataZone::Endpoints::UpdateEnvironment.build(context)
|
269
|
+
when :update_environment_action
|
270
|
+
Aws::DataZone::Endpoints::UpdateEnvironmentAction.build(context)
|
257
271
|
when :update_environment_profile
|
258
272
|
Aws::DataZone::Endpoints::UpdateEnvironmentProfile.build(context)
|
259
273
|
when :update_glossary
|