aws-sdk-groundstation 1.27.0 → 1.29.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-groundstation/client.rb +347 -31
- data/lib/aws-sdk-groundstation/client_api.rb +275 -59
- data/lib/aws-sdk-groundstation/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-groundstation/endpoint_provider.rb +112 -0
- data/lib/aws-sdk-groundstation/endpoints.rb +435 -0
- data/lib/aws-sdk-groundstation/plugins/endpoints.rb +128 -0
- data/lib/aws-sdk-groundstation/types.rb +709 -36
- data/lib/aws-sdk-groundstation.rb +5 -1
- metadata +8 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 249b713bc7971a443e010439c89d67791aefbecaad5507fd5ef44bdcf1db267a
|
4
|
+
data.tar.gz: 8517de08ffa7bd876519d9fffbb63530ccf47bfa15f0404282e9a31d47f0a5cb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c805ded350c3b7f76ace6124eaf7f6ab07c8e88f58aefb7f2e219510cf82666d864d4b4964fac7dd2e9cb8ee30ac3fcd62e77e80c107a337628292e7e04f1ea3
|
7
|
+
data.tar.gz: d85e2ddaa7a55f466546f7d4af844b7aff03b2d524a79655b895f96ce331baf0b7d2c9b182371abf91031486c816c5f6606a735eaa91c03ed50fdf0946679aa0
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
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
|
+
|
9
|
+
1.28.0 (2022-10-25)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.27.0 (2022-02-24)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.29.0
|
@@ -30,7 +30,7 @@ require 'aws-sdk-core/plugins/http_checksum.rb'
|
|
30
30
|
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
31
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
32
32
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
33
|
-
require 'aws-sdk-core/plugins/
|
33
|
+
require 'aws-sdk-core/plugins/sign.rb'
|
34
34
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
35
35
|
|
36
36
|
Aws::Plugins::GlobalConfiguration.add_identifier(:groundstation)
|
@@ -79,8 +79,9 @@ module Aws::GroundStation
|
|
79
79
|
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
80
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
81
81
|
add_plugin(Aws::Plugins::RecursionDetection)
|
82
|
-
add_plugin(Aws::Plugins::
|
82
|
+
add_plugin(Aws::Plugins::Sign)
|
83
83
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
84
|
+
add_plugin(Aws::GroundStation::Plugins::Endpoints)
|
84
85
|
|
85
86
|
# @overload initialize(options)
|
86
87
|
# @param [Hash] options
|
@@ -287,6 +288,19 @@ module Aws::GroundStation
|
|
287
288
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
288
289
|
# requests are made, and retries are disabled.
|
289
290
|
#
|
291
|
+
# @option options [Aws::TokenProvider] :token_provider
|
292
|
+
# A Bearer Token Provider. This can be an instance of any one of the
|
293
|
+
# following classes:
|
294
|
+
#
|
295
|
+
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
296
|
+
# tokens.
|
297
|
+
#
|
298
|
+
# * `Aws::SSOTokenProvider` - Used for loading tokens from AWS SSO using an
|
299
|
+
# access token generated from `aws login`.
|
300
|
+
#
|
301
|
+
# When `:token_provider` is not configured directly, the `Aws::TokenProviderChain`
|
302
|
+
# will be used to search for tokens configured for your profile in shared configuration files.
|
303
|
+
#
|
290
304
|
# @option options [Boolean] :use_dualstack_endpoint
|
291
305
|
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
292
306
|
# will be used if available.
|
@@ -300,6 +314,9 @@ module Aws::GroundStation
|
|
300
314
|
# When `true`, request parameters are validated before
|
301
315
|
# sending the request.
|
302
316
|
#
|
317
|
+
# @option options [Aws::GroundStation::EndpointProvider] :endpoint_provider
|
318
|
+
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::GroundStation::EndpointParameters`
|
319
|
+
#
|
303
320
|
# @option options [URI::HTTP,String] :http_proxy A proxy to send
|
304
321
|
# requests through. Formatted like 'http://proxy.com:123'.
|
305
322
|
#
|
@@ -363,7 +380,7 @@ module Aws::GroundStation
|
|
363
380
|
# @example Request syntax with placeholder values
|
364
381
|
#
|
365
382
|
# resp = client.cancel_contact({
|
366
|
-
# contact_id: "
|
383
|
+
# contact_id: "Uuid", # required
|
367
384
|
# })
|
368
385
|
#
|
369
386
|
# @example Response structure
|
@@ -545,6 +562,101 @@ module Aws::GroundStation
|
|
545
562
|
req.send_request(options)
|
546
563
|
end
|
547
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
|
+
|
548
660
|
# Creates a mission profile.
|
549
661
|
#
|
550
662
|
# `dataflowEdges` is a list of lists of strings. Each lower level list
|
@@ -626,7 +738,7 @@ module Aws::GroundStation
|
|
626
738
|
# @example Request syntax with placeholder values
|
627
739
|
#
|
628
740
|
# resp = client.delete_config({
|
629
|
-
# config_id: "
|
741
|
+
# config_id: "Uuid", # required
|
630
742
|
# config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, antenna-uplink, dataflow-endpoint, tracking, uplink-echo, s3-recording
|
631
743
|
# })
|
632
744
|
#
|
@@ -657,7 +769,7 @@ module Aws::GroundStation
|
|
657
769
|
# @example Request syntax with placeholder values
|
658
770
|
#
|
659
771
|
# resp = client.delete_dataflow_endpoint_group({
|
660
|
-
# dataflow_endpoint_group_id: "
|
772
|
+
# dataflow_endpoint_group_id: "Uuid", # required
|
661
773
|
# })
|
662
774
|
#
|
663
775
|
# @example Response structure
|
@@ -673,6 +785,34 @@ module Aws::GroundStation
|
|
673
785
|
req.send_request(options)
|
674
786
|
end
|
675
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
|
+
|
676
816
|
# Deletes a mission profile.
|
677
817
|
#
|
678
818
|
# @option params [required, String] :mission_profile_id
|
@@ -685,7 +825,7 @@ module Aws::GroundStation
|
|
685
825
|
# @example Request syntax with placeholder values
|
686
826
|
#
|
687
827
|
# resp = client.delete_mission_profile({
|
688
|
-
# mission_profile_id: "
|
828
|
+
# mission_profile_id: "Uuid", # required
|
689
829
|
# })
|
690
830
|
#
|
691
831
|
# @example Response structure
|
@@ -726,7 +866,7 @@ module Aws::GroundStation
|
|
726
866
|
# @example Request syntax with placeholder values
|
727
867
|
#
|
728
868
|
# resp = client.describe_contact({
|
729
|
-
# contact_id: "
|
869
|
+
# contact_id: "Uuid", # required
|
730
870
|
# })
|
731
871
|
#
|
732
872
|
# @example Response structure
|
@@ -790,6 +930,60 @@ module Aws::GroundStation
|
|
790
930
|
req.send_request(options)
|
791
931
|
end
|
792
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<String,String>
|
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
|
+
|
793
987
|
# Returns `Config` information.
|
794
988
|
#
|
795
989
|
# Only one `Config` response can be returned.
|
@@ -812,7 +1006,7 @@ module Aws::GroundStation
|
|
812
1006
|
# @example Request syntax with placeholder values
|
813
1007
|
#
|
814
1008
|
# resp = client.get_config({
|
815
|
-
# config_id: "
|
1009
|
+
# config_id: "Uuid", # required
|
816
1010
|
# config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, antenna-uplink, dataflow-endpoint, tracking, uplink-echo, s3-recording
|
817
1011
|
# })
|
818
1012
|
#
|
@@ -875,7 +1069,7 @@ module Aws::GroundStation
|
|
875
1069
|
# @example Request syntax with placeholder values
|
876
1070
|
#
|
877
1071
|
# resp = client.get_dataflow_endpoint_group({
|
878
|
-
# dataflow_endpoint_group_id: "
|
1072
|
+
# dataflow_endpoint_group_id: "Uuid", # required
|
879
1073
|
# })
|
880
1074
|
#
|
881
1075
|
# @example Response structure
|
@@ -966,7 +1160,7 @@ module Aws::GroundStation
|
|
966
1160
|
# @example Request syntax with placeholder values
|
967
1161
|
#
|
968
1162
|
# resp = client.get_mission_profile({
|
969
|
-
# mission_profile_id: "
|
1163
|
+
# mission_profile_id: "Uuid", # required
|
970
1164
|
# })
|
971
1165
|
#
|
972
1166
|
# @example Response structure
|
@@ -1001,6 +1195,7 @@ module Aws::GroundStation
|
|
1001
1195
|
#
|
1002
1196
|
# @return [Types::GetSatelliteResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1003
1197
|
#
|
1198
|
+
# * {Types::GetSatelliteResponse#current_ephemeris #current_ephemeris} => Types::EphemerisMetaData
|
1004
1199
|
# * {Types::GetSatelliteResponse#ground_stations #ground_stations} => Array<String>
|
1005
1200
|
# * {Types::GetSatelliteResponse#norad_satellite_id #norad_satellite_id} => Integer
|
1006
1201
|
# * {Types::GetSatelliteResponse#satellite_arn #satellite_arn} => String
|
@@ -1009,11 +1204,15 @@ module Aws::GroundStation
|
|
1009
1204
|
# @example Request syntax with placeholder values
|
1010
1205
|
#
|
1011
1206
|
# resp = client.get_satellite({
|
1012
|
-
# satellite_id: "
|
1207
|
+
# satellite_id: "Uuid", # required
|
1013
1208
|
# })
|
1014
1209
|
#
|
1015
1210
|
# @example Response structure
|
1016
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"
|
1017
1216
|
# resp.ground_stations #=> Array
|
1018
1217
|
# resp.ground_stations[0] #=> String
|
1019
1218
|
# resp.norad_satellite_id #=> Integer
|
@@ -1049,7 +1248,7 @@ module Aws::GroundStation
|
|
1049
1248
|
#
|
1050
1249
|
# resp = client.list_configs({
|
1051
1250
|
# max_results: 1,
|
1052
|
-
# next_token: "
|
1251
|
+
# next_token: "PaginationToken",
|
1053
1252
|
# })
|
1054
1253
|
#
|
1055
1254
|
# @example Response structure
|
@@ -1076,7 +1275,7 @@ module Aws::GroundStation
|
|
1076
1275
|
# `groundStation`, `missionprofileArn`, and `satelliteArn`.
|
1077
1276
|
#
|
1078
1277
|
# @option params [required, Time,DateTime,Date,Integer,String] :end_time
|
1079
|
-
# End time of a contact.
|
1278
|
+
# End time of a contact in UTC.
|
1080
1279
|
#
|
1081
1280
|
# @option params [String] :ground_station
|
1082
1281
|
# Name of a ground station.
|
@@ -1095,7 +1294,7 @@ module Aws::GroundStation
|
|
1095
1294
|
# ARN of a satellite.
|
1096
1295
|
#
|
1097
1296
|
# @option params [required, Time,DateTime,Date,Integer,String] :start_time
|
1098
|
-
# Start time of a contact.
|
1297
|
+
# Start time of a contact in UTC.
|
1099
1298
|
#
|
1100
1299
|
# @option params [required, Array<String>] :status_list
|
1101
1300
|
# Status of a contact reservation.
|
@@ -1111,10 +1310,10 @@ module Aws::GroundStation
|
|
1111
1310
|
#
|
1112
1311
|
# resp = client.list_contacts({
|
1113
1312
|
# end_time: Time.now, # required
|
1114
|
-
# ground_station: "
|
1313
|
+
# ground_station: "GroundStationName",
|
1115
1314
|
# max_results: 1,
|
1116
1315
|
# mission_profile_arn: "MissionProfileArn",
|
1117
|
-
# next_token: "
|
1316
|
+
# next_token: "PaginationToken",
|
1118
1317
|
# satellite_arn: "satelliteArn",
|
1119
1318
|
# start_time: Time.now, # required
|
1120
1319
|
# status_list: ["AVAILABLE"], # required, accepts AVAILABLE, AWS_CANCELLED, AWS_FAILED, CANCELLED, CANCELLING, COMPLETED, FAILED, FAILED_TO_SCHEDULE, PASS, POSTPASS, PREPASS, SCHEDULED, SCHEDULING
|
@@ -1170,7 +1369,7 @@ module Aws::GroundStation
|
|
1170
1369
|
#
|
1171
1370
|
# resp = client.list_dataflow_endpoint_groups({
|
1172
1371
|
# max_results: 1,
|
1173
|
-
# next_token: "
|
1372
|
+
# next_token: "PaginationToken",
|
1174
1373
|
# })
|
1175
1374
|
#
|
1176
1375
|
# @example Response structure
|
@@ -1189,6 +1388,71 @@ module Aws::GroundStation
|
|
1189
1388
|
req.send_request(options)
|
1190
1389
|
end
|
1191
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<Types::EphemerisItem>
|
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
|
+
|
1192
1456
|
# Returns a list of ground stations.
|
1193
1457
|
#
|
1194
1458
|
# @option params [Integer] :max_results
|
@@ -1212,8 +1476,8 @@ module Aws::GroundStation
|
|
1212
1476
|
#
|
1213
1477
|
# resp = client.list_ground_stations({
|
1214
1478
|
# max_results: 1,
|
1215
|
-
# next_token: "
|
1216
|
-
# satellite_id: "
|
1479
|
+
# next_token: "PaginationToken",
|
1480
|
+
# satellite_id: "Uuid",
|
1217
1481
|
# })
|
1218
1482
|
#
|
1219
1483
|
# @example Response structure
|
@@ -1253,7 +1517,7 @@ module Aws::GroundStation
|
|
1253
1517
|
#
|
1254
1518
|
# resp = client.list_mission_profiles({
|
1255
1519
|
# max_results: 1,
|
1256
|
-
# next_token: "
|
1520
|
+
# next_token: "PaginationToken",
|
1257
1521
|
# })
|
1258
1522
|
#
|
1259
1523
|
# @example Response structure
|
@@ -1294,13 +1558,17 @@ module Aws::GroundStation
|
|
1294
1558
|
#
|
1295
1559
|
# resp = client.list_satellites({
|
1296
1560
|
# max_results: 1,
|
1297
|
-
# next_token: "
|
1561
|
+
# next_token: "PaginationToken",
|
1298
1562
|
# })
|
1299
1563
|
#
|
1300
1564
|
# @example Response structure
|
1301
1565
|
#
|
1302
1566
|
# resp.next_token #=> String
|
1303
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"
|
1304
1572
|
# resp.satellites[0].ground_stations #=> Array
|
1305
1573
|
# resp.satellites[0].ground_stations[0] #=> String
|
1306
1574
|
# resp.satellites[0].norad_satellite_id #=> Integer
|
@@ -1328,7 +1596,7 @@ module Aws::GroundStation
|
|
1328
1596
|
# @example Request syntax with placeholder values
|
1329
1597
|
#
|
1330
1598
|
# resp = client.list_tags_for_resource({
|
1331
|
-
# resource_arn: "
|
1599
|
+
# resource_arn: "AnyArn", # required
|
1332
1600
|
# })
|
1333
1601
|
#
|
1334
1602
|
# @example Response structure
|
@@ -1348,7 +1616,7 @@ module Aws::GroundStation
|
|
1348
1616
|
# Reserves a contact using specified parameters.
|
1349
1617
|
#
|
1350
1618
|
# @option params [required, Time,DateTime,Date,Integer,String] :end_time
|
1351
|
-
# End time of a contact.
|
1619
|
+
# End time of a contact in UTC.
|
1352
1620
|
#
|
1353
1621
|
# @option params [required, String] :ground_station
|
1354
1622
|
# Name of a ground station.
|
@@ -1360,7 +1628,7 @@ module Aws::GroundStation
|
|
1360
1628
|
# ARN of a satellite
|
1361
1629
|
#
|
1362
1630
|
# @option params [required, Time,DateTime,Date,Integer,String] :start_time
|
1363
|
-
# Start time of a contact.
|
1631
|
+
# Start time of a contact in UTC.
|
1364
1632
|
#
|
1365
1633
|
# @option params [Hash<String,String>] :tags
|
1366
1634
|
# Tags assigned to a contact.
|
@@ -1373,7 +1641,7 @@ module Aws::GroundStation
|
|
1373
1641
|
#
|
1374
1642
|
# resp = client.reserve_contact({
|
1375
1643
|
# end_time: Time.now, # required
|
1376
|
-
# ground_station: "
|
1644
|
+
# ground_station: "GroundStationName", # required
|
1377
1645
|
# mission_profile_arn: "MissionProfileArn", # required
|
1378
1646
|
# satellite_arn: "satelliteArn", # required
|
1379
1647
|
# start_time: Time.now, # required
|
@@ -1408,7 +1676,7 @@ module Aws::GroundStation
|
|
1408
1676
|
# @example Request syntax with placeholder values
|
1409
1677
|
#
|
1410
1678
|
# resp = client.tag_resource({
|
1411
|
-
# resource_arn: "
|
1679
|
+
# resource_arn: "AnyArn", # required
|
1412
1680
|
# tags: { # required
|
1413
1681
|
# "String" => "String",
|
1414
1682
|
# },
|
@@ -1436,8 +1704,8 @@ module Aws::GroundStation
|
|
1436
1704
|
# @example Request syntax with placeholder values
|
1437
1705
|
#
|
1438
1706
|
# resp = client.untag_resource({
|
1439
|
-
# resource_arn: "
|
1440
|
-
# tag_keys: ["
|
1707
|
+
# resource_arn: "AnyArn", # required
|
1708
|
+
# tag_keys: ["UnboundedString"], # required
|
1441
1709
|
# })
|
1442
1710
|
#
|
1443
1711
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/UntagResource AWS API Documentation
|
@@ -1539,7 +1807,7 @@ module Aws::GroundStation
|
|
1539
1807
|
# enabled: false, # required
|
1540
1808
|
# },
|
1541
1809
|
# },
|
1542
|
-
# config_id: "
|
1810
|
+
# config_id: "Uuid", # required
|
1543
1811
|
# config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, antenna-uplink, dataflow-endpoint, tracking, uplink-echo, s3-recording
|
1544
1812
|
# name: "SafeName", # required
|
1545
1813
|
# })
|
@@ -1559,6 +1827,54 @@ module Aws::GroundStation
|
|
1559
1827
|
req.send_request(options)
|
1560
1828
|
end
|
1561
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
|
+
|
1562
1878
|
# Updates a mission profile.
|
1563
1879
|
#
|
1564
1880
|
# Updating a mission profile will not update the execution parameters
|
@@ -1603,7 +1919,7 @@ module Aws::GroundStation
|
|
1603
1919
|
# ["ConfigArn"],
|
1604
1920
|
# ],
|
1605
1921
|
# minimum_viable_contact_duration_seconds: 1,
|
1606
|
-
# mission_profile_id: "
|
1922
|
+
# mission_profile_id: "Uuid", # required
|
1607
1923
|
# name: "SafeName",
|
1608
1924
|
# tracking_config_arn: "ConfigArn",
|
1609
1925
|
# })
|
@@ -1634,7 +1950,7 @@ module Aws::GroundStation
|
|
1634
1950
|
params: params,
|
1635
1951
|
config: config)
|
1636
1952
|
context[:gem_name] = 'aws-sdk-groundstation'
|
1637
|
-
context[:gem_version] = '1.
|
1953
|
+
context[:gem_version] = '1.29.0'
|
1638
1954
|
Seahorse::Client::Request.new(handlers, context)
|
1639
1955
|
end
|
1640
1956
|
|