aws-sdk-groundstation 1.28.0 → 1.29.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 71dafd06c9f127e453813d017c50b393c3926909a7b50c703a7f25495a200ae7
4
- data.tar.gz: f7c422d674a72ebfc702481c9064a1bcc9af7f0497075785fcb01a57817d9d2a
3
+ metadata.gz: 249b713bc7971a443e010439c89d67791aefbecaad5507fd5ef44bdcf1db267a
4
+ data.tar.gz: 8517de08ffa7bd876519d9fffbb63530ccf47bfa15f0404282e9a31d47f0a5cb
5
5
  SHA512:
6
- metadata.gz: 458b3b27b93e176cd833e2521b0e0b1d71ee64cd041be216496407ab59905d71441a6a84d826ca747a9a5e66b8b05d0bf04c04ab9f4cf3792483bbaa4a81ab06
7
- data.tar.gz: dba8e33f15f6afc9ecf5348fb79fbc2ff666e061137da79840a225478f55be5dd02eec65e09626c54bb78f27cbae4c92357c0471de0f804b87c7172fa2d3bda0
6
+ metadata.gz: c805ded350c3b7f76ace6124eaf7f6ab07c8e88f58aefb7f2e219510cf82666d864d4b4964fac7dd2e9cb8ee30ac3fcd62e77e80c107a337628292e7e04f1ea3
7
+ data.tar.gz: d85e2ddaa7a55f466546f7d4af844b7aff03b2d524a79655b895f96ce331baf0b7d2c9b182371abf91031486c816c5f6606a735eaa91c03ed50fdf0946679aa0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.29.0 (2022-11-09)
5
+ ------------------
6
+
7
+ * Feature - This release adds the preview of customer-provided ephemeris support for AWS Ground Station, allowing space vehicle owners to provide their own position and trajectory information for a satellite.
8
+
4
9
  1.28.0 (2022-10-25)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.28.0
1
+ 1.29.0
@@ -380,7 +380,7 @@ module Aws::GroundStation
380
380
  # @example Request syntax with placeholder values
381
381
  #
382
382
  # resp = client.cancel_contact({
383
- # contact_id: "String", # required
383
+ # contact_id: "Uuid", # required
384
384
  # })
385
385
  #
386
386
  # @example Response structure
@@ -562,6 +562,101 @@ module Aws::GroundStation
562
562
  req.send_request(options)
563
563
  end
564
564
 
565
+ # Creates an Ephemeris with the specified `EphemerisData`.
566
+ #
567
+ # @option params [Boolean] :enabled
568
+ # Whether to set the ephemeris status to `ENABLED` after validation.
569
+ #
570
+ # Setting this to false will set the ephemeris status to `DISABLED`
571
+ # after validation.
572
+ #
573
+ # @option params [Types::EphemerisData] :ephemeris
574
+ # Ephemeris data.
575
+ #
576
+ # @option params [Time,DateTime,Date,Integer,String] :expiration_time
577
+ # An overall expiration time for the ephemeris in UTC, after which it
578
+ # will become `EXPIRED`.
579
+ #
580
+ # @option params [String] :kms_key_arn
581
+ # The ARN of a KMS key used to encrypt the ephemeris in Ground Station.
582
+ #
583
+ # @option params [required, String] :name
584
+ # A name string associated with the ephemeris. Used as a human-readable
585
+ # identifier for the ephemeris.
586
+ #
587
+ # @option params [Integer] :priority
588
+ # Customer-provided priority score to establish the order in which
589
+ # overlapping ephemerides should be used.
590
+ #
591
+ # The default for customer-provided ephemeris priority is 1, and higher
592
+ # numbers take precedence.
593
+ #
594
+ # Priority must be 1 or greater
595
+ #
596
+ # @option params [required, String] :satellite_id
597
+ # AWS Ground Station satellite ID for this ephemeris.
598
+ #
599
+ # @option params [Hash<String,String>] :tags
600
+ # Tags assigned to an ephemeris.
601
+ #
602
+ # @return [Types::EphemerisIdResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
603
+ #
604
+ # * {Types::EphemerisIdResponse#ephemeris_id #ephemeris_id} => String
605
+ #
606
+ # @example Request syntax with placeholder values
607
+ #
608
+ # resp = client.create_ephemeris({
609
+ # enabled: false,
610
+ # ephemeris: {
611
+ # oem: {
612
+ # oem_data: "UnboundedString",
613
+ # s3_object: {
614
+ # bucket: "S3BucketName",
615
+ # key: "S3ObjectKey",
616
+ # version: "S3VersionId",
617
+ # },
618
+ # },
619
+ # tle: {
620
+ # s3_object: {
621
+ # bucket: "S3BucketName",
622
+ # key: "S3ObjectKey",
623
+ # version: "S3VersionId",
624
+ # },
625
+ # tle_data: [
626
+ # {
627
+ # tle_line_1: "TleLineOne", # required
628
+ # tle_line_2: "TleLineTwo", # required
629
+ # valid_time_range: { # required
630
+ # end_time: Time.now, # required
631
+ # start_time: Time.now, # required
632
+ # },
633
+ # },
634
+ # ],
635
+ # },
636
+ # },
637
+ # expiration_time: Time.now,
638
+ # kms_key_arn: "KeyArn",
639
+ # name: "SafeName", # required
640
+ # priority: 1,
641
+ # satellite_id: "Uuid", # required
642
+ # tags: {
643
+ # "String" => "String",
644
+ # },
645
+ # })
646
+ #
647
+ # @example Response structure
648
+ #
649
+ # resp.ephemeris_id #=> String
650
+ #
651
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/CreateEphemeris AWS API Documentation
652
+ #
653
+ # @overload create_ephemeris(params = {})
654
+ # @param [Hash] params ({})
655
+ def create_ephemeris(params = {}, options = {})
656
+ req = build_request(:create_ephemeris, params)
657
+ req.send_request(options)
658
+ end
659
+
565
660
  # Creates a mission profile.
566
661
  #
567
662
  # `dataflowEdges` is a list of lists of strings. Each lower level list
@@ -643,7 +738,7 @@ module Aws::GroundStation
643
738
  # @example Request syntax with placeholder values
644
739
  #
645
740
  # resp = client.delete_config({
646
- # config_id: "String", # required
741
+ # config_id: "Uuid", # required
647
742
  # config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, antenna-uplink, dataflow-endpoint, tracking, uplink-echo, s3-recording
648
743
  # })
649
744
  #
@@ -674,7 +769,7 @@ module Aws::GroundStation
674
769
  # @example Request syntax with placeholder values
675
770
  #
676
771
  # resp = client.delete_dataflow_endpoint_group({
677
- # dataflow_endpoint_group_id: "String", # required
772
+ # dataflow_endpoint_group_id: "Uuid", # required
678
773
  # })
679
774
  #
680
775
  # @example Response structure
@@ -690,6 +785,34 @@ module Aws::GroundStation
690
785
  req.send_request(options)
691
786
  end
692
787
 
788
+ # Deletes an ephemeris
789
+ #
790
+ # @option params [required, String] :ephemeris_id
791
+ # The AWS Ground Station ephemeris ID.
792
+ #
793
+ # @return [Types::EphemerisIdResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
794
+ #
795
+ # * {Types::EphemerisIdResponse#ephemeris_id #ephemeris_id} => String
796
+ #
797
+ # @example Request syntax with placeholder values
798
+ #
799
+ # resp = client.delete_ephemeris({
800
+ # ephemeris_id: "Uuid", # required
801
+ # })
802
+ #
803
+ # @example Response structure
804
+ #
805
+ # resp.ephemeris_id #=> String
806
+ #
807
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/DeleteEphemeris AWS API Documentation
808
+ #
809
+ # @overload delete_ephemeris(params = {})
810
+ # @param [Hash] params ({})
811
+ def delete_ephemeris(params = {}, options = {})
812
+ req = build_request(:delete_ephemeris, params)
813
+ req.send_request(options)
814
+ end
815
+
693
816
  # Deletes a mission profile.
694
817
  #
695
818
  # @option params [required, String] :mission_profile_id
@@ -702,7 +825,7 @@ module Aws::GroundStation
702
825
  # @example Request syntax with placeholder values
703
826
  #
704
827
  # resp = client.delete_mission_profile({
705
- # mission_profile_id: "String", # required
828
+ # mission_profile_id: "Uuid", # required
706
829
  # })
707
830
  #
708
831
  # @example Response structure
@@ -743,7 +866,7 @@ module Aws::GroundStation
743
866
  # @example Request syntax with placeholder values
744
867
  #
745
868
  # resp = client.describe_contact({
746
- # contact_id: "String", # required
869
+ # contact_id: "Uuid", # required
747
870
  # })
748
871
  #
749
872
  # @example Response structure
@@ -807,6 +930,60 @@ module Aws::GroundStation
807
930
  req.send_request(options)
808
931
  end
809
932
 
933
+ # Describes an existing ephemeris.
934
+ #
935
+ # @option params [required, String] :ephemeris_id
936
+ # The AWS Ground Station ephemeris ID.
937
+ #
938
+ # @return [Types::DescribeEphemerisResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
939
+ #
940
+ # * {Types::DescribeEphemerisResponse#creation_time #creation_time} => Time
941
+ # * {Types::DescribeEphemerisResponse#enabled #enabled} => Boolean
942
+ # * {Types::DescribeEphemerisResponse#ephemeris_id #ephemeris_id} => String
943
+ # * {Types::DescribeEphemerisResponse#invalid_reason #invalid_reason} => String
944
+ # * {Types::DescribeEphemerisResponse#name #name} => String
945
+ # * {Types::DescribeEphemerisResponse#priority #priority} => Integer
946
+ # * {Types::DescribeEphemerisResponse#satellite_id #satellite_id} => String
947
+ # * {Types::DescribeEphemerisResponse#status #status} => String
948
+ # * {Types::DescribeEphemerisResponse#supplied_data #supplied_data} => Types::EphemerisTypeDescription
949
+ # * {Types::DescribeEphemerisResponse#tags #tags} => Hash&lt;String,String&gt;
950
+ #
951
+ # @example Request syntax with placeholder values
952
+ #
953
+ # resp = client.describe_ephemeris({
954
+ # ephemeris_id: "Uuid", # required
955
+ # })
956
+ #
957
+ # @example Response structure
958
+ #
959
+ # resp.creation_time #=> Time
960
+ # resp.enabled #=> Boolean
961
+ # resp.ephemeris_id #=> String
962
+ # resp.invalid_reason #=> String, one of "METADATA_INVALID", "TIME_RANGE_INVALID", "TRAJECTORY_INVALID", "KMS_KEY_INVALID", "VALIDATION_ERROR"
963
+ # resp.name #=> String
964
+ # resp.priority #=> Integer
965
+ # resp.satellite_id #=> String
966
+ # resp.status #=> String, one of "VALIDATING", "INVALID", "ERROR", "ENABLED", "DISABLED", "EXPIRED"
967
+ # resp.supplied_data.oem.ephemeris_data #=> String
968
+ # resp.supplied_data.oem.source_s3_object.bucket #=> String
969
+ # resp.supplied_data.oem.source_s3_object.key #=> String
970
+ # resp.supplied_data.oem.source_s3_object.version #=> String
971
+ # resp.supplied_data.tle.ephemeris_data #=> String
972
+ # resp.supplied_data.tle.source_s3_object.bucket #=> String
973
+ # resp.supplied_data.tle.source_s3_object.key #=> String
974
+ # resp.supplied_data.tle.source_s3_object.version #=> String
975
+ # resp.tags #=> Hash
976
+ # resp.tags["String"] #=> String
977
+ #
978
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/DescribeEphemeris AWS API Documentation
979
+ #
980
+ # @overload describe_ephemeris(params = {})
981
+ # @param [Hash] params ({})
982
+ def describe_ephemeris(params = {}, options = {})
983
+ req = build_request(:describe_ephemeris, params)
984
+ req.send_request(options)
985
+ end
986
+
810
987
  # Returns `Config` information.
811
988
  #
812
989
  # Only one `Config` response can be returned.
@@ -829,7 +1006,7 @@ module Aws::GroundStation
829
1006
  # @example Request syntax with placeholder values
830
1007
  #
831
1008
  # resp = client.get_config({
832
- # config_id: "String", # required
1009
+ # config_id: "Uuid", # required
833
1010
  # config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, antenna-uplink, dataflow-endpoint, tracking, uplink-echo, s3-recording
834
1011
  # })
835
1012
  #
@@ -892,7 +1069,7 @@ module Aws::GroundStation
892
1069
  # @example Request syntax with placeholder values
893
1070
  #
894
1071
  # resp = client.get_dataflow_endpoint_group({
895
- # dataflow_endpoint_group_id: "String", # required
1072
+ # dataflow_endpoint_group_id: "Uuid", # required
896
1073
  # })
897
1074
  #
898
1075
  # @example Response structure
@@ -983,7 +1160,7 @@ module Aws::GroundStation
983
1160
  # @example Request syntax with placeholder values
984
1161
  #
985
1162
  # resp = client.get_mission_profile({
986
- # mission_profile_id: "String", # required
1163
+ # mission_profile_id: "Uuid", # required
987
1164
  # })
988
1165
  #
989
1166
  # @example Response structure
@@ -1018,6 +1195,7 @@ module Aws::GroundStation
1018
1195
  #
1019
1196
  # @return [Types::GetSatelliteResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1020
1197
  #
1198
+ # * {Types::GetSatelliteResponse#current_ephemeris #current_ephemeris} => Types::EphemerisMetaData
1021
1199
  # * {Types::GetSatelliteResponse#ground_stations #ground_stations} => Array&lt;String&gt;
1022
1200
  # * {Types::GetSatelliteResponse#norad_satellite_id #norad_satellite_id} => Integer
1023
1201
  # * {Types::GetSatelliteResponse#satellite_arn #satellite_arn} => String
@@ -1026,11 +1204,15 @@ module Aws::GroundStation
1026
1204
  # @example Request syntax with placeholder values
1027
1205
  #
1028
1206
  # resp = client.get_satellite({
1029
- # satellite_id: "String", # required
1207
+ # satellite_id: "Uuid", # required
1030
1208
  # })
1031
1209
  #
1032
1210
  # @example Response structure
1033
1211
  #
1212
+ # resp.current_ephemeris.ephemeris_id #=> String
1213
+ # resp.current_ephemeris.epoch #=> Time
1214
+ # resp.current_ephemeris.name #=> String
1215
+ # resp.current_ephemeris.source #=> String, one of "CUSTOMER_PROVIDED", "SPACE_TRACK"
1034
1216
  # resp.ground_stations #=> Array
1035
1217
  # resp.ground_stations[0] #=> String
1036
1218
  # resp.norad_satellite_id #=> Integer
@@ -1066,7 +1248,7 @@ module Aws::GroundStation
1066
1248
  #
1067
1249
  # resp = client.list_configs({
1068
1250
  # max_results: 1,
1069
- # next_token: "String",
1251
+ # next_token: "PaginationToken",
1070
1252
  # })
1071
1253
  #
1072
1254
  # @example Response structure
@@ -1093,7 +1275,7 @@ module Aws::GroundStation
1093
1275
  # `groundStation`, `missionprofileArn`, and `satelliteArn`.
1094
1276
  #
1095
1277
  # @option params [required, Time,DateTime,Date,Integer,String] :end_time
1096
- # End time of a contact.
1278
+ # End time of a contact in UTC.
1097
1279
  #
1098
1280
  # @option params [String] :ground_station
1099
1281
  # Name of a ground station.
@@ -1112,7 +1294,7 @@ module Aws::GroundStation
1112
1294
  # ARN of a satellite.
1113
1295
  #
1114
1296
  # @option params [required, Time,DateTime,Date,Integer,String] :start_time
1115
- # Start time of a contact.
1297
+ # Start time of a contact in UTC.
1116
1298
  #
1117
1299
  # @option params [required, Array<String>] :status_list
1118
1300
  # Status of a contact reservation.
@@ -1128,10 +1310,10 @@ module Aws::GroundStation
1128
1310
  #
1129
1311
  # resp = client.list_contacts({
1130
1312
  # end_time: Time.now, # required
1131
- # ground_station: "String",
1313
+ # ground_station: "GroundStationName",
1132
1314
  # max_results: 1,
1133
1315
  # mission_profile_arn: "MissionProfileArn",
1134
- # next_token: "String",
1316
+ # next_token: "PaginationToken",
1135
1317
  # satellite_arn: "satelliteArn",
1136
1318
  # start_time: Time.now, # required
1137
1319
  # status_list: ["AVAILABLE"], # required, accepts AVAILABLE, AWS_CANCELLED, AWS_FAILED, CANCELLED, CANCELLING, COMPLETED, FAILED, FAILED_TO_SCHEDULE, PASS, POSTPASS, PREPASS, SCHEDULED, SCHEDULING
@@ -1187,7 +1369,7 @@ module Aws::GroundStation
1187
1369
  #
1188
1370
  # resp = client.list_dataflow_endpoint_groups({
1189
1371
  # max_results: 1,
1190
- # next_token: "String",
1372
+ # next_token: "PaginationToken",
1191
1373
  # })
1192
1374
  #
1193
1375
  # @example Response structure
@@ -1206,6 +1388,71 @@ module Aws::GroundStation
1206
1388
  req.send_request(options)
1207
1389
  end
1208
1390
 
1391
+ # List existing ephemerides.
1392
+ #
1393
+ # @option params [required, Time,DateTime,Date,Integer,String] :end_time
1394
+ # The end time to list in UTC. The operation will return an ephemeris if
1395
+ # its expiration time is within the time range defined by the
1396
+ # `startTime` and `endTime`.
1397
+ #
1398
+ # @option params [Integer] :max_results
1399
+ # Maximum number of ephemerides to return.
1400
+ #
1401
+ # @option params [String] :next_token
1402
+ # Pagination token.
1403
+ #
1404
+ # @option params [required, String] :satellite_id
1405
+ # The AWS Ground Station satellite ID to list ephemeris for.
1406
+ #
1407
+ # @option params [required, Time,DateTime,Date,Integer,String] :start_time
1408
+ # The start time to list in UTC. The operation will return an ephemeris
1409
+ # if its expiration time is within the time range defined by the
1410
+ # `startTime` and `endTime`.
1411
+ #
1412
+ # @option params [Array<String>] :status_list
1413
+ # The list of ephemeris status to return.
1414
+ #
1415
+ # @return [Types::ListEphemeridesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1416
+ #
1417
+ # * {Types::ListEphemeridesResponse#ephemerides #ephemerides} => Array&lt;Types::EphemerisItem&gt;
1418
+ # * {Types::ListEphemeridesResponse#next_token #next_token} => String
1419
+ #
1420
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1421
+ #
1422
+ # @example Request syntax with placeholder values
1423
+ #
1424
+ # resp = client.list_ephemerides({
1425
+ # end_time: Time.now, # required
1426
+ # max_results: 1,
1427
+ # next_token: "PaginationToken",
1428
+ # satellite_id: "Uuid", # required
1429
+ # start_time: Time.now, # required
1430
+ # status_list: ["VALIDATING"], # accepts VALIDATING, INVALID, ERROR, ENABLED, DISABLED, EXPIRED
1431
+ # })
1432
+ #
1433
+ # @example Response structure
1434
+ #
1435
+ # resp.ephemerides #=> Array
1436
+ # resp.ephemerides[0].creation_time #=> Time
1437
+ # resp.ephemerides[0].enabled #=> Boolean
1438
+ # resp.ephemerides[0].ephemeris_id #=> String
1439
+ # resp.ephemerides[0].name #=> String
1440
+ # resp.ephemerides[0].priority #=> Integer
1441
+ # resp.ephemerides[0].source_s3_object.bucket #=> String
1442
+ # resp.ephemerides[0].source_s3_object.key #=> String
1443
+ # resp.ephemerides[0].source_s3_object.version #=> String
1444
+ # resp.ephemerides[0].status #=> String, one of "VALIDATING", "INVALID", "ERROR", "ENABLED", "DISABLED", "EXPIRED"
1445
+ # resp.next_token #=> String
1446
+ #
1447
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ListEphemerides AWS API Documentation
1448
+ #
1449
+ # @overload list_ephemerides(params = {})
1450
+ # @param [Hash] params ({})
1451
+ def list_ephemerides(params = {}, options = {})
1452
+ req = build_request(:list_ephemerides, params)
1453
+ req.send_request(options)
1454
+ end
1455
+
1209
1456
  # Returns a list of ground stations.
1210
1457
  #
1211
1458
  # @option params [Integer] :max_results
@@ -1229,8 +1476,8 @@ module Aws::GroundStation
1229
1476
  #
1230
1477
  # resp = client.list_ground_stations({
1231
1478
  # max_results: 1,
1232
- # next_token: "String",
1233
- # satellite_id: "String",
1479
+ # next_token: "PaginationToken",
1480
+ # satellite_id: "Uuid",
1234
1481
  # })
1235
1482
  #
1236
1483
  # @example Response structure
@@ -1270,7 +1517,7 @@ module Aws::GroundStation
1270
1517
  #
1271
1518
  # resp = client.list_mission_profiles({
1272
1519
  # max_results: 1,
1273
- # next_token: "String",
1520
+ # next_token: "PaginationToken",
1274
1521
  # })
1275
1522
  #
1276
1523
  # @example Response structure
@@ -1311,13 +1558,17 @@ module Aws::GroundStation
1311
1558
  #
1312
1559
  # resp = client.list_satellites({
1313
1560
  # max_results: 1,
1314
- # next_token: "String",
1561
+ # next_token: "PaginationToken",
1315
1562
  # })
1316
1563
  #
1317
1564
  # @example Response structure
1318
1565
  #
1319
1566
  # resp.next_token #=> String
1320
1567
  # resp.satellites #=> Array
1568
+ # resp.satellites[0].current_ephemeris.ephemeris_id #=> String
1569
+ # resp.satellites[0].current_ephemeris.epoch #=> Time
1570
+ # resp.satellites[0].current_ephemeris.name #=> String
1571
+ # resp.satellites[0].current_ephemeris.source #=> String, one of "CUSTOMER_PROVIDED", "SPACE_TRACK"
1321
1572
  # resp.satellites[0].ground_stations #=> Array
1322
1573
  # resp.satellites[0].ground_stations[0] #=> String
1323
1574
  # resp.satellites[0].norad_satellite_id #=> Integer
@@ -1345,7 +1596,7 @@ module Aws::GroundStation
1345
1596
  # @example Request syntax with placeholder values
1346
1597
  #
1347
1598
  # resp = client.list_tags_for_resource({
1348
- # resource_arn: "String", # required
1599
+ # resource_arn: "AnyArn", # required
1349
1600
  # })
1350
1601
  #
1351
1602
  # @example Response structure
@@ -1365,7 +1616,7 @@ module Aws::GroundStation
1365
1616
  # Reserves a contact using specified parameters.
1366
1617
  #
1367
1618
  # @option params [required, Time,DateTime,Date,Integer,String] :end_time
1368
- # End time of a contact.
1619
+ # End time of a contact in UTC.
1369
1620
  #
1370
1621
  # @option params [required, String] :ground_station
1371
1622
  # Name of a ground station.
@@ -1377,7 +1628,7 @@ module Aws::GroundStation
1377
1628
  # ARN of a satellite
1378
1629
  #
1379
1630
  # @option params [required, Time,DateTime,Date,Integer,String] :start_time
1380
- # Start time of a contact.
1631
+ # Start time of a contact in UTC.
1381
1632
  #
1382
1633
  # @option params [Hash<String,String>] :tags
1383
1634
  # Tags assigned to a contact.
@@ -1390,7 +1641,7 @@ module Aws::GroundStation
1390
1641
  #
1391
1642
  # resp = client.reserve_contact({
1392
1643
  # end_time: Time.now, # required
1393
- # ground_station: "String", # required
1644
+ # ground_station: "GroundStationName", # required
1394
1645
  # mission_profile_arn: "MissionProfileArn", # required
1395
1646
  # satellite_arn: "satelliteArn", # required
1396
1647
  # start_time: Time.now, # required
@@ -1425,7 +1676,7 @@ module Aws::GroundStation
1425
1676
  # @example Request syntax with placeholder values
1426
1677
  #
1427
1678
  # resp = client.tag_resource({
1428
- # resource_arn: "String", # required
1679
+ # resource_arn: "AnyArn", # required
1429
1680
  # tags: { # required
1430
1681
  # "String" => "String",
1431
1682
  # },
@@ -1453,8 +1704,8 @@ module Aws::GroundStation
1453
1704
  # @example Request syntax with placeholder values
1454
1705
  #
1455
1706
  # resp = client.untag_resource({
1456
- # resource_arn: "String", # required
1457
- # tag_keys: ["String"], # required
1707
+ # resource_arn: "AnyArn", # required
1708
+ # tag_keys: ["UnboundedString"], # required
1458
1709
  # })
1459
1710
  #
1460
1711
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/UntagResource AWS API Documentation
@@ -1556,7 +1807,7 @@ module Aws::GroundStation
1556
1807
  # enabled: false, # required
1557
1808
  # },
1558
1809
  # },
1559
- # config_id: "String", # required
1810
+ # config_id: "Uuid", # required
1560
1811
  # config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, antenna-uplink, dataflow-endpoint, tracking, uplink-echo, s3-recording
1561
1812
  # name: "SafeName", # required
1562
1813
  # })
@@ -1576,6 +1827,54 @@ module Aws::GroundStation
1576
1827
  req.send_request(options)
1577
1828
  end
1578
1829
 
1830
+ # Updates an existing ephemeris
1831
+ #
1832
+ # @option params [required, Boolean] :enabled
1833
+ # Whether the ephemeris is enabled or not. Changing this value will not
1834
+ # require the ephemeris to be re-validated.
1835
+ #
1836
+ # @option params [required, String] :ephemeris_id
1837
+ # The AWS Ground Station ephemeris ID.
1838
+ #
1839
+ # @option params [String] :name
1840
+ # A name string associated with the ephemeris. Used as a human-readable
1841
+ # identifier for the ephemeris.
1842
+ #
1843
+ # @option params [Integer] :priority
1844
+ # Customer-provided priority score to establish the order in which
1845
+ # overlapping ephemerides should be used.
1846
+ #
1847
+ # The default for customer-provided ephemeris priority is 1, and higher
1848
+ # numbers take precedence.
1849
+ #
1850
+ # Priority must be 1 or greater
1851
+ #
1852
+ # @return [Types::EphemerisIdResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1853
+ #
1854
+ # * {Types::EphemerisIdResponse#ephemeris_id #ephemeris_id} => String
1855
+ #
1856
+ # @example Request syntax with placeholder values
1857
+ #
1858
+ # resp = client.update_ephemeris({
1859
+ # enabled: false, # required
1860
+ # ephemeris_id: "Uuid", # required
1861
+ # name: "SafeName",
1862
+ # priority: 1,
1863
+ # })
1864
+ #
1865
+ # @example Response structure
1866
+ #
1867
+ # resp.ephemeris_id #=> String
1868
+ #
1869
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/UpdateEphemeris AWS API Documentation
1870
+ #
1871
+ # @overload update_ephemeris(params = {})
1872
+ # @param [Hash] params ({})
1873
+ def update_ephemeris(params = {}, options = {})
1874
+ req = build_request(:update_ephemeris, params)
1875
+ req.send_request(options)
1876
+ end
1877
+
1579
1878
  # Updates a mission profile.
1580
1879
  #
1581
1880
  # Updating a mission profile will not update the execution parameters
@@ -1620,7 +1919,7 @@ module Aws::GroundStation
1620
1919
  # ["ConfigArn"],
1621
1920
  # ],
1622
1921
  # minimum_viable_contact_duration_seconds: 1,
1623
- # mission_profile_id: "String", # required
1922
+ # mission_profile_id: "Uuid", # required
1624
1923
  # name: "SafeName",
1625
1924
  # tracking_config_arn: "ConfigArn",
1626
1925
  # })
@@ -1651,7 +1950,7 @@ module Aws::GroundStation
1651
1950
  params: params,
1652
1951
  config: config)
1653
1952
  context[:gem_name] = 'aws-sdk-groundstation'
1654
- context[:gem_version] = '1.28.0'
1953
+ context[:gem_version] = '1.29.0'
1655
1954
  Seahorse::Client::Request.new(handlers, context)
1656
1955
  end
1657
1956