aws-sdk-groundstation 1.27.0 → 1.29.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-groundstation/client.rb +347 -31
- data/lib/aws-sdk-groundstation/client_api.rb +275 -59
- data/lib/aws-sdk-groundstation/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-groundstation/endpoint_provider.rb +112 -0
- data/lib/aws-sdk-groundstation/endpoints.rb +435 -0
- data/lib/aws-sdk-groundstation/plugins/endpoints.rb +128 -0
- data/lib/aws-sdk-groundstation/types.rb +709 -36
- data/lib/aws-sdk-groundstation.rb +5 -1
- metadata +8 -4
@@ -13,11 +13,13 @@ module Aws::GroundStation
|
|
13
13
|
|
14
14
|
include Seahorse::Model
|
15
15
|
|
16
|
+
AWSRegion = Shapes::StringShape.new(name: 'AWSRegion')
|
16
17
|
AngleUnits = Shapes::StringShape.new(name: 'AngleUnits')
|
17
18
|
AntennaDemodDecodeDetails = Shapes::StructureShape.new(name: 'AntennaDemodDecodeDetails')
|
18
19
|
AntennaDownlinkConfig = Shapes::StructureShape.new(name: 'AntennaDownlinkConfig')
|
19
20
|
AntennaDownlinkDemodDecodeConfig = Shapes::StructureShape.new(name: 'AntennaDownlinkDemodDecodeConfig')
|
20
21
|
AntennaUplinkConfig = Shapes::StructureShape.new(name: 'AntennaUplinkConfig')
|
22
|
+
AnyArn = Shapes::StringShape.new(name: 'AnyArn')
|
21
23
|
BandwidthUnits = Shapes::StringShape.new(name: 'BandwidthUnits')
|
22
24
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
23
25
|
BucketArn = Shapes::StringShape.new(name: 'BucketArn')
|
@@ -35,8 +37,10 @@ module Aws::GroundStation
|
|
35
37
|
ContactStatus = Shapes::StringShape.new(name: 'ContactStatus')
|
36
38
|
CreateConfigRequest = Shapes::StructureShape.new(name: 'CreateConfigRequest')
|
37
39
|
CreateDataflowEndpointGroupRequest = Shapes::StructureShape.new(name: 'CreateDataflowEndpointGroupRequest')
|
40
|
+
CreateEphemerisRequest = Shapes::StructureShape.new(name: 'CreateEphemerisRequest')
|
38
41
|
CreateMissionProfileRequest = Shapes::StructureShape.new(name: 'CreateMissionProfileRequest')
|
39
42
|
Criticality = Shapes::StringShape.new(name: 'Criticality')
|
43
|
+
CustomerEphemerisPriority = Shapes::IntegerShape.new(name: 'CustomerEphemerisPriority')
|
40
44
|
DataflowDetail = Shapes::StructureShape.new(name: 'DataflowDetail')
|
41
45
|
DataflowEdge = Shapes::ListShape.new(name: 'DataflowEdge')
|
42
46
|
DataflowEdgeList = Shapes::ListShape.new(name: 'DataflowEdgeList')
|
@@ -51,11 +55,14 @@ module Aws::GroundStation
|
|
51
55
|
DecodeConfig = Shapes::StructureShape.new(name: 'DecodeConfig')
|
52
56
|
DeleteConfigRequest = Shapes::StructureShape.new(name: 'DeleteConfigRequest')
|
53
57
|
DeleteDataflowEndpointGroupRequest = Shapes::StructureShape.new(name: 'DeleteDataflowEndpointGroupRequest')
|
58
|
+
DeleteEphemerisRequest = Shapes::StructureShape.new(name: 'DeleteEphemerisRequest')
|
54
59
|
DeleteMissionProfileRequest = Shapes::StructureShape.new(name: 'DeleteMissionProfileRequest')
|
55
60
|
DemodulationConfig = Shapes::StructureShape.new(name: 'DemodulationConfig')
|
56
61
|
DependencyException = Shapes::StructureShape.new(name: 'DependencyException')
|
57
62
|
DescribeContactRequest = Shapes::StructureShape.new(name: 'DescribeContactRequest')
|
58
63
|
DescribeContactResponse = Shapes::StructureShape.new(name: 'DescribeContactResponse')
|
64
|
+
DescribeEphemerisRequest = Shapes::StructureShape.new(name: 'DescribeEphemerisRequest')
|
65
|
+
DescribeEphemerisResponse = Shapes::StructureShape.new(name: 'DescribeEphemerisResponse')
|
59
66
|
Destination = Shapes::StructureShape.new(name: 'Destination')
|
60
67
|
Double = Shapes::FloatShape.new(name: 'Double')
|
61
68
|
DurationInSeconds = Shapes::IntegerShape.new(name: 'DurationInSeconds')
|
@@ -65,6 +72,18 @@ module Aws::GroundStation
|
|
65
72
|
EndpointDetails = Shapes::StructureShape.new(name: 'EndpointDetails')
|
66
73
|
EndpointDetailsList = Shapes::ListShape.new(name: 'EndpointDetailsList')
|
67
74
|
EndpointStatus = Shapes::StringShape.new(name: 'EndpointStatus')
|
75
|
+
EphemeridesList = Shapes::ListShape.new(name: 'EphemeridesList')
|
76
|
+
EphemerisData = Shapes::UnionShape.new(name: 'EphemerisData')
|
77
|
+
EphemerisDescription = Shapes::StructureShape.new(name: 'EphemerisDescription')
|
78
|
+
EphemerisIdResponse = Shapes::StructureShape.new(name: 'EphemerisIdResponse')
|
79
|
+
EphemerisInvalidReason = Shapes::StringShape.new(name: 'EphemerisInvalidReason')
|
80
|
+
EphemerisItem = Shapes::StructureShape.new(name: 'EphemerisItem')
|
81
|
+
EphemerisMetaData = Shapes::StructureShape.new(name: 'EphemerisMetaData')
|
82
|
+
EphemerisPriority = Shapes::IntegerShape.new(name: 'EphemerisPriority')
|
83
|
+
EphemerisSource = Shapes::StringShape.new(name: 'EphemerisSource')
|
84
|
+
EphemerisStatus = Shapes::StringShape.new(name: 'EphemerisStatus')
|
85
|
+
EphemerisStatusList = Shapes::ListShape.new(name: 'EphemerisStatusList')
|
86
|
+
EphemerisTypeDescription = Shapes::UnionShape.new(name: 'EphemerisTypeDescription')
|
68
87
|
Frequency = Shapes::StructureShape.new(name: 'Frequency')
|
69
88
|
FrequencyBandwidth = Shapes::StructureShape.new(name: 'FrequencyBandwidth')
|
70
89
|
FrequencyUnits = Shapes::StringShape.new(name: 'FrequencyUnits')
|
@@ -81,15 +100,19 @@ module Aws::GroundStation
|
|
81
100
|
GroundStationData = Shapes::StructureShape.new(name: 'GroundStationData')
|
82
101
|
GroundStationIdList = Shapes::ListShape.new(name: 'GroundStationIdList')
|
83
102
|
GroundStationList = Shapes::ListShape.new(name: 'GroundStationList')
|
103
|
+
GroundStationName = Shapes::StringShape.new(name: 'GroundStationName')
|
84
104
|
Integer = Shapes::IntegerShape.new(name: 'Integer')
|
85
105
|
InvalidParameterException = Shapes::StructureShape.new(name: 'InvalidParameterException')
|
86
106
|
JsonString = Shapes::StringShape.new(name: 'JsonString')
|
107
|
+
KeyArn = Shapes::StringShape.new(name: 'KeyArn')
|
87
108
|
ListConfigsRequest = Shapes::StructureShape.new(name: 'ListConfigsRequest')
|
88
109
|
ListConfigsResponse = Shapes::StructureShape.new(name: 'ListConfigsResponse')
|
89
110
|
ListContactsRequest = Shapes::StructureShape.new(name: 'ListContactsRequest')
|
90
111
|
ListContactsResponse = Shapes::StructureShape.new(name: 'ListContactsResponse')
|
91
112
|
ListDataflowEndpointGroupsRequest = Shapes::StructureShape.new(name: 'ListDataflowEndpointGroupsRequest')
|
92
113
|
ListDataflowEndpointGroupsResponse = Shapes::StructureShape.new(name: 'ListDataflowEndpointGroupsResponse')
|
114
|
+
ListEphemeridesRequest = Shapes::StructureShape.new(name: 'ListEphemeridesRequest')
|
115
|
+
ListEphemeridesResponse = Shapes::StructureShape.new(name: 'ListEphemeridesResponse')
|
93
116
|
ListGroundStationsRequest = Shapes::StructureShape.new(name: 'ListGroundStationsRequest')
|
94
117
|
ListGroundStationsResponse = Shapes::StructureShape.new(name: 'ListGroundStationsResponse')
|
95
118
|
ListMissionProfilesRequest = Shapes::StructureShape.new(name: 'ListMissionProfilesRequest')
|
@@ -102,14 +125,23 @@ module Aws::GroundStation
|
|
102
125
|
MissionProfileIdResponse = Shapes::StructureShape.new(name: 'MissionProfileIdResponse')
|
103
126
|
MissionProfileList = Shapes::ListShape.new(name: 'MissionProfileList')
|
104
127
|
MissionProfileListItem = Shapes::StructureShape.new(name: 'MissionProfileListItem')
|
128
|
+
Month = Shapes::IntegerShape.new(name: 'Month')
|
129
|
+
OEMEphemeris = Shapes::StructureShape.new(name: 'OEMEphemeris')
|
130
|
+
PaginationMaxResults = Shapes::IntegerShape.new(name: 'PaginationMaxResults')
|
131
|
+
PaginationToken = Shapes::StringShape.new(name: 'PaginationToken')
|
105
132
|
Polarization = Shapes::StringShape.new(name: 'Polarization')
|
133
|
+
PositiveDurationInSeconds = Shapes::IntegerShape.new(name: 'PositiveDurationInSeconds')
|
106
134
|
ReserveContactRequest = Shapes::StructureShape.new(name: 'ReserveContactRequest')
|
107
135
|
ResourceLimitExceededException = Shapes::StructureShape.new(name: 'ResourceLimitExceededException')
|
108
136
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
109
137
|
RoleArn = Shapes::StringShape.new(name: 'RoleArn')
|
138
|
+
S3BucketName = Shapes::StringShape.new(name: 'S3BucketName')
|
110
139
|
S3KeyPrefix = Shapes::StringShape.new(name: 'S3KeyPrefix')
|
140
|
+
S3Object = Shapes::StructureShape.new(name: 'S3Object')
|
141
|
+
S3ObjectKey = Shapes::StringShape.new(name: 'S3ObjectKey')
|
111
142
|
S3RecordingConfig = Shapes::StructureShape.new(name: 'S3RecordingConfig')
|
112
143
|
S3RecordingDetails = Shapes::StructureShape.new(name: 'S3RecordingDetails')
|
144
|
+
S3VersionId = Shapes::StringShape.new(name: 'S3VersionId')
|
113
145
|
SafeName = Shapes::StringShape.new(name: 'SafeName')
|
114
146
|
SatelliteList = Shapes::ListShape.new(name: 'SatelliteList')
|
115
147
|
SatelliteListItem = Shapes::StructureShape.new(name: 'SatelliteListItem')
|
@@ -121,19 +153,28 @@ module Aws::GroundStation
|
|
121
153
|
StatusList = Shapes::ListShape.new(name: 'StatusList')
|
122
154
|
String = Shapes::StringShape.new(name: 'String')
|
123
155
|
SubnetList = Shapes::ListShape.new(name: 'SubnetList')
|
156
|
+
TLEData = Shapes::StructureShape.new(name: 'TLEData')
|
157
|
+
TLEDataList = Shapes::ListShape.new(name: 'TLEDataList')
|
158
|
+
TLEEphemeris = Shapes::StructureShape.new(name: 'TLEEphemeris')
|
124
159
|
TagKeys = Shapes::ListShape.new(name: 'TagKeys')
|
125
160
|
TagResourceRequest = Shapes::StructureShape.new(name: 'TagResourceRequest')
|
126
161
|
TagResourceResponse = Shapes::StructureShape.new(name: 'TagResourceResponse')
|
127
162
|
TagsMap = Shapes::MapShape.new(name: 'TagsMap')
|
163
|
+
TimeRange = Shapes::StructureShape.new(name: 'TimeRange')
|
128
164
|
Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
|
165
|
+
TleLineOne = Shapes::StringShape.new(name: 'TleLineOne')
|
166
|
+
TleLineTwo = Shapes::StringShape.new(name: 'TleLineTwo')
|
129
167
|
TrackingConfig = Shapes::StructureShape.new(name: 'TrackingConfig')
|
168
|
+
UnboundedString = Shapes::StringShape.new(name: 'UnboundedString')
|
130
169
|
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
131
170
|
UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
|
132
171
|
UpdateConfigRequest = Shapes::StructureShape.new(name: 'UpdateConfigRequest')
|
172
|
+
UpdateEphemerisRequest = Shapes::StructureShape.new(name: 'UpdateEphemerisRequest')
|
133
173
|
UpdateMissionProfileRequest = Shapes::StructureShape.new(name: 'UpdateMissionProfileRequest')
|
134
174
|
UplinkEchoConfig = Shapes::StructureShape.new(name: 'UplinkEchoConfig')
|
135
175
|
UplinkSpectrumConfig = Shapes::StructureShape.new(name: 'UplinkSpectrumConfig')
|
136
176
|
Uuid = Shapes::StringShape.new(name: 'Uuid')
|
177
|
+
Year = Shapes::IntegerShape.new(name: 'Year')
|
137
178
|
noradSatelliteID = Shapes::IntegerShape.new(name: 'noradSatelliteID')
|
138
179
|
satelliteArn = Shapes::StringShape.new(name: 'satelliteArn')
|
139
180
|
|
@@ -153,7 +194,7 @@ module Aws::GroundStation
|
|
153
194
|
AntennaUplinkConfig.add_member(:transmit_disabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "transmitDisabled"))
|
154
195
|
AntennaUplinkConfig.struct_class = Types::AntennaUplinkConfig
|
155
196
|
|
156
|
-
CancelContactRequest.add_member(:contact_id, Shapes::ShapeRef.new(shape:
|
197
|
+
CancelContactRequest.add_member(:contact_id, Shapes::ShapeRef.new(shape: Uuid, required: true, location: "uri", location_name: "contactId"))
|
157
198
|
CancelContactRequest.struct_class = Types::CancelContactRequest
|
158
199
|
|
159
200
|
ConfigDetails.add_member(:antenna_demod_decode_details, Shapes::ShapeRef.new(shape: AntennaDemodDecodeDetails, location_name: "antennaDemodDecodeDetails"))
|
@@ -197,7 +238,7 @@ module Aws::GroundStation
|
|
197
238
|
ConfigTypeData.add_member_subclass(:unknown, Types::ConfigTypeData::Unknown)
|
198
239
|
ConfigTypeData.struct_class = Types::ConfigTypeData
|
199
240
|
|
200
|
-
ContactData.add_member(:contact_id, Shapes::ShapeRef.new(shape:
|
241
|
+
ContactData.add_member(:contact_id, Shapes::ShapeRef.new(shape: Uuid, location_name: "contactId"))
|
201
242
|
ContactData.add_member(:contact_status, Shapes::ShapeRef.new(shape: ContactStatus, location_name: "contactStatus"))
|
202
243
|
ContactData.add_member(:end_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "endTime"))
|
203
244
|
ContactData.add_member(:error_message, Shapes::ShapeRef.new(shape: String, location_name: "errorMessage"))
|
@@ -212,7 +253,7 @@ module Aws::GroundStation
|
|
212
253
|
ContactData.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
213
254
|
ContactData.struct_class = Types::ContactData
|
214
255
|
|
215
|
-
ContactIdResponse.add_member(:contact_id, Shapes::ShapeRef.new(shape:
|
256
|
+
ContactIdResponse.add_member(:contact_id, Shapes::ShapeRef.new(shape: Uuid, location_name: "contactId"))
|
216
257
|
ContactIdResponse.struct_class = Types::ContactIdResponse
|
217
258
|
|
218
259
|
ContactList.member = Shapes::ShapeRef.new(shape: ContactData)
|
@@ -226,10 +267,20 @@ module Aws::GroundStation
|
|
226
267
|
CreateDataflowEndpointGroupRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
227
268
|
CreateDataflowEndpointGroupRequest.struct_class = Types::CreateDataflowEndpointGroupRequest
|
228
269
|
|
270
|
+
CreateEphemerisRequest.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "enabled"))
|
271
|
+
CreateEphemerisRequest.add_member(:ephemeris, Shapes::ShapeRef.new(shape: EphemerisData, location_name: "ephemeris"))
|
272
|
+
CreateEphemerisRequest.add_member(:expiration_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "expirationTime"))
|
273
|
+
CreateEphemerisRequest.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KeyArn, location_name: "kmsKeyArn"))
|
274
|
+
CreateEphemerisRequest.add_member(:name, Shapes::ShapeRef.new(shape: SafeName, required: true, location_name: "name"))
|
275
|
+
CreateEphemerisRequest.add_member(:priority, Shapes::ShapeRef.new(shape: CustomerEphemerisPriority, location_name: "priority"))
|
276
|
+
CreateEphemerisRequest.add_member(:satellite_id, Shapes::ShapeRef.new(shape: Uuid, required: true, location_name: "satelliteId"))
|
277
|
+
CreateEphemerisRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
278
|
+
CreateEphemerisRequest.struct_class = Types::CreateEphemerisRequest
|
279
|
+
|
229
280
|
CreateMissionProfileRequest.add_member(:contact_post_pass_duration_seconds, Shapes::ShapeRef.new(shape: DurationInSeconds, location_name: "contactPostPassDurationSeconds"))
|
230
281
|
CreateMissionProfileRequest.add_member(:contact_pre_pass_duration_seconds, Shapes::ShapeRef.new(shape: DurationInSeconds, location_name: "contactPrePassDurationSeconds"))
|
231
282
|
CreateMissionProfileRequest.add_member(:dataflow_edges, Shapes::ShapeRef.new(shape: DataflowEdgeList, required: true, location_name: "dataflowEdges"))
|
232
|
-
CreateMissionProfileRequest.add_member(:minimum_viable_contact_duration_seconds, Shapes::ShapeRef.new(shape:
|
283
|
+
CreateMissionProfileRequest.add_member(:minimum_viable_contact_duration_seconds, Shapes::ShapeRef.new(shape: PositiveDurationInSeconds, required: true, location_name: "minimumViableContactDurationSeconds"))
|
233
284
|
CreateMissionProfileRequest.add_member(:name, Shapes::ShapeRef.new(shape: SafeName, required: true, location_name: "name"))
|
234
285
|
CreateMissionProfileRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
235
286
|
CreateMissionProfileRequest.add_member(:tracking_config_arn, Shapes::ShapeRef.new(shape: ConfigArn, required: true, location_name: "trackingConfigArn"))
|
@@ -254,13 +305,13 @@ module Aws::GroundStation
|
|
254
305
|
DataflowEndpointConfig.add_member(:dataflow_endpoint_region, Shapes::ShapeRef.new(shape: String, location_name: "dataflowEndpointRegion"))
|
255
306
|
DataflowEndpointConfig.struct_class = Types::DataflowEndpointConfig
|
256
307
|
|
257
|
-
DataflowEndpointGroupIdResponse.add_member(:dataflow_endpoint_group_id, Shapes::ShapeRef.new(shape:
|
308
|
+
DataflowEndpointGroupIdResponse.add_member(:dataflow_endpoint_group_id, Shapes::ShapeRef.new(shape: Uuid, location_name: "dataflowEndpointGroupId"))
|
258
309
|
DataflowEndpointGroupIdResponse.struct_class = Types::DataflowEndpointGroupIdResponse
|
259
310
|
|
260
311
|
DataflowEndpointGroupList.member = Shapes::ShapeRef.new(shape: DataflowEndpointListItem)
|
261
312
|
|
262
313
|
DataflowEndpointListItem.add_member(:dataflow_endpoint_group_arn, Shapes::ShapeRef.new(shape: DataflowEndpointGroupArn, location_name: "dataflowEndpointGroupArn"))
|
263
|
-
DataflowEndpointListItem.add_member(:dataflow_endpoint_group_id, Shapes::ShapeRef.new(shape:
|
314
|
+
DataflowEndpointListItem.add_member(:dataflow_endpoint_group_id, Shapes::ShapeRef.new(shape: Uuid, location_name: "dataflowEndpointGroupId"))
|
264
315
|
DataflowEndpointListItem.struct_class = Types::DataflowEndpointListItem
|
265
316
|
|
266
317
|
DataflowList.member = Shapes::ShapeRef.new(shape: DataflowDetail)
|
@@ -268,14 +319,17 @@ module Aws::GroundStation
|
|
268
319
|
DecodeConfig.add_member(:unvalidated_json, Shapes::ShapeRef.new(shape: JsonString, required: true, location_name: "unvalidatedJSON"))
|
269
320
|
DecodeConfig.struct_class = Types::DecodeConfig
|
270
321
|
|
271
|
-
DeleteConfigRequest.add_member(:config_id, Shapes::ShapeRef.new(shape:
|
322
|
+
DeleteConfigRequest.add_member(:config_id, Shapes::ShapeRef.new(shape: Uuid, required: true, location: "uri", location_name: "configId"))
|
272
323
|
DeleteConfigRequest.add_member(:config_type, Shapes::ShapeRef.new(shape: ConfigCapabilityType, required: true, location: "uri", location_name: "configType"))
|
273
324
|
DeleteConfigRequest.struct_class = Types::DeleteConfigRequest
|
274
325
|
|
275
|
-
DeleteDataflowEndpointGroupRequest.add_member(:dataflow_endpoint_group_id, Shapes::ShapeRef.new(shape:
|
326
|
+
DeleteDataflowEndpointGroupRequest.add_member(:dataflow_endpoint_group_id, Shapes::ShapeRef.new(shape: Uuid, required: true, location: "uri", location_name: "dataflowEndpointGroupId"))
|
276
327
|
DeleteDataflowEndpointGroupRequest.struct_class = Types::DeleteDataflowEndpointGroupRequest
|
277
328
|
|
278
|
-
|
329
|
+
DeleteEphemerisRequest.add_member(:ephemeris_id, Shapes::ShapeRef.new(shape: Uuid, required: true, location: "uri", location_name: "ephemerisId"))
|
330
|
+
DeleteEphemerisRequest.struct_class = Types::DeleteEphemerisRequest
|
331
|
+
|
332
|
+
DeleteMissionProfileRequest.add_member(:mission_profile_id, Shapes::ShapeRef.new(shape: Uuid, required: true, location: "uri", location_name: "missionProfileId"))
|
279
333
|
DeleteMissionProfileRequest.struct_class = Types::DeleteMissionProfileRequest
|
280
334
|
|
281
335
|
DemodulationConfig.add_member(:unvalidated_json, Shapes::ShapeRef.new(shape: JsonString, required: true, location_name: "unvalidatedJSON"))
|
@@ -285,10 +339,10 @@ module Aws::GroundStation
|
|
285
339
|
DependencyException.add_member(:parameter_name, Shapes::ShapeRef.new(shape: String, location_name: "parameterName"))
|
286
340
|
DependencyException.struct_class = Types::DependencyException
|
287
341
|
|
288
|
-
DescribeContactRequest.add_member(:contact_id, Shapes::ShapeRef.new(shape:
|
342
|
+
DescribeContactRequest.add_member(:contact_id, Shapes::ShapeRef.new(shape: Uuid, required: true, location: "uri", location_name: "contactId"))
|
289
343
|
DescribeContactRequest.struct_class = Types::DescribeContactRequest
|
290
344
|
|
291
|
-
DescribeContactResponse.add_member(:contact_id, Shapes::ShapeRef.new(shape:
|
345
|
+
DescribeContactResponse.add_member(:contact_id, Shapes::ShapeRef.new(shape: Uuid, location_name: "contactId"))
|
292
346
|
DescribeContactResponse.add_member(:contact_status, Shapes::ShapeRef.new(shape: ContactStatus, location_name: "contactStatus"))
|
293
347
|
DescribeContactResponse.add_member(:dataflow_list, Shapes::ShapeRef.new(shape: DataflowList, location_name: "dataflowList"))
|
294
348
|
DescribeContactResponse.add_member(:end_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "endTime"))
|
@@ -304,8 +358,23 @@ module Aws::GroundStation
|
|
304
358
|
DescribeContactResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
305
359
|
DescribeContactResponse.struct_class = Types::DescribeContactResponse
|
306
360
|
|
361
|
+
DescribeEphemerisRequest.add_member(:ephemeris_id, Shapes::ShapeRef.new(shape: Uuid, required: true, location: "uri", location_name: "ephemerisId"))
|
362
|
+
DescribeEphemerisRequest.struct_class = Types::DescribeEphemerisRequest
|
363
|
+
|
364
|
+
DescribeEphemerisResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "creationTime"))
|
365
|
+
DescribeEphemerisResponse.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "enabled"))
|
366
|
+
DescribeEphemerisResponse.add_member(:ephemeris_id, Shapes::ShapeRef.new(shape: Uuid, location_name: "ephemerisId"))
|
367
|
+
DescribeEphemerisResponse.add_member(:invalid_reason, Shapes::ShapeRef.new(shape: EphemerisInvalidReason, location_name: "invalidReason"))
|
368
|
+
DescribeEphemerisResponse.add_member(:name, Shapes::ShapeRef.new(shape: SafeName, location_name: "name"))
|
369
|
+
DescribeEphemerisResponse.add_member(:priority, Shapes::ShapeRef.new(shape: EphemerisPriority, location_name: "priority"))
|
370
|
+
DescribeEphemerisResponse.add_member(:satellite_id, Shapes::ShapeRef.new(shape: Uuid, location_name: "satelliteId"))
|
371
|
+
DescribeEphemerisResponse.add_member(:status, Shapes::ShapeRef.new(shape: EphemerisStatus, location_name: "status"))
|
372
|
+
DescribeEphemerisResponse.add_member(:supplied_data, Shapes::ShapeRef.new(shape: EphemerisTypeDescription, location_name: "suppliedData"))
|
373
|
+
DescribeEphemerisResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
374
|
+
DescribeEphemerisResponse.struct_class = Types::DescribeEphemerisResponse
|
375
|
+
|
307
376
|
Destination.add_member(:config_details, Shapes::ShapeRef.new(shape: ConfigDetails, location_name: "configDetails"))
|
308
|
-
Destination.add_member(:config_id, Shapes::ShapeRef.new(shape:
|
377
|
+
Destination.add_member(:config_id, Shapes::ShapeRef.new(shape: Uuid, location_name: "configId"))
|
309
378
|
Destination.add_member(:config_type, Shapes::ShapeRef.new(shape: ConfigCapabilityType, location_name: "configType"))
|
310
379
|
Destination.add_member(:dataflow_destination_region, Shapes::ShapeRef.new(shape: String, location_name: "dataflowDestinationRegion"))
|
311
380
|
Destination.struct_class = Types::Destination
|
@@ -324,6 +393,48 @@ module Aws::GroundStation
|
|
324
393
|
|
325
394
|
EndpointDetailsList.member = Shapes::ShapeRef.new(shape: EndpointDetails)
|
326
395
|
|
396
|
+
EphemeridesList.member = Shapes::ShapeRef.new(shape: EphemerisItem)
|
397
|
+
|
398
|
+
EphemerisData.add_member(:oem, Shapes::ShapeRef.new(shape: OEMEphemeris, location_name: "oem"))
|
399
|
+
EphemerisData.add_member(:tle, Shapes::ShapeRef.new(shape: TLEEphemeris, location_name: "tle"))
|
400
|
+
EphemerisData.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
401
|
+
EphemerisData.add_member_subclass(:oem, Types::EphemerisData::Oem)
|
402
|
+
EphemerisData.add_member_subclass(:tle, Types::EphemerisData::Tle)
|
403
|
+
EphemerisData.add_member_subclass(:unknown, Types::EphemerisData::Unknown)
|
404
|
+
EphemerisData.struct_class = Types::EphemerisData
|
405
|
+
|
406
|
+
EphemerisDescription.add_member(:ephemeris_data, Shapes::ShapeRef.new(shape: UnboundedString, location_name: "ephemerisData"))
|
407
|
+
EphemerisDescription.add_member(:source_s3_object, Shapes::ShapeRef.new(shape: S3Object, location_name: "sourceS3Object"))
|
408
|
+
EphemerisDescription.struct_class = Types::EphemerisDescription
|
409
|
+
|
410
|
+
EphemerisIdResponse.add_member(:ephemeris_id, Shapes::ShapeRef.new(shape: Uuid, location_name: "ephemerisId"))
|
411
|
+
EphemerisIdResponse.struct_class = Types::EphemerisIdResponse
|
412
|
+
|
413
|
+
EphemerisItem.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "creationTime"))
|
414
|
+
EphemerisItem.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "enabled"))
|
415
|
+
EphemerisItem.add_member(:ephemeris_id, Shapes::ShapeRef.new(shape: Uuid, location_name: "ephemerisId"))
|
416
|
+
EphemerisItem.add_member(:name, Shapes::ShapeRef.new(shape: SafeName, location_name: "name"))
|
417
|
+
EphemerisItem.add_member(:priority, Shapes::ShapeRef.new(shape: EphemerisPriority, location_name: "priority"))
|
418
|
+
EphemerisItem.add_member(:source_s3_object, Shapes::ShapeRef.new(shape: S3Object, location_name: "sourceS3Object"))
|
419
|
+
EphemerisItem.add_member(:status, Shapes::ShapeRef.new(shape: EphemerisStatus, location_name: "status"))
|
420
|
+
EphemerisItem.struct_class = Types::EphemerisItem
|
421
|
+
|
422
|
+
EphemerisMetaData.add_member(:ephemeris_id, Shapes::ShapeRef.new(shape: Uuid, location_name: "ephemerisId"))
|
423
|
+
EphemerisMetaData.add_member(:epoch, Shapes::ShapeRef.new(shape: Timestamp, location_name: "epoch"))
|
424
|
+
EphemerisMetaData.add_member(:name, Shapes::ShapeRef.new(shape: SafeName, location_name: "name"))
|
425
|
+
EphemerisMetaData.add_member(:source, Shapes::ShapeRef.new(shape: EphemerisSource, required: true, location_name: "source"))
|
426
|
+
EphemerisMetaData.struct_class = Types::EphemerisMetaData
|
427
|
+
|
428
|
+
EphemerisStatusList.member = Shapes::ShapeRef.new(shape: EphemerisStatus)
|
429
|
+
|
430
|
+
EphemerisTypeDescription.add_member(:oem, Shapes::ShapeRef.new(shape: EphemerisDescription, location_name: "oem"))
|
431
|
+
EphemerisTypeDescription.add_member(:tle, Shapes::ShapeRef.new(shape: EphemerisDescription, location_name: "tle"))
|
432
|
+
EphemerisTypeDescription.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
433
|
+
EphemerisTypeDescription.add_member_subclass(:oem, Types::EphemerisTypeDescription::Oem)
|
434
|
+
EphemerisTypeDescription.add_member_subclass(:tle, Types::EphemerisTypeDescription::Tle)
|
435
|
+
EphemerisTypeDescription.add_member_subclass(:unknown, Types::EphemerisTypeDescription::Unknown)
|
436
|
+
EphemerisTypeDescription.struct_class = Types::EphemerisTypeDescription
|
437
|
+
|
327
438
|
Frequency.add_member(:units, Shapes::ShapeRef.new(shape: FrequencyUnits, required: true, location_name: "units"))
|
328
439
|
Frequency.add_member(:value, Shapes::ShapeRef.new(shape: Double, required: true, location_name: "value"))
|
329
440
|
Frequency.struct_class = Types::Frequency
|
@@ -332,7 +443,7 @@ module Aws::GroundStation
|
|
332
443
|
FrequencyBandwidth.add_member(:value, Shapes::ShapeRef.new(shape: Double, required: true, location_name: "value"))
|
333
444
|
FrequencyBandwidth.struct_class = Types::FrequencyBandwidth
|
334
445
|
|
335
|
-
GetConfigRequest.add_member(:config_id, Shapes::ShapeRef.new(shape:
|
446
|
+
GetConfigRequest.add_member(:config_id, Shapes::ShapeRef.new(shape: Uuid, required: true, location: "uri", location_name: "configId"))
|
336
447
|
GetConfigRequest.add_member(:config_type, Shapes::ShapeRef.new(shape: ConfigCapabilityType, required: true, location: "uri", location_name: "configType"))
|
337
448
|
GetConfigRequest.struct_class = Types::GetConfigRequest
|
338
449
|
|
@@ -344,17 +455,17 @@ module Aws::GroundStation
|
|
344
455
|
GetConfigResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
345
456
|
GetConfigResponse.struct_class = Types::GetConfigResponse
|
346
457
|
|
347
|
-
GetDataflowEndpointGroupRequest.add_member(:dataflow_endpoint_group_id, Shapes::ShapeRef.new(shape:
|
458
|
+
GetDataflowEndpointGroupRequest.add_member(:dataflow_endpoint_group_id, Shapes::ShapeRef.new(shape: Uuid, required: true, location: "uri", location_name: "dataflowEndpointGroupId"))
|
348
459
|
GetDataflowEndpointGroupRequest.struct_class = Types::GetDataflowEndpointGroupRequest
|
349
460
|
|
350
461
|
GetDataflowEndpointGroupResponse.add_member(:dataflow_endpoint_group_arn, Shapes::ShapeRef.new(shape: DataflowEndpointGroupArn, location_name: "dataflowEndpointGroupArn"))
|
351
|
-
GetDataflowEndpointGroupResponse.add_member(:dataflow_endpoint_group_id, Shapes::ShapeRef.new(shape:
|
462
|
+
GetDataflowEndpointGroupResponse.add_member(:dataflow_endpoint_group_id, Shapes::ShapeRef.new(shape: Uuid, location_name: "dataflowEndpointGroupId"))
|
352
463
|
GetDataflowEndpointGroupResponse.add_member(:endpoints_details, Shapes::ShapeRef.new(shape: EndpointDetailsList, location_name: "endpointsDetails"))
|
353
464
|
GetDataflowEndpointGroupResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
354
465
|
GetDataflowEndpointGroupResponse.struct_class = Types::GetDataflowEndpointGroupResponse
|
355
466
|
|
356
|
-
GetMinuteUsageRequest.add_member(:month, Shapes::ShapeRef.new(shape:
|
357
|
-
GetMinuteUsageRequest.add_member(:year, Shapes::ShapeRef.new(shape:
|
467
|
+
GetMinuteUsageRequest.add_member(:month, Shapes::ShapeRef.new(shape: Month, required: true, location_name: "month"))
|
468
|
+
GetMinuteUsageRequest.add_member(:year, Shapes::ShapeRef.new(shape: Year, required: true, location_name: "year"))
|
358
469
|
GetMinuteUsageRequest.struct_class = Types::GetMinuteUsageRequest
|
359
470
|
|
360
471
|
GetMinuteUsageResponse.add_member(:estimated_minutes_remaining, Shapes::ShapeRef.new(shape: Integer, location_name: "estimatedMinutesRemaining"))
|
@@ -364,36 +475,37 @@ module Aws::GroundStation
|
|
364
475
|
GetMinuteUsageResponse.add_member(:upcoming_minutes_scheduled, Shapes::ShapeRef.new(shape: Integer, location_name: "upcomingMinutesScheduled"))
|
365
476
|
GetMinuteUsageResponse.struct_class = Types::GetMinuteUsageResponse
|
366
477
|
|
367
|
-
GetMissionProfileRequest.add_member(:mission_profile_id, Shapes::ShapeRef.new(shape:
|
478
|
+
GetMissionProfileRequest.add_member(:mission_profile_id, Shapes::ShapeRef.new(shape: Uuid, required: true, location: "uri", location_name: "missionProfileId"))
|
368
479
|
GetMissionProfileRequest.struct_class = Types::GetMissionProfileRequest
|
369
480
|
|
370
481
|
GetMissionProfileResponse.add_member(:contact_post_pass_duration_seconds, Shapes::ShapeRef.new(shape: DurationInSeconds, location_name: "contactPostPassDurationSeconds"))
|
371
482
|
GetMissionProfileResponse.add_member(:contact_pre_pass_duration_seconds, Shapes::ShapeRef.new(shape: DurationInSeconds, location_name: "contactPrePassDurationSeconds"))
|
372
483
|
GetMissionProfileResponse.add_member(:dataflow_edges, Shapes::ShapeRef.new(shape: DataflowEdgeList, location_name: "dataflowEdges"))
|
373
|
-
GetMissionProfileResponse.add_member(:minimum_viable_contact_duration_seconds, Shapes::ShapeRef.new(shape:
|
484
|
+
GetMissionProfileResponse.add_member(:minimum_viable_contact_duration_seconds, Shapes::ShapeRef.new(shape: PositiveDurationInSeconds, location_name: "minimumViableContactDurationSeconds"))
|
374
485
|
GetMissionProfileResponse.add_member(:mission_profile_arn, Shapes::ShapeRef.new(shape: MissionProfileArn, location_name: "missionProfileArn"))
|
375
|
-
GetMissionProfileResponse.add_member(:mission_profile_id, Shapes::ShapeRef.new(shape:
|
376
|
-
GetMissionProfileResponse.add_member(:name, Shapes::ShapeRef.new(shape:
|
377
|
-
GetMissionProfileResponse.add_member(:region, Shapes::ShapeRef.new(shape:
|
486
|
+
GetMissionProfileResponse.add_member(:mission_profile_id, Shapes::ShapeRef.new(shape: Uuid, location_name: "missionProfileId"))
|
487
|
+
GetMissionProfileResponse.add_member(:name, Shapes::ShapeRef.new(shape: SafeName, location_name: "name"))
|
488
|
+
GetMissionProfileResponse.add_member(:region, Shapes::ShapeRef.new(shape: AWSRegion, location_name: "region"))
|
378
489
|
GetMissionProfileResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
379
490
|
GetMissionProfileResponse.add_member(:tracking_config_arn, Shapes::ShapeRef.new(shape: ConfigArn, location_name: "trackingConfigArn"))
|
380
491
|
GetMissionProfileResponse.struct_class = Types::GetMissionProfileResponse
|
381
492
|
|
382
|
-
GetSatelliteRequest.add_member(:satellite_id, Shapes::ShapeRef.new(shape:
|
493
|
+
GetSatelliteRequest.add_member(:satellite_id, Shapes::ShapeRef.new(shape: Uuid, required: true, location: "uri", location_name: "satelliteId"))
|
383
494
|
GetSatelliteRequest.struct_class = Types::GetSatelliteRequest
|
384
495
|
|
496
|
+
GetSatelliteResponse.add_member(:current_ephemeris, Shapes::ShapeRef.new(shape: EphemerisMetaData, location_name: "currentEphemeris"))
|
385
497
|
GetSatelliteResponse.add_member(:ground_stations, Shapes::ShapeRef.new(shape: GroundStationIdList, location_name: "groundStations"))
|
386
498
|
GetSatelliteResponse.add_member(:norad_satellite_id, Shapes::ShapeRef.new(shape: noradSatelliteID, location_name: "noradSatelliteID"))
|
387
499
|
GetSatelliteResponse.add_member(:satellite_arn, Shapes::ShapeRef.new(shape: satelliteArn, location_name: "satelliteArn"))
|
388
500
|
GetSatelliteResponse.add_member(:satellite_id, Shapes::ShapeRef.new(shape: Uuid, location_name: "satelliteId"))
|
389
501
|
GetSatelliteResponse.struct_class = Types::GetSatelliteResponse
|
390
502
|
|
391
|
-
GroundStationData.add_member(:ground_station_id, Shapes::ShapeRef.new(shape:
|
392
|
-
GroundStationData.add_member(:ground_station_name, Shapes::ShapeRef.new(shape:
|
393
|
-
GroundStationData.add_member(:region, Shapes::ShapeRef.new(shape:
|
503
|
+
GroundStationData.add_member(:ground_station_id, Shapes::ShapeRef.new(shape: GroundStationName, location_name: "groundStationId"))
|
504
|
+
GroundStationData.add_member(:ground_station_name, Shapes::ShapeRef.new(shape: GroundStationName, location_name: "groundStationName"))
|
505
|
+
GroundStationData.add_member(:region, Shapes::ShapeRef.new(shape: AWSRegion, location_name: "region"))
|
394
506
|
GroundStationData.struct_class = Types::GroundStationData
|
395
507
|
|
396
|
-
GroundStationIdList.member = Shapes::ShapeRef.new(shape:
|
508
|
+
GroundStationIdList.member = Shapes::ShapeRef.new(shape: GroundStationName)
|
397
509
|
|
398
510
|
GroundStationList.member = Shapes::ShapeRef.new(shape: GroundStationData)
|
399
511
|
|
@@ -401,80 +513,96 @@ module Aws::GroundStation
|
|
401
513
|
InvalidParameterException.add_member(:parameter_name, Shapes::ShapeRef.new(shape: String, location_name: "parameterName"))
|
402
514
|
InvalidParameterException.struct_class = Types::InvalidParameterException
|
403
515
|
|
404
|
-
ListConfigsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape:
|
405
|
-
ListConfigsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
516
|
+
ListConfigsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PaginationMaxResults, location: "querystring", location_name: "maxResults"))
|
517
|
+
ListConfigsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location: "querystring", location_name: "nextToken"))
|
406
518
|
ListConfigsRequest.struct_class = Types::ListConfigsRequest
|
407
519
|
|
408
520
|
ListConfigsResponse.add_member(:config_list, Shapes::ShapeRef.new(shape: ConfigList, location_name: "configList"))
|
409
|
-
ListConfigsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
521
|
+
ListConfigsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
410
522
|
ListConfigsResponse.struct_class = Types::ListConfigsResponse
|
411
523
|
|
412
524
|
ListContactsRequest.add_member(:end_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "endTime"))
|
413
|
-
ListContactsRequest.add_member(:ground_station, Shapes::ShapeRef.new(shape:
|
414
|
-
ListContactsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape:
|
525
|
+
ListContactsRequest.add_member(:ground_station, Shapes::ShapeRef.new(shape: GroundStationName, location_name: "groundStation"))
|
526
|
+
ListContactsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PaginationMaxResults, location_name: "maxResults"))
|
415
527
|
ListContactsRequest.add_member(:mission_profile_arn, Shapes::ShapeRef.new(shape: MissionProfileArn, location_name: "missionProfileArn"))
|
416
|
-
ListContactsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
528
|
+
ListContactsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
417
529
|
ListContactsRequest.add_member(:satellite_arn, Shapes::ShapeRef.new(shape: satelliteArn, location_name: "satelliteArn"))
|
418
530
|
ListContactsRequest.add_member(:start_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "startTime"))
|
419
531
|
ListContactsRequest.add_member(:status_list, Shapes::ShapeRef.new(shape: StatusList, required: true, location_name: "statusList"))
|
420
532
|
ListContactsRequest.struct_class = Types::ListContactsRequest
|
421
533
|
|
422
534
|
ListContactsResponse.add_member(:contact_list, Shapes::ShapeRef.new(shape: ContactList, location_name: "contactList"))
|
423
|
-
ListContactsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
535
|
+
ListContactsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
424
536
|
ListContactsResponse.struct_class = Types::ListContactsResponse
|
425
537
|
|
426
|
-
ListDataflowEndpointGroupsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape:
|
427
|
-
ListDataflowEndpointGroupsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
538
|
+
ListDataflowEndpointGroupsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PaginationMaxResults, location: "querystring", location_name: "maxResults"))
|
539
|
+
ListDataflowEndpointGroupsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location: "querystring", location_name: "nextToken"))
|
428
540
|
ListDataflowEndpointGroupsRequest.struct_class = Types::ListDataflowEndpointGroupsRequest
|
429
541
|
|
430
542
|
ListDataflowEndpointGroupsResponse.add_member(:dataflow_endpoint_group_list, Shapes::ShapeRef.new(shape: DataflowEndpointGroupList, location_name: "dataflowEndpointGroupList"))
|
431
|
-
ListDataflowEndpointGroupsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
543
|
+
ListDataflowEndpointGroupsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
432
544
|
ListDataflowEndpointGroupsResponse.struct_class = Types::ListDataflowEndpointGroupsResponse
|
433
545
|
|
434
|
-
|
435
|
-
|
436
|
-
|
546
|
+
ListEphemeridesRequest.add_member(:end_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "endTime"))
|
547
|
+
ListEphemeridesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PaginationMaxResults, location: "querystring", location_name: "maxResults"))
|
548
|
+
ListEphemeridesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location: "querystring", location_name: "nextToken"))
|
549
|
+
ListEphemeridesRequest.add_member(:satellite_id, Shapes::ShapeRef.new(shape: Uuid, required: true, location_name: "satelliteId"))
|
550
|
+
ListEphemeridesRequest.add_member(:start_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "startTime"))
|
551
|
+
ListEphemeridesRequest.add_member(:status_list, Shapes::ShapeRef.new(shape: EphemerisStatusList, location_name: "statusList"))
|
552
|
+
ListEphemeridesRequest.struct_class = Types::ListEphemeridesRequest
|
553
|
+
|
554
|
+
ListEphemeridesResponse.add_member(:ephemerides, Shapes::ShapeRef.new(shape: EphemeridesList, location_name: "ephemerides"))
|
555
|
+
ListEphemeridesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
556
|
+
ListEphemeridesResponse.struct_class = Types::ListEphemeridesResponse
|
557
|
+
|
558
|
+
ListGroundStationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PaginationMaxResults, location: "querystring", location_name: "maxResults"))
|
559
|
+
ListGroundStationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location: "querystring", location_name: "nextToken"))
|
560
|
+
ListGroundStationsRequest.add_member(:satellite_id, Shapes::ShapeRef.new(shape: Uuid, location: "querystring", location_name: "satelliteId"))
|
437
561
|
ListGroundStationsRequest.struct_class = Types::ListGroundStationsRequest
|
438
562
|
|
439
563
|
ListGroundStationsResponse.add_member(:ground_station_list, Shapes::ShapeRef.new(shape: GroundStationList, location_name: "groundStationList"))
|
440
|
-
ListGroundStationsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
564
|
+
ListGroundStationsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
441
565
|
ListGroundStationsResponse.struct_class = Types::ListGroundStationsResponse
|
442
566
|
|
443
|
-
ListMissionProfilesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape:
|
444
|
-
ListMissionProfilesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
567
|
+
ListMissionProfilesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PaginationMaxResults, location: "querystring", location_name: "maxResults"))
|
568
|
+
ListMissionProfilesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location: "querystring", location_name: "nextToken"))
|
445
569
|
ListMissionProfilesRequest.struct_class = Types::ListMissionProfilesRequest
|
446
570
|
|
447
571
|
ListMissionProfilesResponse.add_member(:mission_profile_list, Shapes::ShapeRef.new(shape: MissionProfileList, location_name: "missionProfileList"))
|
448
|
-
ListMissionProfilesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
572
|
+
ListMissionProfilesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
449
573
|
ListMissionProfilesResponse.struct_class = Types::ListMissionProfilesResponse
|
450
574
|
|
451
|
-
ListSatellitesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape:
|
452
|
-
ListSatellitesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
575
|
+
ListSatellitesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PaginationMaxResults, location: "querystring", location_name: "maxResults"))
|
576
|
+
ListSatellitesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location: "querystring", location_name: "nextToken"))
|
453
577
|
ListSatellitesRequest.struct_class = Types::ListSatellitesRequest
|
454
578
|
|
455
|
-
ListSatellitesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
579
|
+
ListSatellitesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
456
580
|
ListSatellitesResponse.add_member(:satellites, Shapes::ShapeRef.new(shape: SatelliteList, location_name: "satellites"))
|
457
581
|
ListSatellitesResponse.struct_class = Types::ListSatellitesResponse
|
458
582
|
|
459
|
-
ListTagsForResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape:
|
583
|
+
ListTagsForResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: AnyArn, required: true, location: "uri", location_name: "resourceArn"))
|
460
584
|
ListTagsForResourceRequest.struct_class = Types::ListTagsForResourceRequest
|
461
585
|
|
462
586
|
ListTagsForResourceResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
463
587
|
ListTagsForResourceResponse.struct_class = Types::ListTagsForResourceResponse
|
464
588
|
|
465
|
-
MissionProfileIdResponse.add_member(:mission_profile_id, Shapes::ShapeRef.new(shape:
|
589
|
+
MissionProfileIdResponse.add_member(:mission_profile_id, Shapes::ShapeRef.new(shape: Uuid, location_name: "missionProfileId"))
|
466
590
|
MissionProfileIdResponse.struct_class = Types::MissionProfileIdResponse
|
467
591
|
|
468
592
|
MissionProfileList.member = Shapes::ShapeRef.new(shape: MissionProfileListItem)
|
469
593
|
|
470
594
|
MissionProfileListItem.add_member(:mission_profile_arn, Shapes::ShapeRef.new(shape: MissionProfileArn, location_name: "missionProfileArn"))
|
471
|
-
MissionProfileListItem.add_member(:mission_profile_id, Shapes::ShapeRef.new(shape:
|
472
|
-
MissionProfileListItem.add_member(:name, Shapes::ShapeRef.new(shape:
|
473
|
-
MissionProfileListItem.add_member(:region, Shapes::ShapeRef.new(shape:
|
595
|
+
MissionProfileListItem.add_member(:mission_profile_id, Shapes::ShapeRef.new(shape: Uuid, location_name: "missionProfileId"))
|
596
|
+
MissionProfileListItem.add_member(:name, Shapes::ShapeRef.new(shape: SafeName, location_name: "name"))
|
597
|
+
MissionProfileListItem.add_member(:region, Shapes::ShapeRef.new(shape: AWSRegion, location_name: "region"))
|
474
598
|
MissionProfileListItem.struct_class = Types::MissionProfileListItem
|
475
599
|
|
600
|
+
OEMEphemeris.add_member(:oem_data, Shapes::ShapeRef.new(shape: UnboundedString, location_name: "oemData"))
|
601
|
+
OEMEphemeris.add_member(:s3_object, Shapes::ShapeRef.new(shape: S3Object, location_name: "s3Object"))
|
602
|
+
OEMEphemeris.struct_class = Types::OEMEphemeris
|
603
|
+
|
476
604
|
ReserveContactRequest.add_member(:end_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "endTime"))
|
477
|
-
ReserveContactRequest.add_member(:ground_station, Shapes::ShapeRef.new(shape:
|
605
|
+
ReserveContactRequest.add_member(:ground_station, Shapes::ShapeRef.new(shape: GroundStationName, required: true, location_name: "groundStation"))
|
478
606
|
ReserveContactRequest.add_member(:mission_profile_arn, Shapes::ShapeRef.new(shape: MissionProfileArn, required: true, location_name: "missionProfileArn"))
|
479
607
|
ReserveContactRequest.add_member(:satellite_arn, Shapes::ShapeRef.new(shape: satelliteArn, required: true, location_name: "satelliteArn"))
|
480
608
|
ReserveContactRequest.add_member(:start_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "startTime"))
|
@@ -488,6 +616,11 @@ module Aws::GroundStation
|
|
488
616
|
ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
489
617
|
ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
|
490
618
|
|
619
|
+
S3Object.add_member(:bucket, Shapes::ShapeRef.new(shape: S3BucketName, location_name: "bucket"))
|
620
|
+
S3Object.add_member(:key, Shapes::ShapeRef.new(shape: S3ObjectKey, location_name: "key"))
|
621
|
+
S3Object.add_member(:version, Shapes::ShapeRef.new(shape: S3VersionId, location_name: "version"))
|
622
|
+
S3Object.struct_class = Types::S3Object
|
623
|
+
|
491
624
|
S3RecordingConfig.add_member(:bucket_arn, Shapes::ShapeRef.new(shape: BucketArn, required: true, location_name: "bucketArn"))
|
492
625
|
S3RecordingConfig.add_member(:prefix, Shapes::ShapeRef.new(shape: S3KeyPrefix, location_name: "prefix"))
|
493
626
|
S3RecordingConfig.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "roleArn"))
|
@@ -499,6 +632,7 @@ module Aws::GroundStation
|
|
499
632
|
|
500
633
|
SatelliteList.member = Shapes::ShapeRef.new(shape: SatelliteListItem)
|
501
634
|
|
635
|
+
SatelliteListItem.add_member(:current_ephemeris, Shapes::ShapeRef.new(shape: EphemerisMetaData, location_name: "currentEphemeris"))
|
502
636
|
SatelliteListItem.add_member(:ground_stations, Shapes::ShapeRef.new(shape: GroundStationIdList, location_name: "groundStations"))
|
503
637
|
SatelliteListItem.add_member(:norad_satellite_id, Shapes::ShapeRef.new(shape: noradSatelliteID, location_name: "noradSatelliteID"))
|
504
638
|
SatelliteListItem.add_member(:satellite_arn, Shapes::ShapeRef.new(shape: satelliteArn, location_name: "satelliteArn"))
|
@@ -531,9 +665,20 @@ module Aws::GroundStation
|
|
531
665
|
|
532
666
|
SubnetList.member = Shapes::ShapeRef.new(shape: String)
|
533
667
|
|
534
|
-
|
668
|
+
TLEData.add_member(:tle_line_1, Shapes::ShapeRef.new(shape: TleLineOne, required: true, location_name: "tleLine1"))
|
669
|
+
TLEData.add_member(:tle_line_2, Shapes::ShapeRef.new(shape: TleLineTwo, required: true, location_name: "tleLine2"))
|
670
|
+
TLEData.add_member(:valid_time_range, Shapes::ShapeRef.new(shape: TimeRange, required: true, location_name: "validTimeRange"))
|
671
|
+
TLEData.struct_class = Types::TLEData
|
535
672
|
|
536
|
-
|
673
|
+
TLEDataList.member = Shapes::ShapeRef.new(shape: TLEData)
|
674
|
+
|
675
|
+
TLEEphemeris.add_member(:s3_object, Shapes::ShapeRef.new(shape: S3Object, location_name: "s3Object"))
|
676
|
+
TLEEphemeris.add_member(:tle_data, Shapes::ShapeRef.new(shape: TLEDataList, location_name: "tleData"))
|
677
|
+
TLEEphemeris.struct_class = Types::TLEEphemeris
|
678
|
+
|
679
|
+
TagKeys.member = Shapes::ShapeRef.new(shape: UnboundedString)
|
680
|
+
|
681
|
+
TagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: AnyArn, required: true, location: "uri", location_name: "resourceArn"))
|
537
682
|
TagResourceRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, required: true, location_name: "tags"))
|
538
683
|
TagResourceRequest.struct_class = Types::TagResourceRequest
|
539
684
|
|
@@ -542,26 +687,36 @@ module Aws::GroundStation
|
|
542
687
|
TagsMap.key = Shapes::ShapeRef.new(shape: String)
|
543
688
|
TagsMap.value = Shapes::ShapeRef.new(shape: String)
|
544
689
|
|
690
|
+
TimeRange.add_member(:end_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "endTime"))
|
691
|
+
TimeRange.add_member(:start_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "startTime"))
|
692
|
+
TimeRange.struct_class = Types::TimeRange
|
693
|
+
|
545
694
|
TrackingConfig.add_member(:autotrack, Shapes::ShapeRef.new(shape: Criticality, required: true, location_name: "autotrack"))
|
546
695
|
TrackingConfig.struct_class = Types::TrackingConfig
|
547
696
|
|
548
|
-
UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape:
|
697
|
+
UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: AnyArn, required: true, location: "uri", location_name: "resourceArn"))
|
549
698
|
UntagResourceRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeys, required: true, location: "querystring", location_name: "tagKeys"))
|
550
699
|
UntagResourceRequest.struct_class = Types::UntagResourceRequest
|
551
700
|
|
552
701
|
UntagResourceResponse.struct_class = Types::UntagResourceResponse
|
553
702
|
|
554
703
|
UpdateConfigRequest.add_member(:config_data, Shapes::ShapeRef.new(shape: ConfigTypeData, required: true, location_name: "configData"))
|
555
|
-
UpdateConfigRequest.add_member(:config_id, Shapes::ShapeRef.new(shape:
|
704
|
+
UpdateConfigRequest.add_member(:config_id, Shapes::ShapeRef.new(shape: Uuid, required: true, location: "uri", location_name: "configId"))
|
556
705
|
UpdateConfigRequest.add_member(:config_type, Shapes::ShapeRef.new(shape: ConfigCapabilityType, required: true, location: "uri", location_name: "configType"))
|
557
706
|
UpdateConfigRequest.add_member(:name, Shapes::ShapeRef.new(shape: SafeName, required: true, location_name: "name"))
|
558
707
|
UpdateConfigRequest.struct_class = Types::UpdateConfigRequest
|
559
708
|
|
709
|
+
UpdateEphemerisRequest.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "enabled"))
|
710
|
+
UpdateEphemerisRequest.add_member(:ephemeris_id, Shapes::ShapeRef.new(shape: Uuid, required: true, location: "uri", location_name: "ephemerisId"))
|
711
|
+
UpdateEphemerisRequest.add_member(:name, Shapes::ShapeRef.new(shape: SafeName, location_name: "name"))
|
712
|
+
UpdateEphemerisRequest.add_member(:priority, Shapes::ShapeRef.new(shape: EphemerisPriority, location_name: "priority"))
|
713
|
+
UpdateEphemerisRequest.struct_class = Types::UpdateEphemerisRequest
|
714
|
+
|
560
715
|
UpdateMissionProfileRequest.add_member(:contact_post_pass_duration_seconds, Shapes::ShapeRef.new(shape: DurationInSeconds, location_name: "contactPostPassDurationSeconds"))
|
561
716
|
UpdateMissionProfileRequest.add_member(:contact_pre_pass_duration_seconds, Shapes::ShapeRef.new(shape: DurationInSeconds, location_name: "contactPrePassDurationSeconds"))
|
562
717
|
UpdateMissionProfileRequest.add_member(:dataflow_edges, Shapes::ShapeRef.new(shape: DataflowEdgeList, location_name: "dataflowEdges"))
|
563
|
-
UpdateMissionProfileRequest.add_member(:minimum_viable_contact_duration_seconds, Shapes::ShapeRef.new(shape:
|
564
|
-
UpdateMissionProfileRequest.add_member(:mission_profile_id, Shapes::ShapeRef.new(shape:
|
718
|
+
UpdateMissionProfileRequest.add_member(:minimum_viable_contact_duration_seconds, Shapes::ShapeRef.new(shape: PositiveDurationInSeconds, location_name: "minimumViableContactDurationSeconds"))
|
719
|
+
UpdateMissionProfileRequest.add_member(:mission_profile_id, Shapes::ShapeRef.new(shape: Uuid, required: true, location: "uri", location_name: "missionProfileId"))
|
565
720
|
UpdateMissionProfileRequest.add_member(:name, Shapes::ShapeRef.new(shape: SafeName, location_name: "name"))
|
566
721
|
UpdateMissionProfileRequest.add_member(:tracking_config_arn, Shapes::ShapeRef.new(shape: ConfigArn, location_name: "trackingConfigArn"))
|
567
722
|
UpdateMissionProfileRequest.struct_class = Types::UpdateMissionProfileRequest
|
@@ -626,6 +781,17 @@ module Aws::GroundStation
|
|
626
781
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
627
782
|
end)
|
628
783
|
|
784
|
+
api.add_operation(:create_ephemeris, Seahorse::Model::Operation.new.tap do |o|
|
785
|
+
o.name = "CreateEphemeris"
|
786
|
+
o.http_method = "POST"
|
787
|
+
o.http_request_uri = "/ephemeris"
|
788
|
+
o.input = Shapes::ShapeRef.new(shape: CreateEphemerisRequest)
|
789
|
+
o.output = Shapes::ShapeRef.new(shape: EphemerisIdResponse)
|
790
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
791
|
+
o.errors << Shapes::ShapeRef.new(shape: DependencyException)
|
792
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
793
|
+
end)
|
794
|
+
|
629
795
|
api.add_operation(:create_mission_profile, Seahorse::Model::Operation.new.tap do |o|
|
630
796
|
o.name = "CreateMissionProfile"
|
631
797
|
o.http_method = "POST"
|
@@ -659,6 +825,17 @@ module Aws::GroundStation
|
|
659
825
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
660
826
|
end)
|
661
827
|
|
828
|
+
api.add_operation(:delete_ephemeris, Seahorse::Model::Operation.new.tap do |o|
|
829
|
+
o.name = "DeleteEphemeris"
|
830
|
+
o.http_method = "DELETE"
|
831
|
+
o.http_request_uri = "/ephemeris/{ephemerisId}"
|
832
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteEphemerisRequest)
|
833
|
+
o.output = Shapes::ShapeRef.new(shape: EphemerisIdResponse)
|
834
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
835
|
+
o.errors << Shapes::ShapeRef.new(shape: DependencyException)
|
836
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
837
|
+
end)
|
838
|
+
|
662
839
|
api.add_operation(:delete_mission_profile, Seahorse::Model::Operation.new.tap do |o|
|
663
840
|
o.name = "DeleteMissionProfile"
|
664
841
|
o.http_method = "DELETE"
|
@@ -681,6 +858,17 @@ module Aws::GroundStation
|
|
681
858
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
682
859
|
end)
|
683
860
|
|
861
|
+
api.add_operation(:describe_ephemeris, Seahorse::Model::Operation.new.tap do |o|
|
862
|
+
o.name = "DescribeEphemeris"
|
863
|
+
o.http_method = "GET"
|
864
|
+
o.http_request_uri = "/ephemeris/{ephemerisId}"
|
865
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeEphemerisRequest)
|
866
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeEphemerisResponse)
|
867
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
868
|
+
o.errors << Shapes::ShapeRef.new(shape: DependencyException)
|
869
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
870
|
+
end)
|
871
|
+
|
684
872
|
api.add_operation(:get_config, Seahorse::Model::Operation.new.tap do |o|
|
685
873
|
o.name = "GetConfig"
|
686
874
|
o.http_method = "GET"
|
@@ -787,6 +975,23 @@ module Aws::GroundStation
|
|
787
975
|
)
|
788
976
|
end)
|
789
977
|
|
978
|
+
api.add_operation(:list_ephemerides, Seahorse::Model::Operation.new.tap do |o|
|
979
|
+
o.name = "ListEphemerides"
|
980
|
+
o.http_method = "POST"
|
981
|
+
o.http_request_uri = "/ephemerides"
|
982
|
+
o.input = Shapes::ShapeRef.new(shape: ListEphemeridesRequest)
|
983
|
+
o.output = Shapes::ShapeRef.new(shape: ListEphemeridesResponse)
|
984
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
985
|
+
o.errors << Shapes::ShapeRef.new(shape: DependencyException)
|
986
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
987
|
+
o[:pager] = Aws::Pager.new(
|
988
|
+
limit_key: "max_results",
|
989
|
+
tokens: {
|
990
|
+
"next_token" => "next_token"
|
991
|
+
}
|
992
|
+
)
|
993
|
+
end)
|
994
|
+
|
790
995
|
api.add_operation(:list_ground_stations, Seahorse::Model::Operation.new.tap do |o|
|
791
996
|
o.name = "ListGroundStations"
|
792
997
|
o.http_method = "GET"
|
@@ -893,6 +1098,17 @@ module Aws::GroundStation
|
|
893
1098
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
894
1099
|
end)
|
895
1100
|
|
1101
|
+
api.add_operation(:update_ephemeris, Seahorse::Model::Operation.new.tap do |o|
|
1102
|
+
o.name = "UpdateEphemeris"
|
1103
|
+
o.http_method = "PUT"
|
1104
|
+
o.http_request_uri = "/ephemeris/{ephemerisId}"
|
1105
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateEphemerisRequest)
|
1106
|
+
o.output = Shapes::ShapeRef.new(shape: EphemerisIdResponse)
|
1107
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
1108
|
+
o.errors << Shapes::ShapeRef.new(shape: DependencyException)
|
1109
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1110
|
+
end)
|
1111
|
+
|
896
1112
|
api.add_operation(:update_mission_profile, Seahorse::Model::Operation.new.tap do |o|
|
897
1113
|
o.name = "UpdateMissionProfile"
|
898
1114
|
o.http_method = "PUT"
|