aws-sdk-groundstation 1.28.0 → 1.29.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-groundstation/client.rb +328 -29
- data/lib/aws-sdk-groundstation/client_api.rb +275 -59
- data/lib/aws-sdk-groundstation/endpoints.rb +70 -0
- data/lib/aws-sdk-groundstation/plugins/endpoints.rb +10 -0
- data/lib/aws-sdk-groundstation/types.rb +709 -36
- data/lib/aws-sdk-groundstation.rb +1 -1
- metadata +2 -2
@@ -53,6 +53,20 @@ module Aws::GroundStation
|
|
53
53
|
end
|
54
54
|
end
|
55
55
|
|
56
|
+
class CreateEphemeris
|
57
|
+
def self.build(context)
|
58
|
+
unless context.config.regional_endpoint
|
59
|
+
endpoint = context.config.endpoint.to_s
|
60
|
+
end
|
61
|
+
Aws::GroundStation::EndpointParameters.new(
|
62
|
+
region: context.config.region,
|
63
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
64
|
+
use_fips: context.config.use_fips_endpoint,
|
65
|
+
endpoint: endpoint,
|
66
|
+
)
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
56
70
|
class CreateMissionProfile
|
57
71
|
def self.build(context)
|
58
72
|
unless context.config.regional_endpoint
|
@@ -95,6 +109,20 @@ module Aws::GroundStation
|
|
95
109
|
end
|
96
110
|
end
|
97
111
|
|
112
|
+
class DeleteEphemeris
|
113
|
+
def self.build(context)
|
114
|
+
unless context.config.regional_endpoint
|
115
|
+
endpoint = context.config.endpoint.to_s
|
116
|
+
end
|
117
|
+
Aws::GroundStation::EndpointParameters.new(
|
118
|
+
region: context.config.region,
|
119
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
120
|
+
use_fips: context.config.use_fips_endpoint,
|
121
|
+
endpoint: endpoint,
|
122
|
+
)
|
123
|
+
end
|
124
|
+
end
|
125
|
+
|
98
126
|
class DeleteMissionProfile
|
99
127
|
def self.build(context)
|
100
128
|
unless context.config.regional_endpoint
|
@@ -123,6 +151,20 @@ module Aws::GroundStation
|
|
123
151
|
end
|
124
152
|
end
|
125
153
|
|
154
|
+
class DescribeEphemeris
|
155
|
+
def self.build(context)
|
156
|
+
unless context.config.regional_endpoint
|
157
|
+
endpoint = context.config.endpoint.to_s
|
158
|
+
end
|
159
|
+
Aws::GroundStation::EndpointParameters.new(
|
160
|
+
region: context.config.region,
|
161
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
162
|
+
use_fips: context.config.use_fips_endpoint,
|
163
|
+
endpoint: endpoint,
|
164
|
+
)
|
165
|
+
end
|
166
|
+
end
|
167
|
+
|
126
168
|
class GetConfig
|
127
169
|
def self.build(context)
|
128
170
|
unless context.config.regional_endpoint
|
@@ -235,6 +277,20 @@ module Aws::GroundStation
|
|
235
277
|
end
|
236
278
|
end
|
237
279
|
|
280
|
+
class ListEphemerides
|
281
|
+
def self.build(context)
|
282
|
+
unless context.config.regional_endpoint
|
283
|
+
endpoint = context.config.endpoint.to_s
|
284
|
+
end
|
285
|
+
Aws::GroundStation::EndpointParameters.new(
|
286
|
+
region: context.config.region,
|
287
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
288
|
+
use_fips: context.config.use_fips_endpoint,
|
289
|
+
endpoint: endpoint,
|
290
|
+
)
|
291
|
+
end
|
292
|
+
end
|
293
|
+
|
238
294
|
class ListGroundStations
|
239
295
|
def self.build(context)
|
240
296
|
unless context.config.regional_endpoint
|
@@ -347,6 +403,20 @@ module Aws::GroundStation
|
|
347
403
|
end
|
348
404
|
end
|
349
405
|
|
406
|
+
class UpdateEphemeris
|
407
|
+
def self.build(context)
|
408
|
+
unless context.config.regional_endpoint
|
409
|
+
endpoint = context.config.endpoint.to_s
|
410
|
+
end
|
411
|
+
Aws::GroundStation::EndpointParameters.new(
|
412
|
+
region: context.config.region,
|
413
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
414
|
+
use_fips: context.config.use_fips_endpoint,
|
415
|
+
endpoint: endpoint,
|
416
|
+
)
|
417
|
+
end
|
418
|
+
end
|
419
|
+
|
350
420
|
class UpdateMissionProfile
|
351
421
|
def self.build(context)
|
352
422
|
unless context.config.regional_endpoint
|
@@ -62,16 +62,22 @@ module Aws::GroundStation
|
|
62
62
|
Aws::GroundStation::Endpoints::CreateConfig.build(context)
|
63
63
|
when :create_dataflow_endpoint_group
|
64
64
|
Aws::GroundStation::Endpoints::CreateDataflowEndpointGroup.build(context)
|
65
|
+
when :create_ephemeris
|
66
|
+
Aws::GroundStation::Endpoints::CreateEphemeris.build(context)
|
65
67
|
when :create_mission_profile
|
66
68
|
Aws::GroundStation::Endpoints::CreateMissionProfile.build(context)
|
67
69
|
when :delete_config
|
68
70
|
Aws::GroundStation::Endpoints::DeleteConfig.build(context)
|
69
71
|
when :delete_dataflow_endpoint_group
|
70
72
|
Aws::GroundStation::Endpoints::DeleteDataflowEndpointGroup.build(context)
|
73
|
+
when :delete_ephemeris
|
74
|
+
Aws::GroundStation::Endpoints::DeleteEphemeris.build(context)
|
71
75
|
when :delete_mission_profile
|
72
76
|
Aws::GroundStation::Endpoints::DeleteMissionProfile.build(context)
|
73
77
|
when :describe_contact
|
74
78
|
Aws::GroundStation::Endpoints::DescribeContact.build(context)
|
79
|
+
when :describe_ephemeris
|
80
|
+
Aws::GroundStation::Endpoints::DescribeEphemeris.build(context)
|
75
81
|
when :get_config
|
76
82
|
Aws::GroundStation::Endpoints::GetConfig.build(context)
|
77
83
|
when :get_dataflow_endpoint_group
|
@@ -88,6 +94,8 @@ module Aws::GroundStation
|
|
88
94
|
Aws::GroundStation::Endpoints::ListContacts.build(context)
|
89
95
|
when :list_dataflow_endpoint_groups
|
90
96
|
Aws::GroundStation::Endpoints::ListDataflowEndpointGroups.build(context)
|
97
|
+
when :list_ephemerides
|
98
|
+
Aws::GroundStation::Endpoints::ListEphemerides.build(context)
|
91
99
|
when :list_ground_stations
|
92
100
|
Aws::GroundStation::Endpoints::ListGroundStations.build(context)
|
93
101
|
when :list_mission_profiles
|
@@ -104,6 +112,8 @@ module Aws::GroundStation
|
|
104
112
|
Aws::GroundStation::Endpoints::UntagResource.build(context)
|
105
113
|
when :update_config
|
106
114
|
Aws::GroundStation::Endpoints::UpdateConfig.build(context)
|
115
|
+
when :update_ephemeris
|
116
|
+
Aws::GroundStation::Endpoints::UpdateEphemeris.build(context)
|
107
117
|
when :update_mission_profile
|
108
118
|
Aws::GroundStation::Endpoints::UpdateMissionProfile.build(context)
|
109
119
|
end
|