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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-groundstation/client.rb +212 -1
- data/lib/aws-sdk-groundstation/client_api.rb +173 -0
- data/lib/aws-sdk-groundstation/endpoints.rb +42 -0
- data/lib/aws-sdk-groundstation/plugins/endpoints.rb +6 -0
- data/lib/aws-sdk-groundstation/types.rb +415 -0
- data/lib/aws-sdk-groundstation.rb +1 -1
- metadata +2 -2
@@ -10,6 +10,59 @@
|
|
10
10
|
module Aws::GroundStation
|
11
11
|
module Types
|
12
12
|
|
13
|
+
# Detailed information about the agent.
|
14
|
+
#
|
15
|
+
# @!attribute [rw] agent_version
|
16
|
+
# Current agent version.
|
17
|
+
# @return [String]
|
18
|
+
#
|
19
|
+
# @!attribute [rw] component_versions
|
20
|
+
# List of versions being used by agent components.
|
21
|
+
# @return [Array<Types::ComponentVersion>]
|
22
|
+
#
|
23
|
+
# @!attribute [rw] instance_id
|
24
|
+
# ID of EC2 instance agent is running on.
|
25
|
+
# @return [String]
|
26
|
+
#
|
27
|
+
# @!attribute [rw] instance_type
|
28
|
+
# Type of EC2 instance agent is running on.
|
29
|
+
# @return [String]
|
30
|
+
#
|
31
|
+
# @!attribute [rw] reserved_cpu_cores
|
32
|
+
# Number of Cpu cores reserved for agent.
|
33
|
+
# @return [Array<Integer>]
|
34
|
+
#
|
35
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/AgentDetails AWS API Documentation
|
36
|
+
#
|
37
|
+
class AgentDetails < Struct.new(
|
38
|
+
:agent_version,
|
39
|
+
:component_versions,
|
40
|
+
:instance_id,
|
41
|
+
:instance_type,
|
42
|
+
:reserved_cpu_cores)
|
43
|
+
SENSITIVE = []
|
44
|
+
include Aws::Structure
|
45
|
+
end
|
46
|
+
|
47
|
+
# Aggregate status of Agent components.
|
48
|
+
#
|
49
|
+
# @!attribute [rw] signature_map
|
50
|
+
# Sparse map of failure signatures.
|
51
|
+
# @return [Hash<String,Boolean>]
|
52
|
+
#
|
53
|
+
# @!attribute [rw] status
|
54
|
+
# Aggregate status.
|
55
|
+
# @return [String]
|
56
|
+
#
|
57
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/AggregateStatus AWS API Documentation
|
58
|
+
#
|
59
|
+
class AggregateStatus < Struct.new(
|
60
|
+
:signature_map,
|
61
|
+
:status)
|
62
|
+
SENSITIVE = []
|
63
|
+
include Aws::Structure
|
64
|
+
end
|
65
|
+
|
13
66
|
# Details about an antenna demod decode `Config` used in a contact.
|
14
67
|
#
|
15
68
|
# @!attribute [rw] output_node
|
@@ -88,6 +141,41 @@ module Aws::GroundStation
|
|
88
141
|
include Aws::Structure
|
89
142
|
end
|
90
143
|
|
144
|
+
# Information about AwsGroundStationAgentEndpoint.
|
145
|
+
#
|
146
|
+
# @!attribute [rw] agent_status
|
147
|
+
# The status of AgentEndpoint.
|
148
|
+
# @return [String]
|
149
|
+
#
|
150
|
+
# @!attribute [rw] audit_results
|
151
|
+
# The results of the audit.
|
152
|
+
# @return [String]
|
153
|
+
#
|
154
|
+
# @!attribute [rw] egress_address
|
155
|
+
# The egress address of AgentEndpoint.
|
156
|
+
# @return [Types::ConnectionDetails]
|
157
|
+
#
|
158
|
+
# @!attribute [rw] ingress_address
|
159
|
+
# The ingress address of AgentEndpoint.
|
160
|
+
# @return [Types::RangedConnectionDetails]
|
161
|
+
#
|
162
|
+
# @!attribute [rw] name
|
163
|
+
# Name string associated with AgentEndpoint. Used as a human-readable
|
164
|
+
# identifier for AgentEndpoint.
|
165
|
+
# @return [String]
|
166
|
+
#
|
167
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/AwsGroundStationAgentEndpoint AWS API Documentation
|
168
|
+
#
|
169
|
+
class AwsGroundStationAgentEndpoint < Struct.new(
|
170
|
+
:agent_status,
|
171
|
+
:audit_results,
|
172
|
+
:egress_address,
|
173
|
+
:ingress_address,
|
174
|
+
:name)
|
175
|
+
SENSITIVE = []
|
176
|
+
include Aws::Structure
|
177
|
+
end
|
178
|
+
|
91
179
|
# @!attribute [rw] contact_id
|
92
180
|
# UUID of a contact.
|
93
181
|
# @return [String]
|
@@ -100,6 +188,69 @@ module Aws::GroundStation
|
|
100
188
|
include Aws::Structure
|
101
189
|
end
|
102
190
|
|
191
|
+
# Data on the status of agent components.
|
192
|
+
#
|
193
|
+
# @!attribute [rw] bytes_received
|
194
|
+
# Bytes received by the component.
|
195
|
+
# @return [Integer]
|
196
|
+
#
|
197
|
+
# @!attribute [rw] bytes_sent
|
198
|
+
# Bytes sent by the component.
|
199
|
+
# @return [Integer]
|
200
|
+
#
|
201
|
+
# @!attribute [rw] capability_arn
|
202
|
+
# Capability ARN of the component.
|
203
|
+
# @return [String]
|
204
|
+
#
|
205
|
+
# @!attribute [rw] component_type
|
206
|
+
# The Component type.
|
207
|
+
# @return [String]
|
208
|
+
#
|
209
|
+
# @!attribute [rw] dataflow_id
|
210
|
+
# Dataflow UUID associated with the component.
|
211
|
+
# @return [String]
|
212
|
+
#
|
213
|
+
# @!attribute [rw] packets_dropped
|
214
|
+
# Packets dropped by component.
|
215
|
+
# @return [Integer]
|
216
|
+
#
|
217
|
+
# @!attribute [rw] status
|
218
|
+
# Component status.
|
219
|
+
# @return [String]
|
220
|
+
#
|
221
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ComponentStatusData AWS API Documentation
|
222
|
+
#
|
223
|
+
class ComponentStatusData < Struct.new(
|
224
|
+
:bytes_received,
|
225
|
+
:bytes_sent,
|
226
|
+
:capability_arn,
|
227
|
+
:component_type,
|
228
|
+
:dataflow_id,
|
229
|
+
:packets_dropped,
|
230
|
+
:status)
|
231
|
+
SENSITIVE = []
|
232
|
+
include Aws::Structure
|
233
|
+
end
|
234
|
+
|
235
|
+
# Version information for agent components.
|
236
|
+
#
|
237
|
+
# @!attribute [rw] component_type
|
238
|
+
# Component type.
|
239
|
+
# @return [String]
|
240
|
+
#
|
241
|
+
# @!attribute [rw] versions
|
242
|
+
# List of versions.
|
243
|
+
# @return [Array<String>]
|
244
|
+
#
|
245
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ComponentVersion AWS API Documentation
|
246
|
+
#
|
247
|
+
class ComponentVersion < Struct.new(
|
248
|
+
:component_type,
|
249
|
+
:versions)
|
250
|
+
SENSITIVE = []
|
251
|
+
include Aws::Structure
|
252
|
+
end
|
253
|
+
|
103
254
|
# Details for certain `Config` object types in a contact.
|
104
255
|
#
|
105
256
|
# @note ConfigDetails is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ConfigDetails corresponding to the set member.
|
@@ -253,6 +404,26 @@ module Aws::GroundStation
|
|
253
404
|
class Unknown < ConfigTypeData; end
|
254
405
|
end
|
255
406
|
|
407
|
+
# Egress address of AgentEndpoint with an optional mtu.
|
408
|
+
#
|
409
|
+
# @!attribute [rw] mtu
|
410
|
+
# Maximum transmission unit (MTU) size in bytes of a dataflow
|
411
|
+
# endpoint.
|
412
|
+
# @return [Integer]
|
413
|
+
#
|
414
|
+
# @!attribute [rw] socket_address
|
415
|
+
# A socket address.
|
416
|
+
# @return [Types::SocketAddress]
|
417
|
+
#
|
418
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ConnectionDetails AWS API Documentation
|
419
|
+
#
|
420
|
+
class ConnectionDetails < Struct.new(
|
421
|
+
:mtu,
|
422
|
+
:socket_address)
|
423
|
+
SENSITIVE = []
|
424
|
+
include Aws::Structure
|
425
|
+
end
|
426
|
+
|
256
427
|
# Data describing a contact.
|
257
428
|
#
|
258
429
|
# @!attribute [rw] contact_id
|
@@ -478,6 +649,14 @@ module Aws::GroundStation
|
|
478
649
|
# Name of a mission profile.
|
479
650
|
# @return [String]
|
480
651
|
#
|
652
|
+
# @!attribute [rw] streams_kms_key
|
653
|
+
# KMS key to use for encrypting streams.
|
654
|
+
# @return [Types::KmsKey]
|
655
|
+
#
|
656
|
+
# @!attribute [rw] streams_kms_role
|
657
|
+
# Role to use for encrypting streams with KMS key.
|
658
|
+
# @return [String]
|
659
|
+
#
|
481
660
|
# @!attribute [rw] tags
|
482
661
|
# Tags assigned to a mission profile.
|
483
662
|
# @return [Hash<String,String>]
|
@@ -494,6 +673,8 @@ module Aws::GroundStation
|
|
494
673
|
:dataflow_edges,
|
495
674
|
:minimum_viable_contact_duration_seconds,
|
496
675
|
:name,
|
676
|
+
:streams_kms_key,
|
677
|
+
:streams_kms_role,
|
497
678
|
:tags,
|
498
679
|
:tracking_config_arn)
|
499
680
|
SENSITIVE = []
|
@@ -901,6 +1082,30 @@ module Aws::GroundStation
|
|
901
1082
|
include Aws::Structure
|
902
1083
|
end
|
903
1084
|
|
1085
|
+
# Data for agent discovery.
|
1086
|
+
#
|
1087
|
+
# @!attribute [rw] capability_arns
|
1088
|
+
# List of capabilities to associate with agent.
|
1089
|
+
# @return [Array<String>]
|
1090
|
+
#
|
1091
|
+
# @!attribute [rw] private_ip_addresses
|
1092
|
+
# List of private IP addresses to associate with agent.
|
1093
|
+
# @return [Array<String>]
|
1094
|
+
#
|
1095
|
+
# @!attribute [rw] public_ip_addresses
|
1096
|
+
# List of public IP addresses to associate with agent.
|
1097
|
+
# @return [Array<String>]
|
1098
|
+
#
|
1099
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/DiscoveryData AWS API Documentation
|
1100
|
+
#
|
1101
|
+
class DiscoveryData < Struct.new(
|
1102
|
+
:capability_arns,
|
1103
|
+
:private_ip_addresses,
|
1104
|
+
:public_ip_addresses)
|
1105
|
+
SENSITIVE = []
|
1106
|
+
include Aws::Structure
|
1107
|
+
end
|
1108
|
+
|
904
1109
|
# Object that represents EIRP.
|
905
1110
|
#
|
906
1111
|
# @!attribute [rw] units
|
@@ -941,6 +1146,10 @@ module Aws::GroundStation
|
|
941
1146
|
|
942
1147
|
# Information about the endpoint details.
|
943
1148
|
#
|
1149
|
+
# @!attribute [rw] aws_ground_station_agent_endpoint
|
1150
|
+
# An agent endpoint.
|
1151
|
+
# @return [Types::AwsGroundStationAgentEndpoint]
|
1152
|
+
#
|
944
1153
|
# @!attribute [rw] endpoint
|
945
1154
|
# A dataflow endpoint.
|
946
1155
|
# @return [Types::DataflowEndpoint]
|
@@ -953,6 +1162,7 @@ module Aws::GroundStation
|
|
953
1162
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/EndpointDetails AWS API Documentation
|
954
1163
|
#
|
955
1164
|
class EndpointDetails < Struct.new(
|
1165
|
+
:aws_ground_station_agent_endpoint,
|
956
1166
|
:endpoint,
|
957
1167
|
:security_details)
|
958
1168
|
SENSITIVE = []
|
@@ -1180,6 +1390,35 @@ module Aws::GroundStation
|
|
1180
1390
|
include Aws::Structure
|
1181
1391
|
end
|
1182
1392
|
|
1393
|
+
# @!attribute [rw] agent_id
|
1394
|
+
# UUID of agent to get configuration information for.
|
1395
|
+
# @return [String]
|
1396
|
+
#
|
1397
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/GetAgentConfigurationRequest AWS API Documentation
|
1398
|
+
#
|
1399
|
+
class GetAgentConfigurationRequest < Struct.new(
|
1400
|
+
:agent_id)
|
1401
|
+
SENSITIVE = []
|
1402
|
+
include Aws::Structure
|
1403
|
+
end
|
1404
|
+
|
1405
|
+
# @!attribute [rw] agent_id
|
1406
|
+
# UUID of agent.
|
1407
|
+
# @return [String]
|
1408
|
+
#
|
1409
|
+
# @!attribute [rw] tasking_document
|
1410
|
+
# Tasking document for agent.
|
1411
|
+
# @return [String]
|
1412
|
+
#
|
1413
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/GetAgentConfigurationResponse AWS API Documentation
|
1414
|
+
#
|
1415
|
+
class GetAgentConfigurationResponse < Struct.new(
|
1416
|
+
:agent_id,
|
1417
|
+
:tasking_document)
|
1418
|
+
SENSITIVE = []
|
1419
|
+
include Aws::Structure
|
1420
|
+
end
|
1421
|
+
|
1183
1422
|
# @!attribute [rw] config_id
|
1184
1423
|
# UUID of a `Config`.
|
1185
1424
|
# @return [String]
|
@@ -1390,6 +1629,14 @@ module Aws::GroundStation
|
|
1390
1629
|
# Region of a mission profile.
|
1391
1630
|
# @return [String]
|
1392
1631
|
#
|
1632
|
+
# @!attribute [rw] streams_kms_key
|
1633
|
+
# KMS key to use for encrypting streams.
|
1634
|
+
# @return [Types::KmsKey]
|
1635
|
+
#
|
1636
|
+
# @!attribute [rw] streams_kms_role
|
1637
|
+
# Role to use for encrypting streams with KMS key.
|
1638
|
+
# @return [String]
|
1639
|
+
#
|
1393
1640
|
# @!attribute [rw] tags
|
1394
1641
|
# Tags assigned to a mission profile.
|
1395
1642
|
# @return [Hash<String,String>]
|
@@ -1409,6 +1656,8 @@ module Aws::GroundStation
|
|
1409
1656
|
:mission_profile_id,
|
1410
1657
|
:name,
|
1411
1658
|
:region,
|
1659
|
+
:streams_kms_key,
|
1660
|
+
:streams_kms_role,
|
1412
1661
|
:tags,
|
1413
1662
|
:tracking_config_arn)
|
1414
1663
|
SENSITIVE = []
|
@@ -1484,6 +1733,25 @@ module Aws::GroundStation
|
|
1484
1733
|
include Aws::Structure
|
1485
1734
|
end
|
1486
1735
|
|
1736
|
+
# An integer range that has a minimum and maximum value.
|
1737
|
+
#
|
1738
|
+
# @!attribute [rw] maximum
|
1739
|
+
# A maximum value.
|
1740
|
+
# @return [Integer]
|
1741
|
+
#
|
1742
|
+
# @!attribute [rw] minimum
|
1743
|
+
# A minimum value.
|
1744
|
+
# @return [Integer]
|
1745
|
+
#
|
1746
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/IntegerRange AWS API Documentation
|
1747
|
+
#
|
1748
|
+
class IntegerRange < Struct.new(
|
1749
|
+
:maximum,
|
1750
|
+
:minimum)
|
1751
|
+
SENSITIVE = []
|
1752
|
+
include Aws::Structure
|
1753
|
+
end
|
1754
|
+
|
1487
1755
|
# One or more parameters are not valid.
|
1488
1756
|
#
|
1489
1757
|
# @!attribute [rw] message
|
@@ -1501,6 +1769,35 @@ module Aws::GroundStation
|
|
1501
1769
|
include Aws::Structure
|
1502
1770
|
end
|
1503
1771
|
|
1772
|
+
# AWS Key Management Service (KMS) Key.
|
1773
|
+
#
|
1774
|
+
# @note KmsKey is a union - when making an API calls you must set exactly one of the members.
|
1775
|
+
#
|
1776
|
+
# @note KmsKey is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of KmsKey corresponding to the set member.
|
1777
|
+
#
|
1778
|
+
# @!attribute [rw] kms_alias_arn
|
1779
|
+
# KMS Alias Arn.
|
1780
|
+
# @return [String]
|
1781
|
+
#
|
1782
|
+
# @!attribute [rw] kms_key_arn
|
1783
|
+
# KMS Key Arn.
|
1784
|
+
# @return [String]
|
1785
|
+
#
|
1786
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/KmsKey AWS API Documentation
|
1787
|
+
#
|
1788
|
+
class KmsKey < Struct.new(
|
1789
|
+
:kms_alias_arn,
|
1790
|
+
:kms_key_arn,
|
1791
|
+
:unknown)
|
1792
|
+
SENSITIVE = []
|
1793
|
+
include Aws::Structure
|
1794
|
+
include Aws::Structure::Union
|
1795
|
+
|
1796
|
+
class KmsAliasArn < KmsKey; end
|
1797
|
+
class KmsKeyArn < KmsKey; end
|
1798
|
+
class Unknown < KmsKey; end
|
1799
|
+
end
|
1800
|
+
|
1504
1801
|
# @!attribute [rw] max_results
|
1505
1802
|
# Maximum number of `Configs` returned.
|
1506
1803
|
# @return [Integer]
|
@@ -1897,6 +2194,75 @@ module Aws::GroundStation
|
|
1897
2194
|
include Aws::Structure
|
1898
2195
|
end
|
1899
2196
|
|
2197
|
+
# Ingress address of AgentEndpoint with a port range and an optional
|
2198
|
+
# mtu.
|
2199
|
+
#
|
2200
|
+
# @!attribute [rw] mtu
|
2201
|
+
# Maximum transmission unit (MTU) size in bytes of a dataflow
|
2202
|
+
# endpoint.
|
2203
|
+
# @return [Integer]
|
2204
|
+
#
|
2205
|
+
# @!attribute [rw] socket_address
|
2206
|
+
# A ranged socket address.
|
2207
|
+
# @return [Types::RangedSocketAddress]
|
2208
|
+
#
|
2209
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/RangedConnectionDetails AWS API Documentation
|
2210
|
+
#
|
2211
|
+
class RangedConnectionDetails < Struct.new(
|
2212
|
+
:mtu,
|
2213
|
+
:socket_address)
|
2214
|
+
SENSITIVE = []
|
2215
|
+
include Aws::Structure
|
2216
|
+
end
|
2217
|
+
|
2218
|
+
# A socket address with a port range.
|
2219
|
+
#
|
2220
|
+
# @!attribute [rw] name
|
2221
|
+
# IPv4 socket address.
|
2222
|
+
# @return [String]
|
2223
|
+
#
|
2224
|
+
# @!attribute [rw] port_range
|
2225
|
+
# Port range of a socket address.
|
2226
|
+
# @return [Types::IntegerRange]
|
2227
|
+
#
|
2228
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/RangedSocketAddress AWS API Documentation
|
2229
|
+
#
|
2230
|
+
class RangedSocketAddress < Struct.new(
|
2231
|
+
:name,
|
2232
|
+
:port_range)
|
2233
|
+
SENSITIVE = []
|
2234
|
+
include Aws::Structure
|
2235
|
+
end
|
2236
|
+
|
2237
|
+
# @!attribute [rw] agent_details
|
2238
|
+
# Detailed information about the agent being registered.
|
2239
|
+
# @return [Types::AgentDetails]
|
2240
|
+
#
|
2241
|
+
# @!attribute [rw] discovery_data
|
2242
|
+
# Data for associating and agent with the capabilities it is managing.
|
2243
|
+
# @return [Types::DiscoveryData]
|
2244
|
+
#
|
2245
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/RegisterAgentRequest AWS API Documentation
|
2246
|
+
#
|
2247
|
+
class RegisterAgentRequest < Struct.new(
|
2248
|
+
:agent_details,
|
2249
|
+
:discovery_data)
|
2250
|
+
SENSITIVE = []
|
2251
|
+
include Aws::Structure
|
2252
|
+
end
|
2253
|
+
|
2254
|
+
# @!attribute [rw] agent_id
|
2255
|
+
# UUID of registered agent.
|
2256
|
+
# @return [String]
|
2257
|
+
#
|
2258
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/RegisterAgentResponse AWS API Documentation
|
2259
|
+
#
|
2260
|
+
class RegisterAgentResponse < Struct.new(
|
2261
|
+
:agent_id)
|
2262
|
+
SENSITIVE = []
|
2263
|
+
include Aws::Structure
|
2264
|
+
end
|
2265
|
+
|
1900
2266
|
# @!attribute [rw] end_time
|
1901
2267
|
# End time of a contact in UTC.
|
1902
2268
|
# @return [Time]
|
@@ -2297,6 +2663,45 @@ module Aws::GroundStation
|
|
2297
2663
|
#
|
2298
2664
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
2299
2665
|
|
2666
|
+
# @!attribute [rw] agent_id
|
2667
|
+
# UUID of agent to update.
|
2668
|
+
# @return [String]
|
2669
|
+
#
|
2670
|
+
# @!attribute [rw] aggregate_status
|
2671
|
+
# Aggregate status for agent.
|
2672
|
+
# @return [Types::AggregateStatus]
|
2673
|
+
#
|
2674
|
+
# @!attribute [rw] component_statuses
|
2675
|
+
# List of component statuses for agent.
|
2676
|
+
# @return [Array<Types::ComponentStatusData>]
|
2677
|
+
#
|
2678
|
+
# @!attribute [rw] task_id
|
2679
|
+
# GUID of agent task.
|
2680
|
+
# @return [String]
|
2681
|
+
#
|
2682
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/UpdateAgentStatusRequest AWS API Documentation
|
2683
|
+
#
|
2684
|
+
class UpdateAgentStatusRequest < Struct.new(
|
2685
|
+
:agent_id,
|
2686
|
+
:aggregate_status,
|
2687
|
+
:component_statuses,
|
2688
|
+
:task_id)
|
2689
|
+
SENSITIVE = []
|
2690
|
+
include Aws::Structure
|
2691
|
+
end
|
2692
|
+
|
2693
|
+
# @!attribute [rw] agent_id
|
2694
|
+
# UUID of updated agent.
|
2695
|
+
# @return [String]
|
2696
|
+
#
|
2697
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/UpdateAgentStatusResponse AWS API Documentation
|
2698
|
+
#
|
2699
|
+
class UpdateAgentStatusResponse < Struct.new(
|
2700
|
+
:agent_id)
|
2701
|
+
SENSITIVE = []
|
2702
|
+
include Aws::Structure
|
2703
|
+
end
|
2704
|
+
|
2300
2705
|
# @!attribute [rw] config_data
|
2301
2706
|
# Parameters of a `Config`.
|
2302
2707
|
# @return [Types::ConfigTypeData]
|
@@ -2388,6 +2793,14 @@ module Aws::GroundStation
|
|
2388
2793
|
# Name of a mission profile.
|
2389
2794
|
# @return [String]
|
2390
2795
|
#
|
2796
|
+
# @!attribute [rw] streams_kms_key
|
2797
|
+
# KMS key to use for encrypting streams.
|
2798
|
+
# @return [Types::KmsKey]
|
2799
|
+
#
|
2800
|
+
# @!attribute [rw] streams_kms_role
|
2801
|
+
# Role to use for encrypting streams with KMS key.
|
2802
|
+
# @return [String]
|
2803
|
+
#
|
2391
2804
|
# @!attribute [rw] tracking_config_arn
|
2392
2805
|
# ARN of a tracking `Config`.
|
2393
2806
|
# @return [String]
|
@@ -2401,6 +2814,8 @@ module Aws::GroundStation
|
|
2401
2814
|
:minimum_viable_contact_duration_seconds,
|
2402
2815
|
:mission_profile_id,
|
2403
2816
|
:name,
|
2817
|
+
:streams_kms_key,
|
2818
|
+
:streams_kms_role,
|
2404
2819
|
:tracking_config_arn)
|
2405
2820
|
SENSITIVE = []
|
2406
2821
|
include Aws::Structure
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-groundstation
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.32.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-01-
|
11
|
+
date: 2023-01-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|