aws-sdk-groundstation 1.73.0 → 1.75.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-groundstation/client.rb +813 -488
- data/lib/aws-sdk-groundstation/client_api.rb +367 -153
- data/lib/aws-sdk-groundstation/endpoint_parameters.rb +4 -4
- data/lib/aws-sdk-groundstation/errors.rb +37 -0
- data/lib/aws-sdk-groundstation/types.rb +1583 -789
- data/lib/aws-sdk-groundstation.rb +1 -1
- data/sig/client.rbs +387 -213
- data/sig/errors.rbs +7 -0
- data/sig/types.rbs +378 -154
- 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
|
+
SENSITIVE: []
|
|
58
|
+
end
|
|
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]
|
|
57
86
|
SENSITIVE: []
|
|
58
87
|
end
|
|
59
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,84 @@ 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
|
|
225
|
+
attr_accessor endpoint_details: ::Array[Types::EndpointDetails]
|
|
226
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
227
|
+
attr_accessor contact_pre_pass_duration_seconds: ::Integer
|
|
181
228
|
attr_accessor contact_post_pass_duration_seconds: ::Integer
|
|
229
|
+
SENSITIVE: []
|
|
230
|
+
end
|
|
231
|
+
|
|
232
|
+
class CreateDataflowEndpointGroupV2Request
|
|
233
|
+
attr_accessor endpoints: ::Array[Types::CreateEndpointDetails]
|
|
182
234
|
attr_accessor contact_pre_pass_duration_seconds: ::Integer
|
|
183
|
-
attr_accessor
|
|
235
|
+
attr_accessor contact_post_pass_duration_seconds: ::Integer
|
|
184
236
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
185
237
|
SENSITIVE: []
|
|
186
238
|
end
|
|
187
239
|
|
|
240
|
+
class CreateDataflowEndpointGroupV2Response
|
|
241
|
+
attr_accessor dataflow_endpoint_group_id: ::String
|
|
242
|
+
SENSITIVE: []
|
|
243
|
+
end
|
|
244
|
+
|
|
245
|
+
class CreateEndpointDetails
|
|
246
|
+
attr_accessor uplink_aws_ground_station_agent_endpoint: Types::UplinkAwsGroundStationAgentEndpoint
|
|
247
|
+
attr_accessor downlink_aws_ground_station_agent_endpoint: Types::DownlinkAwsGroundStationAgentEndpoint
|
|
248
|
+
attr_accessor unknown: untyped
|
|
249
|
+
SENSITIVE: []
|
|
250
|
+
|
|
251
|
+
class UplinkAwsGroundStationAgentEndpoint < CreateEndpointDetails
|
|
252
|
+
end
|
|
253
|
+
class DownlinkAwsGroundStationAgentEndpoint < CreateEndpointDetails
|
|
254
|
+
end
|
|
255
|
+
class Unknown < CreateEndpointDetails
|
|
256
|
+
end
|
|
257
|
+
end
|
|
258
|
+
|
|
188
259
|
class CreateEphemerisRequest
|
|
260
|
+
attr_accessor satellite_id: ::String
|
|
189
261
|
attr_accessor enabled: bool
|
|
190
|
-
attr_accessor
|
|
262
|
+
attr_accessor priority: ::Integer
|
|
191
263
|
attr_accessor expiration_time: ::Time
|
|
192
|
-
attr_accessor kms_key_arn: ::String
|
|
193
264
|
attr_accessor name: ::String
|
|
194
|
-
attr_accessor
|
|
195
|
-
attr_accessor
|
|
265
|
+
attr_accessor kms_key_arn: ::String
|
|
266
|
+
attr_accessor ephemeris: Types::EphemerisData
|
|
196
267
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
197
268
|
SENSITIVE: []
|
|
198
269
|
end
|
|
199
270
|
|
|
200
271
|
class CreateMissionProfileRequest
|
|
201
|
-
attr_accessor
|
|
272
|
+
attr_accessor name: ::String
|
|
202
273
|
attr_accessor contact_pre_pass_duration_seconds: ::Integer
|
|
203
|
-
attr_accessor
|
|
274
|
+
attr_accessor contact_post_pass_duration_seconds: ::Integer
|
|
204
275
|
attr_accessor minimum_viable_contact_duration_seconds: ::Integer
|
|
205
|
-
attr_accessor
|
|
276
|
+
attr_accessor dataflow_edges: ::Array[::Array[::String]]
|
|
277
|
+
attr_accessor tracking_config_arn: ::String
|
|
278
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
206
279
|
attr_accessor streams_kms_key: Types::KmsKey
|
|
207
280
|
attr_accessor streams_kms_role: ::String
|
|
208
|
-
attr_accessor tags: ::Hash[::String, ::String]
|
|
209
|
-
attr_accessor tracking_config_arn: ::String
|
|
210
281
|
SENSITIVE: []
|
|
211
282
|
end
|
|
212
283
|
|
|
213
284
|
class DataflowDetail
|
|
285
|
+
attr_accessor source: Types::Source
|
|
214
286
|
attr_accessor destination: Types::Destination
|
|
215
287
|
attr_accessor error_message: ::String
|
|
216
|
-
attr_accessor source: Types::Source
|
|
217
288
|
SENSITIVE: []
|
|
218
289
|
end
|
|
219
290
|
|
|
220
291
|
class DataflowEndpoint
|
|
221
|
-
attr_accessor address: Types::SocketAddress
|
|
222
|
-
attr_accessor mtu: ::Integer
|
|
223
292
|
attr_accessor name: ::String
|
|
293
|
+
attr_accessor address: Types::SocketAddress
|
|
224
294
|
attr_accessor status: ("created" | "creating" | "deleted" | "deleting" | "failed")
|
|
295
|
+
attr_accessor mtu: ::Integer
|
|
225
296
|
SENSITIVE: []
|
|
226
297
|
end
|
|
227
298
|
|
|
@@ -237,8 +308,8 @@ module Aws::GroundStation
|
|
|
237
308
|
end
|
|
238
309
|
|
|
239
310
|
class DataflowEndpointListItem
|
|
240
|
-
attr_accessor dataflow_endpoint_group_arn: ::String
|
|
241
311
|
attr_accessor dataflow_endpoint_group_id: ::String
|
|
312
|
+
attr_accessor dataflow_endpoint_group_arn: ::String
|
|
242
313
|
SENSITIVE: []
|
|
243
314
|
end
|
|
244
315
|
|
|
@@ -286,21 +357,23 @@ module Aws::GroundStation
|
|
|
286
357
|
|
|
287
358
|
class DescribeContactResponse
|
|
288
359
|
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
360
|
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
361
|
attr_accessor satellite_arn: ::String
|
|
300
362
|
attr_accessor start_time: ::Time
|
|
363
|
+
attr_accessor end_time: ::Time
|
|
364
|
+
attr_accessor pre_pass_start_time: ::Time
|
|
365
|
+
attr_accessor post_pass_end_time: ::Time
|
|
366
|
+
attr_accessor ground_station: ::String
|
|
367
|
+
attr_accessor contact_status: ("SCHEDULING" | "FAILED_TO_SCHEDULE" | "SCHEDULED" | "CANCELLED" | "AWS_CANCELLED" | "PREPASS" | "PASS" | "POSTPASS" | "COMPLETED" | "FAILED" | "AVAILABLE" | "CANCELLING" | "AWS_FAILED")
|
|
368
|
+
attr_accessor error_message: ::String
|
|
369
|
+
attr_accessor maximum_elevation: Types::Elevation
|
|
301
370
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
302
|
-
attr_accessor
|
|
371
|
+
attr_accessor region: ::String
|
|
372
|
+
attr_accessor dataflow_list: ::Array[Types::DataflowDetail]
|
|
303
373
|
attr_accessor visibility_start_time: ::Time
|
|
374
|
+
attr_accessor visibility_end_time: ::Time
|
|
375
|
+
attr_accessor tracking_overrides: Types::TrackingOverrides
|
|
376
|
+
attr_accessor ephemeris: Types::EphemerisResponseData
|
|
304
377
|
SENSITIVE: []
|
|
305
378
|
end
|
|
306
379
|
|
|
@@ -310,122 +383,186 @@ module Aws::GroundStation
|
|
|
310
383
|
end
|
|
311
384
|
|
|
312
385
|
class DescribeEphemerisResponse
|
|
313
|
-
attr_accessor creation_time: ::Time
|
|
314
|
-
attr_accessor enabled: bool
|
|
315
386
|
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
387
|
attr_accessor satellite_id: ::String
|
|
320
388
|
attr_accessor status: ("VALIDATING" | "INVALID" | "ERROR" | "ENABLED" | "DISABLED" | "EXPIRED")
|
|
321
|
-
attr_accessor
|
|
389
|
+
attr_accessor priority: ::Integer
|
|
390
|
+
attr_accessor creation_time: ::Time
|
|
391
|
+
attr_accessor enabled: bool
|
|
392
|
+
attr_accessor name: ::String
|
|
322
393
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
394
|
+
attr_accessor supplied_data: Types::EphemerisTypeDescription
|
|
395
|
+
attr_accessor invalid_reason: ("METADATA_INVALID" | "TIME_RANGE_INVALID" | "TRAJECTORY_INVALID" | "KMS_KEY_INVALID" | "VALIDATION_ERROR")
|
|
396
|
+
attr_accessor error_reasons: ::Array[Types::EphemerisErrorReason]
|
|
323
397
|
SENSITIVE: []
|
|
324
398
|
end
|
|
325
399
|
|
|
326
400
|
class Destination
|
|
327
|
-
attr_accessor config_details: Types::ConfigDetails
|
|
328
|
-
attr_accessor config_id: ::String
|
|
329
401
|
attr_accessor config_type: ("antenna-downlink" | "antenna-downlink-demod-decode" | "tracking" | "dataflow-endpoint" | "antenna-uplink" | "uplink-echo" | "s3-recording")
|
|
402
|
+
attr_accessor config_id: ::String
|
|
403
|
+
attr_accessor config_details: Types::ConfigDetails
|
|
330
404
|
attr_accessor dataflow_destination_region: ::String
|
|
331
405
|
SENSITIVE: []
|
|
332
406
|
end
|
|
333
407
|
|
|
334
408
|
class DiscoveryData
|
|
335
|
-
attr_accessor capability_arns: ::Array[::String]
|
|
336
|
-
attr_accessor private_ip_addresses: ::Array[::String]
|
|
337
409
|
attr_accessor public_ip_addresses: ::Array[::String]
|
|
410
|
+
attr_accessor private_ip_addresses: ::Array[::String]
|
|
411
|
+
attr_accessor capability_arns: ::Array[::String]
|
|
412
|
+
SENSITIVE: []
|
|
413
|
+
end
|
|
414
|
+
|
|
415
|
+
class DownlinkAwsGroundStationAgentEndpoint
|
|
416
|
+
attr_accessor name: ::String
|
|
417
|
+
attr_accessor dataflow_details: Types::DownlinkDataflowDetails
|
|
418
|
+
SENSITIVE: []
|
|
419
|
+
end
|
|
420
|
+
|
|
421
|
+
class DownlinkAwsGroundStationAgentEndpointDetails
|
|
422
|
+
attr_accessor name: ::String
|
|
423
|
+
attr_accessor dataflow_details: Types::DownlinkDataflowDetails
|
|
424
|
+
attr_accessor agent_status: ("SUCCESS" | "FAILED" | "ACTIVE" | "INACTIVE")
|
|
425
|
+
attr_accessor audit_results: ("HEALTHY" | "UNHEALTHY")
|
|
338
426
|
SENSITIVE: []
|
|
339
427
|
end
|
|
340
428
|
|
|
429
|
+
class DownlinkConnectionDetails
|
|
430
|
+
attr_accessor agent_ip_and_port_address: Types::RangedConnectionDetails
|
|
431
|
+
attr_accessor egress_address_and_port: Types::ConnectionDetails
|
|
432
|
+
SENSITIVE: []
|
|
433
|
+
end
|
|
434
|
+
|
|
435
|
+
class DownlinkDataflowDetails
|
|
436
|
+
attr_accessor agent_connection_details: Types::DownlinkConnectionDetails
|
|
437
|
+
attr_accessor unknown: untyped
|
|
438
|
+
SENSITIVE: []
|
|
439
|
+
|
|
440
|
+
class AgentConnectionDetails < DownlinkDataflowDetails
|
|
441
|
+
end
|
|
442
|
+
class Unknown < DownlinkDataflowDetails
|
|
443
|
+
end
|
|
444
|
+
end
|
|
445
|
+
|
|
341
446
|
class Eirp
|
|
342
|
-
attr_accessor units: ("dBW")
|
|
343
447
|
attr_accessor value: ::Float
|
|
448
|
+
attr_accessor units: ("dBW")
|
|
344
449
|
SENSITIVE: []
|
|
345
450
|
end
|
|
346
451
|
|
|
347
452
|
class Elevation
|
|
348
|
-
attr_accessor unit: ("DEGREE_ANGLE" | "RADIAN")
|
|
349
453
|
attr_accessor value: ::Float
|
|
454
|
+
attr_accessor unit: ("DEGREE_ANGLE" | "RADIAN")
|
|
350
455
|
SENSITIVE: []
|
|
351
456
|
end
|
|
352
457
|
|
|
353
458
|
class EndpointDetails
|
|
354
|
-
attr_accessor
|
|
459
|
+
attr_accessor security_details: Types::SecurityDetails
|
|
355
460
|
attr_accessor endpoint: Types::DataflowEndpoint
|
|
356
|
-
attr_accessor
|
|
461
|
+
attr_accessor aws_ground_station_agent_endpoint: Types::AwsGroundStationAgentEndpoint
|
|
462
|
+
attr_accessor uplink_aws_ground_station_agent_endpoint: Types::UplinkAwsGroundStationAgentEndpointDetails
|
|
463
|
+
attr_accessor downlink_aws_ground_station_agent_endpoint: Types::DownlinkAwsGroundStationAgentEndpointDetails
|
|
357
464
|
attr_accessor health_status: ("HEALTHY" | "UNHEALTHY")
|
|
358
|
-
attr_accessor
|
|
465
|
+
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
466
|
SENSITIVE: []
|
|
360
467
|
end
|
|
361
468
|
|
|
362
469
|
class EphemerisData
|
|
363
|
-
attr_accessor oem: Types::OEMEphemeris
|
|
364
470
|
attr_accessor tle: Types::TLEEphemeris
|
|
471
|
+
attr_accessor oem: Types::OEMEphemeris
|
|
472
|
+
attr_accessor az_el: Types::AzElEphemeris
|
|
365
473
|
attr_accessor unknown: untyped
|
|
366
474
|
SENSITIVE: []
|
|
367
475
|
|
|
476
|
+
class Tle < EphemerisData
|
|
477
|
+
end
|
|
368
478
|
class Oem < EphemerisData
|
|
369
479
|
end
|
|
370
|
-
class
|
|
480
|
+
class AzEl < EphemerisData
|
|
371
481
|
end
|
|
372
482
|
class Unknown < EphemerisData
|
|
373
483
|
end
|
|
374
484
|
end
|
|
375
485
|
|
|
376
486
|
class EphemerisDescription
|
|
377
|
-
attr_accessor ephemeris_data: ::String
|
|
378
487
|
attr_accessor source_s3_object: Types::S3Object
|
|
488
|
+
attr_accessor ephemeris_data: ::String
|
|
379
489
|
SENSITIVE: []
|
|
380
490
|
end
|
|
381
491
|
|
|
492
|
+
class EphemerisErrorReason
|
|
493
|
+
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")
|
|
494
|
+
attr_accessor error_message: ::String
|
|
495
|
+
SENSITIVE: []
|
|
496
|
+
end
|
|
497
|
+
|
|
498
|
+
class EphemerisFilter
|
|
499
|
+
attr_accessor az_el: Types::AzElEphemerisFilter
|
|
500
|
+
attr_accessor unknown: untyped
|
|
501
|
+
SENSITIVE: []
|
|
502
|
+
|
|
503
|
+
class AzEl < EphemerisFilter
|
|
504
|
+
end
|
|
505
|
+
class Unknown < EphemerisFilter
|
|
506
|
+
end
|
|
507
|
+
end
|
|
508
|
+
|
|
382
509
|
class EphemerisIdResponse
|
|
383
510
|
attr_accessor ephemeris_id: ::String
|
|
384
511
|
SENSITIVE: []
|
|
385
512
|
end
|
|
386
513
|
|
|
387
514
|
class EphemerisItem
|
|
388
|
-
attr_accessor creation_time: ::Time
|
|
389
|
-
attr_accessor enabled: bool
|
|
390
515
|
attr_accessor ephemeris_id: ::String
|
|
391
|
-
attr_accessor
|
|
516
|
+
attr_accessor ephemeris_type: ("TLE" | "OEM" | "AZ_EL" | "SERVICE_MANAGED")
|
|
517
|
+
attr_accessor status: ("VALIDATING" | "INVALID" | "ERROR" | "ENABLED" | "DISABLED" | "EXPIRED")
|
|
392
518
|
attr_accessor priority: ::Integer
|
|
519
|
+
attr_accessor enabled: bool
|
|
520
|
+
attr_accessor creation_time: ::Time
|
|
521
|
+
attr_accessor name: ::String
|
|
393
522
|
attr_accessor source_s3_object: Types::S3Object
|
|
394
|
-
attr_accessor status: ("VALIDATING" | "INVALID" | "ERROR" | "ENABLED" | "DISABLED" | "EXPIRED")
|
|
395
523
|
SENSITIVE: []
|
|
396
524
|
end
|
|
397
525
|
|
|
398
526
|
class EphemerisMetaData
|
|
527
|
+
attr_accessor source: ("CUSTOMER_PROVIDED" | "SPACE_TRACK")
|
|
399
528
|
attr_accessor ephemeris_id: ::String
|
|
400
529
|
attr_accessor epoch: ::Time
|
|
401
530
|
attr_accessor name: ::String
|
|
402
|
-
|
|
531
|
+
SENSITIVE: []
|
|
532
|
+
end
|
|
533
|
+
|
|
534
|
+
class EphemerisResponseData
|
|
535
|
+
attr_accessor ephemeris_id: ::String
|
|
536
|
+
attr_accessor ephemeris_type: ("TLE" | "OEM" | "AZ_EL" | "SERVICE_MANAGED")
|
|
403
537
|
SENSITIVE: []
|
|
404
538
|
end
|
|
405
539
|
|
|
406
540
|
class EphemerisTypeDescription
|
|
407
|
-
attr_accessor oem: Types::EphemerisDescription
|
|
408
541
|
attr_accessor tle: Types::EphemerisDescription
|
|
542
|
+
attr_accessor oem: Types::EphemerisDescription
|
|
543
|
+
attr_accessor az_el: Types::EphemerisDescription
|
|
409
544
|
attr_accessor unknown: untyped
|
|
410
545
|
SENSITIVE: []
|
|
411
546
|
|
|
547
|
+
class Tle < EphemerisTypeDescription
|
|
548
|
+
end
|
|
412
549
|
class Oem < EphemerisTypeDescription
|
|
413
550
|
end
|
|
414
|
-
class
|
|
551
|
+
class AzEl < EphemerisTypeDescription
|
|
415
552
|
end
|
|
416
553
|
class Unknown < EphemerisTypeDescription
|
|
417
554
|
end
|
|
418
555
|
end
|
|
419
556
|
|
|
420
557
|
class Frequency
|
|
421
|
-
attr_accessor units: ("GHz" | "MHz" | "kHz")
|
|
422
558
|
attr_accessor value: ::Float
|
|
559
|
+
attr_accessor units: ("GHz" | "MHz" | "kHz")
|
|
423
560
|
SENSITIVE: []
|
|
424
561
|
end
|
|
425
562
|
|
|
426
563
|
class FrequencyBandwidth
|
|
427
|
-
attr_accessor units: ("GHz" | "MHz" | "kHz")
|
|
428
564
|
attr_accessor value: ::Float
|
|
565
|
+
attr_accessor units: ("GHz" | "MHz" | "kHz")
|
|
429
566
|
SENSITIVE: []
|
|
430
567
|
end
|
|
431
568
|
|
|
@@ -440,6 +577,19 @@ module Aws::GroundStation
|
|
|
440
577
|
SENSITIVE: []
|
|
441
578
|
end
|
|
442
579
|
|
|
580
|
+
class GetAgentTaskResponseUrlRequest
|
|
581
|
+
attr_accessor agent_id: ::String
|
|
582
|
+
attr_accessor task_id: ::String
|
|
583
|
+
SENSITIVE: []
|
|
584
|
+
end
|
|
585
|
+
|
|
586
|
+
class GetAgentTaskResponseUrlResponse
|
|
587
|
+
attr_accessor agent_id: ::String
|
|
588
|
+
attr_accessor task_id: ::String
|
|
589
|
+
attr_accessor presigned_log_url: ::String
|
|
590
|
+
SENSITIVE: []
|
|
591
|
+
end
|
|
592
|
+
|
|
443
593
|
class GetConfigRequest
|
|
444
594
|
attr_accessor config_id: ::String
|
|
445
595
|
attr_accessor config_type: ("antenna-downlink" | "antenna-downlink-demod-decode" | "tracking" | "dataflow-endpoint" | "antenna-uplink" | "uplink-echo" | "s3-recording")
|
|
@@ -447,11 +597,11 @@ module Aws::GroundStation
|
|
|
447
597
|
end
|
|
448
598
|
|
|
449
599
|
class GetConfigResponse
|
|
450
|
-
attr_accessor config_arn: ::String
|
|
451
|
-
attr_accessor config_data: Types::ConfigTypeData
|
|
452
600
|
attr_accessor config_id: ::String
|
|
453
|
-
attr_accessor
|
|
601
|
+
attr_accessor config_arn: ::String
|
|
454
602
|
attr_accessor name: ::String
|
|
603
|
+
attr_accessor config_type: ("antenna-downlink" | "antenna-downlink-demod-decode" | "tracking" | "dataflow-endpoint" | "antenna-uplink" | "uplink-echo" | "s3-recording")
|
|
604
|
+
attr_accessor config_data: Types::ConfigTypeData
|
|
455
605
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
456
606
|
SENSITIVE: []
|
|
457
607
|
end
|
|
@@ -462,12 +612,12 @@ module Aws::GroundStation
|
|
|
462
612
|
end
|
|
463
613
|
|
|
464
614
|
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
615
|
attr_accessor dataflow_endpoint_group_id: ::String
|
|
616
|
+
attr_accessor dataflow_endpoint_group_arn: ::String
|
|
469
617
|
attr_accessor endpoints_details: ::Array[Types::EndpointDetails]
|
|
470
618
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
619
|
+
attr_accessor contact_pre_pass_duration_seconds: ::Integer
|
|
620
|
+
attr_accessor contact_post_pass_duration_seconds: ::Integer
|
|
471
621
|
SENSITIVE: []
|
|
472
622
|
end
|
|
473
623
|
|
|
@@ -478,11 +628,11 @@ module Aws::GroundStation
|
|
|
478
628
|
end
|
|
479
629
|
|
|
480
630
|
class GetMinuteUsageResponse
|
|
481
|
-
attr_accessor estimated_minutes_remaining: ::Integer
|
|
482
631
|
attr_accessor is_reserved_minutes_customer: bool
|
|
483
632
|
attr_accessor total_reserved_minute_allocation: ::Integer
|
|
484
|
-
attr_accessor total_scheduled_minutes: ::Integer
|
|
485
633
|
attr_accessor upcoming_minutes_scheduled: ::Integer
|
|
634
|
+
attr_accessor total_scheduled_minutes: ::Integer
|
|
635
|
+
attr_accessor estimated_minutes_remaining: ::Integer
|
|
486
636
|
SENSITIVE: []
|
|
487
637
|
end
|
|
488
638
|
|
|
@@ -492,18 +642,18 @@ module Aws::GroundStation
|
|
|
492
642
|
end
|
|
493
643
|
|
|
494
644
|
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
645
|
attr_accessor mission_profile_id: ::String
|
|
646
|
+
attr_accessor mission_profile_arn: ::String
|
|
501
647
|
attr_accessor name: ::String
|
|
502
648
|
attr_accessor region: ::String
|
|
649
|
+
attr_accessor contact_pre_pass_duration_seconds: ::Integer
|
|
650
|
+
attr_accessor contact_post_pass_duration_seconds: ::Integer
|
|
651
|
+
attr_accessor minimum_viable_contact_duration_seconds: ::Integer
|
|
652
|
+
attr_accessor dataflow_edges: ::Array[::Array[::String]]
|
|
653
|
+
attr_accessor tracking_config_arn: ::String
|
|
654
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
503
655
|
attr_accessor streams_kms_key: Types::KmsKey
|
|
504
656
|
attr_accessor streams_kms_role: ::String
|
|
505
|
-
attr_accessor tags: ::Hash[::String, ::String]
|
|
506
|
-
attr_accessor tracking_config_arn: ::String
|
|
507
657
|
SENSITIVE: []
|
|
508
658
|
end
|
|
509
659
|
|
|
@@ -513,11 +663,11 @@ module Aws::GroundStation
|
|
|
513
663
|
end
|
|
514
664
|
|
|
515
665
|
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
666
|
attr_accessor satellite_id: ::String
|
|
667
|
+
attr_accessor satellite_arn: ::String
|
|
668
|
+
attr_accessor norad_satellite_id: ::Integer
|
|
669
|
+
attr_accessor ground_stations: ::Array[::String]
|
|
670
|
+
attr_accessor current_ephemeris: Types::EphemerisMetaData
|
|
521
671
|
SENSITIVE: []
|
|
522
672
|
end
|
|
523
673
|
|
|
@@ -528,9 +678,15 @@ module Aws::GroundStation
|
|
|
528
678
|
SENSITIVE: []
|
|
529
679
|
end
|
|
530
680
|
|
|
681
|
+
class ISO8601TimeRange
|
|
682
|
+
attr_accessor start_time: ::Time
|
|
683
|
+
attr_accessor end_time: ::Time
|
|
684
|
+
SENSITIVE: []
|
|
685
|
+
end
|
|
686
|
+
|
|
531
687
|
class IntegerRange
|
|
532
|
-
attr_accessor maximum: ::Integer
|
|
533
688
|
attr_accessor minimum: ::Integer
|
|
689
|
+
attr_accessor maximum: ::Integer
|
|
534
690
|
SENSITIVE: []
|
|
535
691
|
end
|
|
536
692
|
|
|
@@ -541,18 +697,18 @@ module Aws::GroundStation
|
|
|
541
697
|
end
|
|
542
698
|
|
|
543
699
|
class KmsKey
|
|
700
|
+
attr_accessor kms_key_arn: ::String
|
|
544
701
|
attr_accessor kms_alias_arn: ::String
|
|
545
702
|
attr_accessor kms_alias_name: ::String
|
|
546
|
-
attr_accessor kms_key_arn: ::String
|
|
547
703
|
attr_accessor unknown: untyped
|
|
548
704
|
SENSITIVE: []
|
|
549
705
|
|
|
706
|
+
class KmsKeyArn < KmsKey
|
|
707
|
+
end
|
|
550
708
|
class KmsAliasArn < KmsKey
|
|
551
709
|
end
|
|
552
710
|
class KmsAliasName < KmsKey
|
|
553
711
|
end
|
|
554
|
-
class KmsKeyArn < KmsKey
|
|
555
|
-
end
|
|
556
712
|
class Unknown < KmsKey
|
|
557
713
|
end
|
|
558
714
|
end
|
|
@@ -564,26 +720,27 @@ module Aws::GroundStation
|
|
|
564
720
|
end
|
|
565
721
|
|
|
566
722
|
class ListConfigsResponse
|
|
567
|
-
attr_accessor config_list: ::Array[Types::ConfigListItem]
|
|
568
723
|
attr_accessor next_token: ::String
|
|
724
|
+
attr_accessor config_list: ::Array[Types::ConfigListItem]
|
|
569
725
|
SENSITIVE: []
|
|
570
726
|
end
|
|
571
727
|
|
|
572
728
|
class ListContactsRequest
|
|
573
|
-
attr_accessor end_time: ::Time
|
|
574
|
-
attr_accessor ground_station: ::String
|
|
575
729
|
attr_accessor max_results: ::Integer
|
|
576
|
-
attr_accessor mission_profile_arn: ::String
|
|
577
730
|
attr_accessor next_token: ::String
|
|
578
|
-
attr_accessor satellite_arn: ::String
|
|
579
|
-
attr_accessor start_time: ::Time
|
|
580
731
|
attr_accessor status_list: ::Array[("SCHEDULING" | "FAILED_TO_SCHEDULE" | "SCHEDULED" | "CANCELLED" | "AWS_CANCELLED" | "PREPASS" | "PASS" | "POSTPASS" | "COMPLETED" | "FAILED" | "AVAILABLE" | "CANCELLING" | "AWS_FAILED")]
|
|
732
|
+
attr_accessor start_time: ::Time
|
|
733
|
+
attr_accessor end_time: ::Time
|
|
734
|
+
attr_accessor ground_station: ::String
|
|
735
|
+
attr_accessor satellite_arn: ::String
|
|
736
|
+
attr_accessor mission_profile_arn: ::String
|
|
737
|
+
attr_accessor ephemeris: Types::EphemerisFilter
|
|
581
738
|
SENSITIVE: []
|
|
582
739
|
end
|
|
583
740
|
|
|
584
741
|
class ListContactsResponse
|
|
585
|
-
attr_accessor contact_list: ::Array[Types::ContactData]
|
|
586
742
|
attr_accessor next_token: ::String
|
|
743
|
+
attr_accessor contact_list: ::Array[Types::ContactData]
|
|
587
744
|
SENSITIVE: []
|
|
588
745
|
end
|
|
589
746
|
|
|
@@ -594,37 +751,38 @@ module Aws::GroundStation
|
|
|
594
751
|
end
|
|
595
752
|
|
|
596
753
|
class ListDataflowEndpointGroupsResponse
|
|
597
|
-
attr_accessor dataflow_endpoint_group_list: ::Array[Types::DataflowEndpointListItem]
|
|
598
754
|
attr_accessor next_token: ::String
|
|
755
|
+
attr_accessor dataflow_endpoint_group_list: ::Array[Types::DataflowEndpointListItem]
|
|
599
756
|
SENSITIVE: []
|
|
600
757
|
end
|
|
601
758
|
|
|
602
759
|
class ListEphemeridesRequest
|
|
603
|
-
attr_accessor end_time: ::Time
|
|
604
|
-
attr_accessor max_results: ::Integer
|
|
605
|
-
attr_accessor next_token: ::String
|
|
606
760
|
attr_accessor satellite_id: ::String
|
|
761
|
+
attr_accessor ephemeris_type: ("TLE" | "OEM" | "AZ_EL" | "SERVICE_MANAGED")
|
|
607
762
|
attr_accessor start_time: ::Time
|
|
763
|
+
attr_accessor end_time: ::Time
|
|
608
764
|
attr_accessor status_list: ::Array[("VALIDATING" | "INVALID" | "ERROR" | "ENABLED" | "DISABLED" | "EXPIRED")]
|
|
765
|
+
attr_accessor max_results: ::Integer
|
|
766
|
+
attr_accessor next_token: ::String
|
|
609
767
|
SENSITIVE: []
|
|
610
768
|
end
|
|
611
769
|
|
|
612
770
|
class ListEphemeridesResponse
|
|
613
|
-
attr_accessor ephemerides: ::Array[Types::EphemerisItem]
|
|
614
771
|
attr_accessor next_token: ::String
|
|
772
|
+
attr_accessor ephemerides: ::Array[Types::EphemerisItem]
|
|
615
773
|
SENSITIVE: []
|
|
616
774
|
end
|
|
617
775
|
|
|
618
776
|
class ListGroundStationsRequest
|
|
777
|
+
attr_accessor satellite_id: ::String
|
|
619
778
|
attr_accessor max_results: ::Integer
|
|
620
779
|
attr_accessor next_token: ::String
|
|
621
|
-
attr_accessor satellite_id: ::String
|
|
622
780
|
SENSITIVE: []
|
|
623
781
|
end
|
|
624
782
|
|
|
625
783
|
class ListGroundStationsResponse
|
|
626
|
-
attr_accessor ground_station_list: ::Array[Types::GroundStationData]
|
|
627
784
|
attr_accessor next_token: ::String
|
|
785
|
+
attr_accessor ground_station_list: ::Array[Types::GroundStationData]
|
|
628
786
|
SENSITIVE: []
|
|
629
787
|
end
|
|
630
788
|
|
|
@@ -635,8 +793,8 @@ module Aws::GroundStation
|
|
|
635
793
|
end
|
|
636
794
|
|
|
637
795
|
class ListMissionProfilesResponse
|
|
638
|
-
attr_accessor mission_profile_list: ::Array[Types::MissionProfileListItem]
|
|
639
796
|
attr_accessor next_token: ::String
|
|
797
|
+
attr_accessor mission_profile_list: ::Array[Types::MissionProfileListItem]
|
|
640
798
|
SENSITIVE: []
|
|
641
799
|
end
|
|
642
800
|
|
|
@@ -668,22 +826,33 @@ module Aws::GroundStation
|
|
|
668
826
|
end
|
|
669
827
|
|
|
670
828
|
class MissionProfileListItem
|
|
671
|
-
attr_accessor mission_profile_arn: ::String
|
|
672
829
|
attr_accessor mission_profile_id: ::String
|
|
673
|
-
attr_accessor
|
|
830
|
+
attr_accessor mission_profile_arn: ::String
|
|
674
831
|
attr_accessor region: ::String
|
|
832
|
+
attr_accessor name: ::String
|
|
675
833
|
SENSITIVE: []
|
|
676
834
|
end
|
|
677
835
|
|
|
678
836
|
class OEMEphemeris
|
|
679
|
-
attr_accessor oem_data: ::String
|
|
680
837
|
attr_accessor s3_object: Types::S3Object
|
|
838
|
+
attr_accessor oem_data: ::String
|
|
839
|
+
SENSITIVE: []
|
|
840
|
+
end
|
|
841
|
+
|
|
842
|
+
class ProgramTrackSettings
|
|
843
|
+
attr_accessor az_el: Types::AzElProgramTrackSettings
|
|
844
|
+
attr_accessor unknown: untyped
|
|
681
845
|
SENSITIVE: []
|
|
846
|
+
|
|
847
|
+
class AzEl < ProgramTrackSettings
|
|
848
|
+
end
|
|
849
|
+
class Unknown < ProgramTrackSettings
|
|
850
|
+
end
|
|
682
851
|
end
|
|
683
852
|
|
|
684
853
|
class RangedConnectionDetails
|
|
685
|
-
attr_accessor mtu: ::Integer
|
|
686
854
|
attr_accessor socket_address: Types::RangedSocketAddress
|
|
855
|
+
attr_accessor mtu: ::Integer
|
|
687
856
|
SENSITIVE: []
|
|
688
857
|
end
|
|
689
858
|
|
|
@@ -694,8 +863,8 @@ module Aws::GroundStation
|
|
|
694
863
|
end
|
|
695
864
|
|
|
696
865
|
class RegisterAgentRequest
|
|
697
|
-
attr_accessor agent_details: Types::AgentDetails
|
|
698
866
|
attr_accessor discovery_data: Types::DiscoveryData
|
|
867
|
+
attr_accessor agent_details: Types::AgentDetails
|
|
699
868
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
700
869
|
SENSITIVE: []
|
|
701
870
|
end
|
|
@@ -706,12 +875,18 @@ module Aws::GroundStation
|
|
|
706
875
|
end
|
|
707
876
|
|
|
708
877
|
class ReserveContactRequest
|
|
709
|
-
attr_accessor end_time: ::Time
|
|
710
|
-
attr_accessor ground_station: ::String
|
|
711
878
|
attr_accessor mission_profile_arn: ::String
|
|
712
879
|
attr_accessor satellite_arn: ::String
|
|
713
880
|
attr_accessor start_time: ::Time
|
|
881
|
+
attr_accessor end_time: ::Time
|
|
882
|
+
attr_accessor ground_station: ::String
|
|
714
883
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
884
|
+
attr_accessor tracking_overrides: Types::TrackingOverrides
|
|
885
|
+
SENSITIVE: []
|
|
886
|
+
end
|
|
887
|
+
|
|
888
|
+
class ResourceInUseException
|
|
889
|
+
attr_accessor message: ::String
|
|
715
890
|
SENSITIVE: []
|
|
716
891
|
end
|
|
717
892
|
|
|
@@ -735,8 +910,8 @@ module Aws::GroundStation
|
|
|
735
910
|
|
|
736
911
|
class S3RecordingConfig
|
|
737
912
|
attr_accessor bucket_arn: ::String
|
|
738
|
-
attr_accessor prefix: ::String
|
|
739
913
|
attr_accessor role_arn: ::String
|
|
914
|
+
attr_accessor prefix: ::String
|
|
740
915
|
SENSITIVE: []
|
|
741
916
|
end
|
|
742
917
|
|
|
@@ -747,18 +922,24 @@ module Aws::GroundStation
|
|
|
747
922
|
end
|
|
748
923
|
|
|
749
924
|
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
925
|
attr_accessor satellite_id: ::String
|
|
926
|
+
attr_accessor satellite_arn: ::String
|
|
927
|
+
attr_accessor norad_satellite_id: ::Integer
|
|
928
|
+
attr_accessor ground_stations: ::Array[::String]
|
|
929
|
+
attr_accessor current_ephemeris: Types::EphemerisMetaData
|
|
755
930
|
SENSITIVE: []
|
|
756
931
|
end
|
|
757
932
|
|
|
758
933
|
class SecurityDetails
|
|
759
|
-
attr_accessor role_arn: ::String
|
|
760
|
-
attr_accessor security_group_ids: ::Array[::String]
|
|
761
934
|
attr_accessor subnet_ids: ::Array[::String]
|
|
935
|
+
attr_accessor security_group_ids: ::Array[::String]
|
|
936
|
+
attr_accessor role_arn: ::String
|
|
937
|
+
SENSITIVE: []
|
|
938
|
+
end
|
|
939
|
+
|
|
940
|
+
class ServiceQuotaExceededException
|
|
941
|
+
attr_accessor message: ::String
|
|
942
|
+
attr_accessor parameter_name: ::String
|
|
762
943
|
SENSITIVE: []
|
|
763
944
|
end
|
|
764
945
|
|
|
@@ -769,16 +950,16 @@ module Aws::GroundStation
|
|
|
769
950
|
end
|
|
770
951
|
|
|
771
952
|
class Source
|
|
772
|
-
attr_accessor config_details: Types::ConfigDetails
|
|
773
|
-
attr_accessor config_id: ::String
|
|
774
953
|
attr_accessor config_type: ("antenna-downlink" | "antenna-downlink-demod-decode" | "tracking" | "dataflow-endpoint" | "antenna-uplink" | "uplink-echo" | "s3-recording")
|
|
954
|
+
attr_accessor config_id: ::String
|
|
955
|
+
attr_accessor config_details: Types::ConfigDetails
|
|
775
956
|
attr_accessor dataflow_source_region: ::String
|
|
776
957
|
SENSITIVE: []
|
|
777
958
|
end
|
|
778
959
|
|
|
779
960
|
class SpectrumConfig
|
|
780
|
-
attr_accessor bandwidth: Types::FrequencyBandwidth
|
|
781
961
|
attr_accessor center_frequency: Types::Frequency
|
|
962
|
+
attr_accessor bandwidth: Types::FrequencyBandwidth
|
|
782
963
|
attr_accessor polarization: ("RIGHT_HAND" | "LEFT_HAND" | "NONE")
|
|
783
964
|
SENSITIVE: []
|
|
784
965
|
end
|
|
@@ -805,9 +986,16 @@ module Aws::GroundStation
|
|
|
805
986
|
class TagResourceResponse < Aws::EmptyStructure
|
|
806
987
|
end
|
|
807
988
|
|
|
989
|
+
class TimeAzEl
|
|
990
|
+
attr_accessor dt: ::Float
|
|
991
|
+
attr_accessor az: ::Float
|
|
992
|
+
attr_accessor el: ::Float
|
|
993
|
+
SENSITIVE: []
|
|
994
|
+
end
|
|
995
|
+
|
|
808
996
|
class TimeRange
|
|
809
|
-
attr_accessor end_time: ::Time
|
|
810
997
|
attr_accessor start_time: ::Time
|
|
998
|
+
attr_accessor end_time: ::Time
|
|
811
999
|
SENSITIVE: []
|
|
812
1000
|
end
|
|
813
1001
|
|
|
@@ -816,6 +1004,11 @@ module Aws::GroundStation
|
|
|
816
1004
|
SENSITIVE: []
|
|
817
1005
|
end
|
|
818
1006
|
|
|
1007
|
+
class TrackingOverrides
|
|
1008
|
+
attr_accessor program_track_settings: Types::ProgramTrackSettings
|
|
1009
|
+
SENSITIVE: []
|
|
1010
|
+
end
|
|
1011
|
+
|
|
819
1012
|
class UntagResourceRequest
|
|
820
1013
|
attr_accessor resource_arn: ::String
|
|
821
1014
|
attr_accessor tag_keys: ::Array[::String]
|
|
@@ -827,9 +1020,9 @@ module Aws::GroundStation
|
|
|
827
1020
|
|
|
828
1021
|
class UpdateAgentStatusRequest
|
|
829
1022
|
attr_accessor agent_id: ::String
|
|
1023
|
+
attr_accessor task_id: ::String
|
|
830
1024
|
attr_accessor aggregate_status: Types::AggregateStatus
|
|
831
1025
|
attr_accessor component_statuses: ::Array[Types::ComponentStatusData]
|
|
832
|
-
attr_accessor task_id: ::String
|
|
833
1026
|
SENSITIVE: []
|
|
834
1027
|
end
|
|
835
1028
|
|
|
@@ -839,37 +1032,68 @@ module Aws::GroundStation
|
|
|
839
1032
|
end
|
|
840
1033
|
|
|
841
1034
|
class UpdateConfigRequest
|
|
842
|
-
attr_accessor config_data: Types::ConfigTypeData
|
|
843
1035
|
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
1036
|
attr_accessor name: ::String
|
|
1037
|
+
attr_accessor config_type: ("antenna-downlink" | "antenna-downlink-demod-decode" | "tracking" | "dataflow-endpoint" | "antenna-uplink" | "uplink-echo" | "s3-recording")
|
|
1038
|
+
attr_accessor config_data: Types::ConfigTypeData
|
|
846
1039
|
SENSITIVE: []
|
|
847
1040
|
end
|
|
848
1041
|
|
|
849
1042
|
class UpdateEphemerisRequest
|
|
850
|
-
attr_accessor enabled: bool
|
|
851
1043
|
attr_accessor ephemeris_id: ::String
|
|
1044
|
+
attr_accessor enabled: bool
|
|
852
1045
|
attr_accessor name: ::String
|
|
853
1046
|
attr_accessor priority: ::Integer
|
|
854
1047
|
SENSITIVE: []
|
|
855
1048
|
end
|
|
856
1049
|
|
|
857
1050
|
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
1051
|
attr_accessor mission_profile_id: ::String
|
|
863
1052
|
attr_accessor name: ::String
|
|
1053
|
+
attr_accessor contact_pre_pass_duration_seconds: ::Integer
|
|
1054
|
+
attr_accessor contact_post_pass_duration_seconds: ::Integer
|
|
1055
|
+
attr_accessor minimum_viable_contact_duration_seconds: ::Integer
|
|
1056
|
+
attr_accessor dataflow_edges: ::Array[::Array[::String]]
|
|
1057
|
+
attr_accessor tracking_config_arn: ::String
|
|
864
1058
|
attr_accessor streams_kms_key: Types::KmsKey
|
|
865
1059
|
attr_accessor streams_kms_role: ::String
|
|
866
|
-
attr_accessor tracking_config_arn: ::String
|
|
867
1060
|
SENSITIVE: []
|
|
868
1061
|
end
|
|
869
1062
|
|
|
1063
|
+
class UplinkAwsGroundStationAgentEndpoint
|
|
1064
|
+
attr_accessor name: ::String
|
|
1065
|
+
attr_accessor dataflow_details: Types::UplinkDataflowDetails
|
|
1066
|
+
SENSITIVE: []
|
|
1067
|
+
end
|
|
1068
|
+
|
|
1069
|
+
class UplinkAwsGroundStationAgentEndpointDetails
|
|
1070
|
+
attr_accessor name: ::String
|
|
1071
|
+
attr_accessor dataflow_details: Types::UplinkDataflowDetails
|
|
1072
|
+
attr_accessor agent_status: ("SUCCESS" | "FAILED" | "ACTIVE" | "INACTIVE")
|
|
1073
|
+
attr_accessor audit_results: ("HEALTHY" | "UNHEALTHY")
|
|
1074
|
+
SENSITIVE: []
|
|
1075
|
+
end
|
|
1076
|
+
|
|
1077
|
+
class UplinkConnectionDetails
|
|
1078
|
+
attr_accessor ingress_address_and_port: Types::ConnectionDetails
|
|
1079
|
+
attr_accessor agent_ip_and_port_address: Types::RangedConnectionDetails
|
|
1080
|
+
SENSITIVE: []
|
|
1081
|
+
end
|
|
1082
|
+
|
|
1083
|
+
class UplinkDataflowDetails
|
|
1084
|
+
attr_accessor agent_connection_details: Types::UplinkConnectionDetails
|
|
1085
|
+
attr_accessor unknown: untyped
|
|
1086
|
+
SENSITIVE: []
|
|
1087
|
+
|
|
1088
|
+
class AgentConnectionDetails < UplinkDataflowDetails
|
|
1089
|
+
end
|
|
1090
|
+
class Unknown < UplinkDataflowDetails
|
|
1091
|
+
end
|
|
1092
|
+
end
|
|
1093
|
+
|
|
870
1094
|
class UplinkEchoConfig
|
|
871
|
-
attr_accessor antenna_uplink_config_arn: ::String
|
|
872
1095
|
attr_accessor enabled: bool
|
|
1096
|
+
attr_accessor antenna_uplink_config_arn: ::String
|
|
873
1097
|
SENSITIVE: []
|
|
874
1098
|
end
|
|
875
1099
|
|