aws-sdk-groundstation 1.31.0 → 1.32.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4f81601bf76df148196ec209a859d1ecb84fd10bc3acd806cabf79b401fe3e5d
4
- data.tar.gz: c0b6183670ea5b39f5072350fa76e1cb31e781bc0e068be14987cc3dc6b6d8a0
3
+ metadata.gz: e5b4ff66e5a28b560467b9adee19d8f3a52acb5defcab833f555ad5394cd2cfa
4
+ data.tar.gz: b05059a21fd9770236adafa2df814c029050c9269c1befa07b6d898f5ac7b9f6
5
5
  SHA512:
6
- metadata.gz: db2b0d6362d6b7df9c64ebf4281b3eb373c22111b873b7043ddfb5322c0e00a8a3b2ce6e7c9144e78f9140994e1a4787ec3f02883693da1f88cf5d1ada9c47df
7
- data.tar.gz: 1c7569ad6d5e1def50be9bce16b426616d8b40aecc418a66b4369054db8e248111f8ffcd924098d41f21b1952476a96b321b8bf7785126f483faa5f0bc4a0c96
6
+ metadata.gz: b7a103b39db4a017c9aeec8574b040a14ed091828d1cb0e24edae363f00cef19213f27b3023550517a1f17471068f100e885beca22327824b3ad524e431db95b
7
+ data.tar.gz: 1f1e24fad8e5dfc27db4324363412f5dd6216db840363d7021f75c60e1bf9d98a76951d099273a8549559f7700560d24197ef7f413bef1f6e5493c02cfdfa0f0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.32.0 (2023-01-31)
5
+ ------------------
6
+
7
+ * Feature - DigIF Expansion changes to the Customer APIs.
8
+
4
9
  1.31.0 (2023-01-19)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.31.0
1
+ 1.32.0
@@ -540,6 +540,28 @@ module Aws::GroundStation
540
540
  # contact_pre_pass_duration_seconds: 1,
541
541
  # endpoint_details: [ # required
542
542
  # {
543
+ # aws_ground_station_agent_endpoint: {
544
+ # agent_status: "SUCCESS", # accepts SUCCESS, FAILED, ACTIVE, INACTIVE
545
+ # audit_results: "HEALTHY", # accepts HEALTHY, UNHEALTHY
546
+ # egress_address: { # required
547
+ # mtu: 1,
548
+ # socket_address: { # required
549
+ # name: "String", # required
550
+ # port: 1, # required
551
+ # },
552
+ # },
553
+ # ingress_address: { # required
554
+ # mtu: 1,
555
+ # socket_address: { # required
556
+ # name: "IpV4Address", # required
557
+ # port_range: { # required
558
+ # maximum: 1, # required
559
+ # minimum: 1, # required
560
+ # },
561
+ # },
562
+ # },
563
+ # name: "SafeName", # required
564
+ # },
543
565
  # endpoint: {
544
566
  # address: {
545
567
  # name: "String", # required
@@ -694,6 +716,12 @@ module Aws::GroundStation
694
716
  # @option params [required, String] :name
695
717
  # Name of a mission profile.
696
718
  #
719
+ # @option params [Types::KmsKey] :streams_kms_key
720
+ # KMS key to use for encrypting streams.
721
+ #
722
+ # @option params [String] :streams_kms_role
723
+ # Role to use for encrypting streams with KMS key.
724
+ #
697
725
  # @option params [Hash<String,String>] :tags
698
726
  # Tags assigned to a mission profile.
699
727
  #
@@ -714,6 +742,11 @@ module Aws::GroundStation
714
742
  # ],
715
743
  # minimum_viable_contact_duration_seconds: 1, # required
716
744
  # name: "SafeName", # required
745
+ # streams_kms_key: {
746
+ # kms_alias_arn: "KeyAliasArn",
747
+ # kms_key_arn: "KeyArn",
748
+ # },
749
+ # streams_kms_role: "RoleArn",
717
750
  # tags: {
718
751
  # "String" => "String",
719
752
  # },
@@ -887,6 +920,16 @@ module Aws::GroundStation
887
920
  # resp.contact_status #=> String, one of "AVAILABLE", "AWS_CANCELLED", "AWS_FAILED", "CANCELLED", "CANCELLING", "COMPLETED", "FAILED", "FAILED_TO_SCHEDULE", "PASS", "POSTPASS", "PREPASS", "SCHEDULED", "SCHEDULING"
888
921
  # resp.dataflow_list #=> Array
889
922
  # resp.dataflow_list[0].destination.config_details.antenna_demod_decode_details.output_node #=> String
923
+ # resp.dataflow_list[0].destination.config_details.endpoint_details.aws_ground_station_agent_endpoint.agent_status #=> String, one of "SUCCESS", "FAILED", "ACTIVE", "INACTIVE"
924
+ # resp.dataflow_list[0].destination.config_details.endpoint_details.aws_ground_station_agent_endpoint.audit_results #=> String, one of "HEALTHY", "UNHEALTHY"
925
+ # resp.dataflow_list[0].destination.config_details.endpoint_details.aws_ground_station_agent_endpoint.egress_address.mtu #=> Integer
926
+ # resp.dataflow_list[0].destination.config_details.endpoint_details.aws_ground_station_agent_endpoint.egress_address.socket_address.name #=> String
927
+ # resp.dataflow_list[0].destination.config_details.endpoint_details.aws_ground_station_agent_endpoint.egress_address.socket_address.port #=> Integer
928
+ # resp.dataflow_list[0].destination.config_details.endpoint_details.aws_ground_station_agent_endpoint.ingress_address.mtu #=> Integer
929
+ # resp.dataflow_list[0].destination.config_details.endpoint_details.aws_ground_station_agent_endpoint.ingress_address.socket_address.name #=> String
930
+ # resp.dataflow_list[0].destination.config_details.endpoint_details.aws_ground_station_agent_endpoint.ingress_address.socket_address.port_range.maximum #=> Integer
931
+ # resp.dataflow_list[0].destination.config_details.endpoint_details.aws_ground_station_agent_endpoint.ingress_address.socket_address.port_range.minimum #=> Integer
932
+ # resp.dataflow_list[0].destination.config_details.endpoint_details.aws_ground_station_agent_endpoint.name #=> String
890
933
  # resp.dataflow_list[0].destination.config_details.endpoint_details.endpoint.address.name #=> String
891
934
  # resp.dataflow_list[0].destination.config_details.endpoint_details.endpoint.address.port #=> Integer
892
935
  # resp.dataflow_list[0].destination.config_details.endpoint_details.endpoint.mtu #=> Integer
@@ -904,6 +947,16 @@ module Aws::GroundStation
904
947
  # resp.dataflow_list[0].destination.dataflow_destination_region #=> String
905
948
  # resp.dataflow_list[0].error_message #=> String
906
949
  # resp.dataflow_list[0].source.config_details.antenna_demod_decode_details.output_node #=> String
950
+ # resp.dataflow_list[0].source.config_details.endpoint_details.aws_ground_station_agent_endpoint.agent_status #=> String, one of "SUCCESS", "FAILED", "ACTIVE", "INACTIVE"
951
+ # resp.dataflow_list[0].source.config_details.endpoint_details.aws_ground_station_agent_endpoint.audit_results #=> String, one of "HEALTHY", "UNHEALTHY"
952
+ # resp.dataflow_list[0].source.config_details.endpoint_details.aws_ground_station_agent_endpoint.egress_address.mtu #=> Integer
953
+ # resp.dataflow_list[0].source.config_details.endpoint_details.aws_ground_station_agent_endpoint.egress_address.socket_address.name #=> String
954
+ # resp.dataflow_list[0].source.config_details.endpoint_details.aws_ground_station_agent_endpoint.egress_address.socket_address.port #=> Integer
955
+ # resp.dataflow_list[0].source.config_details.endpoint_details.aws_ground_station_agent_endpoint.ingress_address.mtu #=> Integer
956
+ # resp.dataflow_list[0].source.config_details.endpoint_details.aws_ground_station_agent_endpoint.ingress_address.socket_address.name #=> String
957
+ # resp.dataflow_list[0].source.config_details.endpoint_details.aws_ground_station_agent_endpoint.ingress_address.socket_address.port_range.maximum #=> Integer
958
+ # resp.dataflow_list[0].source.config_details.endpoint_details.aws_ground_station_agent_endpoint.ingress_address.socket_address.port_range.minimum #=> Integer
959
+ # resp.dataflow_list[0].source.config_details.endpoint_details.aws_ground_station_agent_endpoint.name #=> String
907
960
  # resp.dataflow_list[0].source.config_details.endpoint_details.endpoint.address.name #=> String
908
961
  # resp.dataflow_list[0].source.config_details.endpoint_details.endpoint.address.port #=> Integer
909
962
  # resp.dataflow_list[0].source.config_details.endpoint_details.endpoint.mtu #=> Integer
@@ -1001,6 +1054,36 @@ module Aws::GroundStation
1001
1054
  req.send_request(options)
1002
1055
  end
1003
1056
 
1057
+ # Gets the latest configuration information for a registered agent.
1058
+ #
1059
+ # @option params [required, String] :agent_id
1060
+ # UUID of agent to get configuration information for.
1061
+ #
1062
+ # @return [Types::GetAgentConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1063
+ #
1064
+ # * {Types::GetAgentConfigurationResponse#agent_id #agent_id} => String
1065
+ # * {Types::GetAgentConfigurationResponse#tasking_document #tasking_document} => String
1066
+ #
1067
+ # @example Request syntax with placeholder values
1068
+ #
1069
+ # resp = client.get_agent_configuration({
1070
+ # agent_id: "Uuid", # required
1071
+ # })
1072
+ #
1073
+ # @example Response structure
1074
+ #
1075
+ # resp.agent_id #=> String
1076
+ # resp.tasking_document #=> String
1077
+ #
1078
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/GetAgentConfiguration AWS API Documentation
1079
+ #
1080
+ # @overload get_agent_configuration(params = {})
1081
+ # @param [Hash] params ({})
1082
+ def get_agent_configuration(params = {}, options = {})
1083
+ req = build_request(:get_agent_configuration, params)
1084
+ req.send_request(options)
1085
+ end
1086
+
1004
1087
  # Returns `Config` information.
1005
1088
  #
1006
1089
  # Only one `Config` response can be returned.
@@ -1098,6 +1181,16 @@ module Aws::GroundStation
1098
1181
  # resp.dataflow_endpoint_group_arn #=> String
1099
1182
  # resp.dataflow_endpoint_group_id #=> String
1100
1183
  # resp.endpoints_details #=> Array
1184
+ # resp.endpoints_details[0].aws_ground_station_agent_endpoint.agent_status #=> String, one of "SUCCESS", "FAILED", "ACTIVE", "INACTIVE"
1185
+ # resp.endpoints_details[0].aws_ground_station_agent_endpoint.audit_results #=> String, one of "HEALTHY", "UNHEALTHY"
1186
+ # resp.endpoints_details[0].aws_ground_station_agent_endpoint.egress_address.mtu #=> Integer
1187
+ # resp.endpoints_details[0].aws_ground_station_agent_endpoint.egress_address.socket_address.name #=> String
1188
+ # resp.endpoints_details[0].aws_ground_station_agent_endpoint.egress_address.socket_address.port #=> Integer
1189
+ # resp.endpoints_details[0].aws_ground_station_agent_endpoint.ingress_address.mtu #=> Integer
1190
+ # resp.endpoints_details[0].aws_ground_station_agent_endpoint.ingress_address.socket_address.name #=> String
1191
+ # resp.endpoints_details[0].aws_ground_station_agent_endpoint.ingress_address.socket_address.port_range.maximum #=> Integer
1192
+ # resp.endpoints_details[0].aws_ground_station_agent_endpoint.ingress_address.socket_address.port_range.minimum #=> Integer
1193
+ # resp.endpoints_details[0].aws_ground_station_agent_endpoint.name #=> String
1101
1194
  # resp.endpoints_details[0].endpoint.address.name #=> String
1102
1195
  # resp.endpoints_details[0].endpoint.address.port #=> Integer
1103
1196
  # resp.endpoints_details[0].endpoint.mtu #=> Integer
@@ -1175,6 +1268,8 @@ module Aws::GroundStation
1175
1268
  # * {Types::GetMissionProfileResponse#mission_profile_id #mission_profile_id} => String
1176
1269
  # * {Types::GetMissionProfileResponse#name #name} => String
1177
1270
  # * {Types::GetMissionProfileResponse#region #region} => String
1271
+ # * {Types::GetMissionProfileResponse#streams_kms_key #streams_kms_key} => Types::KmsKey
1272
+ # * {Types::GetMissionProfileResponse#streams_kms_role #streams_kms_role} => String
1178
1273
  # * {Types::GetMissionProfileResponse#tags #tags} => Hash&lt;String,String&gt;
1179
1274
  # * {Types::GetMissionProfileResponse#tracking_config_arn #tracking_config_arn} => String
1180
1275
  #
@@ -1196,6 +1291,9 @@ module Aws::GroundStation
1196
1291
  # resp.mission_profile_id #=> String
1197
1292
  # resp.name #=> String
1198
1293
  # resp.region #=> String
1294
+ # resp.streams_kms_key.kms_alias_arn #=> String
1295
+ # resp.streams_kms_key.kms_key_arn #=> String
1296
+ # resp.streams_kms_role #=> String
1199
1297
  # resp.tags #=> Hash
1200
1298
  # resp.tags["String"] #=> String
1201
1299
  # resp.tracking_config_arn #=> String
@@ -1634,6 +1732,53 @@ module Aws::GroundStation
1634
1732
  req.send_request(options)
1635
1733
  end
1636
1734
 
1735
+ # Registers a new agent with AWS Groundstation.
1736
+ #
1737
+ # @option params [required, Types::AgentDetails] :agent_details
1738
+ # Detailed information about the agent being registered.
1739
+ #
1740
+ # @option params [required, Types::DiscoveryData] :discovery_data
1741
+ # Data for associating and agent with the capabilities it is managing.
1742
+ #
1743
+ # @return [Types::RegisterAgentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1744
+ #
1745
+ # * {Types::RegisterAgentResponse#agent_id #agent_id} => String
1746
+ #
1747
+ # @example Request syntax with placeholder values
1748
+ #
1749
+ # resp = client.register_agent({
1750
+ # agent_details: { # required
1751
+ # agent_version: "VersionString", # required
1752
+ # component_versions: [ # required
1753
+ # {
1754
+ # component_type: "LAMINAR_FLOW", # required, accepts LAMINAR_FLOW, PRISM, DIGITIZER
1755
+ # versions: ["VersionString"], # required
1756
+ # },
1757
+ # ],
1758
+ # instance_id: "InstanceId", # required
1759
+ # instance_type: "InstanceType", # required
1760
+ # reserved_cpu_cores: [1], # required
1761
+ # },
1762
+ # discovery_data: { # required
1763
+ # capability_arns: ["CapabilityArn"], # required
1764
+ # private_ip_addresses: ["IpV4Address"], # required
1765
+ # public_ip_addresses: ["IpV4Address"], # required
1766
+ # },
1767
+ # })
1768
+ #
1769
+ # @example Response structure
1770
+ #
1771
+ # resp.agent_id #=> String
1772
+ #
1773
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/RegisterAgent AWS API Documentation
1774
+ #
1775
+ # @overload register_agent(params = {})
1776
+ # @param [Hash] params ({})
1777
+ def register_agent(params = {}, options = {})
1778
+ req = build_request(:register_agent, params)
1779
+ req.send_request(options)
1780
+ end
1781
+
1637
1782
  # Reserves a contact using specified parameters.
1638
1783
  #
1639
1784
  # @option params [required, Time,DateTime,Date,Integer,String] :end_time
@@ -1738,6 +1883,61 @@ module Aws::GroundStation
1738
1883
  req.send_request(options)
1739
1884
  end
1740
1885
 
1886
+ # Update the status of the agent.
1887
+ #
1888
+ # @option params [required, String] :agent_id
1889
+ # UUID of agent to update.
1890
+ #
1891
+ # @option params [required, Types::AggregateStatus] :aggregate_status
1892
+ # Aggregate status for agent.
1893
+ #
1894
+ # @option params [required, Array<Types::ComponentStatusData>] :component_statuses
1895
+ # List of component statuses for agent.
1896
+ #
1897
+ # @option params [required, String] :task_id
1898
+ # GUID of agent task.
1899
+ #
1900
+ # @return [Types::UpdateAgentStatusResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1901
+ #
1902
+ # * {Types::UpdateAgentStatusResponse#agent_id #agent_id} => String
1903
+ #
1904
+ # @example Request syntax with placeholder values
1905
+ #
1906
+ # resp = client.update_agent_status({
1907
+ # agent_id: "Uuid", # required
1908
+ # aggregate_status: { # required
1909
+ # signature_map: {
1910
+ # "String" => false,
1911
+ # },
1912
+ # status: "SUCCESS", # required, accepts SUCCESS, FAILED, ACTIVE, INACTIVE
1913
+ # },
1914
+ # component_statuses: [ # required
1915
+ # {
1916
+ # bytes_received: 1,
1917
+ # bytes_sent: 1,
1918
+ # capability_arn: "CapabilityArn", # required
1919
+ # component_type: "LAMINAR_FLOW", # required, accepts LAMINAR_FLOW, PRISM, DIGITIZER
1920
+ # dataflow_id: "Uuid", # required
1921
+ # packets_dropped: 1,
1922
+ # status: "SUCCESS", # required, accepts SUCCESS, FAILED, ACTIVE, INACTIVE
1923
+ # },
1924
+ # ],
1925
+ # task_id: "Uuid", # required
1926
+ # })
1927
+ #
1928
+ # @example Response structure
1929
+ #
1930
+ # resp.agent_id #=> String
1931
+ #
1932
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/UpdateAgentStatus AWS API Documentation
1933
+ #
1934
+ # @overload update_agent_status(params = {})
1935
+ # @param [Hash] params ({})
1936
+ def update_agent_status(params = {}, options = {})
1937
+ req = build_request(:update_agent_status, params)
1938
+ req.send_request(options)
1939
+ end
1940
+
1741
1941
  # Updates the `Config` used when scheduling contacts.
1742
1942
  #
1743
1943
  # Updating a `Config` will not update the execution parameters for
@@ -1924,6 +2124,12 @@ module Aws::GroundStation
1924
2124
  # @option params [String] :name
1925
2125
  # Name of a mission profile.
1926
2126
  #
2127
+ # @option params [Types::KmsKey] :streams_kms_key
2128
+ # KMS key to use for encrypting streams.
2129
+ #
2130
+ # @option params [String] :streams_kms_role
2131
+ # Role to use for encrypting streams with KMS key.
2132
+ #
1927
2133
  # @option params [String] :tracking_config_arn
1928
2134
  # ARN of a tracking `Config`.
1929
2135
  #
@@ -1942,6 +2148,11 @@ module Aws::GroundStation
1942
2148
  # minimum_viable_contact_duration_seconds: 1,
1943
2149
  # mission_profile_id: "Uuid", # required
1944
2150
  # name: "SafeName",
2151
+ # streams_kms_key: {
2152
+ # kms_alias_arn: "KeyAliasArn",
2153
+ # kms_key_arn: "KeyArn",
2154
+ # },
2155
+ # streams_kms_role: "RoleArn",
1945
2156
  # tracking_config_arn: "ConfigArn",
1946
2157
  # })
1947
2158
  #
@@ -1971,7 +2182,7 @@ module Aws::GroundStation
1971
2182
  params: params,
1972
2183
  config: config)
1973
2184
  context[:gem_name] = 'aws-sdk-groundstation'
1974
- context[:gem_version] = '1.31.0'
2185
+ context[:gem_version] = '1.32.0'
1975
2186
  Seahorse::Client::Request.new(handlers, context)
1976
2187
  end
1977
2188