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.
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,70 +171,183 @@ 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
209
+ agent_status: ("SUCCESS" | "FAILED" | "ACTIVE" | "INACTIVE")?,
210
+ audit_results: ("HEALTHY" | "UNHEALTHY")?
199
211
  }?,
200
- endpoint: {
201
- address: {
202
- name: ::String,
203
- port: ::Integer
204
- }?,
205
- mtu: ::Integer?,
206
- name: ::String?,
207
- status: ("created" | "creating" | "deleted" | "deleting" | "failed")?
212
+ uplink_aws_ground_station_agent_endpoint: {
213
+ name: ::String,
214
+ dataflow_details: {
215
+ agent_connection_details: {
216
+ ingress_address_and_port: {
217
+ socket_address: {
218
+ name: ::String,
219
+ port: ::Integer
220
+ },
221
+ mtu: ::Integer?
222
+ },
223
+ agent_ip_and_port_address: {
224
+ socket_address: {
225
+ name: ::String,
226
+ port_range: {
227
+ minimum: ::Integer,
228
+ maximum: ::Integer
229
+ }
230
+ },
231
+ mtu: ::Integer?
232
+ }
233
+ }?
234
+ },
235
+ agent_status: ("SUCCESS" | "FAILED" | "ACTIVE" | "INACTIVE")?,
236
+ audit_results: ("HEALTHY" | "UNHEALTHY")?
237
+ }?,
238
+ downlink_aws_ground_station_agent_endpoint: {
239
+ name: ::String,
240
+ dataflow_details: {
241
+ agent_connection_details: {
242
+ agent_ip_and_port_address: {
243
+ socket_address: {
244
+ name: ::String,
245
+ port_range: {
246
+ minimum: ::Integer,
247
+ maximum: ::Integer
248
+ }
249
+ },
250
+ mtu: ::Integer?
251
+ },
252
+ egress_address_and_port: {
253
+ socket_address: {
254
+ name: ::String,
255
+ port: ::Integer
256
+ },
257
+ mtu: ::Integer?
258
+ }
259
+ }?
260
+ },
261
+ agent_status: ("SUCCESS" | "FAILED" | "ACTIVE" | "INACTIVE")?,
262
+ audit_results: ("HEALTHY" | "UNHEALTHY")?
208
263
  }?,
209
- health_reasons: Array[("NO_REGISTERED_AGENT" | "INVALID_IP_OWNERSHIP" | "NOT_AUTHORIZED_TO_CREATE_SLR" | "UNVERIFIED_IP_OWNERSHIP" | "INITIALIZING_DATAPLANE" | "DATAPLANE_FAILURE" | "HEALTHY")]?,
210
264
  health_status: ("HEALTHY" | "UNHEALTHY")?,
211
- security_details: {
212
- role_arn: ::String,
213
- security_group_ids: Array[::String],
214
- subnet_ids: Array[::String]
215
- }?
265
+ health_reasons: Array[("NO_REGISTERED_AGENT" | "INVALID_IP_OWNERSHIP" | "NOT_AUTHORIZED_TO_CREATE_SLR" | "UNVERIFIED_IP_OWNERSHIP" | "INITIALIZING_DATAPLANE" | "DATAPLANE_FAILURE" | "HEALTHY")]?
216
266
  },
217
267
  ],
218
- ?tags: Hash[::String, ::String]
268
+ ?tags: Hash[::String, ::String],
269
+ ?contact_pre_pass_duration_seconds: ::Integer,
270
+ ?contact_post_pass_duration_seconds: ::Integer
219
271
  ) -> _CreateDataflowEndpointGroupResponseSuccess
220
272
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDataflowEndpointGroupResponseSuccess
221
273
 
274
+ interface _CreateDataflowEndpointGroupV2ResponseSuccess
275
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDataflowEndpointGroupV2Response]
276
+ def dataflow_endpoint_group_id: () -> ::String
277
+ end
278
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#create_dataflow_endpoint_group_v2-instance_method
279
+ def create_dataflow_endpoint_group_v2: (
280
+ endpoints: Array[
281
+ {
282
+ uplink_aws_ground_station_agent_endpoint: {
283
+ name: ::String,
284
+ dataflow_details: {
285
+ agent_connection_details: {
286
+ ingress_address_and_port: {
287
+ socket_address: {
288
+ name: ::String,
289
+ port: ::Integer
290
+ },
291
+ mtu: ::Integer?
292
+ },
293
+ agent_ip_and_port_address: {
294
+ socket_address: {
295
+ name: ::String,
296
+ port_range: {
297
+ minimum: ::Integer,
298
+ maximum: ::Integer
299
+ }
300
+ },
301
+ mtu: ::Integer?
302
+ }
303
+ }?
304
+ }
305
+ }?,
306
+ downlink_aws_ground_station_agent_endpoint: {
307
+ name: ::String,
308
+ dataflow_details: {
309
+ agent_connection_details: {
310
+ agent_ip_and_port_address: {
311
+ socket_address: {
312
+ name: ::String,
313
+ port_range: {
314
+ minimum: ::Integer,
315
+ maximum: ::Integer
316
+ }
317
+ },
318
+ mtu: ::Integer?
319
+ },
320
+ egress_address_and_port: {
321
+ socket_address: {
322
+ name: ::String,
323
+ port: ::Integer
324
+ },
325
+ mtu: ::Integer?
326
+ }
327
+ }?
328
+ }
329
+ }?
330
+ },
331
+ ],
332
+ ?contact_pre_pass_duration_seconds: ::Integer,
333
+ ?contact_post_pass_duration_seconds: ::Integer,
334
+ ?tags: Hash[::String, ::String]
335
+ ) -> _CreateDataflowEndpointGroupV2ResponseSuccess
336
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDataflowEndpointGroupV2ResponseSuccess
337
+
222
338
  interface _CreateEphemerisResponseSuccess
223
339
  include ::Seahorse::Client::_ResponseSuccess[Types::EphemerisIdResponse]
224
340
  def ephemeris_id: () -> ::String
225
341
  end
226
342
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#create_ephemeris-instance_method
227
343
  def create_ephemeris: (
344
+ ?satellite_id: ::String,
228
345
  ?enabled: bool,
346
+ ?priority: ::Integer,
347
+ ?expiration_time: ::Time,
348
+ name: ::String,
349
+ ?kms_key_arn: ::String,
229
350
  ?ephemeris: {
230
- oem: {
231
- oem_data: ::String?,
232
- s3_object: {
233
- bucket: ::String?,
234
- key: ::String?,
235
- version: ::String?
236
- }?
237
- }?,
238
351
  tle: {
239
352
  s3_object: {
240
353
  bucket: ::String?,
@@ -246,18 +359,50 @@ module Aws
246
359
  tle_line_1: ::String,
247
360
  tle_line_2: ::String,
248
361
  valid_time_range: {
249
- end_time: ::Time,
250
- start_time: ::Time
362
+ start_time: ::Time,
363
+ end_time: ::Time
251
364
  }
252
365
  },
253
366
  ]?
367
+ }?,
368
+ oem: {
369
+ s3_object: {
370
+ bucket: ::String?,
371
+ key: ::String?,
372
+ version: ::String?
373
+ }?,
374
+ oem_data: ::String?
375
+ }?,
376
+ az_el: {
377
+ ground_station: ::String,
378
+ data: {
379
+ s3_object: {
380
+ bucket: ::String?,
381
+ key: ::String?,
382
+ version: ::String?
383
+ }?,
384
+ az_el_data: {
385
+ angle_unit: ("DEGREE_ANGLE" | "RADIAN"),
386
+ az_el_segment_list: Array[
387
+ {
388
+ reference_epoch: ::Time,
389
+ valid_time_range: {
390
+ start_time: ::Time,
391
+ end_time: ::Time
392
+ },
393
+ az_el_list: Array[
394
+ {
395
+ dt: ::Float,
396
+ az: ::Float,
397
+ el: ::Float
398
+ },
399
+ ]
400
+ },
401
+ ]
402
+ }?
403
+ }
254
404
  }?
255
405
  },
256
- ?expiration_time: ::Time,
257
- ?kms_key_arn: ::String,
258
- name: ::String,
259
- ?priority: ::Integer,
260
- satellite_id: ::String,
261
406
  ?tags: Hash[::String, ::String]
262
407
  ) -> _CreateEphemerisResponseSuccess
263
408
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEphemerisResponseSuccess
@@ -268,29 +413,29 @@ module Aws
268
413
  end
269
414
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#create_mission_profile-instance_method
270
415
  def create_mission_profile: (
271
- ?contact_post_pass_duration_seconds: ::Integer,
416
+ name: ::String,
272
417
  ?contact_pre_pass_duration_seconds: ::Integer,
418
+ ?contact_post_pass_duration_seconds: ::Integer,
419
+ minimum_viable_contact_duration_seconds: ::Integer,
273
420
  dataflow_edges: Array[
274
421
  Array[::String],
275
422
  ],
276
- minimum_viable_contact_duration_seconds: ::Integer,
277
- name: ::String,
423
+ tracking_config_arn: ::String,
424
+ ?tags: Hash[::String, ::String],
278
425
  ?streams_kms_key: {
426
+ kms_key_arn: ::String?,
279
427
  kms_alias_arn: ::String?,
280
- kms_alias_name: ::String?,
281
- kms_key_arn: ::String?
428
+ kms_alias_name: ::String?
282
429
  },
283
- ?streams_kms_role: ::String,
284
- ?tags: Hash[::String, ::String],
285
- tracking_config_arn: ::String
430
+ ?streams_kms_role: ::String
286
431
  ) -> _CreateMissionProfileResponseSuccess
287
432
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMissionProfileResponseSuccess
288
433
 
289
434
  interface _DeleteConfigResponseSuccess
290
435
  include ::Seahorse::Client::_ResponseSuccess[Types::ConfigIdResponse]
291
- def config_arn: () -> ::String
292
436
  def config_id: () -> ::String
293
437
  def config_type: () -> ("antenna-downlink" | "antenna-downlink-demod-decode" | "tracking" | "dataflow-endpoint" | "antenna-uplink" | "uplink-echo" | "s3-recording")
438
+ def config_arn: () -> ::String
294
439
  end
295
440
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#delete_config-instance_method
296
441
  def delete_config: (
@@ -332,21 +477,23 @@ module Aws
332
477
  interface _DescribeContactResponseSuccess
333
478
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeContactResponse]
334
479
  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
480
  def mission_profile_arn: () -> ::String
342
- def post_pass_end_time: () -> ::Time
343
- def pre_pass_start_time: () -> ::Time
344
- def region: () -> ::String
345
481
  def satellite_arn: () -> ::String
346
482
  def start_time: () -> ::Time
483
+ def end_time: () -> ::Time
484
+ def pre_pass_start_time: () -> ::Time
485
+ def post_pass_end_time: () -> ::Time
486
+ def ground_station: () -> ::String
487
+ def contact_status: () -> ("SCHEDULING" | "FAILED_TO_SCHEDULE" | "SCHEDULED" | "CANCELLED" | "AWS_CANCELLED" | "PREPASS" | "PASS" | "POSTPASS" | "COMPLETED" | "FAILED" | "AVAILABLE" | "CANCELLING" | "AWS_FAILED")
488
+ def error_message: () -> ::String
489
+ def maximum_elevation: () -> Types::Elevation
347
490
  def tags: () -> ::Hash[::String, ::String]
348
- def visibility_end_time: () -> ::Time
491
+ def region: () -> ::String
492
+ def dataflow_list: () -> ::Array[Types::DataflowDetail]
349
493
  def visibility_start_time: () -> ::Time
494
+ def visibility_end_time: () -> ::Time
495
+ def tracking_overrides: () -> Types::TrackingOverrides
496
+ def ephemeris: () -> Types::EphemerisResponseData
350
497
  end
351
498
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#describe_contact-instance_method
352
499
  def describe_contact: (
@@ -356,16 +503,17 @@ module Aws
356
503
 
357
504
  interface _DescribeEphemerisResponseSuccess
358
505
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEphemerisResponse]
359
- def creation_time: () -> ::Time
360
- def enabled: () -> bool
361
506
  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
507
  def satellite_id: () -> ::String
366
508
  def status: () -> ("VALIDATING" | "INVALID" | "ERROR" | "ENABLED" | "DISABLED" | "EXPIRED")
367
- def supplied_data: () -> Types::EphemerisTypeDescription
509
+ def priority: () -> ::Integer
510
+ def creation_time: () -> ::Time
511
+ def enabled: () -> bool
512
+ def name: () -> ::String
368
513
  def tags: () -> ::Hash[::String, ::String]
514
+ def supplied_data: () -> Types::EphemerisTypeDescription
515
+ def invalid_reason: () -> ("METADATA_INVALID" | "TIME_RANGE_INVALID" | "TRAJECTORY_INVALID" | "KMS_KEY_INVALID" | "VALIDATION_ERROR")
516
+ def error_reasons: () -> ::Array[Types::EphemerisErrorReason]
369
517
  end
370
518
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#describe_ephemeris-instance_method
371
519
  def describe_ephemeris: (
@@ -384,13 +532,26 @@ module Aws
384
532
  ) -> _GetAgentConfigurationResponseSuccess
385
533
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAgentConfigurationResponseSuccess
386
534
 
535
+ interface _GetAgentTaskResponseUrlResponseSuccess
536
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetAgentTaskResponseUrlResponse]
537
+ def agent_id: () -> ::String
538
+ def task_id: () -> ::String
539
+ def presigned_log_url: () -> ::String
540
+ end
541
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#get_agent_task_response_url-instance_method
542
+ def get_agent_task_response_url: (
543
+ agent_id: ::String,
544
+ task_id: ::String
545
+ ) -> _GetAgentTaskResponseUrlResponseSuccess
546
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAgentTaskResponseUrlResponseSuccess
547
+
387
548
  interface _GetConfigResponseSuccess
388
549
  include ::Seahorse::Client::_ResponseSuccess[Types::GetConfigResponse]
389
- def config_arn: () -> ::String
390
- def config_data: () -> Types::ConfigTypeData
391
550
  def config_id: () -> ::String
392
- def config_type: () -> ("antenna-downlink" | "antenna-downlink-demod-decode" | "tracking" | "dataflow-endpoint" | "antenna-uplink" | "uplink-echo" | "s3-recording")
551
+ def config_arn: () -> ::String
393
552
  def name: () -> ::String
553
+ def config_type: () -> ("antenna-downlink" | "antenna-downlink-demod-decode" | "tracking" | "dataflow-endpoint" | "antenna-uplink" | "uplink-echo" | "s3-recording")
554
+ def config_data: () -> Types::ConfigTypeData
394
555
  def tags: () -> ::Hash[::String, ::String]
395
556
  end
396
557
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#get_config-instance_method
@@ -402,12 +563,12 @@ module Aws
402
563
 
403
564
  interface _GetDataflowEndpointGroupResponseSuccess
404
565
  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
566
  def dataflow_endpoint_group_id: () -> ::String
567
+ def dataflow_endpoint_group_arn: () -> ::String
409
568
  def endpoints_details: () -> ::Array[Types::EndpointDetails]
410
569
  def tags: () -> ::Hash[::String, ::String]
570
+ def contact_pre_pass_duration_seconds: () -> ::Integer
571
+ def contact_post_pass_duration_seconds: () -> ::Integer
411
572
  end
412
573
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#get_dataflow_endpoint_group-instance_method
413
574
  def get_dataflow_endpoint_group: (
@@ -417,11 +578,11 @@ module Aws
417
578
 
418
579
  interface _GetMinuteUsageResponseSuccess
419
580
  include ::Seahorse::Client::_ResponseSuccess[Types::GetMinuteUsageResponse]
420
- def estimated_minutes_remaining: () -> ::Integer
421
581
  def is_reserved_minutes_customer: () -> bool
422
582
  def total_reserved_minute_allocation: () -> ::Integer
423
- def total_scheduled_minutes: () -> ::Integer
424
583
  def upcoming_minutes_scheduled: () -> ::Integer
584
+ def total_scheduled_minutes: () -> ::Integer
585
+ def estimated_minutes_remaining: () -> ::Integer
425
586
  end
426
587
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#get_minute_usage-instance_method
427
588
  def get_minute_usage: (
@@ -432,18 +593,18 @@ module Aws
432
593
 
433
594
  interface _GetMissionProfileResponseSuccess
434
595
  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
596
  def mission_profile_id: () -> ::String
597
+ def mission_profile_arn: () -> ::String
441
598
  def name: () -> ::String
442
599
  def region: () -> ::String
600
+ def contact_pre_pass_duration_seconds: () -> ::Integer
601
+ def contact_post_pass_duration_seconds: () -> ::Integer
602
+ def minimum_viable_contact_duration_seconds: () -> ::Integer
603
+ def dataflow_edges: () -> ::Array[::Array[::String]]
604
+ def tracking_config_arn: () -> ::String
605
+ def tags: () -> ::Hash[::String, ::String]
443
606
  def streams_kms_key: () -> Types::KmsKey
444
607
  def streams_kms_role: () -> ::String
445
- def tags: () -> ::Hash[::String, ::String]
446
- def tracking_config_arn: () -> ::String
447
608
  end
448
609
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#get_mission_profile-instance_method
449
610
  def get_mission_profile: (
@@ -453,11 +614,11 @@ module Aws
453
614
 
454
615
  interface _GetSatelliteResponseSuccess
455
616
  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
617
  def satellite_id: () -> ::String
618
+ def satellite_arn: () -> ::String
619
+ def norad_satellite_id: () -> ::Integer
620
+ def ground_stations: () -> ::Array[::String]
621
+ def current_ephemeris: () -> Types::EphemerisMetaData
461
622
  end
462
623
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#get_satellite-instance_method
463
624
  def get_satellite: (
@@ -467,8 +628,8 @@ module Aws
467
628
 
468
629
  interface _ListConfigsResponseSuccess
469
630
  include ::Seahorse::Client::_ResponseSuccess[Types::ListConfigsResponse]
470
- def config_list: () -> ::Array[Types::ConfigListItem]
471
631
  def next_token: () -> ::String
632
+ def config_list: () -> ::Array[Types::ConfigListItem]
472
633
  end
473
634
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#list_configs-instance_method
474
635
  def list_configs: (
@@ -479,26 +640,31 @@ module Aws
479
640
 
480
641
  interface _ListContactsResponseSuccess
481
642
  include ::Seahorse::Client::_ResponseSuccess[Types::ListContactsResponse]
482
- def contact_list: () -> ::Array[Types::ContactData]
483
643
  def next_token: () -> ::String
644
+ def contact_list: () -> ::Array[Types::ContactData]
484
645
  end
485
646
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#list_contacts-instance_method
486
647
  def list_contacts: (
487
- end_time: ::Time,
488
- ?ground_station: ::String,
489
648
  ?max_results: ::Integer,
490
- ?mission_profile_arn: ::String,
491
649
  ?next_token: ::String,
492
- ?satellite_arn: ::String,
650
+ status_list: Array[("SCHEDULING" | "FAILED_TO_SCHEDULE" | "SCHEDULED" | "CANCELLED" | "AWS_CANCELLED" | "PREPASS" | "PASS" | "POSTPASS" | "COMPLETED" | "FAILED" | "AVAILABLE" | "CANCELLING" | "AWS_FAILED")],
493
651
  start_time: ::Time,
494
- status_list: Array[("SCHEDULING" | "FAILED_TO_SCHEDULE" | "SCHEDULED" | "CANCELLED" | "AWS_CANCELLED" | "PREPASS" | "PASS" | "POSTPASS" | "COMPLETED" | "FAILED" | "AVAILABLE" | "CANCELLING" | "AWS_FAILED")]
652
+ end_time: ::Time,
653
+ ?ground_station: ::String,
654
+ ?satellite_arn: ::String,
655
+ ?mission_profile_arn: ::String,
656
+ ?ephemeris: {
657
+ az_el: {
658
+ id: ::String
659
+ }?
660
+ }
495
661
  ) -> _ListContactsResponseSuccess
496
662
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListContactsResponseSuccess
497
663
 
498
664
  interface _ListDataflowEndpointGroupsResponseSuccess
499
665
  include ::Seahorse::Client::_ResponseSuccess[Types::ListDataflowEndpointGroupsResponse]
500
- def dataflow_endpoint_group_list: () -> ::Array[Types::DataflowEndpointListItem]
501
666
  def next_token: () -> ::String
667
+ def dataflow_endpoint_group_list: () -> ::Array[Types::DataflowEndpointListItem]
502
668
  end
503
669
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#list_dataflow_endpoint_groups-instance_method
504
670
  def list_dataflow_endpoint_groups: (
@@ -509,37 +675,38 @@ module Aws
509
675
 
510
676
  interface _ListEphemeridesResponseSuccess
511
677
  include ::Seahorse::Client::_ResponseSuccess[Types::ListEphemeridesResponse]
512
- def ephemerides: () -> ::Array[Types::EphemerisItem]
513
678
  def next_token: () -> ::String
679
+ def ephemerides: () -> ::Array[Types::EphemerisItem]
514
680
  end
515
681
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#list_ephemerides-instance_method
516
682
  def list_ephemerides: (
683
+ ?satellite_id: ::String,
684
+ ?ephemeris_type: ("TLE" | "OEM" | "AZ_EL" | "SERVICE_MANAGED"),
685
+ start_time: ::Time,
517
686
  end_time: ::Time,
687
+ ?status_list: Array[("VALIDATING" | "INVALID" | "ERROR" | "ENABLED" | "DISABLED" | "EXPIRED")],
518
688
  ?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")]
689
+ ?next_token: ::String
523
690
  ) -> _ListEphemeridesResponseSuccess
524
691
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEphemeridesResponseSuccess
525
692
 
526
693
  interface _ListGroundStationsResponseSuccess
527
694
  include ::Seahorse::Client::_ResponseSuccess[Types::ListGroundStationsResponse]
528
- def ground_station_list: () -> ::Array[Types::GroundStationData]
529
695
  def next_token: () -> ::String
696
+ def ground_station_list: () -> ::Array[Types::GroundStationData]
530
697
  end
531
698
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#list_ground_stations-instance_method
532
699
  def list_ground_stations: (
700
+ ?satellite_id: ::String,
533
701
  ?max_results: ::Integer,
534
- ?next_token: ::String,
535
- ?satellite_id: ::String
702
+ ?next_token: ::String
536
703
  ) -> _ListGroundStationsResponseSuccess
537
704
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListGroundStationsResponseSuccess
538
705
 
539
706
  interface _ListMissionProfilesResponseSuccess
540
707
  include ::Seahorse::Client::_ResponseSuccess[Types::ListMissionProfilesResponse]
541
- def mission_profile_list: () -> ::Array[Types::MissionProfileListItem]
542
708
  def next_token: () -> ::String
709
+ def mission_profile_list: () -> ::Array[Types::MissionProfileListItem]
543
710
  end
544
711
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#list_mission_profiles-instance_method
545
712
  def list_mission_profiles: (
@@ -576,23 +743,23 @@ module Aws
576
743
  end
577
744
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#register_agent-instance_method
578
745
  def register_agent: (
746
+ discovery_data: {
747
+ public_ip_addresses: Array[::String],
748
+ private_ip_addresses: Array[::String],
749
+ capability_arns: Array[::String]
750
+ },
579
751
  agent_details: {
580
- agent_cpu_cores: Array[::Integer]?,
581
752
  agent_version: ::String,
753
+ instance_id: ::String,
754
+ instance_type: ::String,
755
+ reserved_cpu_cores: Array[::Integer]?,
756
+ agent_cpu_cores: Array[::Integer]?,
582
757
  component_versions: Array[
583
758
  {
584
759
  component_type: ::String,
585
760
  versions: Array[::String]
586
761
  },
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]
762
+ ]
596
763
  },
597
764
  ?tags: Hash[::String, ::String]
598
765
  ) -> _RegisterAgentResponseSuccess
@@ -604,12 +771,19 @@ module Aws
604
771
  end
605
772
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#reserve_contact-instance_method
606
773
  def reserve_contact: (
607
- end_time: ::Time,
608
- ground_station: ::String,
609
774
  mission_profile_arn: ::String,
610
- satellite_arn: ::String,
775
+ ?satellite_arn: ::String,
611
776
  start_time: ::Time,
612
- ?tags: Hash[::String, ::String]
777
+ end_time: ::Time,
778
+ ground_station: ::String,
779
+ ?tags: Hash[::String, ::String],
780
+ ?tracking_overrides: {
781
+ program_track_settings: {
782
+ az_el: {
783
+ ephemeris_id: ::String
784
+ }?
785
+ }
786
+ }
613
787
  ) -> _ReserveContactResponseSuccess
614
788
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ReserveContactResponseSuccess
615
789
 
@@ -640,100 +814,100 @@ module Aws
640
814
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#update_agent_status-instance_method
641
815
  def update_agent_status: (
642
816
  agent_id: ::String,
817
+ task_id: ::String,
643
818
  aggregate_status: {
644
- signature_map: Hash[::String, bool]?,
645
- status: ("SUCCESS" | "FAILED" | "ACTIVE" | "INACTIVE")
819
+ status: ("SUCCESS" | "FAILED" | "ACTIVE" | "INACTIVE"),
820
+ signature_map: Hash[::String, bool]?
646
821
  },
647
822
  component_statuses: Array[
648
823
  {
649
- bytes_received: ::Integer?,
650
- bytes_sent: ::Integer?,
651
- capability_arn: ::String,
652
824
  component_type: ::String,
653
- dataflow_id: ::String,
825
+ capability_arn: ::String,
826
+ status: ("SUCCESS" | "FAILED" | "ACTIVE" | "INACTIVE"),
827
+ bytes_sent: ::Integer?,
828
+ bytes_received: ::Integer?,
654
829
  packets_dropped: ::Integer?,
655
- status: ("SUCCESS" | "FAILED" | "ACTIVE" | "INACTIVE")
830
+ dataflow_id: ::String
656
831
  },
657
- ],
658
- task_id: ::String
832
+ ]
659
833
  ) -> _UpdateAgentStatusResponseSuccess
660
834
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAgentStatusResponseSuccess
661
835
 
662
836
  interface _UpdateConfigResponseSuccess
663
837
  include ::Seahorse::Client::_ResponseSuccess[Types::ConfigIdResponse]
664
- def config_arn: () -> ::String
665
838
  def config_id: () -> ::String
666
839
  def config_type: () -> ("antenna-downlink" | "antenna-downlink-demod-decode" | "tracking" | "dataflow-endpoint" | "antenna-uplink" | "uplink-echo" | "s3-recording")
840
+ def config_arn: () -> ::String
667
841
  end
668
842
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#update_config-instance_method
669
843
  def update_config: (
844
+ config_id: ::String,
845
+ name: ::String,
846
+ config_type: ("antenna-downlink" | "antenna-downlink-demod-decode" | "tracking" | "dataflow-endpoint" | "antenna-uplink" | "uplink-echo" | "s3-recording"),
670
847
  config_data: {
671
848
  antenna_downlink_config: {
672
849
  spectrum_config: {
673
- bandwidth: {
674
- units: ("GHz" | "MHz" | "kHz"),
675
- value: ::Float
676
- },
677
850
  center_frequency: {
678
- units: ("GHz" | "MHz" | "kHz"),
679
- value: ::Float
851
+ value: ::Float,
852
+ units: ("GHz" | "MHz" | "kHz")
853
+ },
854
+ bandwidth: {
855
+ value: ::Float,
856
+ units: ("GHz" | "MHz" | "kHz")
680
857
  },
681
858
  polarization: ("RIGHT_HAND" | "LEFT_HAND" | "NONE")?
682
859
  }
683
860
  }?,
861
+ tracking_config: {
862
+ autotrack: ("REQUIRED" | "PREFERRED" | "REMOVED")
863
+ }?,
864
+ dataflow_endpoint_config: {
865
+ dataflow_endpoint_name: ::String,
866
+ dataflow_endpoint_region: ::String?
867
+ }?,
684
868
  antenna_downlink_demod_decode_config: {
685
- decode_config: {
686
- unvalidated_json: ::String
687
- },
688
- demodulation_config: {
689
- unvalidated_json: ::String
690
- },
691
869
  spectrum_config: {
692
- bandwidth: {
693
- units: ("GHz" | "MHz" | "kHz"),
694
- value: ::Float
695
- },
696
870
  center_frequency: {
697
- units: ("GHz" | "MHz" | "kHz"),
698
- value: ::Float
871
+ value: ::Float,
872
+ units: ("GHz" | "MHz" | "kHz")
873
+ },
874
+ bandwidth: {
875
+ value: ::Float,
876
+ units: ("GHz" | "MHz" | "kHz")
699
877
  },
700
878
  polarization: ("RIGHT_HAND" | "LEFT_HAND" | "NONE")?
879
+ },
880
+ demodulation_config: {
881
+ unvalidated_json: ::String
882
+ },
883
+ decode_config: {
884
+ unvalidated_json: ::String
701
885
  }
702
886
  }?,
703
887
  antenna_uplink_config: {
888
+ transmit_disabled: bool?,
704
889
  spectrum_config: {
705
890
  center_frequency: {
706
- units: ("GHz" | "MHz" | "kHz"),
707
- value: ::Float
891
+ value: ::Float,
892
+ units: ("GHz" | "MHz" | "kHz")
708
893
  },
709
894
  polarization: ("RIGHT_HAND" | "LEFT_HAND" | "NONE")?
710
895
  },
711
896
  target_eirp: {
712
- units: ("dBW"),
713
- value: ::Float
714
- },
715
- transmit_disabled: bool?
897
+ value: ::Float,
898
+ units: ("dBW")
899
+ }
716
900
  }?,
717
- dataflow_endpoint_config: {
718
- dataflow_endpoint_name: ::String,
719
- dataflow_endpoint_region: ::String?
901
+ uplink_echo_config: {
902
+ enabled: bool,
903
+ antenna_uplink_config_arn: ::String
720
904
  }?,
721
905
  s3_recording_config: {
722
906
  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
907
+ role_arn: ::String,
908
+ prefix: ::String?
732
909
  }?
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
910
+ }
737
911
  ) -> _UpdateConfigResponseSuccess
738
912
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConfigResponseSuccess
739
913
 
@@ -743,8 +917,8 @@ module Aws
743
917
  end
744
918
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#update_ephemeris-instance_method
745
919
  def update_ephemeris: (
746
- enabled: bool,
747
920
  ephemeris_id: ::String,
921
+ enabled: bool,
748
922
  ?name: ::String,
749
923
  ?priority: ::Integer
750
924
  ) -> _UpdateEphemerisResponseSuccess
@@ -756,21 +930,21 @@ module Aws
756
930
  end
757
931
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GroundStation/Client.html#update_mission_profile-instance_method
758
932
  def update_mission_profile: (
759
- ?contact_post_pass_duration_seconds: ::Integer,
933
+ mission_profile_id: ::String,
934
+ ?name: ::String,
760
935
  ?contact_pre_pass_duration_seconds: ::Integer,
936
+ ?contact_post_pass_duration_seconds: ::Integer,
937
+ ?minimum_viable_contact_duration_seconds: ::Integer,
761
938
  ?dataflow_edges: Array[
762
939
  Array[::String],
763
940
  ],
764
- ?minimum_viable_contact_duration_seconds: ::Integer,
765
- mission_profile_id: ::String,
766
- ?name: ::String,
941
+ ?tracking_config_arn: ::String,
767
942
  ?streams_kms_key: {
943
+ kms_key_arn: ::String?,
768
944
  kms_alias_arn: ::String?,
769
- kms_alias_name: ::String?,
770
- kms_key_arn: ::String?
945
+ kms_alias_name: ::String?
771
946
  },
772
- ?streams_kms_role: ::String,
773
- ?tracking_config_arn: ::String
947
+ ?streams_kms_role: ::String
774
948
  ) -> _UpdateMissionProfileResponseSuccess
775
949
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateMissionProfileResponseSuccess
776
950