aws-sdk-groundstation 1.74.0 → 1.75.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-groundstation/client.rb +262 -1
- data/lib/aws-sdk-groundstation/client_api.rb +112 -0
- data/lib/aws-sdk-groundstation/errors.rb +21 -0
- data/lib/aws-sdk-groundstation/types.rb +326 -0
- data/lib/aws-sdk-groundstation.rb +1 -1
- data/sig/client.rbs +129 -0
- data/sig/errors.rbs +4 -0
- data/sig/types.rbs +110 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 46effe16395ab68e73798bfc323d7b850e908e57bc0f6617dbdaf2c2c66758c4
|
|
4
|
+
data.tar.gz: ee195d0c81107b18a0790367f7e3edd78bda6668012114b0f60b55df4762d5ef
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1a2060ead0c1834e550f5f87ff7e30b04be1462a9482df0d24a383a5248cb19a2dd5c67020e88a3e5b855b133da1fd206e3fb2246d9c8baaaa1a93b05c03cd2b
|
|
7
|
+
data.tar.gz: 8fbbba0bf1d1e6e8437afe398de9a52fd24b15a6b4af851c247d6654f708f26545a831b6957d968c103f96bd95df059f5dc4325447cd343414f2c97ca77e3cdd
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.75.0
|
|
@@ -695,6 +695,58 @@ module Aws::GroundStation
|
|
|
695
695
|
# agent_status: "SUCCESS", # accepts SUCCESS, FAILED, ACTIVE, INACTIVE
|
|
696
696
|
# audit_results: "HEALTHY", # accepts HEALTHY, UNHEALTHY
|
|
697
697
|
# },
|
|
698
|
+
# uplink_aws_ground_station_agent_endpoint: {
|
|
699
|
+
# name: "SafeName", # required
|
|
700
|
+
# dataflow_details: { # required
|
|
701
|
+
# agent_connection_details: {
|
|
702
|
+
# ingress_address_and_port: { # required
|
|
703
|
+
# socket_address: { # required
|
|
704
|
+
# name: "String", # required
|
|
705
|
+
# port: 1, # required
|
|
706
|
+
# },
|
|
707
|
+
# mtu: 1,
|
|
708
|
+
# },
|
|
709
|
+
# agent_ip_and_port_address: { # required
|
|
710
|
+
# socket_address: { # required
|
|
711
|
+
# name: "IpV4Address", # required
|
|
712
|
+
# port_range: { # required
|
|
713
|
+
# minimum: 1, # required
|
|
714
|
+
# maximum: 1, # required
|
|
715
|
+
# },
|
|
716
|
+
# },
|
|
717
|
+
# mtu: 1,
|
|
718
|
+
# },
|
|
719
|
+
# },
|
|
720
|
+
# },
|
|
721
|
+
# agent_status: "SUCCESS", # accepts SUCCESS, FAILED, ACTIVE, INACTIVE
|
|
722
|
+
# audit_results: "HEALTHY", # accepts HEALTHY, UNHEALTHY
|
|
723
|
+
# },
|
|
724
|
+
# downlink_aws_ground_station_agent_endpoint: {
|
|
725
|
+
# name: "SafeName", # required
|
|
726
|
+
# dataflow_details: { # required
|
|
727
|
+
# agent_connection_details: {
|
|
728
|
+
# agent_ip_and_port_address: { # required
|
|
729
|
+
# socket_address: { # required
|
|
730
|
+
# name: "IpV4Address", # required
|
|
731
|
+
# port_range: { # required
|
|
732
|
+
# minimum: 1, # required
|
|
733
|
+
# maximum: 1, # required
|
|
734
|
+
# },
|
|
735
|
+
# },
|
|
736
|
+
# mtu: 1,
|
|
737
|
+
# },
|
|
738
|
+
# egress_address_and_port: { # required
|
|
739
|
+
# socket_address: { # required
|
|
740
|
+
# name: "String", # required
|
|
741
|
+
# port: 1, # required
|
|
742
|
+
# },
|
|
743
|
+
# mtu: 1,
|
|
744
|
+
# },
|
|
745
|
+
# },
|
|
746
|
+
# },
|
|
747
|
+
# agent_status: "SUCCESS", # accepts SUCCESS, FAILED, ACTIVE, INACTIVE
|
|
748
|
+
# audit_results: "HEALTHY", # accepts HEALTHY, UNHEALTHY
|
|
749
|
+
# },
|
|
698
750
|
# health_status: "HEALTHY", # accepts HEALTHY, UNHEALTHY
|
|
699
751
|
# health_reasons: ["NO_REGISTERED_AGENT"], # accepts NO_REGISTERED_AGENT, INVALID_IP_OWNERSHIP, NOT_AUTHORIZED_TO_CREATE_SLR, UNVERIFIED_IP_OWNERSHIP, INITIALIZING_DATAPLANE, DATAPLANE_FAILURE, HEALTHY
|
|
700
752
|
# },
|
|
@@ -719,6 +771,114 @@ module Aws::GroundStation
|
|
|
719
771
|
req.send_request(options)
|
|
720
772
|
end
|
|
721
773
|
|
|
774
|
+
# Creates a `DataflowEndpointGroupV2` containing the specified list of
|
|
775
|
+
# `DataflowEndpoint` objects.
|
|
776
|
+
#
|
|
777
|
+
# The `name` field in each endpoint is used in your mission profile
|
|
778
|
+
# `DataflowEndpointConfig` to specify which endpoints to use during a
|
|
779
|
+
# contact.
|
|
780
|
+
#
|
|
781
|
+
# When a contact uses multiple `DataflowEndpointConfig` objects, each
|
|
782
|
+
# `Config` must match a `DataflowEndpoint` in the same group.
|
|
783
|
+
#
|
|
784
|
+
# @option params [required, Array<Types::CreateEndpointDetails>] :endpoints
|
|
785
|
+
# Dataflow endpoint group's endpoint definitions
|
|
786
|
+
#
|
|
787
|
+
# @option params [Integer] :contact_pre_pass_duration_seconds
|
|
788
|
+
# Amount of time, in seconds, before a contact starts that the Ground
|
|
789
|
+
# Station Dataflow Endpoint Group will be in a `PREPASS` state. A Ground
|
|
790
|
+
# Station Dataflow Endpoint Group State Change event will be emitted
|
|
791
|
+
# when the Dataflow Endpoint Group enters and exits the `PREPASS` state.
|
|
792
|
+
#
|
|
793
|
+
# @option params [Integer] :contact_post_pass_duration_seconds
|
|
794
|
+
# Amount of time, in seconds, after a contact ends that the Ground
|
|
795
|
+
# Station Dataflow Endpoint Group will be in a `POSTPASS` state. A
|
|
796
|
+
# Ground Station Dataflow Endpoint Group State Change event will be
|
|
797
|
+
# emitted when the Dataflow Endpoint Group enters and exits the
|
|
798
|
+
# `POSTPASS` state.
|
|
799
|
+
#
|
|
800
|
+
# @option params [Hash<String,String>] :tags
|
|
801
|
+
# Tags of a V2 dataflow endpoint group.
|
|
802
|
+
#
|
|
803
|
+
# @return [Types::CreateDataflowEndpointGroupV2Response] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
804
|
+
#
|
|
805
|
+
# * {Types::CreateDataflowEndpointGroupV2Response#dataflow_endpoint_group_id #dataflow_endpoint_group_id} => String
|
|
806
|
+
#
|
|
807
|
+
# @example Request syntax with placeholder values
|
|
808
|
+
#
|
|
809
|
+
# resp = client.create_dataflow_endpoint_group_v2({
|
|
810
|
+
# endpoints: [ # required
|
|
811
|
+
# {
|
|
812
|
+
# uplink_aws_ground_station_agent_endpoint: {
|
|
813
|
+
# name: "SafeName", # required
|
|
814
|
+
# dataflow_details: { # required
|
|
815
|
+
# agent_connection_details: {
|
|
816
|
+
# ingress_address_and_port: { # required
|
|
817
|
+
# socket_address: { # required
|
|
818
|
+
# name: "String", # required
|
|
819
|
+
# port: 1, # required
|
|
820
|
+
# },
|
|
821
|
+
# mtu: 1,
|
|
822
|
+
# },
|
|
823
|
+
# agent_ip_and_port_address: { # required
|
|
824
|
+
# socket_address: { # required
|
|
825
|
+
# name: "IpV4Address", # required
|
|
826
|
+
# port_range: { # required
|
|
827
|
+
# minimum: 1, # required
|
|
828
|
+
# maximum: 1, # required
|
|
829
|
+
# },
|
|
830
|
+
# },
|
|
831
|
+
# mtu: 1,
|
|
832
|
+
# },
|
|
833
|
+
# },
|
|
834
|
+
# },
|
|
835
|
+
# },
|
|
836
|
+
# downlink_aws_ground_station_agent_endpoint: {
|
|
837
|
+
# name: "SafeName", # required
|
|
838
|
+
# dataflow_details: { # required
|
|
839
|
+
# agent_connection_details: {
|
|
840
|
+
# agent_ip_and_port_address: { # required
|
|
841
|
+
# socket_address: { # required
|
|
842
|
+
# name: "IpV4Address", # required
|
|
843
|
+
# port_range: { # required
|
|
844
|
+
# minimum: 1, # required
|
|
845
|
+
# maximum: 1, # required
|
|
846
|
+
# },
|
|
847
|
+
# },
|
|
848
|
+
# mtu: 1,
|
|
849
|
+
# },
|
|
850
|
+
# egress_address_and_port: { # required
|
|
851
|
+
# socket_address: { # required
|
|
852
|
+
# name: "String", # required
|
|
853
|
+
# port: 1, # required
|
|
854
|
+
# },
|
|
855
|
+
# mtu: 1,
|
|
856
|
+
# },
|
|
857
|
+
# },
|
|
858
|
+
# },
|
|
859
|
+
# },
|
|
860
|
+
# },
|
|
861
|
+
# ],
|
|
862
|
+
# contact_pre_pass_duration_seconds: 1,
|
|
863
|
+
# contact_post_pass_duration_seconds: 1,
|
|
864
|
+
# tags: {
|
|
865
|
+
# "String" => "String",
|
|
866
|
+
# },
|
|
867
|
+
# })
|
|
868
|
+
#
|
|
869
|
+
# @example Response structure
|
|
870
|
+
#
|
|
871
|
+
# resp.dataflow_endpoint_group_id #=> String
|
|
872
|
+
#
|
|
873
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/CreateDataflowEndpointGroupV2 AWS API Documentation
|
|
874
|
+
#
|
|
875
|
+
# @overload create_dataflow_endpoint_group_v2(params = {})
|
|
876
|
+
# @param [Hash] params ({})
|
|
877
|
+
def create_dataflow_endpoint_group_v2(params = {}, options = {})
|
|
878
|
+
req = build_request(:create_dataflow_endpoint_group_v2, params)
|
|
879
|
+
req.send_request(options)
|
|
880
|
+
end
|
|
881
|
+
|
|
722
882
|
# Create an ephemeris with your specified EphemerisData.
|
|
723
883
|
#
|
|
724
884
|
# @option params [String] :satellite_id
|
|
@@ -1108,6 +1268,26 @@ module Aws::GroundStation
|
|
|
1108
1268
|
# resp.dataflow_list[0].source.config_details.endpoint_details.aws_ground_station_agent_endpoint.ingress_address.mtu #=> Integer
|
|
1109
1269
|
# resp.dataflow_list[0].source.config_details.endpoint_details.aws_ground_station_agent_endpoint.agent_status #=> String, one of "SUCCESS", "FAILED", "ACTIVE", "INACTIVE"
|
|
1110
1270
|
# resp.dataflow_list[0].source.config_details.endpoint_details.aws_ground_station_agent_endpoint.audit_results #=> String, one of "HEALTHY", "UNHEALTHY"
|
|
1271
|
+
# resp.dataflow_list[0].source.config_details.endpoint_details.uplink_aws_ground_station_agent_endpoint.name #=> String
|
|
1272
|
+
# resp.dataflow_list[0].source.config_details.endpoint_details.uplink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.ingress_address_and_port.socket_address.name #=> String
|
|
1273
|
+
# resp.dataflow_list[0].source.config_details.endpoint_details.uplink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.ingress_address_and_port.socket_address.port #=> Integer
|
|
1274
|
+
# resp.dataflow_list[0].source.config_details.endpoint_details.uplink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.ingress_address_and_port.mtu #=> Integer
|
|
1275
|
+
# resp.dataflow_list[0].source.config_details.endpoint_details.uplink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.agent_ip_and_port_address.socket_address.name #=> String
|
|
1276
|
+
# resp.dataflow_list[0].source.config_details.endpoint_details.uplink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.agent_ip_and_port_address.socket_address.port_range.minimum #=> Integer
|
|
1277
|
+
# resp.dataflow_list[0].source.config_details.endpoint_details.uplink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.agent_ip_and_port_address.socket_address.port_range.maximum #=> Integer
|
|
1278
|
+
# resp.dataflow_list[0].source.config_details.endpoint_details.uplink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.agent_ip_and_port_address.mtu #=> Integer
|
|
1279
|
+
# resp.dataflow_list[0].source.config_details.endpoint_details.uplink_aws_ground_station_agent_endpoint.agent_status #=> String, one of "SUCCESS", "FAILED", "ACTIVE", "INACTIVE"
|
|
1280
|
+
# resp.dataflow_list[0].source.config_details.endpoint_details.uplink_aws_ground_station_agent_endpoint.audit_results #=> String, one of "HEALTHY", "UNHEALTHY"
|
|
1281
|
+
# resp.dataflow_list[0].source.config_details.endpoint_details.downlink_aws_ground_station_agent_endpoint.name #=> String
|
|
1282
|
+
# resp.dataflow_list[0].source.config_details.endpoint_details.downlink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.agent_ip_and_port_address.socket_address.name #=> String
|
|
1283
|
+
# resp.dataflow_list[0].source.config_details.endpoint_details.downlink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.agent_ip_and_port_address.socket_address.port_range.minimum #=> Integer
|
|
1284
|
+
# resp.dataflow_list[0].source.config_details.endpoint_details.downlink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.agent_ip_and_port_address.socket_address.port_range.maximum #=> Integer
|
|
1285
|
+
# resp.dataflow_list[0].source.config_details.endpoint_details.downlink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.agent_ip_and_port_address.mtu #=> Integer
|
|
1286
|
+
# resp.dataflow_list[0].source.config_details.endpoint_details.downlink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.egress_address_and_port.socket_address.name #=> String
|
|
1287
|
+
# resp.dataflow_list[0].source.config_details.endpoint_details.downlink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.egress_address_and_port.socket_address.port #=> Integer
|
|
1288
|
+
# resp.dataflow_list[0].source.config_details.endpoint_details.downlink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.egress_address_and_port.mtu #=> Integer
|
|
1289
|
+
# resp.dataflow_list[0].source.config_details.endpoint_details.downlink_aws_ground_station_agent_endpoint.agent_status #=> String, one of "SUCCESS", "FAILED", "ACTIVE", "INACTIVE"
|
|
1290
|
+
# resp.dataflow_list[0].source.config_details.endpoint_details.downlink_aws_ground_station_agent_endpoint.audit_results #=> String, one of "HEALTHY", "UNHEALTHY"
|
|
1111
1291
|
# resp.dataflow_list[0].source.config_details.endpoint_details.health_status #=> String, one of "HEALTHY", "UNHEALTHY"
|
|
1112
1292
|
# resp.dataflow_list[0].source.config_details.endpoint_details.health_reasons #=> Array
|
|
1113
1293
|
# resp.dataflow_list[0].source.config_details.endpoint_details.health_reasons[0] #=> String, one of "NO_REGISTERED_AGENT", "INVALID_IP_OWNERSHIP", "NOT_AUTHORIZED_TO_CREATE_SLR", "UNVERIFIED_IP_OWNERSHIP", "INITIALIZING_DATAPLANE", "DATAPLANE_FAILURE", "HEALTHY"
|
|
@@ -1137,6 +1317,26 @@ module Aws::GroundStation
|
|
|
1137
1317
|
# resp.dataflow_list[0].destination.config_details.endpoint_details.aws_ground_station_agent_endpoint.ingress_address.mtu #=> Integer
|
|
1138
1318
|
# resp.dataflow_list[0].destination.config_details.endpoint_details.aws_ground_station_agent_endpoint.agent_status #=> String, one of "SUCCESS", "FAILED", "ACTIVE", "INACTIVE"
|
|
1139
1319
|
# resp.dataflow_list[0].destination.config_details.endpoint_details.aws_ground_station_agent_endpoint.audit_results #=> String, one of "HEALTHY", "UNHEALTHY"
|
|
1320
|
+
# resp.dataflow_list[0].destination.config_details.endpoint_details.uplink_aws_ground_station_agent_endpoint.name #=> String
|
|
1321
|
+
# resp.dataflow_list[0].destination.config_details.endpoint_details.uplink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.ingress_address_and_port.socket_address.name #=> String
|
|
1322
|
+
# resp.dataflow_list[0].destination.config_details.endpoint_details.uplink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.ingress_address_and_port.socket_address.port #=> Integer
|
|
1323
|
+
# resp.dataflow_list[0].destination.config_details.endpoint_details.uplink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.ingress_address_and_port.mtu #=> Integer
|
|
1324
|
+
# resp.dataflow_list[0].destination.config_details.endpoint_details.uplink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.agent_ip_and_port_address.socket_address.name #=> String
|
|
1325
|
+
# resp.dataflow_list[0].destination.config_details.endpoint_details.uplink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.agent_ip_and_port_address.socket_address.port_range.minimum #=> Integer
|
|
1326
|
+
# resp.dataflow_list[0].destination.config_details.endpoint_details.uplink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.agent_ip_and_port_address.socket_address.port_range.maximum #=> Integer
|
|
1327
|
+
# resp.dataflow_list[0].destination.config_details.endpoint_details.uplink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.agent_ip_and_port_address.mtu #=> Integer
|
|
1328
|
+
# resp.dataflow_list[0].destination.config_details.endpoint_details.uplink_aws_ground_station_agent_endpoint.agent_status #=> String, one of "SUCCESS", "FAILED", "ACTIVE", "INACTIVE"
|
|
1329
|
+
# resp.dataflow_list[0].destination.config_details.endpoint_details.uplink_aws_ground_station_agent_endpoint.audit_results #=> String, one of "HEALTHY", "UNHEALTHY"
|
|
1330
|
+
# resp.dataflow_list[0].destination.config_details.endpoint_details.downlink_aws_ground_station_agent_endpoint.name #=> String
|
|
1331
|
+
# resp.dataflow_list[0].destination.config_details.endpoint_details.downlink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.agent_ip_and_port_address.socket_address.name #=> String
|
|
1332
|
+
# resp.dataflow_list[0].destination.config_details.endpoint_details.downlink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.agent_ip_and_port_address.socket_address.port_range.minimum #=> Integer
|
|
1333
|
+
# resp.dataflow_list[0].destination.config_details.endpoint_details.downlink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.agent_ip_and_port_address.socket_address.port_range.maximum #=> Integer
|
|
1334
|
+
# resp.dataflow_list[0].destination.config_details.endpoint_details.downlink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.agent_ip_and_port_address.mtu #=> Integer
|
|
1335
|
+
# resp.dataflow_list[0].destination.config_details.endpoint_details.downlink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.egress_address_and_port.socket_address.name #=> String
|
|
1336
|
+
# resp.dataflow_list[0].destination.config_details.endpoint_details.downlink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.egress_address_and_port.socket_address.port #=> Integer
|
|
1337
|
+
# resp.dataflow_list[0].destination.config_details.endpoint_details.downlink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.egress_address_and_port.mtu #=> Integer
|
|
1338
|
+
# resp.dataflow_list[0].destination.config_details.endpoint_details.downlink_aws_ground_station_agent_endpoint.agent_status #=> String, one of "SUCCESS", "FAILED", "ACTIVE", "INACTIVE"
|
|
1339
|
+
# resp.dataflow_list[0].destination.config_details.endpoint_details.downlink_aws_ground_station_agent_endpoint.audit_results #=> String, one of "HEALTHY", "UNHEALTHY"
|
|
1140
1340
|
# resp.dataflow_list[0].destination.config_details.endpoint_details.health_status #=> String, one of "HEALTHY", "UNHEALTHY"
|
|
1141
1341
|
# resp.dataflow_list[0].destination.config_details.endpoint_details.health_reasons #=> Array
|
|
1142
1342
|
# resp.dataflow_list[0].destination.config_details.endpoint_details.health_reasons[0] #=> String, one of "NO_REGISTERED_AGENT", "INVALID_IP_OWNERSHIP", "NOT_AUTHORIZED_TO_CREATE_SLR", "UNVERIFIED_IP_OWNERSHIP", "INITIALIZING_DATAPLANE", "DATAPLANE_FAILURE", "HEALTHY"
|
|
@@ -1262,6 +1462,47 @@ module Aws::GroundStation
|
|
|
1262
1462
|
req.send_request(options)
|
|
1263
1463
|
end
|
|
1264
1464
|
|
|
1465
|
+
# <note markdown="1"> For use by AWS Ground Station Agent and shouldn't
|
|
1466
|
+
# be called directly.
|
|
1467
|
+
#
|
|
1468
|
+
# </note>
|
|
1469
|
+
#
|
|
1470
|
+
# Gets a presigned URL for uploading agent task response logs.
|
|
1471
|
+
#
|
|
1472
|
+
# @option params [required, String] :agent_id
|
|
1473
|
+
# UUID of agent requesting the response URL.
|
|
1474
|
+
#
|
|
1475
|
+
# @option params [required, String] :task_id
|
|
1476
|
+
# GUID of the agent task for which the response URL is being requested.
|
|
1477
|
+
#
|
|
1478
|
+
# @return [Types::GetAgentTaskResponseUrlResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1479
|
+
#
|
|
1480
|
+
# * {Types::GetAgentTaskResponseUrlResponse#agent_id #agent_id} => String
|
|
1481
|
+
# * {Types::GetAgentTaskResponseUrlResponse#task_id #task_id} => String
|
|
1482
|
+
# * {Types::GetAgentTaskResponseUrlResponse#presigned_log_url #presigned_log_url} => String
|
|
1483
|
+
#
|
|
1484
|
+
# @example Request syntax with placeholder values
|
|
1485
|
+
#
|
|
1486
|
+
# resp = client.get_agent_task_response_url({
|
|
1487
|
+
# agent_id: "Uuid", # required
|
|
1488
|
+
# task_id: "Uuid", # required
|
|
1489
|
+
# })
|
|
1490
|
+
#
|
|
1491
|
+
# @example Response structure
|
|
1492
|
+
#
|
|
1493
|
+
# resp.agent_id #=> String
|
|
1494
|
+
# resp.task_id #=> String
|
|
1495
|
+
# resp.presigned_log_url #=> String
|
|
1496
|
+
#
|
|
1497
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/GetAgentTaskResponseUrl AWS API Documentation
|
|
1498
|
+
#
|
|
1499
|
+
# @overload get_agent_task_response_url(params = {})
|
|
1500
|
+
# @param [Hash] params ({})
|
|
1501
|
+
def get_agent_task_response_url(params = {}, options = {})
|
|
1502
|
+
req = build_request(:get_agent_task_response_url, params)
|
|
1503
|
+
req.send_request(options)
|
|
1504
|
+
end
|
|
1505
|
+
|
|
1265
1506
|
# Returns `Config` information.
|
|
1266
1507
|
#
|
|
1267
1508
|
# Only one `Config` response can be returned.
|
|
@@ -1377,6 +1618,26 @@ module Aws::GroundStation
|
|
|
1377
1618
|
# resp.endpoints_details[0].aws_ground_station_agent_endpoint.ingress_address.mtu #=> Integer
|
|
1378
1619
|
# resp.endpoints_details[0].aws_ground_station_agent_endpoint.agent_status #=> String, one of "SUCCESS", "FAILED", "ACTIVE", "INACTIVE"
|
|
1379
1620
|
# resp.endpoints_details[0].aws_ground_station_agent_endpoint.audit_results #=> String, one of "HEALTHY", "UNHEALTHY"
|
|
1621
|
+
# resp.endpoints_details[0].uplink_aws_ground_station_agent_endpoint.name #=> String
|
|
1622
|
+
# resp.endpoints_details[0].uplink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.ingress_address_and_port.socket_address.name #=> String
|
|
1623
|
+
# resp.endpoints_details[0].uplink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.ingress_address_and_port.socket_address.port #=> Integer
|
|
1624
|
+
# resp.endpoints_details[0].uplink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.ingress_address_and_port.mtu #=> Integer
|
|
1625
|
+
# resp.endpoints_details[0].uplink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.agent_ip_and_port_address.socket_address.name #=> String
|
|
1626
|
+
# resp.endpoints_details[0].uplink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.agent_ip_and_port_address.socket_address.port_range.minimum #=> Integer
|
|
1627
|
+
# resp.endpoints_details[0].uplink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.agent_ip_and_port_address.socket_address.port_range.maximum #=> Integer
|
|
1628
|
+
# resp.endpoints_details[0].uplink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.agent_ip_and_port_address.mtu #=> Integer
|
|
1629
|
+
# resp.endpoints_details[0].uplink_aws_ground_station_agent_endpoint.agent_status #=> String, one of "SUCCESS", "FAILED", "ACTIVE", "INACTIVE"
|
|
1630
|
+
# resp.endpoints_details[0].uplink_aws_ground_station_agent_endpoint.audit_results #=> String, one of "HEALTHY", "UNHEALTHY"
|
|
1631
|
+
# resp.endpoints_details[0].downlink_aws_ground_station_agent_endpoint.name #=> String
|
|
1632
|
+
# resp.endpoints_details[0].downlink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.agent_ip_and_port_address.socket_address.name #=> String
|
|
1633
|
+
# resp.endpoints_details[0].downlink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.agent_ip_and_port_address.socket_address.port_range.minimum #=> Integer
|
|
1634
|
+
# resp.endpoints_details[0].downlink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.agent_ip_and_port_address.socket_address.port_range.maximum #=> Integer
|
|
1635
|
+
# resp.endpoints_details[0].downlink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.agent_ip_and_port_address.mtu #=> Integer
|
|
1636
|
+
# resp.endpoints_details[0].downlink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.egress_address_and_port.socket_address.name #=> String
|
|
1637
|
+
# resp.endpoints_details[0].downlink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.egress_address_and_port.socket_address.port #=> Integer
|
|
1638
|
+
# resp.endpoints_details[0].downlink_aws_ground_station_agent_endpoint.dataflow_details.agent_connection_details.egress_address_and_port.mtu #=> Integer
|
|
1639
|
+
# resp.endpoints_details[0].downlink_aws_ground_station_agent_endpoint.agent_status #=> String, one of "SUCCESS", "FAILED", "ACTIVE", "INACTIVE"
|
|
1640
|
+
# resp.endpoints_details[0].downlink_aws_ground_station_agent_endpoint.audit_results #=> String, one of "HEALTHY", "UNHEALTHY"
|
|
1380
1641
|
# resp.endpoints_details[0].health_status #=> String, one of "HEALTHY", "UNHEALTHY"
|
|
1381
1642
|
# resp.endpoints_details[0].health_reasons #=> Array
|
|
1382
1643
|
# resp.endpoints_details[0].health_reasons[0] #=> String, one of "NO_REGISTERED_AGENT", "INVALID_IP_OWNERSHIP", "NOT_AUTHORIZED_TO_CREATE_SLR", "UNVERIFIED_IP_OWNERSHIP", "INITIALIZING_DATAPLANE", "DATAPLANE_FAILURE", "HEALTHY"
|
|
@@ -2412,7 +2673,7 @@ module Aws::GroundStation
|
|
|
2412
2673
|
tracer: tracer
|
|
2413
2674
|
)
|
|
2414
2675
|
context[:gem_name] = 'aws-sdk-groundstation'
|
|
2415
|
-
context[:gem_version] = '1.
|
|
2676
|
+
context[:gem_version] = '1.75.0'
|
|
2416
2677
|
Seahorse::Client::Request.new(handlers, context)
|
|
2417
2678
|
end
|
|
2418
2679
|
|
|
@@ -62,6 +62,10 @@ module Aws::GroundStation
|
|
|
62
62
|
ContactStatus = Shapes::StringShape.new(name: 'ContactStatus')
|
|
63
63
|
CreateConfigRequest = Shapes::StructureShape.new(name: 'CreateConfigRequest')
|
|
64
64
|
CreateDataflowEndpointGroupRequest = Shapes::StructureShape.new(name: 'CreateDataflowEndpointGroupRequest')
|
|
65
|
+
CreateDataflowEndpointGroupV2Request = Shapes::StructureShape.new(name: 'CreateDataflowEndpointGroupV2Request')
|
|
66
|
+
CreateDataflowEndpointGroupV2Response = Shapes::StructureShape.new(name: 'CreateDataflowEndpointGroupV2Response')
|
|
67
|
+
CreateEndpointDetails = Shapes::UnionShape.new(name: 'CreateEndpointDetails')
|
|
68
|
+
CreateEndpointDetailsList = Shapes::ListShape.new(name: 'CreateEndpointDetailsList')
|
|
65
69
|
CreateEphemerisRequest = Shapes::StructureShape.new(name: 'CreateEphemerisRequest')
|
|
66
70
|
CreateMissionProfileRequest = Shapes::StructureShape.new(name: 'CreateMissionProfileRequest')
|
|
67
71
|
Criticality = Shapes::StringShape.new(name: 'Criticality')
|
|
@@ -92,6 +96,10 @@ module Aws::GroundStation
|
|
|
92
96
|
Destination = Shapes::StructureShape.new(name: 'Destination')
|
|
93
97
|
DiscoveryData = Shapes::StructureShape.new(name: 'DiscoveryData')
|
|
94
98
|
Double = Shapes::FloatShape.new(name: 'Double')
|
|
99
|
+
DownlinkAwsGroundStationAgentEndpoint = Shapes::StructureShape.new(name: 'DownlinkAwsGroundStationAgentEndpoint')
|
|
100
|
+
DownlinkAwsGroundStationAgentEndpointDetails = Shapes::StructureShape.new(name: 'DownlinkAwsGroundStationAgentEndpointDetails')
|
|
101
|
+
DownlinkConnectionDetails = Shapes::StructureShape.new(name: 'DownlinkConnectionDetails')
|
|
102
|
+
DownlinkDataflowDetails = Shapes::UnionShape.new(name: 'DownlinkDataflowDetails')
|
|
95
103
|
DurationInSeconds = Shapes::IntegerShape.new(name: 'DurationInSeconds')
|
|
96
104
|
Eirp = Shapes::StructureShape.new(name: 'Eirp')
|
|
97
105
|
EirpUnits = Shapes::StringShape.new(name: 'EirpUnits')
|
|
@@ -123,6 +131,8 @@ module Aws::GroundStation
|
|
|
123
131
|
FrequencyUnits = Shapes::StringShape.new(name: 'FrequencyUnits')
|
|
124
132
|
GetAgentConfigurationRequest = Shapes::StructureShape.new(name: 'GetAgentConfigurationRequest')
|
|
125
133
|
GetAgentConfigurationResponse = Shapes::StructureShape.new(name: 'GetAgentConfigurationResponse')
|
|
134
|
+
GetAgentTaskResponseUrlRequest = Shapes::StructureShape.new(name: 'GetAgentTaskResponseUrlRequest')
|
|
135
|
+
GetAgentTaskResponseUrlResponse = Shapes::StructureShape.new(name: 'GetAgentTaskResponseUrlResponse')
|
|
126
136
|
GetConfigRequest = Shapes::StructureShape.new(name: 'GetConfigRequest')
|
|
127
137
|
GetConfigResponse = Shapes::StructureShape.new(name: 'GetConfigResponse')
|
|
128
138
|
GetDataflowEndpointGroupRequest = Shapes::StructureShape.new(name: 'GetDataflowEndpointGroupRequest')
|
|
@@ -200,6 +210,7 @@ module Aws::GroundStation
|
|
|
200
210
|
SatelliteListItem = Shapes::StructureShape.new(name: 'SatelliteListItem')
|
|
201
211
|
SecurityDetails = Shapes::StructureShape.new(name: 'SecurityDetails')
|
|
202
212
|
SecurityGroupIdList = Shapes::ListShape.new(name: 'SecurityGroupIdList')
|
|
213
|
+
ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
|
|
203
214
|
SignatureMap = Shapes::MapShape.new(name: 'SignatureMap')
|
|
204
215
|
SocketAddress = Shapes::StructureShape.new(name: 'SocketAddress')
|
|
205
216
|
Source = Shapes::StructureShape.new(name: 'Source')
|
|
@@ -231,6 +242,10 @@ module Aws::GroundStation
|
|
|
231
242
|
UpdateConfigRequest = Shapes::StructureShape.new(name: 'UpdateConfigRequest')
|
|
232
243
|
UpdateEphemerisRequest = Shapes::StructureShape.new(name: 'UpdateEphemerisRequest')
|
|
233
244
|
UpdateMissionProfileRequest = Shapes::StructureShape.new(name: 'UpdateMissionProfileRequest')
|
|
245
|
+
UplinkAwsGroundStationAgentEndpoint = Shapes::StructureShape.new(name: 'UplinkAwsGroundStationAgentEndpoint')
|
|
246
|
+
UplinkAwsGroundStationAgentEndpointDetails = Shapes::StructureShape.new(name: 'UplinkAwsGroundStationAgentEndpointDetails')
|
|
247
|
+
UplinkConnectionDetails = Shapes::StructureShape.new(name: 'UplinkConnectionDetails')
|
|
248
|
+
UplinkDataflowDetails = Shapes::UnionShape.new(name: 'UplinkDataflowDetails')
|
|
234
249
|
UplinkEchoConfig = Shapes::StructureShape.new(name: 'UplinkEchoConfig')
|
|
235
250
|
UplinkSpectrumConfig = Shapes::StructureShape.new(name: 'UplinkSpectrumConfig')
|
|
236
251
|
Uuid = Shapes::StringShape.new(name: 'Uuid')
|
|
@@ -409,6 +424,25 @@ module Aws::GroundStation
|
|
|
409
424
|
CreateDataflowEndpointGroupRequest.add_member(:contact_post_pass_duration_seconds, Shapes::ShapeRef.new(shape: DataflowEndpointGroupDurationInSeconds, location_name: "contactPostPassDurationSeconds"))
|
|
410
425
|
CreateDataflowEndpointGroupRequest.struct_class = Types::CreateDataflowEndpointGroupRequest
|
|
411
426
|
|
|
427
|
+
CreateDataflowEndpointGroupV2Request.add_member(:endpoints, Shapes::ShapeRef.new(shape: CreateEndpointDetailsList, required: true, location_name: "endpoints"))
|
|
428
|
+
CreateDataflowEndpointGroupV2Request.add_member(:contact_pre_pass_duration_seconds, Shapes::ShapeRef.new(shape: DataflowEndpointGroupDurationInSeconds, location_name: "contactPrePassDurationSeconds"))
|
|
429
|
+
CreateDataflowEndpointGroupV2Request.add_member(:contact_post_pass_duration_seconds, Shapes::ShapeRef.new(shape: DataflowEndpointGroupDurationInSeconds, location_name: "contactPostPassDurationSeconds"))
|
|
430
|
+
CreateDataflowEndpointGroupV2Request.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
|
431
|
+
CreateDataflowEndpointGroupV2Request.struct_class = Types::CreateDataflowEndpointGroupV2Request
|
|
432
|
+
|
|
433
|
+
CreateDataflowEndpointGroupV2Response.add_member(:dataflow_endpoint_group_id, Shapes::ShapeRef.new(shape: Uuid, location_name: "dataflowEndpointGroupId"))
|
|
434
|
+
CreateDataflowEndpointGroupV2Response.struct_class = Types::CreateDataflowEndpointGroupV2Response
|
|
435
|
+
|
|
436
|
+
CreateEndpointDetails.add_member(:uplink_aws_ground_station_agent_endpoint, Shapes::ShapeRef.new(shape: UplinkAwsGroundStationAgentEndpoint, location_name: "uplinkAwsGroundStationAgentEndpoint"))
|
|
437
|
+
CreateEndpointDetails.add_member(:downlink_aws_ground_station_agent_endpoint, Shapes::ShapeRef.new(shape: DownlinkAwsGroundStationAgentEndpoint, location_name: "downlinkAwsGroundStationAgentEndpoint"))
|
|
438
|
+
CreateEndpointDetails.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
439
|
+
CreateEndpointDetails.add_member_subclass(:uplink_aws_ground_station_agent_endpoint, Types::CreateEndpointDetails::UplinkAwsGroundStationAgentEndpoint)
|
|
440
|
+
CreateEndpointDetails.add_member_subclass(:downlink_aws_ground_station_agent_endpoint, Types::CreateEndpointDetails::DownlinkAwsGroundStationAgentEndpoint)
|
|
441
|
+
CreateEndpointDetails.add_member_subclass(:unknown, Types::CreateEndpointDetails::Unknown)
|
|
442
|
+
CreateEndpointDetails.struct_class = Types::CreateEndpointDetails
|
|
443
|
+
|
|
444
|
+
CreateEndpointDetailsList.member = Shapes::ShapeRef.new(shape: CreateEndpointDetails)
|
|
445
|
+
|
|
412
446
|
CreateEphemerisRequest.add_member(:satellite_id, Shapes::ShapeRef.new(shape: Uuid, location_name: "satelliteId"))
|
|
413
447
|
CreateEphemerisRequest.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "enabled"))
|
|
414
448
|
CreateEphemerisRequest.add_member(:priority, Shapes::ShapeRef.new(shape: CustomerEphemerisPriority, location_name: "priority"))
|
|
@@ -533,6 +567,26 @@ module Aws::GroundStation
|
|
|
533
567
|
DiscoveryData.add_member(:capability_arns, Shapes::ShapeRef.new(shape: CapabilityArnList, required: true, location_name: "capabilityArns"))
|
|
534
568
|
DiscoveryData.struct_class = Types::DiscoveryData
|
|
535
569
|
|
|
570
|
+
DownlinkAwsGroundStationAgentEndpoint.add_member(:name, Shapes::ShapeRef.new(shape: SafeName, required: true, location_name: "name"))
|
|
571
|
+
DownlinkAwsGroundStationAgentEndpoint.add_member(:dataflow_details, Shapes::ShapeRef.new(shape: DownlinkDataflowDetails, required: true, location_name: "dataflowDetails"))
|
|
572
|
+
DownlinkAwsGroundStationAgentEndpoint.struct_class = Types::DownlinkAwsGroundStationAgentEndpoint
|
|
573
|
+
|
|
574
|
+
DownlinkAwsGroundStationAgentEndpointDetails.add_member(:name, Shapes::ShapeRef.new(shape: SafeName, required: true, location_name: "name"))
|
|
575
|
+
DownlinkAwsGroundStationAgentEndpointDetails.add_member(:dataflow_details, Shapes::ShapeRef.new(shape: DownlinkDataflowDetails, required: true, location_name: "dataflowDetails"))
|
|
576
|
+
DownlinkAwsGroundStationAgentEndpointDetails.add_member(:agent_status, Shapes::ShapeRef.new(shape: AgentStatus, location_name: "agentStatus"))
|
|
577
|
+
DownlinkAwsGroundStationAgentEndpointDetails.add_member(:audit_results, Shapes::ShapeRef.new(shape: AuditResults, location_name: "auditResults"))
|
|
578
|
+
DownlinkAwsGroundStationAgentEndpointDetails.struct_class = Types::DownlinkAwsGroundStationAgentEndpointDetails
|
|
579
|
+
|
|
580
|
+
DownlinkConnectionDetails.add_member(:agent_ip_and_port_address, Shapes::ShapeRef.new(shape: RangedConnectionDetails, required: true, location_name: "agentIpAndPortAddress"))
|
|
581
|
+
DownlinkConnectionDetails.add_member(:egress_address_and_port, Shapes::ShapeRef.new(shape: ConnectionDetails, required: true, location_name: "egressAddressAndPort"))
|
|
582
|
+
DownlinkConnectionDetails.struct_class = Types::DownlinkConnectionDetails
|
|
583
|
+
|
|
584
|
+
DownlinkDataflowDetails.add_member(:agent_connection_details, Shapes::ShapeRef.new(shape: DownlinkConnectionDetails, location_name: "agentConnectionDetails"))
|
|
585
|
+
DownlinkDataflowDetails.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
586
|
+
DownlinkDataflowDetails.add_member_subclass(:agent_connection_details, Types::DownlinkDataflowDetails::AgentConnectionDetails)
|
|
587
|
+
DownlinkDataflowDetails.add_member_subclass(:unknown, Types::DownlinkDataflowDetails::Unknown)
|
|
588
|
+
DownlinkDataflowDetails.struct_class = Types::DownlinkDataflowDetails
|
|
589
|
+
|
|
536
590
|
Eirp.add_member(:value, Shapes::ShapeRef.new(shape: Double, required: true, location_name: "value"))
|
|
537
591
|
Eirp.add_member(:units, Shapes::ShapeRef.new(shape: EirpUnits, required: true, location_name: "units"))
|
|
538
592
|
Eirp.struct_class = Types::Eirp
|
|
@@ -544,6 +598,8 @@ module Aws::GroundStation
|
|
|
544
598
|
EndpointDetails.add_member(:security_details, Shapes::ShapeRef.new(shape: SecurityDetails, location_name: "securityDetails"))
|
|
545
599
|
EndpointDetails.add_member(:endpoint, Shapes::ShapeRef.new(shape: DataflowEndpoint, location_name: "endpoint"))
|
|
546
600
|
EndpointDetails.add_member(:aws_ground_station_agent_endpoint, Shapes::ShapeRef.new(shape: AwsGroundStationAgentEndpoint, location_name: "awsGroundStationAgentEndpoint"))
|
|
601
|
+
EndpointDetails.add_member(:uplink_aws_ground_station_agent_endpoint, Shapes::ShapeRef.new(shape: UplinkAwsGroundStationAgentEndpointDetails, location_name: "uplinkAwsGroundStationAgentEndpoint"))
|
|
602
|
+
EndpointDetails.add_member(:downlink_aws_ground_station_agent_endpoint, Shapes::ShapeRef.new(shape: DownlinkAwsGroundStationAgentEndpointDetails, location_name: "downlinkAwsGroundStationAgentEndpoint"))
|
|
547
603
|
EndpointDetails.add_member(:health_status, Shapes::ShapeRef.new(shape: CapabilityHealth, location_name: "healthStatus"))
|
|
548
604
|
EndpointDetails.add_member(:health_reasons, Shapes::ShapeRef.new(shape: CapabilityHealthReasonList, location_name: "healthReasons"))
|
|
549
605
|
EndpointDetails.struct_class = Types::EndpointDetails
|
|
@@ -628,6 +684,15 @@ module Aws::GroundStation
|
|
|
628
684
|
GetAgentConfigurationResponse.add_member(:tasking_document, Shapes::ShapeRef.new(shape: String, location_name: "taskingDocument"))
|
|
629
685
|
GetAgentConfigurationResponse.struct_class = Types::GetAgentConfigurationResponse
|
|
630
686
|
|
|
687
|
+
GetAgentTaskResponseUrlRequest.add_member(:agent_id, Shapes::ShapeRef.new(shape: Uuid, required: true, location: "uri", location_name: "agentId"))
|
|
688
|
+
GetAgentTaskResponseUrlRequest.add_member(:task_id, Shapes::ShapeRef.new(shape: Uuid, required: true, location: "uri", location_name: "taskId"))
|
|
689
|
+
GetAgentTaskResponseUrlRequest.struct_class = Types::GetAgentTaskResponseUrlRequest
|
|
690
|
+
|
|
691
|
+
GetAgentTaskResponseUrlResponse.add_member(:agent_id, Shapes::ShapeRef.new(shape: Uuid, required: true, location_name: "agentId"))
|
|
692
|
+
GetAgentTaskResponseUrlResponse.add_member(:task_id, Shapes::ShapeRef.new(shape: Uuid, required: true, location_name: "taskId"))
|
|
693
|
+
GetAgentTaskResponseUrlResponse.add_member(:presigned_log_url, Shapes::ShapeRef.new(shape: String, required: true, location_name: "presignedLogUrl"))
|
|
694
|
+
GetAgentTaskResponseUrlResponse.struct_class = Types::GetAgentTaskResponseUrlResponse
|
|
695
|
+
|
|
631
696
|
GetConfigRequest.add_member(:config_id, Shapes::ShapeRef.new(shape: Uuid, required: true, location: "uri", location_name: "configId"))
|
|
632
697
|
GetConfigRequest.add_member(:config_type, Shapes::ShapeRef.new(shape: ConfigCapabilityType, required: true, location: "uri", location_name: "configType"))
|
|
633
698
|
GetConfigRequest.struct_class = Types::GetConfigRequest
|
|
@@ -883,6 +948,10 @@ module Aws::GroundStation
|
|
|
883
948
|
|
|
884
949
|
SecurityGroupIdList.member = Shapes::ShapeRef.new(shape: String)
|
|
885
950
|
|
|
951
|
+
ServiceQuotaExceededException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
|
952
|
+
ServiceQuotaExceededException.add_member(:parameter_name, Shapes::ShapeRef.new(shape: String, location_name: "parameterName"))
|
|
953
|
+
ServiceQuotaExceededException.struct_class = Types::ServiceQuotaExceededException
|
|
954
|
+
|
|
886
955
|
SignatureMap.key = Shapes::ShapeRef.new(shape: String)
|
|
887
956
|
SignatureMap.value = Shapes::ShapeRef.new(shape: Boolean)
|
|
888
957
|
|
|
@@ -982,6 +1051,26 @@ module Aws::GroundStation
|
|
|
982
1051
|
UpdateMissionProfileRequest.add_member(:streams_kms_role, Shapes::ShapeRef.new(shape: RoleArn, location_name: "streamsKmsRole"))
|
|
983
1052
|
UpdateMissionProfileRequest.struct_class = Types::UpdateMissionProfileRequest
|
|
984
1053
|
|
|
1054
|
+
UplinkAwsGroundStationAgentEndpoint.add_member(:name, Shapes::ShapeRef.new(shape: SafeName, required: true, location_name: "name"))
|
|
1055
|
+
UplinkAwsGroundStationAgentEndpoint.add_member(:dataflow_details, Shapes::ShapeRef.new(shape: UplinkDataflowDetails, required: true, location_name: "dataflowDetails"))
|
|
1056
|
+
UplinkAwsGroundStationAgentEndpoint.struct_class = Types::UplinkAwsGroundStationAgentEndpoint
|
|
1057
|
+
|
|
1058
|
+
UplinkAwsGroundStationAgentEndpointDetails.add_member(:name, Shapes::ShapeRef.new(shape: SafeName, required: true, location_name: "name"))
|
|
1059
|
+
UplinkAwsGroundStationAgentEndpointDetails.add_member(:dataflow_details, Shapes::ShapeRef.new(shape: UplinkDataflowDetails, required: true, location_name: "dataflowDetails"))
|
|
1060
|
+
UplinkAwsGroundStationAgentEndpointDetails.add_member(:agent_status, Shapes::ShapeRef.new(shape: AgentStatus, location_name: "agentStatus"))
|
|
1061
|
+
UplinkAwsGroundStationAgentEndpointDetails.add_member(:audit_results, Shapes::ShapeRef.new(shape: AuditResults, location_name: "auditResults"))
|
|
1062
|
+
UplinkAwsGroundStationAgentEndpointDetails.struct_class = Types::UplinkAwsGroundStationAgentEndpointDetails
|
|
1063
|
+
|
|
1064
|
+
UplinkConnectionDetails.add_member(:ingress_address_and_port, Shapes::ShapeRef.new(shape: ConnectionDetails, required: true, location_name: "ingressAddressAndPort"))
|
|
1065
|
+
UplinkConnectionDetails.add_member(:agent_ip_and_port_address, Shapes::ShapeRef.new(shape: RangedConnectionDetails, required: true, location_name: "agentIpAndPortAddress"))
|
|
1066
|
+
UplinkConnectionDetails.struct_class = Types::UplinkConnectionDetails
|
|
1067
|
+
|
|
1068
|
+
UplinkDataflowDetails.add_member(:agent_connection_details, Shapes::ShapeRef.new(shape: UplinkConnectionDetails, location_name: "agentConnectionDetails"))
|
|
1069
|
+
UplinkDataflowDetails.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
1070
|
+
UplinkDataflowDetails.add_member_subclass(:agent_connection_details, Types::UplinkDataflowDetails::AgentConnectionDetails)
|
|
1071
|
+
UplinkDataflowDetails.add_member_subclass(:unknown, Types::UplinkDataflowDetails::Unknown)
|
|
1072
|
+
UplinkDataflowDetails.struct_class = Types::UplinkDataflowDetails
|
|
1073
|
+
|
|
985
1074
|
UplinkEchoConfig.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "enabled"))
|
|
986
1075
|
UplinkEchoConfig.add_member(:antenna_uplink_config_arn, Shapes::ShapeRef.new(shape: ConfigArn, required: true, location_name: "antennaUplinkConfigArn"))
|
|
987
1076
|
UplinkEchoConfig.struct_class = Types::UplinkEchoConfig
|
|
@@ -1045,6 +1134,18 @@ module Aws::GroundStation
|
|
|
1045
1134
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1046
1135
|
end)
|
|
1047
1136
|
|
|
1137
|
+
api.add_operation(:create_dataflow_endpoint_group_v2, Seahorse::Model::Operation.new.tap do |o|
|
|
1138
|
+
o.name = "CreateDataflowEndpointGroupV2"
|
|
1139
|
+
o.http_method = "POST"
|
|
1140
|
+
o.http_request_uri = "/dataflowEndpointGroupV2"
|
|
1141
|
+
o.input = Shapes::ShapeRef.new(shape: CreateDataflowEndpointGroupV2Request)
|
|
1142
|
+
o.output = Shapes::ShapeRef.new(shape: CreateDataflowEndpointGroupV2Response)
|
|
1143
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
1144
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
1145
|
+
o.errors << Shapes::ShapeRef.new(shape: DependencyException)
|
|
1146
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1147
|
+
end)
|
|
1148
|
+
|
|
1048
1149
|
api.add_operation(:create_ephemeris, Seahorse::Model::Operation.new.tap do |o|
|
|
1049
1150
|
o.name = "CreateEphemeris"
|
|
1050
1151
|
o.http_method = "POST"
|
|
@@ -1145,6 +1246,17 @@ module Aws::GroundStation
|
|
|
1145
1246
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1146
1247
|
end)
|
|
1147
1248
|
|
|
1249
|
+
api.add_operation(:get_agent_task_response_url, Seahorse::Model::Operation.new.tap do |o|
|
|
1250
|
+
o.name = "GetAgentTaskResponseUrl"
|
|
1251
|
+
o.http_method = "GET"
|
|
1252
|
+
o.http_request_uri = "/agentResponseUrl/{agentId}/{taskId}"
|
|
1253
|
+
o.input = Shapes::ShapeRef.new(shape: GetAgentTaskResponseUrlRequest)
|
|
1254
|
+
o.output = Shapes::ShapeRef.new(shape: GetAgentTaskResponseUrlResponse)
|
|
1255
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
1256
|
+
o.errors << Shapes::ShapeRef.new(shape: DependencyException)
|
|
1257
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1258
|
+
end)
|
|
1259
|
+
|
|
1148
1260
|
api.add_operation(:get_config, Seahorse::Model::Operation.new.tap do |o|
|
|
1149
1261
|
o.name = "GetConfig"
|
|
1150
1262
|
o.http_method = "GET"
|
|
@@ -32,6 +32,7 @@ module Aws::GroundStation
|
|
|
32
32
|
# * {ResourceInUseException}
|
|
33
33
|
# * {ResourceLimitExceededException}
|
|
34
34
|
# * {ResourceNotFoundException}
|
|
35
|
+
# * {ServiceQuotaExceededException}
|
|
35
36
|
#
|
|
36
37
|
# Additionally, error classes are dynamically generated for service errors based on the error code
|
|
37
38
|
# if they are not defined above.
|
|
@@ -129,5 +130,25 @@ module Aws::GroundStation
|
|
|
129
130
|
end
|
|
130
131
|
end
|
|
131
132
|
|
|
133
|
+
class ServiceQuotaExceededException < ServiceError
|
|
134
|
+
|
|
135
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
136
|
+
# @param [String] message
|
|
137
|
+
# @param [Aws::GroundStation::Types::ServiceQuotaExceededException] data
|
|
138
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
139
|
+
super(context, message, data)
|
|
140
|
+
end
|
|
141
|
+
|
|
142
|
+
# @return [String]
|
|
143
|
+
def message
|
|
144
|
+
@message || @data[:message]
|
|
145
|
+
end
|
|
146
|
+
|
|
147
|
+
# @return [String]
|
|
148
|
+
def parameter_name
|
|
149
|
+
@data[:parameter_name]
|
|
150
|
+
end
|
|
151
|
+
end
|
|
152
|
+
|
|
132
153
|
end
|
|
133
154
|
end
|
|
@@ -802,6 +802,80 @@ module Aws::GroundStation
|
|
|
802
802
|
include Aws::Structure
|
|
803
803
|
end
|
|
804
804
|
|
|
805
|
+
# @!attribute [rw] endpoints
|
|
806
|
+
# Dataflow endpoint group's endpoint definitions
|
|
807
|
+
# @return [Array<Types::CreateEndpointDetails>]
|
|
808
|
+
#
|
|
809
|
+
# @!attribute [rw] contact_pre_pass_duration_seconds
|
|
810
|
+
# Amount of time, in seconds, before a contact starts that the Ground
|
|
811
|
+
# Station Dataflow Endpoint Group will be in a `PREPASS` state. A
|
|
812
|
+
# Ground Station Dataflow Endpoint Group State Change event will be
|
|
813
|
+
# emitted when the Dataflow Endpoint Group enters and exits the
|
|
814
|
+
# `PREPASS` state.
|
|
815
|
+
# @return [Integer]
|
|
816
|
+
#
|
|
817
|
+
# @!attribute [rw] contact_post_pass_duration_seconds
|
|
818
|
+
# Amount of time, in seconds, after a contact ends that the Ground
|
|
819
|
+
# Station Dataflow Endpoint Group will be in a `POSTPASS` state. A
|
|
820
|
+
# Ground Station Dataflow Endpoint Group State Change event will be
|
|
821
|
+
# emitted when the Dataflow Endpoint Group enters and exits the
|
|
822
|
+
# `POSTPASS` state.
|
|
823
|
+
# @return [Integer]
|
|
824
|
+
#
|
|
825
|
+
# @!attribute [rw] tags
|
|
826
|
+
# Tags of a V2 dataflow endpoint group.
|
|
827
|
+
# @return [Hash<String,String>]
|
|
828
|
+
#
|
|
829
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/CreateDataflowEndpointGroupV2Request AWS API Documentation
|
|
830
|
+
#
|
|
831
|
+
class CreateDataflowEndpointGroupV2Request < Struct.new(
|
|
832
|
+
:endpoints,
|
|
833
|
+
:contact_pre_pass_duration_seconds,
|
|
834
|
+
:contact_post_pass_duration_seconds,
|
|
835
|
+
:tags)
|
|
836
|
+
SENSITIVE = []
|
|
837
|
+
include Aws::Structure
|
|
838
|
+
end
|
|
839
|
+
|
|
840
|
+
# @!attribute [rw] dataflow_endpoint_group_id
|
|
841
|
+
# Dataflow endpoint group ID
|
|
842
|
+
# @return [String]
|
|
843
|
+
#
|
|
844
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/CreateDataflowEndpointGroupV2Response AWS API Documentation
|
|
845
|
+
#
|
|
846
|
+
class CreateDataflowEndpointGroupV2Response < Struct.new(
|
|
847
|
+
:dataflow_endpoint_group_id)
|
|
848
|
+
SENSITIVE = []
|
|
849
|
+
include Aws::Structure
|
|
850
|
+
end
|
|
851
|
+
|
|
852
|
+
# Endpoint definition used for creating a dataflow endpoint
|
|
853
|
+
#
|
|
854
|
+
# @note CreateEndpointDetails is a union - when making an API calls you must set exactly one of the members.
|
|
855
|
+
#
|
|
856
|
+
# @!attribute [rw] uplink_aws_ground_station_agent_endpoint
|
|
857
|
+
# Definition for an uplink agent endpoint
|
|
858
|
+
# @return [Types::UplinkAwsGroundStationAgentEndpoint]
|
|
859
|
+
#
|
|
860
|
+
# @!attribute [rw] downlink_aws_ground_station_agent_endpoint
|
|
861
|
+
# Definition for a downlink agent endpoint
|
|
862
|
+
# @return [Types::DownlinkAwsGroundStationAgentEndpoint]
|
|
863
|
+
#
|
|
864
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/CreateEndpointDetails AWS API Documentation
|
|
865
|
+
#
|
|
866
|
+
class CreateEndpointDetails < Struct.new(
|
|
867
|
+
:uplink_aws_ground_station_agent_endpoint,
|
|
868
|
+
:downlink_aws_ground_station_agent_endpoint,
|
|
869
|
+
:unknown)
|
|
870
|
+
SENSITIVE = []
|
|
871
|
+
include Aws::Structure
|
|
872
|
+
include Aws::Structure::Union
|
|
873
|
+
|
|
874
|
+
class UplinkAwsGroundStationAgentEndpoint < CreateEndpointDetails; end
|
|
875
|
+
class DownlinkAwsGroundStationAgentEndpoint < CreateEndpointDetails; end
|
|
876
|
+
class Unknown < CreateEndpointDetails; end
|
|
877
|
+
end
|
|
878
|
+
|
|
805
879
|
# @!attribute [rw] satellite_id
|
|
806
880
|
# The satellite ID that associates this ephemeris with a satellite in
|
|
807
881
|
# AWS Ground Station.
|
|
@@ -1380,6 +1454,98 @@ module Aws::GroundStation
|
|
|
1380
1454
|
include Aws::Structure
|
|
1381
1455
|
end
|
|
1382
1456
|
|
|
1457
|
+
# Definition for a downlink agent endpoint
|
|
1458
|
+
#
|
|
1459
|
+
# @!attribute [rw] name
|
|
1460
|
+
# Downlink dataflow endpoint name
|
|
1461
|
+
# @return [String]
|
|
1462
|
+
#
|
|
1463
|
+
# @!attribute [rw] dataflow_details
|
|
1464
|
+
# Dataflow details for the downlink endpoint
|
|
1465
|
+
# @return [Types::DownlinkDataflowDetails]
|
|
1466
|
+
#
|
|
1467
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/DownlinkAwsGroundStationAgentEndpoint AWS API Documentation
|
|
1468
|
+
#
|
|
1469
|
+
class DownlinkAwsGroundStationAgentEndpoint < Struct.new(
|
|
1470
|
+
:name,
|
|
1471
|
+
:dataflow_details)
|
|
1472
|
+
SENSITIVE = []
|
|
1473
|
+
include Aws::Structure
|
|
1474
|
+
end
|
|
1475
|
+
|
|
1476
|
+
# Details for a downlink agent endpoint
|
|
1477
|
+
#
|
|
1478
|
+
# @!attribute [rw] name
|
|
1479
|
+
# Downlink dataflow endpoint name
|
|
1480
|
+
# @return [String]
|
|
1481
|
+
#
|
|
1482
|
+
# @!attribute [rw] dataflow_details
|
|
1483
|
+
# Dataflow details for the downlink endpoint
|
|
1484
|
+
# @return [Types::DownlinkDataflowDetails]
|
|
1485
|
+
#
|
|
1486
|
+
# @!attribute [rw] agent_status
|
|
1487
|
+
# Status of the agent associated with the downlink dataflow endpoint
|
|
1488
|
+
# @return [String]
|
|
1489
|
+
#
|
|
1490
|
+
# @!attribute [rw] audit_results
|
|
1491
|
+
# Health audit results for the downlink dataflow endpoint
|
|
1492
|
+
# @return [String]
|
|
1493
|
+
#
|
|
1494
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/DownlinkAwsGroundStationAgentEndpointDetails AWS API Documentation
|
|
1495
|
+
#
|
|
1496
|
+
class DownlinkAwsGroundStationAgentEndpointDetails < Struct.new(
|
|
1497
|
+
:name,
|
|
1498
|
+
:dataflow_details,
|
|
1499
|
+
:agent_status,
|
|
1500
|
+
:audit_results)
|
|
1501
|
+
SENSITIVE = []
|
|
1502
|
+
include Aws::Structure
|
|
1503
|
+
end
|
|
1504
|
+
|
|
1505
|
+
# Connection details for Ground Station to Agent and Agent to customer
|
|
1506
|
+
#
|
|
1507
|
+
# @!attribute [rw] agent_ip_and_port_address
|
|
1508
|
+
# Ingress address of AgentEndpoint with a port range and an optional
|
|
1509
|
+
# mtu.
|
|
1510
|
+
# @return [Types::RangedConnectionDetails]
|
|
1511
|
+
#
|
|
1512
|
+
# @!attribute [rw] egress_address_and_port
|
|
1513
|
+
# Egress address of AgentEndpoint with an optional mtu.
|
|
1514
|
+
# @return [Types::ConnectionDetails]
|
|
1515
|
+
#
|
|
1516
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/DownlinkConnectionDetails AWS API Documentation
|
|
1517
|
+
#
|
|
1518
|
+
class DownlinkConnectionDetails < Struct.new(
|
|
1519
|
+
:agent_ip_and_port_address,
|
|
1520
|
+
:egress_address_and_port)
|
|
1521
|
+
SENSITIVE = []
|
|
1522
|
+
include Aws::Structure
|
|
1523
|
+
end
|
|
1524
|
+
|
|
1525
|
+
# Dataflow details for a downlink endpoint
|
|
1526
|
+
#
|
|
1527
|
+
# @note DownlinkDataflowDetails is a union - when making an API calls you must set exactly one of the members.
|
|
1528
|
+
#
|
|
1529
|
+
# @note DownlinkDataflowDetails is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of DownlinkDataflowDetails corresponding to the set member.
|
|
1530
|
+
#
|
|
1531
|
+
# @!attribute [rw] agent_connection_details
|
|
1532
|
+
# Downlink connection details for customer to Agent and Agent to
|
|
1533
|
+
# Ground Station
|
|
1534
|
+
# @return [Types::DownlinkConnectionDetails]
|
|
1535
|
+
#
|
|
1536
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/DownlinkDataflowDetails AWS API Documentation
|
|
1537
|
+
#
|
|
1538
|
+
class DownlinkDataflowDetails < Struct.new(
|
|
1539
|
+
:agent_connection_details,
|
|
1540
|
+
:unknown)
|
|
1541
|
+
SENSITIVE = []
|
|
1542
|
+
include Aws::Structure
|
|
1543
|
+
include Aws::Structure::Union
|
|
1544
|
+
|
|
1545
|
+
class AgentConnectionDetails < DownlinkDataflowDetails; end
|
|
1546
|
+
class Unknown < DownlinkDataflowDetails; end
|
|
1547
|
+
end
|
|
1548
|
+
|
|
1383
1549
|
# Object that represents EIRP.
|
|
1384
1550
|
#
|
|
1385
1551
|
# @!attribute [rw] value
|
|
@@ -1433,6 +1599,14 @@ module Aws::GroundStation
|
|
|
1433
1599
|
# An agent endpoint.
|
|
1434
1600
|
# @return [Types::AwsGroundStationAgentEndpoint]
|
|
1435
1601
|
#
|
|
1602
|
+
# @!attribute [rw] uplink_aws_ground_station_agent_endpoint
|
|
1603
|
+
# Definition for an uplink agent endpoint
|
|
1604
|
+
# @return [Types::UplinkAwsGroundStationAgentEndpointDetails]
|
|
1605
|
+
#
|
|
1606
|
+
# @!attribute [rw] downlink_aws_ground_station_agent_endpoint
|
|
1607
|
+
# Definition for a downlink agent endpoint
|
|
1608
|
+
# @return [Types::DownlinkAwsGroundStationAgentEndpointDetails]
|
|
1609
|
+
#
|
|
1436
1610
|
# @!attribute [rw] health_status
|
|
1437
1611
|
# A dataflow endpoint health status. This field is ignored when
|
|
1438
1612
|
# calling `CreateDataflowEndpointGroup`.
|
|
@@ -1449,6 +1623,8 @@ module Aws::GroundStation
|
|
|
1449
1623
|
:security_details,
|
|
1450
1624
|
:endpoint,
|
|
1451
1625
|
:aws_ground_station_agent_endpoint,
|
|
1626
|
+
:uplink_aws_ground_station_agent_endpoint,
|
|
1627
|
+
:downlink_aws_ground_station_agent_endpoint,
|
|
1452
1628
|
:health_status,
|
|
1453
1629
|
:health_reasons)
|
|
1454
1630
|
SENSITIVE = []
|
|
@@ -1833,6 +2009,46 @@ module Aws::GroundStation
|
|
|
1833
2009
|
include Aws::Structure
|
|
1834
2010
|
end
|
|
1835
2011
|
|
|
2012
|
+
# @!attribute [rw] agent_id
|
|
2013
|
+
# UUID of agent requesting the response URL.
|
|
2014
|
+
# @return [String]
|
|
2015
|
+
#
|
|
2016
|
+
# @!attribute [rw] task_id
|
|
2017
|
+
# GUID of the agent task for which the response URL is being
|
|
2018
|
+
# requested.
|
|
2019
|
+
# @return [String]
|
|
2020
|
+
#
|
|
2021
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/GetAgentTaskResponseUrlRequest AWS API Documentation
|
|
2022
|
+
#
|
|
2023
|
+
class GetAgentTaskResponseUrlRequest < Struct.new(
|
|
2024
|
+
:agent_id,
|
|
2025
|
+
:task_id)
|
|
2026
|
+
SENSITIVE = []
|
|
2027
|
+
include Aws::Structure
|
|
2028
|
+
end
|
|
2029
|
+
|
|
2030
|
+
# @!attribute [rw] agent_id
|
|
2031
|
+
# UUID of the agent.
|
|
2032
|
+
# @return [String]
|
|
2033
|
+
#
|
|
2034
|
+
# @!attribute [rw] task_id
|
|
2035
|
+
# GUID of the agent task.
|
|
2036
|
+
# @return [String]
|
|
2037
|
+
#
|
|
2038
|
+
# @!attribute [rw] presigned_log_url
|
|
2039
|
+
# Presigned URL for uploading agent task response logs.
|
|
2040
|
+
# @return [String]
|
|
2041
|
+
#
|
|
2042
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/GetAgentTaskResponseUrlResponse AWS API Documentation
|
|
2043
|
+
#
|
|
2044
|
+
class GetAgentTaskResponseUrlResponse < Struct.new(
|
|
2045
|
+
:agent_id,
|
|
2046
|
+
:task_id,
|
|
2047
|
+
:presigned_log_url)
|
|
2048
|
+
SENSITIVE = []
|
|
2049
|
+
include Aws::Structure
|
|
2050
|
+
end
|
|
2051
|
+
|
|
1836
2052
|
# @!attribute [rw] config_id
|
|
1837
2053
|
# UUID of a `Config`.
|
|
1838
2054
|
# @return [String]
|
|
@@ -2972,6 +3188,24 @@ module Aws::GroundStation
|
|
|
2972
3188
|
include Aws::Structure
|
|
2973
3189
|
end
|
|
2974
3190
|
|
|
3191
|
+
# Request would cause a service quota to be exceeded.
|
|
3192
|
+
#
|
|
3193
|
+
# @!attribute [rw] message
|
|
3194
|
+
# @return [String]
|
|
3195
|
+
#
|
|
3196
|
+
# @!attribute [rw] parameter_name
|
|
3197
|
+
# Parameter name that caused the exception
|
|
3198
|
+
# @return [String]
|
|
3199
|
+
#
|
|
3200
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ServiceQuotaExceededException AWS API Documentation
|
|
3201
|
+
#
|
|
3202
|
+
class ServiceQuotaExceededException < Struct.new(
|
|
3203
|
+
:message,
|
|
3204
|
+
:parameter_name)
|
|
3205
|
+
SENSITIVE = []
|
|
3206
|
+
include Aws::Structure
|
|
3207
|
+
end
|
|
3208
|
+
|
|
2975
3209
|
# Information about the socket address.
|
|
2976
3210
|
#
|
|
2977
3211
|
# @!attribute [rw] name
|
|
@@ -3413,6 +3647,98 @@ module Aws::GroundStation
|
|
|
3413
3647
|
include Aws::Structure
|
|
3414
3648
|
end
|
|
3415
3649
|
|
|
3650
|
+
# Definition for an uplink agent endpoint
|
|
3651
|
+
#
|
|
3652
|
+
# @!attribute [rw] name
|
|
3653
|
+
# Uplink dataflow endpoint name
|
|
3654
|
+
# @return [String]
|
|
3655
|
+
#
|
|
3656
|
+
# @!attribute [rw] dataflow_details
|
|
3657
|
+
# Dataflow details for the uplink endpoint
|
|
3658
|
+
# @return [Types::UplinkDataflowDetails]
|
|
3659
|
+
#
|
|
3660
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/UplinkAwsGroundStationAgentEndpoint AWS API Documentation
|
|
3661
|
+
#
|
|
3662
|
+
class UplinkAwsGroundStationAgentEndpoint < Struct.new(
|
|
3663
|
+
:name,
|
|
3664
|
+
:dataflow_details)
|
|
3665
|
+
SENSITIVE = []
|
|
3666
|
+
include Aws::Structure
|
|
3667
|
+
end
|
|
3668
|
+
|
|
3669
|
+
# Details for an uplink agent endpoint
|
|
3670
|
+
#
|
|
3671
|
+
# @!attribute [rw] name
|
|
3672
|
+
# Uplink dataflow endpoint name
|
|
3673
|
+
# @return [String]
|
|
3674
|
+
#
|
|
3675
|
+
# @!attribute [rw] dataflow_details
|
|
3676
|
+
# Dataflow details for the uplink endpoint
|
|
3677
|
+
# @return [Types::UplinkDataflowDetails]
|
|
3678
|
+
#
|
|
3679
|
+
# @!attribute [rw] agent_status
|
|
3680
|
+
# Status of the agent associated with the uplink dataflow endpoint
|
|
3681
|
+
# @return [String]
|
|
3682
|
+
#
|
|
3683
|
+
# @!attribute [rw] audit_results
|
|
3684
|
+
# Health audit results for the uplink dataflow endpoint
|
|
3685
|
+
# @return [String]
|
|
3686
|
+
#
|
|
3687
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/UplinkAwsGroundStationAgentEndpointDetails AWS API Documentation
|
|
3688
|
+
#
|
|
3689
|
+
class UplinkAwsGroundStationAgentEndpointDetails < Struct.new(
|
|
3690
|
+
:name,
|
|
3691
|
+
:dataflow_details,
|
|
3692
|
+
:agent_status,
|
|
3693
|
+
:audit_results)
|
|
3694
|
+
SENSITIVE = []
|
|
3695
|
+
include Aws::Structure
|
|
3696
|
+
end
|
|
3697
|
+
|
|
3698
|
+
# Connection details for customer to Agent and Agent to Ground Station
|
|
3699
|
+
#
|
|
3700
|
+
# @!attribute [rw] ingress_address_and_port
|
|
3701
|
+
# Egress address of AgentEndpoint with an optional mtu.
|
|
3702
|
+
# @return [Types::ConnectionDetails]
|
|
3703
|
+
#
|
|
3704
|
+
# @!attribute [rw] agent_ip_and_port_address
|
|
3705
|
+
# Ingress address of AgentEndpoint with a port range and an optional
|
|
3706
|
+
# mtu.
|
|
3707
|
+
# @return [Types::RangedConnectionDetails]
|
|
3708
|
+
#
|
|
3709
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/UplinkConnectionDetails AWS API Documentation
|
|
3710
|
+
#
|
|
3711
|
+
class UplinkConnectionDetails < Struct.new(
|
|
3712
|
+
:ingress_address_and_port,
|
|
3713
|
+
:agent_ip_and_port_address)
|
|
3714
|
+
SENSITIVE = []
|
|
3715
|
+
include Aws::Structure
|
|
3716
|
+
end
|
|
3717
|
+
|
|
3718
|
+
# Dataflow details for an uplink endpoint
|
|
3719
|
+
#
|
|
3720
|
+
# @note UplinkDataflowDetails is a union - when making an API calls you must set exactly one of the members.
|
|
3721
|
+
#
|
|
3722
|
+
# @note UplinkDataflowDetails is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of UplinkDataflowDetails corresponding to the set member.
|
|
3723
|
+
#
|
|
3724
|
+
# @!attribute [rw] agent_connection_details
|
|
3725
|
+
# Uplink connection details for customer to Agent and Agent to Ground
|
|
3726
|
+
# Station
|
|
3727
|
+
# @return [Types::UplinkConnectionDetails]
|
|
3728
|
+
#
|
|
3729
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/UplinkDataflowDetails AWS API Documentation
|
|
3730
|
+
#
|
|
3731
|
+
class UplinkDataflowDetails < Struct.new(
|
|
3732
|
+
:agent_connection_details,
|
|
3733
|
+
:unknown)
|
|
3734
|
+
SENSITIVE = []
|
|
3735
|
+
include Aws::Structure
|
|
3736
|
+
include Aws::Structure::Union
|
|
3737
|
+
|
|
3738
|
+
class AgentConnectionDetails < UplinkDataflowDetails; end
|
|
3739
|
+
class Unknown < UplinkDataflowDetails; end
|
|
3740
|
+
end
|
|
3741
|
+
|
|
3416
3742
|
# Information about an uplink echo `Config`.
|
|
3417
3743
|
#
|
|
3418
3744
|
# Parameters from the `AntennaUplinkConfig`, corresponding to the
|
data/sig/client.rbs
CHANGED
|
@@ -209,6 +209,58 @@ module Aws
|
|
|
209
209
|
agent_status: ("SUCCESS" | "FAILED" | "ACTIVE" | "INACTIVE")?,
|
|
210
210
|
audit_results: ("HEALTHY" | "UNHEALTHY")?
|
|
211
211
|
}?,
|
|
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")?
|
|
263
|
+
}?,
|
|
212
264
|
health_status: ("HEALTHY" | "UNHEALTHY")?,
|
|
213
265
|
health_reasons: Array[("NO_REGISTERED_AGENT" | "INVALID_IP_OWNERSHIP" | "NOT_AUTHORIZED_TO_CREATE_SLR" | "UNVERIFIED_IP_OWNERSHIP" | "INITIALIZING_DATAPLANE" | "DATAPLANE_FAILURE" | "HEALTHY")]?
|
|
214
266
|
},
|
|
@@ -219,6 +271,70 @@ module Aws
|
|
|
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
|
|
@@ -416,6 +532,19 @@ module Aws
|
|
|
416
532
|
) -> _GetAgentConfigurationResponseSuccess
|
|
417
533
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAgentConfigurationResponseSuccess
|
|
418
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
|
+
|
|
419
548
|
interface _GetConfigResponseSuccess
|
|
420
549
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetConfigResponse]
|
|
421
550
|
def config_id: () -> ::String
|
data/sig/errors.rbs
CHANGED
|
@@ -29,6 +29,10 @@ module Aws
|
|
|
29
29
|
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
|
30
30
|
def message: () -> ::String
|
|
31
31
|
end
|
|
32
|
+
class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
|
|
33
|
+
def message: () -> ::String
|
|
34
|
+
def parameter_name: () -> ::String
|
|
35
|
+
end
|
|
32
36
|
end
|
|
33
37
|
end
|
|
34
38
|
end
|
data/sig/types.rbs
CHANGED
|
@@ -229,6 +229,33 @@ module Aws::GroundStation
|
|
|
229
229
|
SENSITIVE: []
|
|
230
230
|
end
|
|
231
231
|
|
|
232
|
+
class CreateDataflowEndpointGroupV2Request
|
|
233
|
+
attr_accessor endpoints: ::Array[Types::CreateEndpointDetails]
|
|
234
|
+
attr_accessor contact_pre_pass_duration_seconds: ::Integer
|
|
235
|
+
attr_accessor contact_post_pass_duration_seconds: ::Integer
|
|
236
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
237
|
+
SENSITIVE: []
|
|
238
|
+
end
|
|
239
|
+
|
|
240
|
+
class CreateDataflowEndpointGroupV2Response
|
|
241
|
+
attr_accessor dataflow_endpoint_group_id: ::String
|
|
242
|
+
SENSITIVE: []
|
|
243
|
+
end
|
|
244
|
+
|
|
245
|
+
class CreateEndpointDetails
|
|
246
|
+
attr_accessor uplink_aws_ground_station_agent_endpoint: Types::UplinkAwsGroundStationAgentEndpoint
|
|
247
|
+
attr_accessor downlink_aws_ground_station_agent_endpoint: Types::DownlinkAwsGroundStationAgentEndpoint
|
|
248
|
+
attr_accessor unknown: untyped
|
|
249
|
+
SENSITIVE: []
|
|
250
|
+
|
|
251
|
+
class UplinkAwsGroundStationAgentEndpoint < CreateEndpointDetails
|
|
252
|
+
end
|
|
253
|
+
class DownlinkAwsGroundStationAgentEndpoint < CreateEndpointDetails
|
|
254
|
+
end
|
|
255
|
+
class Unknown < CreateEndpointDetails
|
|
256
|
+
end
|
|
257
|
+
end
|
|
258
|
+
|
|
232
259
|
class CreateEphemerisRequest
|
|
233
260
|
attr_accessor satellite_id: ::String
|
|
234
261
|
attr_accessor enabled: bool
|
|
@@ -385,6 +412,37 @@ module Aws::GroundStation
|
|
|
385
412
|
SENSITIVE: []
|
|
386
413
|
end
|
|
387
414
|
|
|
415
|
+
class DownlinkAwsGroundStationAgentEndpoint
|
|
416
|
+
attr_accessor name: ::String
|
|
417
|
+
attr_accessor dataflow_details: Types::DownlinkDataflowDetails
|
|
418
|
+
SENSITIVE: []
|
|
419
|
+
end
|
|
420
|
+
|
|
421
|
+
class DownlinkAwsGroundStationAgentEndpointDetails
|
|
422
|
+
attr_accessor name: ::String
|
|
423
|
+
attr_accessor dataflow_details: Types::DownlinkDataflowDetails
|
|
424
|
+
attr_accessor agent_status: ("SUCCESS" | "FAILED" | "ACTIVE" | "INACTIVE")
|
|
425
|
+
attr_accessor audit_results: ("HEALTHY" | "UNHEALTHY")
|
|
426
|
+
SENSITIVE: []
|
|
427
|
+
end
|
|
428
|
+
|
|
429
|
+
class DownlinkConnectionDetails
|
|
430
|
+
attr_accessor agent_ip_and_port_address: Types::RangedConnectionDetails
|
|
431
|
+
attr_accessor egress_address_and_port: Types::ConnectionDetails
|
|
432
|
+
SENSITIVE: []
|
|
433
|
+
end
|
|
434
|
+
|
|
435
|
+
class DownlinkDataflowDetails
|
|
436
|
+
attr_accessor agent_connection_details: Types::DownlinkConnectionDetails
|
|
437
|
+
attr_accessor unknown: untyped
|
|
438
|
+
SENSITIVE: []
|
|
439
|
+
|
|
440
|
+
class AgentConnectionDetails < DownlinkDataflowDetails
|
|
441
|
+
end
|
|
442
|
+
class Unknown < DownlinkDataflowDetails
|
|
443
|
+
end
|
|
444
|
+
end
|
|
445
|
+
|
|
388
446
|
class Eirp
|
|
389
447
|
attr_accessor value: ::Float
|
|
390
448
|
attr_accessor units: ("dBW")
|
|
@@ -401,6 +459,8 @@ module Aws::GroundStation
|
|
|
401
459
|
attr_accessor security_details: Types::SecurityDetails
|
|
402
460
|
attr_accessor endpoint: Types::DataflowEndpoint
|
|
403
461
|
attr_accessor aws_ground_station_agent_endpoint: Types::AwsGroundStationAgentEndpoint
|
|
462
|
+
attr_accessor uplink_aws_ground_station_agent_endpoint: Types::UplinkAwsGroundStationAgentEndpointDetails
|
|
463
|
+
attr_accessor downlink_aws_ground_station_agent_endpoint: Types::DownlinkAwsGroundStationAgentEndpointDetails
|
|
404
464
|
attr_accessor health_status: ("HEALTHY" | "UNHEALTHY")
|
|
405
465
|
attr_accessor health_reasons: ::Array[("NO_REGISTERED_AGENT" | "INVALID_IP_OWNERSHIP" | "NOT_AUTHORIZED_TO_CREATE_SLR" | "UNVERIFIED_IP_OWNERSHIP" | "INITIALIZING_DATAPLANE" | "DATAPLANE_FAILURE" | "HEALTHY")]
|
|
406
466
|
SENSITIVE: []
|
|
@@ -517,6 +577,19 @@ module Aws::GroundStation
|
|
|
517
577
|
SENSITIVE: []
|
|
518
578
|
end
|
|
519
579
|
|
|
580
|
+
class GetAgentTaskResponseUrlRequest
|
|
581
|
+
attr_accessor agent_id: ::String
|
|
582
|
+
attr_accessor task_id: ::String
|
|
583
|
+
SENSITIVE: []
|
|
584
|
+
end
|
|
585
|
+
|
|
586
|
+
class GetAgentTaskResponseUrlResponse
|
|
587
|
+
attr_accessor agent_id: ::String
|
|
588
|
+
attr_accessor task_id: ::String
|
|
589
|
+
attr_accessor presigned_log_url: ::String
|
|
590
|
+
SENSITIVE: []
|
|
591
|
+
end
|
|
592
|
+
|
|
520
593
|
class GetConfigRequest
|
|
521
594
|
attr_accessor config_id: ::String
|
|
522
595
|
attr_accessor config_type: ("antenna-downlink" | "antenna-downlink-demod-decode" | "tracking" | "dataflow-endpoint" | "antenna-uplink" | "uplink-echo" | "s3-recording")
|
|
@@ -864,6 +937,12 @@ module Aws::GroundStation
|
|
|
864
937
|
SENSITIVE: []
|
|
865
938
|
end
|
|
866
939
|
|
|
940
|
+
class ServiceQuotaExceededException
|
|
941
|
+
attr_accessor message: ::String
|
|
942
|
+
attr_accessor parameter_name: ::String
|
|
943
|
+
SENSITIVE: []
|
|
944
|
+
end
|
|
945
|
+
|
|
867
946
|
class SocketAddress
|
|
868
947
|
attr_accessor name: ::String
|
|
869
948
|
attr_accessor port: ::Integer
|
|
@@ -981,6 +1060,37 @@ module Aws::GroundStation
|
|
|
981
1060
|
SENSITIVE: []
|
|
982
1061
|
end
|
|
983
1062
|
|
|
1063
|
+
class UplinkAwsGroundStationAgentEndpoint
|
|
1064
|
+
attr_accessor name: ::String
|
|
1065
|
+
attr_accessor dataflow_details: Types::UplinkDataflowDetails
|
|
1066
|
+
SENSITIVE: []
|
|
1067
|
+
end
|
|
1068
|
+
|
|
1069
|
+
class UplinkAwsGroundStationAgentEndpointDetails
|
|
1070
|
+
attr_accessor name: ::String
|
|
1071
|
+
attr_accessor dataflow_details: Types::UplinkDataflowDetails
|
|
1072
|
+
attr_accessor agent_status: ("SUCCESS" | "FAILED" | "ACTIVE" | "INACTIVE")
|
|
1073
|
+
attr_accessor audit_results: ("HEALTHY" | "UNHEALTHY")
|
|
1074
|
+
SENSITIVE: []
|
|
1075
|
+
end
|
|
1076
|
+
|
|
1077
|
+
class UplinkConnectionDetails
|
|
1078
|
+
attr_accessor ingress_address_and_port: Types::ConnectionDetails
|
|
1079
|
+
attr_accessor agent_ip_and_port_address: Types::RangedConnectionDetails
|
|
1080
|
+
SENSITIVE: []
|
|
1081
|
+
end
|
|
1082
|
+
|
|
1083
|
+
class UplinkDataflowDetails
|
|
1084
|
+
attr_accessor agent_connection_details: Types::UplinkConnectionDetails
|
|
1085
|
+
attr_accessor unknown: untyped
|
|
1086
|
+
SENSITIVE: []
|
|
1087
|
+
|
|
1088
|
+
class AgentConnectionDetails < UplinkDataflowDetails
|
|
1089
|
+
end
|
|
1090
|
+
class Unknown < UplinkDataflowDetails
|
|
1091
|
+
end
|
|
1092
|
+
end
|
|
1093
|
+
|
|
984
1094
|
class UplinkEchoConfig
|
|
985
1095
|
attr_accessor enabled: bool
|
|
986
1096
|
attr_accessor antenna_uplink_config_arn: ::String
|