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.
data/sig/client.rbs CHANGED
@@ -90,77 +90,77 @@ module Aws
90
90
 
91
91
  interface _CreateConfigResponseSuccess
92
92
  include ::Seahorse::Client::_ResponseSuccess[Types::ConfigIdResponse]
93
- def config_arn: () -> ::String
94
93
  def config_id: () -> ::String
95
94
  def config_type: () -> ("antenna-downlink" | "antenna-downlink-demod-decode" | "tracking" | "dataflow-endpoint" | "antenna-uplink" | "uplink-echo" | "s3-recording")
95
+ def config_arn: () -> ::String
96
96
  end
97
97
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#create_config-instance_method
98
98
  def create_config: (
99
+ name: ::String,
99
100
  config_data: {
100
101
  antenna_downlink_config: {
101
102
  spectrum_config: {
102
- bandwidth: {
103
- units: ("GHz" | "MHz" | "kHz"),
104
- value: ::Float
105
- },
106
103
  center_frequency: {
107
- units: ("GHz" | "MHz" | "kHz"),
108
- value: ::Float
104
+ value: ::Float,
105
+ units: ("GHz" | "MHz" | "kHz")
106
+ },
107
+ bandwidth: {
108
+ value: ::Float,
109
+ units: ("GHz" | "MHz" | "kHz")
109
110
  },
110
111
  polarization: ("RIGHT_HAND" | "LEFT_HAND" | "NONE")?
111
112
  }
112
113
  }?,
114
+ tracking_config: {
115
+ autotrack: ("REQUIRED" | "PREFERRED" | "REMOVED")
116
+ }?,
117
+ dataflow_endpoint_config: {
118
+ dataflow_endpoint_name: ::String,
119
+ dataflow_endpoint_region: ::String?
120
+ }?,
113
121
  antenna_downlink_demod_decode_config: {
114
- decode_config: {
115
- unvalidated_json: ::String
116
- },
117
- demodulation_config: {
118
- unvalidated_json: ::String
119
- },
120
122
  spectrum_config: {
121
- bandwidth: {
122
- units: ("GHz" | "MHz" | "kHz"),
123
- value: ::Float
124
- },
125
123
  center_frequency: {
126
- units: ("GHz" | "MHz" | "kHz"),
127
- value: ::Float
124
+ value: ::Float,
125
+ units: ("GHz" | "MHz" | "kHz")
126
+ },
127
+ bandwidth: {
128
+ value: ::Float,
129
+ units: ("GHz" | "MHz" | "kHz")
128
130
  },
129
131
  polarization: ("RIGHT_HAND" | "LEFT_HAND" | "NONE")?
132
+ },
133
+ demodulation_config: {
134
+ unvalidated_json: ::String
135
+ },
136
+ decode_config: {
137
+ unvalidated_json: ::String
130
138
  }
131
139
  }?,
132
140
  antenna_uplink_config: {
141
+ transmit_disabled: bool?,
133
142
  spectrum_config: {
134
143
  center_frequency: {
135
- units: ("GHz" | "MHz" | "kHz"),
136
- value: ::Float
144
+ value: ::Float,
145
+ units: ("GHz" | "MHz" | "kHz")
137
146
  },
138
147
  polarization: ("RIGHT_HAND" | "LEFT_HAND" | "NONE")?
139
148
  },
140
149
  target_eirp: {
141
- units: ("dBW"),
142
- value: ::Float
143
- },
144
- transmit_disabled: bool?
150
+ value: ::Float,
151
+ units: ("dBW")
152
+ }
145
153
  }?,
146
- dataflow_endpoint_config: {
147
- dataflow_endpoint_name: ::String,
148
- dataflow_endpoint_region: ::String?
154
+ uplink_echo_config: {
155
+ enabled: bool,
156
+ antenna_uplink_config_arn: ::String
149
157
  }?,
150
158
  s3_recording_config: {
151
159
  bucket_arn: ::String,
152
- prefix: ::String?,
153
- role_arn: ::String
154
- }?,
155
- tracking_config: {
156
- autotrack: ("REQUIRED" | "PREFERRED" | "REMOVED")
157
- }?,
158
- uplink_echo_config: {
159
- antenna_uplink_config_arn: ::String,
160
- enabled: bool
160
+ role_arn: ::String,
161
+ prefix: ::String?
161
162
  }?
162
163
  },
163
- name: ::String,
164
164
  ?tags: Hash[::String, ::String]
165
165
  ) -> _CreateConfigResponseSuccess
166
166
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConfigResponseSuccess
@@ -171,51 +171,51 @@ module Aws
171
171
  end
172
172
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#create_dataflow_endpoint_group-instance_method
173
173
  def create_dataflow_endpoint_group: (
174
- ?contact_post_pass_duration_seconds: ::Integer,
175
- ?contact_pre_pass_duration_seconds: ::Integer,
176
174
  endpoint_details: Array[
177
175
  {
176
+ security_details: {
177
+ subnet_ids: Array[::String],
178
+ security_group_ids: Array[::String],
179
+ role_arn: ::String
180
+ }?,
181
+ endpoint: {
182
+ name: ::String?,
183
+ address: {
184
+ name: ::String,
185
+ port: ::Integer
186
+ }?,
187
+ status: ("created" | "creating" | "deleted" | "deleting" | "failed")?,
188
+ mtu: ::Integer?
189
+ }?,
178
190
  aws_ground_station_agent_endpoint: {
179
- agent_status: ("SUCCESS" | "FAILED" | "ACTIVE" | "INACTIVE")?,
180
- audit_results: ("HEALTHY" | "UNHEALTHY")?,
191
+ name: ::String,
181
192
  egress_address: {
182
- mtu: ::Integer?,
183
193
  socket_address: {
184
194
  name: ::String,
185
195
  port: ::Integer
186
- }
196
+ },
197
+ mtu: ::Integer?
187
198
  },
188
199
  ingress_address: {
189
- mtu: ::Integer?,
190
200
  socket_address: {
191
201
  name: ::String,
192
202
  port_range: {
193
- maximum: ::Integer,
194
- minimum: ::Integer
203
+ minimum: ::Integer,
204
+ maximum: ::Integer
195
205
  }
196
- }
206
+ },
207
+ mtu: ::Integer?
197
208
  },
198
- name: ::String
199
- }?,
200
- endpoint: {
201
- address: {
202
- name: ::String,
203
- port: ::Integer
204
- }?,
205
- mtu: ::Integer?,
206
- name: ::String?,
207
- status: ("created" | "creating" | "deleted" | "deleting" | "failed")?
209
+ agent_status: ("SUCCESS" | "FAILED" | "ACTIVE" | "INACTIVE")?,
210
+ audit_results: ("HEALTHY" | "UNHEALTHY")?
208
211
  }?,
209
- health_reasons: Array[("NO_REGISTERED_AGENT" | "INVALID_IP_OWNERSHIP" | "NOT_AUTHORIZED_TO_CREATE_SLR" | "UNVERIFIED_IP_OWNERSHIP" | "INITIALIZING_DATAPLANE" | "DATAPLANE_FAILURE" | "HEALTHY")]?,
210
212
  health_status: ("HEALTHY" | "UNHEALTHY")?,
211
- security_details: {
212
- role_arn: ::String,
213
- security_group_ids: Array[::String],
214
- subnet_ids: Array[::String]
215
- }?
213
+ health_reasons: Array[("NO_REGISTERED_AGENT" | "INVALID_IP_OWNERSHIP" | "NOT_AUTHORIZED_TO_CREATE_SLR" | "UNVERIFIED_IP_OWNERSHIP" | "INITIALIZING_DATAPLANE" | "DATAPLANE_FAILURE" | "HEALTHY")]?
216
214
  },
217
215
  ],
218
- ?tags: Hash[::String, ::String]
216
+ ?tags: Hash[::String, ::String],
217
+ ?contact_pre_pass_duration_seconds: ::Integer,
218
+ ?contact_post_pass_duration_seconds: ::Integer
219
219
  ) -> _CreateDataflowEndpointGroupResponseSuccess
220
220
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDataflowEndpointGroupResponseSuccess
221
221
 
@@ -225,16 +225,13 @@ module Aws
225
225
  end
226
226
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#create_ephemeris-instance_method
227
227
  def create_ephemeris: (
228
+ ?satellite_id: ::String,
228
229
  ?enabled: bool,
230
+ ?priority: ::Integer,
231
+ ?expiration_time: ::Time,
232
+ name: ::String,
233
+ ?kms_key_arn: ::String,
229
234
  ?ephemeris: {
230
- oem: {
231
- oem_data: ::String?,
232
- s3_object: {
233
- bucket: ::String?,
234
- key: ::String?,
235
- version: ::String?
236
- }?
237
- }?,
238
235
  tle: {
239
236
  s3_object: {
240
237
  bucket: ::String?,
@@ -246,18 +243,50 @@ module Aws
246
243
  tle_line_1: ::String,
247
244
  tle_line_2: ::String,
248
245
  valid_time_range: {
249
- end_time: ::Time,
250
- start_time: ::Time
246
+ start_time: ::Time,
247
+ end_time: ::Time
251
248
  }
252
249
  },
253
250
  ]?
251
+ }?,
252
+ oem: {
253
+ s3_object: {
254
+ bucket: ::String?,
255
+ key: ::String?,
256
+ version: ::String?
257
+ }?,
258
+ oem_data: ::String?
259
+ }?,
260
+ az_el: {
261
+ ground_station: ::String,
262
+ data: {
263
+ s3_object: {
264
+ bucket: ::String?,
265
+ key: ::String?,
266
+ version: ::String?
267
+ }?,
268
+ az_el_data: {
269
+ angle_unit: ("DEGREE_ANGLE" | "RADIAN"),
270
+ az_el_segment_list: Array[
271
+ {
272
+ reference_epoch: ::Time,
273
+ valid_time_range: {
274
+ start_time: ::Time,
275
+ end_time: ::Time
276
+ },
277
+ az_el_list: Array[
278
+ {
279
+ dt: ::Float,
280
+ az: ::Float,
281
+ el: ::Float
282
+ },
283
+ ]
284
+ },
285
+ ]
286
+ }?
287
+ }
254
288
  }?
255
289
  },
256
- ?expiration_time: ::Time,
257
- ?kms_key_arn: ::String,
258
- name: ::String,
259
- ?priority: ::Integer,
260
- satellite_id: ::String,
261
290
  ?tags: Hash[::String, ::String]
262
291
  ) -> _CreateEphemerisResponseSuccess
263
292
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEphemerisResponseSuccess
@@ -268,29 +297,29 @@ module Aws
268
297
  end
269
298
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#create_mission_profile-instance_method
270
299
  def create_mission_profile: (
271
- ?contact_post_pass_duration_seconds: ::Integer,
300
+ name: ::String,
272
301
  ?contact_pre_pass_duration_seconds: ::Integer,
302
+ ?contact_post_pass_duration_seconds: ::Integer,
303
+ minimum_viable_contact_duration_seconds: ::Integer,
273
304
  dataflow_edges: Array[
274
305
  Array[::String],
275
306
  ],
276
- minimum_viable_contact_duration_seconds: ::Integer,
277
- name: ::String,
307
+ tracking_config_arn: ::String,
308
+ ?tags: Hash[::String, ::String],
278
309
  ?streams_kms_key: {
310
+ kms_key_arn: ::String?,
279
311
  kms_alias_arn: ::String?,
280
- kms_alias_name: ::String?,
281
- kms_key_arn: ::String?
312
+ kms_alias_name: ::String?
282
313
  },
283
- ?streams_kms_role: ::String,
284
- ?tags: Hash[::String, ::String],
285
- tracking_config_arn: ::String
314
+ ?streams_kms_role: ::String
286
315
  ) -> _CreateMissionProfileResponseSuccess
287
316
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMissionProfileResponseSuccess
288
317
 
289
318
  interface _DeleteConfigResponseSuccess
290
319
  include ::Seahorse::Client::_ResponseSuccess[Types::ConfigIdResponse]
291
- def config_arn: () -> ::String
292
320
  def config_id: () -> ::String
293
321
  def config_type: () -> ("antenna-downlink" | "antenna-downlink-demod-decode" | "tracking" | "dataflow-endpoint" | "antenna-uplink" | "uplink-echo" | "s3-recording")
322
+ def config_arn: () -> ::String
294
323
  end
295
324
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#delete_config-instance_method
296
325
  def delete_config: (
@@ -332,21 +361,23 @@ module Aws
332
361
  interface _DescribeContactResponseSuccess
333
362
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeContactResponse]
334
363
  def contact_id: () -> ::String
335
- def contact_status: () -> ("SCHEDULING" | "FAILED_TO_SCHEDULE" | "SCHEDULED" | "CANCELLED" | "AWS_CANCELLED" | "PREPASS" | "PASS" | "POSTPASS" | "COMPLETED" | "FAILED" | "AVAILABLE" | "CANCELLING" | "AWS_FAILED")
336
- def dataflow_list: () -> ::Array[Types::DataflowDetail]
337
- def end_time: () -> ::Time
338
- def error_message: () -> ::String
339
- def ground_station: () -> ::String
340
- def maximum_elevation: () -> Types::Elevation
341
364
  def mission_profile_arn: () -> ::String
342
- def post_pass_end_time: () -> ::Time
343
- def pre_pass_start_time: () -> ::Time
344
- def region: () -> ::String
345
365
  def satellite_arn: () -> ::String
346
366
  def start_time: () -> ::Time
367
+ def end_time: () -> ::Time
368
+ def pre_pass_start_time: () -> ::Time
369
+ def post_pass_end_time: () -> ::Time
370
+ def ground_station: () -> ::String
371
+ def contact_status: () -> ("SCHEDULING" | "FAILED_TO_SCHEDULE" | "SCHEDULED" | "CANCELLED" | "AWS_CANCELLED" | "PREPASS" | "PASS" | "POSTPASS" | "COMPLETED" | "FAILED" | "AVAILABLE" | "CANCELLING" | "AWS_FAILED")
372
+ def error_message: () -> ::String
373
+ def maximum_elevation: () -> Types::Elevation
347
374
  def tags: () -> ::Hash[::String, ::String]
348
- def visibility_end_time: () -> ::Time
375
+ def region: () -> ::String
376
+ def dataflow_list: () -> ::Array[Types::DataflowDetail]
349
377
  def visibility_start_time: () -> ::Time
378
+ def visibility_end_time: () -> ::Time
379
+ def tracking_overrides: () -> Types::TrackingOverrides
380
+ def ephemeris: () -> Types::EphemerisResponseData
350
381
  end
351
382
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#describe_contact-instance_method
352
383
  def describe_contact: (
@@ -356,16 +387,17 @@ module Aws
356
387
 
357
388
  interface _DescribeEphemerisResponseSuccess
358
389
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEphemerisResponse]
359
- def creation_time: () -> ::Time
360
- def enabled: () -> bool
361
390
  def ephemeris_id: () -> ::String
362
- def invalid_reason: () -> ("METADATA_INVALID" | "TIME_RANGE_INVALID" | "TRAJECTORY_INVALID" | "KMS_KEY_INVALID" | "VALIDATION_ERROR")
363
- def name: () -> ::String
364
- def priority: () -> ::Integer
365
391
  def satellite_id: () -> ::String
366
392
  def status: () -> ("VALIDATING" | "INVALID" | "ERROR" | "ENABLED" | "DISABLED" | "EXPIRED")
367
- def supplied_data: () -> Types::EphemerisTypeDescription
393
+ def priority: () -> ::Integer
394
+ def creation_time: () -> ::Time
395
+ def enabled: () -> bool
396
+ def name: () -> ::String
368
397
  def tags: () -> ::Hash[::String, ::String]
398
+ def supplied_data: () -> Types::EphemerisTypeDescription
399
+ def invalid_reason: () -> ("METADATA_INVALID" | "TIME_RANGE_INVALID" | "TRAJECTORY_INVALID" | "KMS_KEY_INVALID" | "VALIDATION_ERROR")
400
+ def error_reasons: () -> ::Array[Types::EphemerisErrorReason]
369
401
  end
370
402
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#describe_ephemeris-instance_method
371
403
  def describe_ephemeris: (
@@ -386,11 +418,11 @@ module Aws
386
418
 
387
419
  interface _GetConfigResponseSuccess
388
420
  include ::Seahorse::Client::_ResponseSuccess[Types::GetConfigResponse]
389
- def config_arn: () -> ::String
390
- def config_data: () -> Types::ConfigTypeData
391
421
  def config_id: () -> ::String
392
- def config_type: () -> ("antenna-downlink" | "antenna-downlink-demod-decode" | "tracking" | "dataflow-endpoint" | "antenna-uplink" | "uplink-echo" | "s3-recording")
422
+ def config_arn: () -> ::String
393
423
  def name: () -> ::String
424
+ def config_type: () -> ("antenna-downlink" | "antenna-downlink-demod-decode" | "tracking" | "dataflow-endpoint" | "antenna-uplink" | "uplink-echo" | "s3-recording")
425
+ def config_data: () -> Types::ConfigTypeData
394
426
  def tags: () -> ::Hash[::String, ::String]
395
427
  end
396
428
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#get_config-instance_method
@@ -402,12 +434,12 @@ module Aws
402
434
 
403
435
  interface _GetDataflowEndpointGroupResponseSuccess
404
436
  include ::Seahorse::Client::_ResponseSuccess[Types::GetDataflowEndpointGroupResponse]
405
- def contact_post_pass_duration_seconds: () -> ::Integer
406
- def contact_pre_pass_duration_seconds: () -> ::Integer
407
- def dataflow_endpoint_group_arn: () -> ::String
408
437
  def dataflow_endpoint_group_id: () -> ::String
438
+ def dataflow_endpoint_group_arn: () -> ::String
409
439
  def endpoints_details: () -> ::Array[Types::EndpointDetails]
410
440
  def tags: () -> ::Hash[::String, ::String]
441
+ def contact_pre_pass_duration_seconds: () -> ::Integer
442
+ def contact_post_pass_duration_seconds: () -> ::Integer
411
443
  end
412
444
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#get_dataflow_endpoint_group-instance_method
413
445
  def get_dataflow_endpoint_group: (
@@ -417,11 +449,11 @@ module Aws
417
449
 
418
450
  interface _GetMinuteUsageResponseSuccess
419
451
  include ::Seahorse::Client::_ResponseSuccess[Types::GetMinuteUsageResponse]
420
- def estimated_minutes_remaining: () -> ::Integer
421
452
  def is_reserved_minutes_customer: () -> bool
422
453
  def total_reserved_minute_allocation: () -> ::Integer
423
- def total_scheduled_minutes: () -> ::Integer
424
454
  def upcoming_minutes_scheduled: () -> ::Integer
455
+ def total_scheduled_minutes: () -> ::Integer
456
+ def estimated_minutes_remaining: () -> ::Integer
425
457
  end
426
458
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#get_minute_usage-instance_method
427
459
  def get_minute_usage: (
@@ -432,18 +464,18 @@ module Aws
432
464
 
433
465
  interface _GetMissionProfileResponseSuccess
434
466
  include ::Seahorse::Client::_ResponseSuccess[Types::GetMissionProfileResponse]
435
- def contact_post_pass_duration_seconds: () -> ::Integer
436
- def contact_pre_pass_duration_seconds: () -> ::Integer
437
- def dataflow_edges: () -> ::Array[::Array[::String]]
438
- def minimum_viable_contact_duration_seconds: () -> ::Integer
439
- def mission_profile_arn: () -> ::String
440
467
  def mission_profile_id: () -> ::String
468
+ def mission_profile_arn: () -> ::String
441
469
  def name: () -> ::String
442
470
  def region: () -> ::String
471
+ def contact_pre_pass_duration_seconds: () -> ::Integer
472
+ def contact_post_pass_duration_seconds: () -> ::Integer
473
+ def minimum_viable_contact_duration_seconds: () -> ::Integer
474
+ def dataflow_edges: () -> ::Array[::Array[::String]]
475
+ def tracking_config_arn: () -> ::String
476
+ def tags: () -> ::Hash[::String, ::String]
443
477
  def streams_kms_key: () -> Types::KmsKey
444
478
  def streams_kms_role: () -> ::String
445
- def tags: () -> ::Hash[::String, ::String]
446
- def tracking_config_arn: () -> ::String
447
479
  end
448
480
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#get_mission_profile-instance_method
449
481
  def get_mission_profile: (
@@ -453,11 +485,11 @@ module Aws
453
485
 
454
486
  interface _GetSatelliteResponseSuccess
455
487
  include ::Seahorse::Client::_ResponseSuccess[Types::GetSatelliteResponse]
456
- def current_ephemeris: () -> Types::EphemerisMetaData
457
- def ground_stations: () -> ::Array[::String]
458
- def norad_satellite_id: () -> ::Integer
459
- def satellite_arn: () -> ::String
460
488
  def satellite_id: () -> ::String
489
+ def satellite_arn: () -> ::String
490
+ def norad_satellite_id: () -> ::Integer
491
+ def ground_stations: () -> ::Array[::String]
492
+ def current_ephemeris: () -> Types::EphemerisMetaData
461
493
  end
462
494
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#get_satellite-instance_method
463
495
  def get_satellite: (
@@ -467,8 +499,8 @@ module Aws
467
499
 
468
500
  interface _ListConfigsResponseSuccess
469
501
  include ::Seahorse::Client::_ResponseSuccess[Types::ListConfigsResponse]
470
- def config_list: () -> ::Array[Types::ConfigListItem]
471
502
  def next_token: () -> ::String
503
+ def config_list: () -> ::Array[Types::ConfigListItem]
472
504
  end
473
505
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#list_configs-instance_method
474
506
  def list_configs: (
@@ -479,26 +511,31 @@ module Aws
479
511
 
480
512
  interface _ListContactsResponseSuccess
481
513
  include ::Seahorse::Client::_ResponseSuccess[Types::ListContactsResponse]
482
- def contact_list: () -> ::Array[Types::ContactData]
483
514
  def next_token: () -> ::String
515
+ def contact_list: () -> ::Array[Types::ContactData]
484
516
  end
485
517
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#list_contacts-instance_method
486
518
  def list_contacts: (
487
- end_time: ::Time,
488
- ?ground_station: ::String,
489
519
  ?max_results: ::Integer,
490
- ?mission_profile_arn: ::String,
491
520
  ?next_token: ::String,
492
- ?satellite_arn: ::String,
521
+ status_list: Array[("SCHEDULING" | "FAILED_TO_SCHEDULE" | "SCHEDULED" | "CANCELLED" | "AWS_CANCELLED" | "PREPASS" | "PASS" | "POSTPASS" | "COMPLETED" | "FAILED" | "AVAILABLE" | "CANCELLING" | "AWS_FAILED")],
493
522
  start_time: ::Time,
494
- status_list: Array[("SCHEDULING" | "FAILED_TO_SCHEDULE" | "SCHEDULED" | "CANCELLED" | "AWS_CANCELLED" | "PREPASS" | "PASS" | "POSTPASS" | "COMPLETED" | "FAILED" | "AVAILABLE" | "CANCELLING" | "AWS_FAILED")]
523
+ end_time: ::Time,
524
+ ?ground_station: ::String,
525
+ ?satellite_arn: ::String,
526
+ ?mission_profile_arn: ::String,
527
+ ?ephemeris: {
528
+ az_el: {
529
+ id: ::String
530
+ }?
531
+ }
495
532
  ) -> _ListContactsResponseSuccess
496
533
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListContactsResponseSuccess
497
534
 
498
535
  interface _ListDataflowEndpointGroupsResponseSuccess
499
536
  include ::Seahorse::Client::_ResponseSuccess[Types::ListDataflowEndpointGroupsResponse]
500
- def dataflow_endpoint_group_list: () -> ::Array[Types::DataflowEndpointListItem]
501
537
  def next_token: () -> ::String
538
+ def dataflow_endpoint_group_list: () -> ::Array[Types::DataflowEndpointListItem]
502
539
  end
503
540
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#list_dataflow_endpoint_groups-instance_method
504
541
  def list_dataflow_endpoint_groups: (
@@ -509,37 +546,38 @@ module Aws
509
546
 
510
547
  interface _ListEphemeridesResponseSuccess
511
548
  include ::Seahorse::Client::_ResponseSuccess[Types::ListEphemeridesResponse]
512
- def ephemerides: () -> ::Array[Types::EphemerisItem]
513
549
  def next_token: () -> ::String
550
+ def ephemerides: () -> ::Array[Types::EphemerisItem]
514
551
  end
515
552
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#list_ephemerides-instance_method
516
553
  def list_ephemerides: (
554
+ ?satellite_id: ::String,
555
+ ?ephemeris_type: ("TLE" | "OEM" | "AZ_EL" | "SERVICE_MANAGED"),
556
+ start_time: ::Time,
517
557
  end_time: ::Time,
558
+ ?status_list: Array[("VALIDATING" | "INVALID" | "ERROR" | "ENABLED" | "DISABLED" | "EXPIRED")],
518
559
  ?max_results: ::Integer,
519
- ?next_token: ::String,
520
- satellite_id: ::String,
521
- start_time: ::Time,
522
- ?status_list: Array[("VALIDATING" | "INVALID" | "ERROR" | "ENABLED" | "DISABLED" | "EXPIRED")]
560
+ ?next_token: ::String
523
561
  ) -> _ListEphemeridesResponseSuccess
524
562
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEphemeridesResponseSuccess
525
563
 
526
564
  interface _ListGroundStationsResponseSuccess
527
565
  include ::Seahorse::Client::_ResponseSuccess[Types::ListGroundStationsResponse]
528
- def ground_station_list: () -> ::Array[Types::GroundStationData]
529
566
  def next_token: () -> ::String
567
+ def ground_station_list: () -> ::Array[Types::GroundStationData]
530
568
  end
531
569
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#list_ground_stations-instance_method
532
570
  def list_ground_stations: (
571
+ ?satellite_id: ::String,
533
572
  ?max_results: ::Integer,
534
- ?next_token: ::String,
535
- ?satellite_id: ::String
573
+ ?next_token: ::String
536
574
  ) -> _ListGroundStationsResponseSuccess
537
575
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListGroundStationsResponseSuccess
538
576
 
539
577
  interface _ListMissionProfilesResponseSuccess
540
578
  include ::Seahorse::Client::_ResponseSuccess[Types::ListMissionProfilesResponse]
541
- def mission_profile_list: () -> ::Array[Types::MissionProfileListItem]
542
579
  def next_token: () -> ::String
580
+ def mission_profile_list: () -> ::Array[Types::MissionProfileListItem]
543
581
  end
544
582
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#list_mission_profiles-instance_method
545
583
  def list_mission_profiles: (
@@ -576,23 +614,23 @@ module Aws
576
614
  end
577
615
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#register_agent-instance_method
578
616
  def register_agent: (
617
+ discovery_data: {
618
+ public_ip_addresses: Array[::String],
619
+ private_ip_addresses: Array[::String],
620
+ capability_arns: Array[::String]
621
+ },
579
622
  agent_details: {
580
- agent_cpu_cores: Array[::Integer]?,
581
623
  agent_version: ::String,
624
+ instance_id: ::String,
625
+ instance_type: ::String,
626
+ reserved_cpu_cores: Array[::Integer]?,
627
+ agent_cpu_cores: Array[::Integer]?,
582
628
  component_versions: Array[
583
629
  {
584
630
  component_type: ::String,
585
631
  versions: Array[::String]
586
632
  },
587
- ],
588
- instance_id: ::String,
589
- instance_type: ::String,
590
- reserved_cpu_cores: Array[::Integer]?
591
- },
592
- discovery_data: {
593
- capability_arns: Array[::String],
594
- private_ip_addresses: Array[::String],
595
- public_ip_addresses: Array[::String]
633
+ ]
596
634
  },
597
635
  ?tags: Hash[::String, ::String]
598
636
  ) -> _RegisterAgentResponseSuccess
@@ -604,12 +642,19 @@ module Aws
604
642
  end
605
643
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#reserve_contact-instance_method
606
644
  def reserve_contact: (
607
- end_time: ::Time,
608
- ground_station: ::String,
609
645
  mission_profile_arn: ::String,
610
- satellite_arn: ::String,
646
+ ?satellite_arn: ::String,
611
647
  start_time: ::Time,
612
- ?tags: Hash[::String, ::String]
648
+ end_time: ::Time,
649
+ ground_station: ::String,
650
+ ?tags: Hash[::String, ::String],
651
+ ?tracking_overrides: {
652
+ program_track_settings: {
653
+ az_el: {
654
+ ephemeris_id: ::String
655
+ }?
656
+ }
657
+ }
613
658
  ) -> _ReserveContactResponseSuccess
614
659
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ReserveContactResponseSuccess
615
660
 
@@ -640,100 +685,100 @@ module Aws
640
685
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#update_agent_status-instance_method
641
686
  def update_agent_status: (
642
687
  agent_id: ::String,
688
+ task_id: ::String,
643
689
  aggregate_status: {
644
- signature_map: Hash[::String, bool]?,
645
- status: ("SUCCESS" | "FAILED" | "ACTIVE" | "INACTIVE")
690
+ status: ("SUCCESS" | "FAILED" | "ACTIVE" | "INACTIVE"),
691
+ signature_map: Hash[::String, bool]?
646
692
  },
647
693
  component_statuses: Array[
648
694
  {
649
- bytes_received: ::Integer?,
650
- bytes_sent: ::Integer?,
651
- capability_arn: ::String,
652
695
  component_type: ::String,
653
- dataflow_id: ::String,
696
+ capability_arn: ::String,
697
+ status: ("SUCCESS" | "FAILED" | "ACTIVE" | "INACTIVE"),
698
+ bytes_sent: ::Integer?,
699
+ bytes_received: ::Integer?,
654
700
  packets_dropped: ::Integer?,
655
- status: ("SUCCESS" | "FAILED" | "ACTIVE" | "INACTIVE")
701
+ dataflow_id: ::String
656
702
  },
657
- ],
658
- task_id: ::String
703
+ ]
659
704
  ) -> _UpdateAgentStatusResponseSuccess
660
705
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAgentStatusResponseSuccess
661
706
 
662
707
  interface _UpdateConfigResponseSuccess
663
708
  include ::Seahorse::Client::_ResponseSuccess[Types::ConfigIdResponse]
664
- def config_arn: () -> ::String
665
709
  def config_id: () -> ::String
666
710
  def config_type: () -> ("antenna-downlink" | "antenna-downlink-demod-decode" | "tracking" | "dataflow-endpoint" | "antenna-uplink" | "uplink-echo" | "s3-recording")
711
+ def config_arn: () -> ::String
667
712
  end
668
713
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#update_config-instance_method
669
714
  def update_config: (
715
+ config_id: ::String,
716
+ name: ::String,
717
+ config_type: ("antenna-downlink" | "antenna-downlink-demod-decode" | "tracking" | "dataflow-endpoint" | "antenna-uplink" | "uplink-echo" | "s3-recording"),
670
718
  config_data: {
671
719
  antenna_downlink_config: {
672
720
  spectrum_config: {
673
- bandwidth: {
674
- units: ("GHz" | "MHz" | "kHz"),
675
- value: ::Float
676
- },
677
721
  center_frequency: {
678
- units: ("GHz" | "MHz" | "kHz"),
679
- value: ::Float
722
+ value: ::Float,
723
+ units: ("GHz" | "MHz" | "kHz")
724
+ },
725
+ bandwidth: {
726
+ value: ::Float,
727
+ units: ("GHz" | "MHz" | "kHz")
680
728
  },
681
729
  polarization: ("RIGHT_HAND" | "LEFT_HAND" | "NONE")?
682
730
  }
683
731
  }?,
732
+ tracking_config: {
733
+ autotrack: ("REQUIRED" | "PREFERRED" | "REMOVED")
734
+ }?,
735
+ dataflow_endpoint_config: {
736
+ dataflow_endpoint_name: ::String,
737
+ dataflow_endpoint_region: ::String?
738
+ }?,
684
739
  antenna_downlink_demod_decode_config: {
685
- decode_config: {
686
- unvalidated_json: ::String
687
- },
688
- demodulation_config: {
689
- unvalidated_json: ::String
690
- },
691
740
  spectrum_config: {
692
- bandwidth: {
693
- units: ("GHz" | "MHz" | "kHz"),
694
- value: ::Float
695
- },
696
741
  center_frequency: {
697
- units: ("GHz" | "MHz" | "kHz"),
698
- value: ::Float
742
+ value: ::Float,
743
+ units: ("GHz" | "MHz" | "kHz")
744
+ },
745
+ bandwidth: {
746
+ value: ::Float,
747
+ units: ("GHz" | "MHz" | "kHz")
699
748
  },
700
749
  polarization: ("RIGHT_HAND" | "LEFT_HAND" | "NONE")?
750
+ },
751
+ demodulation_config: {
752
+ unvalidated_json: ::String
753
+ },
754
+ decode_config: {
755
+ unvalidated_json: ::String
701
756
  }
702
757
  }?,
703
758
  antenna_uplink_config: {
759
+ transmit_disabled: bool?,
704
760
  spectrum_config: {
705
761
  center_frequency: {
706
- units: ("GHz" | "MHz" | "kHz"),
707
- value: ::Float
762
+ value: ::Float,
763
+ units: ("GHz" | "MHz" | "kHz")
708
764
  },
709
765
  polarization: ("RIGHT_HAND" | "LEFT_HAND" | "NONE")?
710
766
  },
711
767
  target_eirp: {
712
- units: ("dBW"),
713
- value: ::Float
714
- },
715
- transmit_disabled: bool?
768
+ value: ::Float,
769
+ units: ("dBW")
770
+ }
716
771
  }?,
717
- dataflow_endpoint_config: {
718
- dataflow_endpoint_name: ::String,
719
- dataflow_endpoint_region: ::String?
772
+ uplink_echo_config: {
773
+ enabled: bool,
774
+ antenna_uplink_config_arn: ::String
720
775
  }?,
721
776
  s3_recording_config: {
722
777
  bucket_arn: ::String,
723
- prefix: ::String?,
724
- role_arn: ::String
725
- }?,
726
- tracking_config: {
727
- autotrack: ("REQUIRED" | "PREFERRED" | "REMOVED")
728
- }?,
729
- uplink_echo_config: {
730
- antenna_uplink_config_arn: ::String,
731
- enabled: bool
778
+ role_arn: ::String,
779
+ prefix: ::String?
732
780
  }?
733
- },
734
- config_id: ::String,
735
- config_type: ("antenna-downlink" | "antenna-downlink-demod-decode" | "tracking" | "dataflow-endpoint" | "antenna-uplink" | "uplink-echo" | "s3-recording"),
736
- name: ::String
781
+ }
737
782
  ) -> _UpdateConfigResponseSuccess
738
783
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConfigResponseSuccess
739
784
 
@@ -743,8 +788,8 @@ module Aws
743
788
  end
744
789
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#update_ephemeris-instance_method
745
790
  def update_ephemeris: (
746
- enabled: bool,
747
791
  ephemeris_id: ::String,
792
+ enabled: bool,
748
793
  ?name: ::String,
749
794
  ?priority: ::Integer
750
795
  ) -> _UpdateEphemerisResponseSuccess
@@ -756,21 +801,21 @@ module Aws
756
801
  end
757
802
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#update_mission_profile-instance_method
758
803
  def update_mission_profile: (
759
- ?contact_post_pass_duration_seconds: ::Integer,
804
+ mission_profile_id: ::String,
805
+ ?name: ::String,
760
806
  ?contact_pre_pass_duration_seconds: ::Integer,
807
+ ?contact_post_pass_duration_seconds: ::Integer,
808
+ ?minimum_viable_contact_duration_seconds: ::Integer,
761
809
  ?dataflow_edges: Array[
762
810
  Array[::String],
763
811
  ],
764
- ?minimum_viable_contact_duration_seconds: ::Integer,
765
- mission_profile_id: ::String,
766
- ?name: ::String,
812
+ ?tracking_config_arn: ::String,
767
813
  ?streams_kms_key: {
814
+ kms_key_arn: ::String?,
768
815
  kms_alias_arn: ::String?,
769
- kms_alias_name: ::String?,
770
- kms_key_arn: ::String?
816
+ kms_alias_name: ::String?
771
817
  },
772
- ?streams_kms_role: ::String,
773
- ?tracking_config_arn: ::String
818
+ ?streams_kms_role: ::String
774
819
  ) -> _UpdateMissionProfileResponseSuccess
775
820
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateMissionProfileResponseSuccess
776
821