aws-sdk-groundstation 1.73.0 → 1.74.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 +557 -493
- data/lib/aws-sdk-groundstation/client_api.rb +255 -153
- data/lib/aws-sdk-groundstation/endpoint_parameters.rb +4 -4
- data/lib/aws-sdk-groundstation/errors.rb +16 -0
- data/lib/aws-sdk-groundstation/types.rb +1270 -802
- data/lib/aws-sdk-groundstation.rb +1 -1
- data/sig/client.rbs +259 -214
- data/sig/errors.rbs +3 -0
- data/sig/types.rbs +269 -155
- metadata +1 -1
data/sig/types.rbs
CHANGED
|
@@ -9,18 +9,18 @@ module Aws::GroundStation
|
|
|
9
9
|
module Types
|
|
10
10
|
|
|
11
11
|
class AgentDetails
|
|
12
|
-
attr_accessor agent_cpu_cores: ::Array[::Integer]
|
|
13
12
|
attr_accessor agent_version: ::String
|
|
14
|
-
attr_accessor component_versions: ::Array[Types::ComponentVersion]
|
|
15
13
|
attr_accessor instance_id: ::String
|
|
16
14
|
attr_accessor instance_type: ::String
|
|
17
15
|
attr_accessor reserved_cpu_cores: ::Array[::Integer]
|
|
16
|
+
attr_accessor agent_cpu_cores: ::Array[::Integer]
|
|
17
|
+
attr_accessor component_versions: ::Array[Types::ComponentVersion]
|
|
18
18
|
SENSITIVE: []
|
|
19
19
|
end
|
|
20
20
|
|
|
21
21
|
class AggregateStatus
|
|
22
|
-
attr_accessor signature_map: ::Hash[::String, bool]
|
|
23
22
|
attr_accessor status: ("SUCCESS" | "FAILED" | "ACTIVE" | "INACTIVE")
|
|
23
|
+
attr_accessor signature_map: ::Hash[::String, bool]
|
|
24
24
|
SENSITIVE: []
|
|
25
25
|
end
|
|
26
26
|
|
|
@@ -35,41 +35,84 @@ module Aws::GroundStation
|
|
|
35
35
|
end
|
|
36
36
|
|
|
37
37
|
class AntennaDownlinkDemodDecodeConfig
|
|
38
|
-
attr_accessor decode_config: Types::DecodeConfig
|
|
39
|
-
attr_accessor demodulation_config: Types::DemodulationConfig
|
|
40
38
|
attr_accessor spectrum_config: Types::SpectrumConfig
|
|
39
|
+
attr_accessor demodulation_config: Types::DemodulationConfig
|
|
40
|
+
attr_accessor decode_config: Types::DecodeConfig
|
|
41
41
|
SENSITIVE: []
|
|
42
42
|
end
|
|
43
43
|
|
|
44
44
|
class AntennaUplinkConfig
|
|
45
|
+
attr_accessor transmit_disabled: bool
|
|
45
46
|
attr_accessor spectrum_config: Types::UplinkSpectrumConfig
|
|
46
47
|
attr_accessor target_eirp: Types::Eirp
|
|
47
|
-
attr_accessor transmit_disabled: bool
|
|
48
48
|
SENSITIVE: []
|
|
49
49
|
end
|
|
50
50
|
|
|
51
51
|
class AwsGroundStationAgentEndpoint
|
|
52
|
-
attr_accessor
|
|
53
|
-
attr_accessor audit_results: ("HEALTHY" | "UNHEALTHY")
|
|
52
|
+
attr_accessor name: ::String
|
|
54
53
|
attr_accessor egress_address: Types::ConnectionDetails
|
|
55
54
|
attr_accessor ingress_address: Types::RangedConnectionDetails
|
|
56
|
-
attr_accessor
|
|
55
|
+
attr_accessor agent_status: ("SUCCESS" | "FAILED" | "ACTIVE" | "INACTIVE")
|
|
56
|
+
attr_accessor audit_results: ("HEALTHY" | "UNHEALTHY")
|
|
57
57
|
SENSITIVE: []
|
|
58
58
|
end
|
|
59
59
|
|
|
60
|
+
class AzElEphemeris
|
|
61
|
+
attr_accessor ground_station: ::String
|
|
62
|
+
attr_accessor data: Types::AzElSegmentsData
|
|
63
|
+
SENSITIVE: []
|
|
64
|
+
end
|
|
65
|
+
|
|
66
|
+
class AzElEphemerisFilter
|
|
67
|
+
attr_accessor id: ::String
|
|
68
|
+
SENSITIVE: []
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
class AzElProgramTrackSettings
|
|
72
|
+
attr_accessor ephemeris_id: ::String
|
|
73
|
+
SENSITIVE: []
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
class AzElSegment
|
|
77
|
+
attr_accessor reference_epoch: ::Time
|
|
78
|
+
attr_accessor valid_time_range: Types::ISO8601TimeRange
|
|
79
|
+
attr_accessor az_el_list: ::Array[Types::TimeAzEl]
|
|
80
|
+
SENSITIVE: []
|
|
81
|
+
end
|
|
82
|
+
|
|
83
|
+
class AzElSegments
|
|
84
|
+
attr_accessor angle_unit: ("DEGREE_ANGLE" | "RADIAN")
|
|
85
|
+
attr_accessor az_el_segment_list: ::Array[Types::AzElSegment]
|
|
86
|
+
SENSITIVE: []
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
class AzElSegmentsData
|
|
90
|
+
attr_accessor s3_object: Types::S3Object
|
|
91
|
+
attr_accessor az_el_data: Types::AzElSegments
|
|
92
|
+
attr_accessor unknown: untyped
|
|
93
|
+
SENSITIVE: []
|
|
94
|
+
|
|
95
|
+
class S3Object < AzElSegmentsData
|
|
96
|
+
end
|
|
97
|
+
class AzElData < AzElSegmentsData
|
|
98
|
+
end
|
|
99
|
+
class Unknown < AzElSegmentsData
|
|
100
|
+
end
|
|
101
|
+
end
|
|
102
|
+
|
|
60
103
|
class CancelContactRequest
|
|
61
104
|
attr_accessor contact_id: ::String
|
|
62
105
|
SENSITIVE: []
|
|
63
106
|
end
|
|
64
107
|
|
|
65
108
|
class ComponentStatusData
|
|
66
|
-
attr_accessor bytes_received: ::Integer
|
|
67
|
-
attr_accessor bytes_sent: ::Integer
|
|
68
|
-
attr_accessor capability_arn: ::String
|
|
69
109
|
attr_accessor component_type: ::String
|
|
70
|
-
attr_accessor
|
|
71
|
-
attr_accessor packets_dropped: ::Integer
|
|
110
|
+
attr_accessor capability_arn: ::String
|
|
72
111
|
attr_accessor status: ("SUCCESS" | "FAILED" | "ACTIVE" | "INACTIVE")
|
|
112
|
+
attr_accessor bytes_sent: ::Integer
|
|
113
|
+
attr_accessor bytes_received: ::Integer
|
|
114
|
+
attr_accessor packets_dropped: ::Integer
|
|
115
|
+
attr_accessor dataflow_id: ::String
|
|
73
116
|
SENSITIVE: []
|
|
74
117
|
end
|
|
75
118
|
|
|
@@ -80,16 +123,16 @@ module Aws::GroundStation
|
|
|
80
123
|
end
|
|
81
124
|
|
|
82
125
|
class ConfigDetails
|
|
83
|
-
attr_accessor antenna_demod_decode_details: Types::AntennaDemodDecodeDetails
|
|
84
126
|
attr_accessor endpoint_details: Types::EndpointDetails
|
|
127
|
+
attr_accessor antenna_demod_decode_details: Types::AntennaDemodDecodeDetails
|
|
85
128
|
attr_accessor s3_recording_details: Types::S3RecordingDetails
|
|
86
129
|
attr_accessor unknown: untyped
|
|
87
130
|
SENSITIVE: []
|
|
88
131
|
|
|
89
|
-
class AntennaDemodDecodeDetails < ConfigDetails
|
|
90
|
-
end
|
|
91
132
|
class EndpointDetails < ConfigDetails
|
|
92
133
|
end
|
|
134
|
+
class AntennaDemodDecodeDetails < ConfigDetails
|
|
135
|
+
end
|
|
93
136
|
class S3RecordingDetails < ConfigDetails
|
|
94
137
|
end
|
|
95
138
|
class Unknown < ConfigDetails
|
|
@@ -97,71 +140,72 @@ module Aws::GroundStation
|
|
|
97
140
|
end
|
|
98
141
|
|
|
99
142
|
class ConfigIdResponse
|
|
100
|
-
attr_accessor config_arn: ::String
|
|
101
143
|
attr_accessor config_id: ::String
|
|
102
144
|
attr_accessor config_type: ("antenna-downlink" | "antenna-downlink-demod-decode" | "tracking" | "dataflow-endpoint" | "antenna-uplink" | "uplink-echo" | "s3-recording")
|
|
145
|
+
attr_accessor config_arn: ::String
|
|
103
146
|
SENSITIVE: []
|
|
104
147
|
end
|
|
105
148
|
|
|
106
149
|
class ConfigListItem
|
|
107
|
-
attr_accessor config_arn: ::String
|
|
108
150
|
attr_accessor config_id: ::String
|
|
109
151
|
attr_accessor config_type: ("antenna-downlink" | "antenna-downlink-demod-decode" | "tracking" | "dataflow-endpoint" | "antenna-uplink" | "uplink-echo" | "s3-recording")
|
|
152
|
+
attr_accessor config_arn: ::String
|
|
110
153
|
attr_accessor name: ::String
|
|
111
154
|
SENSITIVE: []
|
|
112
155
|
end
|
|
113
156
|
|
|
114
157
|
class ConfigTypeData
|
|
115
158
|
attr_accessor antenna_downlink_config: Types::AntennaDownlinkConfig
|
|
159
|
+
attr_accessor tracking_config: Types::TrackingConfig
|
|
160
|
+
attr_accessor dataflow_endpoint_config: Types::DataflowEndpointConfig
|
|
116
161
|
attr_accessor antenna_downlink_demod_decode_config: Types::AntennaDownlinkDemodDecodeConfig
|
|
117
162
|
attr_accessor antenna_uplink_config: Types::AntennaUplinkConfig
|
|
118
|
-
attr_accessor dataflow_endpoint_config: Types::DataflowEndpointConfig
|
|
119
|
-
attr_accessor s3_recording_config: Types::S3RecordingConfig
|
|
120
|
-
attr_accessor tracking_config: Types::TrackingConfig
|
|
121
163
|
attr_accessor uplink_echo_config: Types::UplinkEchoConfig
|
|
164
|
+
attr_accessor s3_recording_config: Types::S3RecordingConfig
|
|
122
165
|
attr_accessor unknown: untyped
|
|
123
166
|
SENSITIVE: []
|
|
124
167
|
|
|
125
168
|
class AntennaDownlinkConfig < ConfigTypeData
|
|
126
169
|
end
|
|
127
|
-
class
|
|
128
|
-
end
|
|
129
|
-
class AntennaUplinkConfig < ConfigTypeData
|
|
170
|
+
class TrackingConfig < ConfigTypeData
|
|
130
171
|
end
|
|
131
172
|
class DataflowEndpointConfig < ConfigTypeData
|
|
132
173
|
end
|
|
133
|
-
class
|
|
174
|
+
class AntennaDownlinkDemodDecodeConfig < ConfigTypeData
|
|
134
175
|
end
|
|
135
|
-
class
|
|
176
|
+
class AntennaUplinkConfig < ConfigTypeData
|
|
136
177
|
end
|
|
137
178
|
class UplinkEchoConfig < ConfigTypeData
|
|
138
179
|
end
|
|
180
|
+
class S3RecordingConfig < ConfigTypeData
|
|
181
|
+
end
|
|
139
182
|
class Unknown < ConfigTypeData
|
|
140
183
|
end
|
|
141
184
|
end
|
|
142
185
|
|
|
143
186
|
class ConnectionDetails
|
|
144
|
-
attr_accessor mtu: ::Integer
|
|
145
187
|
attr_accessor socket_address: Types::SocketAddress
|
|
188
|
+
attr_accessor mtu: ::Integer
|
|
146
189
|
SENSITIVE: []
|
|
147
190
|
end
|
|
148
191
|
|
|
149
192
|
class ContactData
|
|
150
193
|
attr_accessor contact_id: ::String
|
|
151
|
-
attr_accessor
|
|
194
|
+
attr_accessor mission_profile_arn: ::String
|
|
195
|
+
attr_accessor satellite_arn: ::String
|
|
196
|
+
attr_accessor start_time: ::Time
|
|
152
197
|
attr_accessor end_time: ::Time
|
|
153
|
-
attr_accessor
|
|
198
|
+
attr_accessor pre_pass_start_time: ::Time
|
|
199
|
+
attr_accessor post_pass_end_time: ::Time
|
|
154
200
|
attr_accessor ground_station: ::String
|
|
201
|
+
attr_accessor contact_status: ("SCHEDULING" | "FAILED_TO_SCHEDULE" | "SCHEDULED" | "CANCELLED" | "AWS_CANCELLED" | "PREPASS" | "PASS" | "POSTPASS" | "COMPLETED" | "FAILED" | "AVAILABLE" | "CANCELLING" | "AWS_FAILED")
|
|
202
|
+
attr_accessor error_message: ::String
|
|
155
203
|
attr_accessor maximum_elevation: Types::Elevation
|
|
156
|
-
attr_accessor mission_profile_arn: ::String
|
|
157
|
-
attr_accessor post_pass_end_time: ::Time
|
|
158
|
-
attr_accessor pre_pass_start_time: ::Time
|
|
159
204
|
attr_accessor region: ::String
|
|
160
|
-
attr_accessor satellite_arn: ::String
|
|
161
|
-
attr_accessor start_time: ::Time
|
|
162
205
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
163
|
-
attr_accessor visibility_end_time: ::Time
|
|
164
206
|
attr_accessor visibility_start_time: ::Time
|
|
207
|
+
attr_accessor visibility_end_time: ::Time
|
|
208
|
+
attr_accessor ephemeris: Types::EphemerisResponseData
|
|
165
209
|
SENSITIVE: []
|
|
166
210
|
end
|
|
167
211
|
|
|
@@ -171,57 +215,57 @@ module Aws::GroundStation
|
|
|
171
215
|
end
|
|
172
216
|
|
|
173
217
|
class CreateConfigRequest
|
|
174
|
-
attr_accessor config_data: Types::ConfigTypeData
|
|
175
218
|
attr_accessor name: ::String
|
|
219
|
+
attr_accessor config_data: Types::ConfigTypeData
|
|
176
220
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
177
221
|
SENSITIVE: []
|
|
178
222
|
end
|
|
179
223
|
|
|
180
224
|
class CreateDataflowEndpointGroupRequest
|
|
181
|
-
attr_accessor contact_post_pass_duration_seconds: ::Integer
|
|
182
|
-
attr_accessor contact_pre_pass_duration_seconds: ::Integer
|
|
183
225
|
attr_accessor endpoint_details: ::Array[Types::EndpointDetails]
|
|
184
226
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
227
|
+
attr_accessor contact_pre_pass_duration_seconds: ::Integer
|
|
228
|
+
attr_accessor contact_post_pass_duration_seconds: ::Integer
|
|
185
229
|
SENSITIVE: []
|
|
186
230
|
end
|
|
187
231
|
|
|
188
232
|
class CreateEphemerisRequest
|
|
233
|
+
attr_accessor satellite_id: ::String
|
|
189
234
|
attr_accessor enabled: bool
|
|
190
|
-
attr_accessor
|
|
235
|
+
attr_accessor priority: ::Integer
|
|
191
236
|
attr_accessor expiration_time: ::Time
|
|
192
|
-
attr_accessor kms_key_arn: ::String
|
|
193
237
|
attr_accessor name: ::String
|
|
194
|
-
attr_accessor
|
|
195
|
-
attr_accessor
|
|
238
|
+
attr_accessor kms_key_arn: ::String
|
|
239
|
+
attr_accessor ephemeris: Types::EphemerisData
|
|
196
240
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
197
241
|
SENSITIVE: []
|
|
198
242
|
end
|
|
199
243
|
|
|
200
244
|
class CreateMissionProfileRequest
|
|
201
|
-
attr_accessor
|
|
245
|
+
attr_accessor name: ::String
|
|
202
246
|
attr_accessor contact_pre_pass_duration_seconds: ::Integer
|
|
203
|
-
attr_accessor
|
|
247
|
+
attr_accessor contact_post_pass_duration_seconds: ::Integer
|
|
204
248
|
attr_accessor minimum_viable_contact_duration_seconds: ::Integer
|
|
205
|
-
attr_accessor
|
|
249
|
+
attr_accessor dataflow_edges: ::Array[::Array[::String]]
|
|
250
|
+
attr_accessor tracking_config_arn: ::String
|
|
251
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
206
252
|
attr_accessor streams_kms_key: Types::KmsKey
|
|
207
253
|
attr_accessor streams_kms_role: ::String
|
|
208
|
-
attr_accessor tags: ::Hash[::String, ::String]
|
|
209
|
-
attr_accessor tracking_config_arn: ::String
|
|
210
254
|
SENSITIVE: []
|
|
211
255
|
end
|
|
212
256
|
|
|
213
257
|
class DataflowDetail
|
|
258
|
+
attr_accessor source: Types::Source
|
|
214
259
|
attr_accessor destination: Types::Destination
|
|
215
260
|
attr_accessor error_message: ::String
|
|
216
|
-
attr_accessor source: Types::Source
|
|
217
261
|
SENSITIVE: []
|
|
218
262
|
end
|
|
219
263
|
|
|
220
264
|
class DataflowEndpoint
|
|
221
|
-
attr_accessor address: Types::SocketAddress
|
|
222
|
-
attr_accessor mtu: ::Integer
|
|
223
265
|
attr_accessor name: ::String
|
|
266
|
+
attr_accessor address: Types::SocketAddress
|
|
224
267
|
attr_accessor status: ("created" | "creating" | "deleted" | "deleting" | "failed")
|
|
268
|
+
attr_accessor mtu: ::Integer
|
|
225
269
|
SENSITIVE: []
|
|
226
270
|
end
|
|
227
271
|
|
|
@@ -237,8 +281,8 @@ module Aws::GroundStation
|
|
|
237
281
|
end
|
|
238
282
|
|
|
239
283
|
class DataflowEndpointListItem
|
|
240
|
-
attr_accessor dataflow_endpoint_group_arn: ::String
|
|
241
284
|
attr_accessor dataflow_endpoint_group_id: ::String
|
|
285
|
+
attr_accessor dataflow_endpoint_group_arn: ::String
|
|
242
286
|
SENSITIVE: []
|
|
243
287
|
end
|
|
244
288
|
|
|
@@ -286,21 +330,23 @@ module Aws::GroundStation
|
|
|
286
330
|
|
|
287
331
|
class DescribeContactResponse
|
|
288
332
|
attr_accessor contact_id: ::String
|
|
289
|
-
attr_accessor contact_status: ("SCHEDULING" | "FAILED_TO_SCHEDULE" | "SCHEDULED" | "CANCELLED" | "AWS_CANCELLED" | "PREPASS" | "PASS" | "POSTPASS" | "COMPLETED" | "FAILED" | "AVAILABLE" | "CANCELLING" | "AWS_FAILED")
|
|
290
|
-
attr_accessor dataflow_list: ::Array[Types::DataflowDetail]
|
|
291
|
-
attr_accessor end_time: ::Time
|
|
292
|
-
attr_accessor error_message: ::String
|
|
293
|
-
attr_accessor ground_station: ::String
|
|
294
|
-
attr_accessor maximum_elevation: Types::Elevation
|
|
295
333
|
attr_accessor mission_profile_arn: ::String
|
|
296
|
-
attr_accessor post_pass_end_time: ::Time
|
|
297
|
-
attr_accessor pre_pass_start_time: ::Time
|
|
298
|
-
attr_accessor region: ::String
|
|
299
334
|
attr_accessor satellite_arn: ::String
|
|
300
335
|
attr_accessor start_time: ::Time
|
|
336
|
+
attr_accessor end_time: ::Time
|
|
337
|
+
attr_accessor pre_pass_start_time: ::Time
|
|
338
|
+
attr_accessor post_pass_end_time: ::Time
|
|
339
|
+
attr_accessor ground_station: ::String
|
|
340
|
+
attr_accessor contact_status: ("SCHEDULING" | "FAILED_TO_SCHEDULE" | "SCHEDULED" | "CANCELLED" | "AWS_CANCELLED" | "PREPASS" | "PASS" | "POSTPASS" | "COMPLETED" | "FAILED" | "AVAILABLE" | "CANCELLING" | "AWS_FAILED")
|
|
341
|
+
attr_accessor error_message: ::String
|
|
342
|
+
attr_accessor maximum_elevation: Types::Elevation
|
|
301
343
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
302
|
-
attr_accessor
|
|
344
|
+
attr_accessor region: ::String
|
|
345
|
+
attr_accessor dataflow_list: ::Array[Types::DataflowDetail]
|
|
303
346
|
attr_accessor visibility_start_time: ::Time
|
|
347
|
+
attr_accessor visibility_end_time: ::Time
|
|
348
|
+
attr_accessor tracking_overrides: Types::TrackingOverrides
|
|
349
|
+
attr_accessor ephemeris: Types::EphemerisResponseData
|
|
304
350
|
SENSITIVE: []
|
|
305
351
|
end
|
|
306
352
|
|
|
@@ -310,122 +356,153 @@ module Aws::GroundStation
|
|
|
310
356
|
end
|
|
311
357
|
|
|
312
358
|
class DescribeEphemerisResponse
|
|
313
|
-
attr_accessor creation_time: ::Time
|
|
314
|
-
attr_accessor enabled: bool
|
|
315
359
|
attr_accessor ephemeris_id: ::String
|
|
316
|
-
attr_accessor invalid_reason: ("METADATA_INVALID" | "TIME_RANGE_INVALID" | "TRAJECTORY_INVALID" | "KMS_KEY_INVALID" | "VALIDATION_ERROR")
|
|
317
|
-
attr_accessor name: ::String
|
|
318
|
-
attr_accessor priority: ::Integer
|
|
319
360
|
attr_accessor satellite_id: ::String
|
|
320
361
|
attr_accessor status: ("VALIDATING" | "INVALID" | "ERROR" | "ENABLED" | "DISABLED" | "EXPIRED")
|
|
321
|
-
attr_accessor
|
|
362
|
+
attr_accessor priority: ::Integer
|
|
363
|
+
attr_accessor creation_time: ::Time
|
|
364
|
+
attr_accessor enabled: bool
|
|
365
|
+
attr_accessor name: ::String
|
|
322
366
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
367
|
+
attr_accessor supplied_data: Types::EphemerisTypeDescription
|
|
368
|
+
attr_accessor invalid_reason: ("METADATA_INVALID" | "TIME_RANGE_INVALID" | "TRAJECTORY_INVALID" | "KMS_KEY_INVALID" | "VALIDATION_ERROR")
|
|
369
|
+
attr_accessor error_reasons: ::Array[Types::EphemerisErrorReason]
|
|
323
370
|
SENSITIVE: []
|
|
324
371
|
end
|
|
325
372
|
|
|
326
373
|
class Destination
|
|
327
|
-
attr_accessor config_details: Types::ConfigDetails
|
|
328
|
-
attr_accessor config_id: ::String
|
|
329
374
|
attr_accessor config_type: ("antenna-downlink" | "antenna-downlink-demod-decode" | "tracking" | "dataflow-endpoint" | "antenna-uplink" | "uplink-echo" | "s3-recording")
|
|
375
|
+
attr_accessor config_id: ::String
|
|
376
|
+
attr_accessor config_details: Types::ConfigDetails
|
|
330
377
|
attr_accessor dataflow_destination_region: ::String
|
|
331
378
|
SENSITIVE: []
|
|
332
379
|
end
|
|
333
380
|
|
|
334
381
|
class DiscoveryData
|
|
335
|
-
attr_accessor capability_arns: ::Array[::String]
|
|
336
|
-
attr_accessor private_ip_addresses: ::Array[::String]
|
|
337
382
|
attr_accessor public_ip_addresses: ::Array[::String]
|
|
383
|
+
attr_accessor private_ip_addresses: ::Array[::String]
|
|
384
|
+
attr_accessor capability_arns: ::Array[::String]
|
|
338
385
|
SENSITIVE: []
|
|
339
386
|
end
|
|
340
387
|
|
|
341
388
|
class Eirp
|
|
342
|
-
attr_accessor units: ("dBW")
|
|
343
389
|
attr_accessor value: ::Float
|
|
390
|
+
attr_accessor units: ("dBW")
|
|
344
391
|
SENSITIVE: []
|
|
345
392
|
end
|
|
346
393
|
|
|
347
394
|
class Elevation
|
|
348
|
-
attr_accessor unit: ("DEGREE_ANGLE" | "RADIAN")
|
|
349
395
|
attr_accessor value: ::Float
|
|
396
|
+
attr_accessor unit: ("DEGREE_ANGLE" | "RADIAN")
|
|
350
397
|
SENSITIVE: []
|
|
351
398
|
end
|
|
352
399
|
|
|
353
400
|
class EndpointDetails
|
|
354
|
-
attr_accessor
|
|
401
|
+
attr_accessor security_details: Types::SecurityDetails
|
|
355
402
|
attr_accessor endpoint: Types::DataflowEndpoint
|
|
356
|
-
attr_accessor
|
|
403
|
+
attr_accessor aws_ground_station_agent_endpoint: Types::AwsGroundStationAgentEndpoint
|
|
357
404
|
attr_accessor health_status: ("HEALTHY" | "UNHEALTHY")
|
|
358
|
-
attr_accessor
|
|
405
|
+
attr_accessor health_reasons: ::Array[("NO_REGISTERED_AGENT" | "INVALID_IP_OWNERSHIP" | "NOT_AUTHORIZED_TO_CREATE_SLR" | "UNVERIFIED_IP_OWNERSHIP" | "INITIALIZING_DATAPLANE" | "DATAPLANE_FAILURE" | "HEALTHY")]
|
|
359
406
|
SENSITIVE: []
|
|
360
407
|
end
|
|
361
408
|
|
|
362
409
|
class EphemerisData
|
|
363
|
-
attr_accessor oem: Types::OEMEphemeris
|
|
364
410
|
attr_accessor tle: Types::TLEEphemeris
|
|
411
|
+
attr_accessor oem: Types::OEMEphemeris
|
|
412
|
+
attr_accessor az_el: Types::AzElEphemeris
|
|
365
413
|
attr_accessor unknown: untyped
|
|
366
414
|
SENSITIVE: []
|
|
367
415
|
|
|
416
|
+
class Tle < EphemerisData
|
|
417
|
+
end
|
|
368
418
|
class Oem < EphemerisData
|
|
369
419
|
end
|
|
370
|
-
class
|
|
420
|
+
class AzEl < EphemerisData
|
|
371
421
|
end
|
|
372
422
|
class Unknown < EphemerisData
|
|
373
423
|
end
|
|
374
424
|
end
|
|
375
425
|
|
|
376
426
|
class EphemerisDescription
|
|
377
|
-
attr_accessor ephemeris_data: ::String
|
|
378
427
|
attr_accessor source_s3_object: Types::S3Object
|
|
428
|
+
attr_accessor ephemeris_data: ::String
|
|
379
429
|
SENSITIVE: []
|
|
380
430
|
end
|
|
381
431
|
|
|
432
|
+
class EphemerisErrorReason
|
|
433
|
+
attr_accessor error_code: ("INTERNAL_ERROR" | "MISMATCHED_SATCAT_ID" | "OEM_VERSION_UNSUPPORTED" | "ORIGINATOR_MISSING" | "CREATION_DATE_MISSING" | "OBJECT_NAME_MISSING" | "OBJECT_ID_MISSING" | "REF_FRAME_UNSUPPORTED" | "REF_FRAME_EPOCH_UNSUPPORTED" | "TIME_SYSTEM_UNSUPPORTED" | "CENTER_BODY_UNSUPPORTED" | "INTERPOLATION_MISSING" | "INTERPOLATION_DEGREE_INVALID" | "AZ_EL_SEGMENT_LIST_MISSING" | "INSUFFICIENT_TIME_AZ_EL" | "START_TIME_IN_FUTURE" | "END_TIME_IN_PAST" | "EXPIRATION_TIME_TOO_EARLY" | "START_TIME_METADATA_TOO_EARLY" | "STOP_TIME_METADATA_TOO_LATE" | "AZ_EL_SEGMENT_END_TIME_BEFORE_START_TIME" | "AZ_EL_SEGMENT_TIMES_OVERLAP" | "AZ_EL_SEGMENTS_OUT_OF_ORDER" | "TIME_AZ_EL_ITEMS_OUT_OF_ORDER" | "MEAN_MOTION_INVALID" | "TIME_AZ_EL_AZ_RADIAN_RANGE_INVALID" | "TIME_AZ_EL_EL_RADIAN_RANGE_INVALID" | "TIME_AZ_EL_AZ_DEGREE_RANGE_INVALID" | "TIME_AZ_EL_EL_DEGREE_RANGE_INVALID" | "TIME_AZ_EL_ANGLE_UNITS_INVALID" | "INSUFFICIENT_KMS_PERMISSIONS" | "FILE_FORMAT_INVALID" | "AZ_EL_SEGMENT_REFERENCE_EPOCH_INVALID" | "AZ_EL_SEGMENT_START_TIME_INVALID" | "AZ_EL_SEGMENT_END_TIME_INVALID" | "AZ_EL_SEGMENT_VALID_TIME_RANGE_INVALID" | "AZ_EL_SEGMENT_END_TIME_TOO_LATE" | "AZ_EL_TOTAL_DURATION_EXCEEDED")
|
|
434
|
+
attr_accessor error_message: ::String
|
|
435
|
+
SENSITIVE: []
|
|
436
|
+
end
|
|
437
|
+
|
|
438
|
+
class EphemerisFilter
|
|
439
|
+
attr_accessor az_el: Types::AzElEphemerisFilter
|
|
440
|
+
attr_accessor unknown: untyped
|
|
441
|
+
SENSITIVE: []
|
|
442
|
+
|
|
443
|
+
class AzEl < EphemerisFilter
|
|
444
|
+
end
|
|
445
|
+
class Unknown < EphemerisFilter
|
|
446
|
+
end
|
|
447
|
+
end
|
|
448
|
+
|
|
382
449
|
class EphemerisIdResponse
|
|
383
450
|
attr_accessor ephemeris_id: ::String
|
|
384
451
|
SENSITIVE: []
|
|
385
452
|
end
|
|
386
453
|
|
|
387
454
|
class EphemerisItem
|
|
388
|
-
attr_accessor creation_time: ::Time
|
|
389
|
-
attr_accessor enabled: bool
|
|
390
455
|
attr_accessor ephemeris_id: ::String
|
|
391
|
-
attr_accessor
|
|
456
|
+
attr_accessor ephemeris_type: ("TLE" | "OEM" | "AZ_EL" | "SERVICE_MANAGED")
|
|
457
|
+
attr_accessor status: ("VALIDATING" | "INVALID" | "ERROR" | "ENABLED" | "DISABLED" | "EXPIRED")
|
|
392
458
|
attr_accessor priority: ::Integer
|
|
459
|
+
attr_accessor enabled: bool
|
|
460
|
+
attr_accessor creation_time: ::Time
|
|
461
|
+
attr_accessor name: ::String
|
|
393
462
|
attr_accessor source_s3_object: Types::S3Object
|
|
394
|
-
attr_accessor status: ("VALIDATING" | "INVALID" | "ERROR" | "ENABLED" | "DISABLED" | "EXPIRED")
|
|
395
463
|
SENSITIVE: []
|
|
396
464
|
end
|
|
397
465
|
|
|
398
466
|
class EphemerisMetaData
|
|
467
|
+
attr_accessor source: ("CUSTOMER_PROVIDED" | "SPACE_TRACK")
|
|
399
468
|
attr_accessor ephemeris_id: ::String
|
|
400
469
|
attr_accessor epoch: ::Time
|
|
401
470
|
attr_accessor name: ::String
|
|
402
|
-
|
|
471
|
+
SENSITIVE: []
|
|
472
|
+
end
|
|
473
|
+
|
|
474
|
+
class EphemerisResponseData
|
|
475
|
+
attr_accessor ephemeris_id: ::String
|
|
476
|
+
attr_accessor ephemeris_type: ("TLE" | "OEM" | "AZ_EL" | "SERVICE_MANAGED")
|
|
403
477
|
SENSITIVE: []
|
|
404
478
|
end
|
|
405
479
|
|
|
406
480
|
class EphemerisTypeDescription
|
|
407
|
-
attr_accessor oem: Types::EphemerisDescription
|
|
408
481
|
attr_accessor tle: Types::EphemerisDescription
|
|
482
|
+
attr_accessor oem: Types::EphemerisDescription
|
|
483
|
+
attr_accessor az_el: Types::EphemerisDescription
|
|
409
484
|
attr_accessor unknown: untyped
|
|
410
485
|
SENSITIVE: []
|
|
411
486
|
|
|
487
|
+
class Tle < EphemerisTypeDescription
|
|
488
|
+
end
|
|
412
489
|
class Oem < EphemerisTypeDescription
|
|
413
490
|
end
|
|
414
|
-
class
|
|
491
|
+
class AzEl < EphemerisTypeDescription
|
|
415
492
|
end
|
|
416
493
|
class Unknown < EphemerisTypeDescription
|
|
417
494
|
end
|
|
418
495
|
end
|
|
419
496
|
|
|
420
497
|
class Frequency
|
|
421
|
-
attr_accessor units: ("GHz" | "MHz" | "kHz")
|
|
422
498
|
attr_accessor value: ::Float
|
|
499
|
+
attr_accessor units: ("GHz" | "MHz" | "kHz")
|
|
423
500
|
SENSITIVE: []
|
|
424
501
|
end
|
|
425
502
|
|
|
426
503
|
class FrequencyBandwidth
|
|
427
|
-
attr_accessor units: ("GHz" | "MHz" | "kHz")
|
|
428
504
|
attr_accessor value: ::Float
|
|
505
|
+
attr_accessor units: ("GHz" | "MHz" | "kHz")
|
|
429
506
|
SENSITIVE: []
|
|
430
507
|
end
|
|
431
508
|
|
|
@@ -447,11 +524,11 @@ module Aws::GroundStation
|
|
|
447
524
|
end
|
|
448
525
|
|
|
449
526
|
class GetConfigResponse
|
|
450
|
-
attr_accessor config_arn: ::String
|
|
451
|
-
attr_accessor config_data: Types::ConfigTypeData
|
|
452
527
|
attr_accessor config_id: ::String
|
|
453
|
-
attr_accessor
|
|
528
|
+
attr_accessor config_arn: ::String
|
|
454
529
|
attr_accessor name: ::String
|
|
530
|
+
attr_accessor config_type: ("antenna-downlink" | "antenna-downlink-demod-decode" | "tracking" | "dataflow-endpoint" | "antenna-uplink" | "uplink-echo" | "s3-recording")
|
|
531
|
+
attr_accessor config_data: Types::ConfigTypeData
|
|
455
532
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
456
533
|
SENSITIVE: []
|
|
457
534
|
end
|
|
@@ -462,12 +539,12 @@ module Aws::GroundStation
|
|
|
462
539
|
end
|
|
463
540
|
|
|
464
541
|
class GetDataflowEndpointGroupResponse
|
|
465
|
-
attr_accessor contact_post_pass_duration_seconds: ::Integer
|
|
466
|
-
attr_accessor contact_pre_pass_duration_seconds: ::Integer
|
|
467
|
-
attr_accessor dataflow_endpoint_group_arn: ::String
|
|
468
542
|
attr_accessor dataflow_endpoint_group_id: ::String
|
|
543
|
+
attr_accessor dataflow_endpoint_group_arn: ::String
|
|
469
544
|
attr_accessor endpoints_details: ::Array[Types::EndpointDetails]
|
|
470
545
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
546
|
+
attr_accessor contact_pre_pass_duration_seconds: ::Integer
|
|
547
|
+
attr_accessor contact_post_pass_duration_seconds: ::Integer
|
|
471
548
|
SENSITIVE: []
|
|
472
549
|
end
|
|
473
550
|
|
|
@@ -478,11 +555,11 @@ module Aws::GroundStation
|
|
|
478
555
|
end
|
|
479
556
|
|
|
480
557
|
class GetMinuteUsageResponse
|
|
481
|
-
attr_accessor estimated_minutes_remaining: ::Integer
|
|
482
558
|
attr_accessor is_reserved_minutes_customer: bool
|
|
483
559
|
attr_accessor total_reserved_minute_allocation: ::Integer
|
|
484
|
-
attr_accessor total_scheduled_minutes: ::Integer
|
|
485
560
|
attr_accessor upcoming_minutes_scheduled: ::Integer
|
|
561
|
+
attr_accessor total_scheduled_minutes: ::Integer
|
|
562
|
+
attr_accessor estimated_minutes_remaining: ::Integer
|
|
486
563
|
SENSITIVE: []
|
|
487
564
|
end
|
|
488
565
|
|
|
@@ -492,18 +569,18 @@ module Aws::GroundStation
|
|
|
492
569
|
end
|
|
493
570
|
|
|
494
571
|
class GetMissionProfileResponse
|
|
495
|
-
attr_accessor contact_post_pass_duration_seconds: ::Integer
|
|
496
|
-
attr_accessor contact_pre_pass_duration_seconds: ::Integer
|
|
497
|
-
attr_accessor dataflow_edges: ::Array[::Array[::String]]
|
|
498
|
-
attr_accessor minimum_viable_contact_duration_seconds: ::Integer
|
|
499
|
-
attr_accessor mission_profile_arn: ::String
|
|
500
572
|
attr_accessor mission_profile_id: ::String
|
|
573
|
+
attr_accessor mission_profile_arn: ::String
|
|
501
574
|
attr_accessor name: ::String
|
|
502
575
|
attr_accessor region: ::String
|
|
576
|
+
attr_accessor contact_pre_pass_duration_seconds: ::Integer
|
|
577
|
+
attr_accessor contact_post_pass_duration_seconds: ::Integer
|
|
578
|
+
attr_accessor minimum_viable_contact_duration_seconds: ::Integer
|
|
579
|
+
attr_accessor dataflow_edges: ::Array[::Array[::String]]
|
|
580
|
+
attr_accessor tracking_config_arn: ::String
|
|
581
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
503
582
|
attr_accessor streams_kms_key: Types::KmsKey
|
|
504
583
|
attr_accessor streams_kms_role: ::String
|
|
505
|
-
attr_accessor tags: ::Hash[::String, ::String]
|
|
506
|
-
attr_accessor tracking_config_arn: ::String
|
|
507
584
|
SENSITIVE: []
|
|
508
585
|
end
|
|
509
586
|
|
|
@@ -513,11 +590,11 @@ module Aws::GroundStation
|
|
|
513
590
|
end
|
|
514
591
|
|
|
515
592
|
class GetSatelliteResponse
|
|
516
|
-
attr_accessor current_ephemeris: Types::EphemerisMetaData
|
|
517
|
-
attr_accessor ground_stations: ::Array[::String]
|
|
518
|
-
attr_accessor norad_satellite_id: ::Integer
|
|
519
|
-
attr_accessor satellite_arn: ::String
|
|
520
593
|
attr_accessor satellite_id: ::String
|
|
594
|
+
attr_accessor satellite_arn: ::String
|
|
595
|
+
attr_accessor norad_satellite_id: ::Integer
|
|
596
|
+
attr_accessor ground_stations: ::Array[::String]
|
|
597
|
+
attr_accessor current_ephemeris: Types::EphemerisMetaData
|
|
521
598
|
SENSITIVE: []
|
|
522
599
|
end
|
|
523
600
|
|
|
@@ -528,9 +605,15 @@ module Aws::GroundStation
|
|
|
528
605
|
SENSITIVE: []
|
|
529
606
|
end
|
|
530
607
|
|
|
608
|
+
class ISO8601TimeRange
|
|
609
|
+
attr_accessor start_time: ::Time
|
|
610
|
+
attr_accessor end_time: ::Time
|
|
611
|
+
SENSITIVE: []
|
|
612
|
+
end
|
|
613
|
+
|
|
531
614
|
class IntegerRange
|
|
532
|
-
attr_accessor maximum: ::Integer
|
|
533
615
|
attr_accessor minimum: ::Integer
|
|
616
|
+
attr_accessor maximum: ::Integer
|
|
534
617
|
SENSITIVE: []
|
|
535
618
|
end
|
|
536
619
|
|
|
@@ -541,18 +624,18 @@ module Aws::GroundStation
|
|
|
541
624
|
end
|
|
542
625
|
|
|
543
626
|
class KmsKey
|
|
627
|
+
attr_accessor kms_key_arn: ::String
|
|
544
628
|
attr_accessor kms_alias_arn: ::String
|
|
545
629
|
attr_accessor kms_alias_name: ::String
|
|
546
|
-
attr_accessor kms_key_arn: ::String
|
|
547
630
|
attr_accessor unknown: untyped
|
|
548
631
|
SENSITIVE: []
|
|
549
632
|
|
|
633
|
+
class KmsKeyArn < KmsKey
|
|
634
|
+
end
|
|
550
635
|
class KmsAliasArn < KmsKey
|
|
551
636
|
end
|
|
552
637
|
class KmsAliasName < KmsKey
|
|
553
638
|
end
|
|
554
|
-
class KmsKeyArn < KmsKey
|
|
555
|
-
end
|
|
556
639
|
class Unknown < KmsKey
|
|
557
640
|
end
|
|
558
641
|
end
|
|
@@ -564,26 +647,27 @@ module Aws::GroundStation
|
|
|
564
647
|
end
|
|
565
648
|
|
|
566
649
|
class ListConfigsResponse
|
|
567
|
-
attr_accessor config_list: ::Array[Types::ConfigListItem]
|
|
568
650
|
attr_accessor next_token: ::String
|
|
651
|
+
attr_accessor config_list: ::Array[Types::ConfigListItem]
|
|
569
652
|
SENSITIVE: []
|
|
570
653
|
end
|
|
571
654
|
|
|
572
655
|
class ListContactsRequest
|
|
573
|
-
attr_accessor end_time: ::Time
|
|
574
|
-
attr_accessor ground_station: ::String
|
|
575
656
|
attr_accessor max_results: ::Integer
|
|
576
|
-
attr_accessor mission_profile_arn: ::String
|
|
577
657
|
attr_accessor next_token: ::String
|
|
578
|
-
attr_accessor satellite_arn: ::String
|
|
579
|
-
attr_accessor start_time: ::Time
|
|
580
658
|
attr_accessor status_list: ::Array[("SCHEDULING" | "FAILED_TO_SCHEDULE" | "SCHEDULED" | "CANCELLED" | "AWS_CANCELLED" | "PREPASS" | "PASS" | "POSTPASS" | "COMPLETED" | "FAILED" | "AVAILABLE" | "CANCELLING" | "AWS_FAILED")]
|
|
659
|
+
attr_accessor start_time: ::Time
|
|
660
|
+
attr_accessor end_time: ::Time
|
|
661
|
+
attr_accessor ground_station: ::String
|
|
662
|
+
attr_accessor satellite_arn: ::String
|
|
663
|
+
attr_accessor mission_profile_arn: ::String
|
|
664
|
+
attr_accessor ephemeris: Types::EphemerisFilter
|
|
581
665
|
SENSITIVE: []
|
|
582
666
|
end
|
|
583
667
|
|
|
584
668
|
class ListContactsResponse
|
|
585
|
-
attr_accessor contact_list: ::Array[Types::ContactData]
|
|
586
669
|
attr_accessor next_token: ::String
|
|
670
|
+
attr_accessor contact_list: ::Array[Types::ContactData]
|
|
587
671
|
SENSITIVE: []
|
|
588
672
|
end
|
|
589
673
|
|
|
@@ -594,37 +678,38 @@ module Aws::GroundStation
|
|
|
594
678
|
end
|
|
595
679
|
|
|
596
680
|
class ListDataflowEndpointGroupsResponse
|
|
597
|
-
attr_accessor dataflow_endpoint_group_list: ::Array[Types::DataflowEndpointListItem]
|
|
598
681
|
attr_accessor next_token: ::String
|
|
682
|
+
attr_accessor dataflow_endpoint_group_list: ::Array[Types::DataflowEndpointListItem]
|
|
599
683
|
SENSITIVE: []
|
|
600
684
|
end
|
|
601
685
|
|
|
602
686
|
class ListEphemeridesRequest
|
|
603
|
-
attr_accessor end_time: ::Time
|
|
604
|
-
attr_accessor max_results: ::Integer
|
|
605
|
-
attr_accessor next_token: ::String
|
|
606
687
|
attr_accessor satellite_id: ::String
|
|
688
|
+
attr_accessor ephemeris_type: ("TLE" | "OEM" | "AZ_EL" | "SERVICE_MANAGED")
|
|
607
689
|
attr_accessor start_time: ::Time
|
|
690
|
+
attr_accessor end_time: ::Time
|
|
608
691
|
attr_accessor status_list: ::Array[("VALIDATING" | "INVALID" | "ERROR" | "ENABLED" | "DISABLED" | "EXPIRED")]
|
|
692
|
+
attr_accessor max_results: ::Integer
|
|
693
|
+
attr_accessor next_token: ::String
|
|
609
694
|
SENSITIVE: []
|
|
610
695
|
end
|
|
611
696
|
|
|
612
697
|
class ListEphemeridesResponse
|
|
613
|
-
attr_accessor ephemerides: ::Array[Types::EphemerisItem]
|
|
614
698
|
attr_accessor next_token: ::String
|
|
699
|
+
attr_accessor ephemerides: ::Array[Types::EphemerisItem]
|
|
615
700
|
SENSITIVE: []
|
|
616
701
|
end
|
|
617
702
|
|
|
618
703
|
class ListGroundStationsRequest
|
|
704
|
+
attr_accessor satellite_id: ::String
|
|
619
705
|
attr_accessor max_results: ::Integer
|
|
620
706
|
attr_accessor next_token: ::String
|
|
621
|
-
attr_accessor satellite_id: ::String
|
|
622
707
|
SENSITIVE: []
|
|
623
708
|
end
|
|
624
709
|
|
|
625
710
|
class ListGroundStationsResponse
|
|
626
|
-
attr_accessor ground_station_list: ::Array[Types::GroundStationData]
|
|
627
711
|
attr_accessor next_token: ::String
|
|
712
|
+
attr_accessor ground_station_list: ::Array[Types::GroundStationData]
|
|
628
713
|
SENSITIVE: []
|
|
629
714
|
end
|
|
630
715
|
|
|
@@ -635,8 +720,8 @@ module Aws::GroundStation
|
|
|
635
720
|
end
|
|
636
721
|
|
|
637
722
|
class ListMissionProfilesResponse
|
|
638
|
-
attr_accessor mission_profile_list: ::Array[Types::MissionProfileListItem]
|
|
639
723
|
attr_accessor next_token: ::String
|
|
724
|
+
attr_accessor mission_profile_list: ::Array[Types::MissionProfileListItem]
|
|
640
725
|
SENSITIVE: []
|
|
641
726
|
end
|
|
642
727
|
|
|
@@ -668,22 +753,33 @@ module Aws::GroundStation
|
|
|
668
753
|
end
|
|
669
754
|
|
|
670
755
|
class MissionProfileListItem
|
|
671
|
-
attr_accessor mission_profile_arn: ::String
|
|
672
756
|
attr_accessor mission_profile_id: ::String
|
|
673
|
-
attr_accessor
|
|
757
|
+
attr_accessor mission_profile_arn: ::String
|
|
674
758
|
attr_accessor region: ::String
|
|
759
|
+
attr_accessor name: ::String
|
|
675
760
|
SENSITIVE: []
|
|
676
761
|
end
|
|
677
762
|
|
|
678
763
|
class OEMEphemeris
|
|
679
|
-
attr_accessor oem_data: ::String
|
|
680
764
|
attr_accessor s3_object: Types::S3Object
|
|
765
|
+
attr_accessor oem_data: ::String
|
|
766
|
+
SENSITIVE: []
|
|
767
|
+
end
|
|
768
|
+
|
|
769
|
+
class ProgramTrackSettings
|
|
770
|
+
attr_accessor az_el: Types::AzElProgramTrackSettings
|
|
771
|
+
attr_accessor unknown: untyped
|
|
681
772
|
SENSITIVE: []
|
|
773
|
+
|
|
774
|
+
class AzEl < ProgramTrackSettings
|
|
775
|
+
end
|
|
776
|
+
class Unknown < ProgramTrackSettings
|
|
777
|
+
end
|
|
682
778
|
end
|
|
683
779
|
|
|
684
780
|
class RangedConnectionDetails
|
|
685
|
-
attr_accessor mtu: ::Integer
|
|
686
781
|
attr_accessor socket_address: Types::RangedSocketAddress
|
|
782
|
+
attr_accessor mtu: ::Integer
|
|
687
783
|
SENSITIVE: []
|
|
688
784
|
end
|
|
689
785
|
|
|
@@ -694,8 +790,8 @@ module Aws::GroundStation
|
|
|
694
790
|
end
|
|
695
791
|
|
|
696
792
|
class RegisterAgentRequest
|
|
697
|
-
attr_accessor agent_details: Types::AgentDetails
|
|
698
793
|
attr_accessor discovery_data: Types::DiscoveryData
|
|
794
|
+
attr_accessor agent_details: Types::AgentDetails
|
|
699
795
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
700
796
|
SENSITIVE: []
|
|
701
797
|
end
|
|
@@ -706,12 +802,18 @@ module Aws::GroundStation
|
|
|
706
802
|
end
|
|
707
803
|
|
|
708
804
|
class ReserveContactRequest
|
|
709
|
-
attr_accessor end_time: ::Time
|
|
710
|
-
attr_accessor ground_station: ::String
|
|
711
805
|
attr_accessor mission_profile_arn: ::String
|
|
712
806
|
attr_accessor satellite_arn: ::String
|
|
713
807
|
attr_accessor start_time: ::Time
|
|
808
|
+
attr_accessor end_time: ::Time
|
|
809
|
+
attr_accessor ground_station: ::String
|
|
714
810
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
811
|
+
attr_accessor tracking_overrides: Types::TrackingOverrides
|
|
812
|
+
SENSITIVE: []
|
|
813
|
+
end
|
|
814
|
+
|
|
815
|
+
class ResourceInUseException
|
|
816
|
+
attr_accessor message: ::String
|
|
715
817
|
SENSITIVE: []
|
|
716
818
|
end
|
|
717
819
|
|
|
@@ -735,8 +837,8 @@ module Aws::GroundStation
|
|
|
735
837
|
|
|
736
838
|
class S3RecordingConfig
|
|
737
839
|
attr_accessor bucket_arn: ::String
|
|
738
|
-
attr_accessor prefix: ::String
|
|
739
840
|
attr_accessor role_arn: ::String
|
|
841
|
+
attr_accessor prefix: ::String
|
|
740
842
|
SENSITIVE: []
|
|
741
843
|
end
|
|
742
844
|
|
|
@@ -747,18 +849,18 @@ module Aws::GroundStation
|
|
|
747
849
|
end
|
|
748
850
|
|
|
749
851
|
class SatelliteListItem
|
|
750
|
-
attr_accessor current_ephemeris: Types::EphemerisMetaData
|
|
751
|
-
attr_accessor ground_stations: ::Array[::String]
|
|
752
|
-
attr_accessor norad_satellite_id: ::Integer
|
|
753
|
-
attr_accessor satellite_arn: ::String
|
|
754
852
|
attr_accessor satellite_id: ::String
|
|
853
|
+
attr_accessor satellite_arn: ::String
|
|
854
|
+
attr_accessor norad_satellite_id: ::Integer
|
|
855
|
+
attr_accessor ground_stations: ::Array[::String]
|
|
856
|
+
attr_accessor current_ephemeris: Types::EphemerisMetaData
|
|
755
857
|
SENSITIVE: []
|
|
756
858
|
end
|
|
757
859
|
|
|
758
860
|
class SecurityDetails
|
|
759
|
-
attr_accessor role_arn: ::String
|
|
760
|
-
attr_accessor security_group_ids: ::Array[::String]
|
|
761
861
|
attr_accessor subnet_ids: ::Array[::String]
|
|
862
|
+
attr_accessor security_group_ids: ::Array[::String]
|
|
863
|
+
attr_accessor role_arn: ::String
|
|
762
864
|
SENSITIVE: []
|
|
763
865
|
end
|
|
764
866
|
|
|
@@ -769,16 +871,16 @@ module Aws::GroundStation
|
|
|
769
871
|
end
|
|
770
872
|
|
|
771
873
|
class Source
|
|
772
|
-
attr_accessor config_details: Types::ConfigDetails
|
|
773
|
-
attr_accessor config_id: ::String
|
|
774
874
|
attr_accessor config_type: ("antenna-downlink" | "antenna-downlink-demod-decode" | "tracking" | "dataflow-endpoint" | "antenna-uplink" | "uplink-echo" | "s3-recording")
|
|
875
|
+
attr_accessor config_id: ::String
|
|
876
|
+
attr_accessor config_details: Types::ConfigDetails
|
|
775
877
|
attr_accessor dataflow_source_region: ::String
|
|
776
878
|
SENSITIVE: []
|
|
777
879
|
end
|
|
778
880
|
|
|
779
881
|
class SpectrumConfig
|
|
780
|
-
attr_accessor bandwidth: Types::FrequencyBandwidth
|
|
781
882
|
attr_accessor center_frequency: Types::Frequency
|
|
883
|
+
attr_accessor bandwidth: Types::FrequencyBandwidth
|
|
782
884
|
attr_accessor polarization: ("RIGHT_HAND" | "LEFT_HAND" | "NONE")
|
|
783
885
|
SENSITIVE: []
|
|
784
886
|
end
|
|
@@ -805,9 +907,16 @@ module Aws::GroundStation
|
|
|
805
907
|
class TagResourceResponse < Aws::EmptyStructure
|
|
806
908
|
end
|
|
807
909
|
|
|
910
|
+
class TimeAzEl
|
|
911
|
+
attr_accessor dt: ::Float
|
|
912
|
+
attr_accessor az: ::Float
|
|
913
|
+
attr_accessor el: ::Float
|
|
914
|
+
SENSITIVE: []
|
|
915
|
+
end
|
|
916
|
+
|
|
808
917
|
class TimeRange
|
|
809
|
-
attr_accessor end_time: ::Time
|
|
810
918
|
attr_accessor start_time: ::Time
|
|
919
|
+
attr_accessor end_time: ::Time
|
|
811
920
|
SENSITIVE: []
|
|
812
921
|
end
|
|
813
922
|
|
|
@@ -816,6 +925,11 @@ module Aws::GroundStation
|
|
|
816
925
|
SENSITIVE: []
|
|
817
926
|
end
|
|
818
927
|
|
|
928
|
+
class TrackingOverrides
|
|
929
|
+
attr_accessor program_track_settings: Types::ProgramTrackSettings
|
|
930
|
+
SENSITIVE: []
|
|
931
|
+
end
|
|
932
|
+
|
|
819
933
|
class UntagResourceRequest
|
|
820
934
|
attr_accessor resource_arn: ::String
|
|
821
935
|
attr_accessor tag_keys: ::Array[::String]
|
|
@@ -827,9 +941,9 @@ module Aws::GroundStation
|
|
|
827
941
|
|
|
828
942
|
class UpdateAgentStatusRequest
|
|
829
943
|
attr_accessor agent_id: ::String
|
|
944
|
+
attr_accessor task_id: ::String
|
|
830
945
|
attr_accessor aggregate_status: Types::AggregateStatus
|
|
831
946
|
attr_accessor component_statuses: ::Array[Types::ComponentStatusData]
|
|
832
|
-
attr_accessor task_id: ::String
|
|
833
947
|
SENSITIVE: []
|
|
834
948
|
end
|
|
835
949
|
|
|
@@ -839,37 +953,37 @@ module Aws::GroundStation
|
|
|
839
953
|
end
|
|
840
954
|
|
|
841
955
|
class UpdateConfigRequest
|
|
842
|
-
attr_accessor config_data: Types::ConfigTypeData
|
|
843
956
|
attr_accessor config_id: ::String
|
|
844
|
-
attr_accessor config_type: ("antenna-downlink" | "antenna-downlink-demod-decode" | "tracking" | "dataflow-endpoint" | "antenna-uplink" | "uplink-echo" | "s3-recording")
|
|
845
957
|
attr_accessor name: ::String
|
|
958
|
+
attr_accessor config_type: ("antenna-downlink" | "antenna-downlink-demod-decode" | "tracking" | "dataflow-endpoint" | "antenna-uplink" | "uplink-echo" | "s3-recording")
|
|
959
|
+
attr_accessor config_data: Types::ConfigTypeData
|
|
846
960
|
SENSITIVE: []
|
|
847
961
|
end
|
|
848
962
|
|
|
849
963
|
class UpdateEphemerisRequest
|
|
850
|
-
attr_accessor enabled: bool
|
|
851
964
|
attr_accessor ephemeris_id: ::String
|
|
965
|
+
attr_accessor enabled: bool
|
|
852
966
|
attr_accessor name: ::String
|
|
853
967
|
attr_accessor priority: ::Integer
|
|
854
968
|
SENSITIVE: []
|
|
855
969
|
end
|
|
856
970
|
|
|
857
971
|
class UpdateMissionProfileRequest
|
|
858
|
-
attr_accessor contact_post_pass_duration_seconds: ::Integer
|
|
859
|
-
attr_accessor contact_pre_pass_duration_seconds: ::Integer
|
|
860
|
-
attr_accessor dataflow_edges: ::Array[::Array[::String]]
|
|
861
|
-
attr_accessor minimum_viable_contact_duration_seconds: ::Integer
|
|
862
972
|
attr_accessor mission_profile_id: ::String
|
|
863
973
|
attr_accessor name: ::String
|
|
974
|
+
attr_accessor contact_pre_pass_duration_seconds: ::Integer
|
|
975
|
+
attr_accessor contact_post_pass_duration_seconds: ::Integer
|
|
976
|
+
attr_accessor minimum_viable_contact_duration_seconds: ::Integer
|
|
977
|
+
attr_accessor dataflow_edges: ::Array[::Array[::String]]
|
|
978
|
+
attr_accessor tracking_config_arn: ::String
|
|
864
979
|
attr_accessor streams_kms_key: Types::KmsKey
|
|
865
980
|
attr_accessor streams_kms_role: ::String
|
|
866
|
-
attr_accessor tracking_config_arn: ::String
|
|
867
981
|
SENSITIVE: []
|
|
868
982
|
end
|
|
869
983
|
|
|
870
984
|
class UplinkEchoConfig
|
|
871
|
-
attr_accessor antenna_uplink_config_arn: ::String
|
|
872
985
|
attr_accessor enabled: bool
|
|
986
|
+
attr_accessor antenna_uplink_config_arn: ::String
|
|
873
987
|
SENSITIVE: []
|
|
874
988
|
end
|
|
875
989
|
|