aws-sdk-groundstation 1.31.0 → 1.33.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-groundstation/client.rb +245 -7
- data/lib/aws-sdk-groundstation/client_api.rb +181 -0
- data/lib/aws-sdk-groundstation/endpoint_parameters.rb +0 -3
- data/lib/aws-sdk-groundstation/endpoint_provider.rb +27 -24
- 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 +457 -12
- data/lib/aws-sdk-groundstation.rb +1 -1
- metadata +2 -2
@@ -10,6 +10,69 @@
|
|
10
10
|
module Aws::GroundStation
|
11
11
|
module Types
|
12
12
|
|
13
|
+
# Detailed information about the agent.
|
14
|
+
#
|
15
|
+
# @!attribute [rw] agent_cpu_cores
|
16
|
+
# List of CPU cores reserved for the agent.
|
17
|
+
# @return [Array<Integer>]
|
18
|
+
#
|
19
|
+
# @!attribute [rw] agent_version
|
20
|
+
# Current agent version.
|
21
|
+
# @return [String]
|
22
|
+
#
|
23
|
+
# @!attribute [rw] component_versions
|
24
|
+
# List of versions being used by agent components.
|
25
|
+
# @return [Array<Types::ComponentVersion>]
|
26
|
+
#
|
27
|
+
# @!attribute [rw] instance_id
|
28
|
+
# ID of EC2 instance agent is running on.
|
29
|
+
# @return [String]
|
30
|
+
#
|
31
|
+
# @!attribute [rw] instance_type
|
32
|
+
# Type of EC2 instance agent is running on.
|
33
|
+
# @return [String]
|
34
|
+
#
|
35
|
+
# @!attribute [rw] reserved_cpu_cores
|
36
|
+
# <note markdown="1"> This field should not be used. Use agentCpuCores instead.
|
37
|
+
#
|
38
|
+
# </note>
|
39
|
+
#
|
40
|
+
# List of CPU cores reserved for processes other than the agent
|
41
|
+
# running on the EC2 instance.
|
42
|
+
# @return [Array<Integer>]
|
43
|
+
#
|
44
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/AgentDetails AWS API Documentation
|
45
|
+
#
|
46
|
+
class AgentDetails < Struct.new(
|
47
|
+
:agent_cpu_cores,
|
48
|
+
:agent_version,
|
49
|
+
:component_versions,
|
50
|
+
:instance_id,
|
51
|
+
:instance_type,
|
52
|
+
:reserved_cpu_cores)
|
53
|
+
SENSITIVE = []
|
54
|
+
include Aws::Structure
|
55
|
+
end
|
56
|
+
|
57
|
+
# Aggregate status of Agent components.
|
58
|
+
#
|
59
|
+
# @!attribute [rw] signature_map
|
60
|
+
# Sparse map of failure signatures.
|
61
|
+
# @return [Hash<String,Boolean>]
|
62
|
+
#
|
63
|
+
# @!attribute [rw] status
|
64
|
+
# Aggregate status.
|
65
|
+
# @return [String]
|
66
|
+
#
|
67
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/AggregateStatus AWS API Documentation
|
68
|
+
#
|
69
|
+
class AggregateStatus < Struct.new(
|
70
|
+
:signature_map,
|
71
|
+
:status)
|
72
|
+
SENSITIVE = []
|
73
|
+
include Aws::Structure
|
74
|
+
end
|
75
|
+
|
13
76
|
# Details about an antenna demod decode `Config` used in a contact.
|
14
77
|
#
|
15
78
|
# @!attribute [rw] output_node
|
@@ -88,6 +151,41 @@ module Aws::GroundStation
|
|
88
151
|
include Aws::Structure
|
89
152
|
end
|
90
153
|
|
154
|
+
# Information about AwsGroundStationAgentEndpoint.
|
155
|
+
#
|
156
|
+
# @!attribute [rw] agent_status
|
157
|
+
# The status of AgentEndpoint.
|
158
|
+
# @return [String]
|
159
|
+
#
|
160
|
+
# @!attribute [rw] audit_results
|
161
|
+
# The results of the audit.
|
162
|
+
# @return [String]
|
163
|
+
#
|
164
|
+
# @!attribute [rw] egress_address
|
165
|
+
# The egress address of AgentEndpoint.
|
166
|
+
# @return [Types::ConnectionDetails]
|
167
|
+
#
|
168
|
+
# @!attribute [rw] ingress_address
|
169
|
+
# The ingress address of AgentEndpoint.
|
170
|
+
# @return [Types::RangedConnectionDetails]
|
171
|
+
#
|
172
|
+
# @!attribute [rw] name
|
173
|
+
# Name string associated with AgentEndpoint. Used as a human-readable
|
174
|
+
# identifier for AgentEndpoint.
|
175
|
+
# @return [String]
|
176
|
+
#
|
177
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/AwsGroundStationAgentEndpoint AWS API Documentation
|
178
|
+
#
|
179
|
+
class AwsGroundStationAgentEndpoint < Struct.new(
|
180
|
+
:agent_status,
|
181
|
+
:audit_results,
|
182
|
+
:egress_address,
|
183
|
+
:ingress_address,
|
184
|
+
:name)
|
185
|
+
SENSITIVE = []
|
186
|
+
include Aws::Structure
|
187
|
+
end
|
188
|
+
|
91
189
|
# @!attribute [rw] contact_id
|
92
190
|
# UUID of a contact.
|
93
191
|
# @return [String]
|
@@ -100,6 +198,69 @@ module Aws::GroundStation
|
|
100
198
|
include Aws::Structure
|
101
199
|
end
|
102
200
|
|
201
|
+
# Data on the status of agent components.
|
202
|
+
#
|
203
|
+
# @!attribute [rw] bytes_received
|
204
|
+
# Bytes received by the component.
|
205
|
+
# @return [Integer]
|
206
|
+
#
|
207
|
+
# @!attribute [rw] bytes_sent
|
208
|
+
# Bytes sent by the component.
|
209
|
+
# @return [Integer]
|
210
|
+
#
|
211
|
+
# @!attribute [rw] capability_arn
|
212
|
+
# Capability ARN of the component.
|
213
|
+
# @return [String]
|
214
|
+
#
|
215
|
+
# @!attribute [rw] component_type
|
216
|
+
# The Component type.
|
217
|
+
# @return [String]
|
218
|
+
#
|
219
|
+
# @!attribute [rw] dataflow_id
|
220
|
+
# Dataflow UUID associated with the component.
|
221
|
+
# @return [String]
|
222
|
+
#
|
223
|
+
# @!attribute [rw] packets_dropped
|
224
|
+
# Packets dropped by component.
|
225
|
+
# @return [Integer]
|
226
|
+
#
|
227
|
+
# @!attribute [rw] status
|
228
|
+
# Component status.
|
229
|
+
# @return [String]
|
230
|
+
#
|
231
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ComponentStatusData AWS API Documentation
|
232
|
+
#
|
233
|
+
class ComponentStatusData < Struct.new(
|
234
|
+
:bytes_received,
|
235
|
+
:bytes_sent,
|
236
|
+
:capability_arn,
|
237
|
+
:component_type,
|
238
|
+
:dataflow_id,
|
239
|
+
:packets_dropped,
|
240
|
+
:status)
|
241
|
+
SENSITIVE = []
|
242
|
+
include Aws::Structure
|
243
|
+
end
|
244
|
+
|
245
|
+
# Version information for agent components.
|
246
|
+
#
|
247
|
+
# @!attribute [rw] component_type
|
248
|
+
# Component type.
|
249
|
+
# @return [String]
|
250
|
+
#
|
251
|
+
# @!attribute [rw] versions
|
252
|
+
# List of versions.
|
253
|
+
# @return [Array<String>]
|
254
|
+
#
|
255
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ComponentVersion AWS API Documentation
|
256
|
+
#
|
257
|
+
class ComponentVersion < Struct.new(
|
258
|
+
:component_type,
|
259
|
+
:versions)
|
260
|
+
SENSITIVE = []
|
261
|
+
include Aws::Structure
|
262
|
+
end
|
263
|
+
|
103
264
|
# Details for certain `Config` object types in a contact.
|
104
265
|
#
|
105
266
|
# @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 +414,26 @@ module Aws::GroundStation
|
|
253
414
|
class Unknown < ConfigTypeData; end
|
254
415
|
end
|
255
416
|
|
417
|
+
# Egress address of AgentEndpoint with an optional mtu.
|
418
|
+
#
|
419
|
+
# @!attribute [rw] mtu
|
420
|
+
# Maximum transmission unit (MTU) size in bytes of a dataflow
|
421
|
+
# endpoint.
|
422
|
+
# @return [Integer]
|
423
|
+
#
|
424
|
+
# @!attribute [rw] socket_address
|
425
|
+
# A socket address.
|
426
|
+
# @return [Types::SocketAddress]
|
427
|
+
#
|
428
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ConnectionDetails AWS API Documentation
|
429
|
+
#
|
430
|
+
class ConnectionDetails < Struct.new(
|
431
|
+
:mtu,
|
432
|
+
:socket_address)
|
433
|
+
SENSITIVE = []
|
434
|
+
include Aws::Structure
|
435
|
+
end
|
436
|
+
|
256
437
|
# Data describing a contact.
|
257
438
|
#
|
258
439
|
# @!attribute [rw] contact_id
|
@@ -364,15 +545,19 @@ module Aws::GroundStation
|
|
364
545
|
end
|
365
546
|
|
366
547
|
# @!attribute [rw] contact_post_pass_duration_seconds
|
367
|
-
# Amount of time, in seconds, after a contact ends
|
368
|
-
#
|
369
|
-
#
|
548
|
+
# Amount of time, in seconds, after a contact ends that the Ground
|
549
|
+
# Station Dataflow Endpoint Group will be in a `POSTPASS` state. A
|
550
|
+
# Ground Station Dataflow Endpoint Group State Change event will be
|
551
|
+
# emitted when the Dataflow Endpoint Group enters and exits the
|
552
|
+
# `POSTPASS` state.
|
370
553
|
# @return [Integer]
|
371
554
|
#
|
372
555
|
# @!attribute [rw] contact_pre_pass_duration_seconds
|
373
|
-
# Amount of time, in seconds,
|
374
|
-
#
|
375
|
-
#
|
556
|
+
# Amount of time, in seconds, before a contact starts that the Ground
|
557
|
+
# Station Dataflow Endpoint Group will be in a `PREPASS` state. A
|
558
|
+
# Ground Station Dataflow Endpoint Group State Change event will be
|
559
|
+
# emitted when the Dataflow Endpoint Group enters and exits the
|
560
|
+
# `PREPASS` state.
|
376
561
|
# @return [Integer]
|
377
562
|
#
|
378
563
|
# @!attribute [rw] endpoint_details
|
@@ -478,6 +663,14 @@ module Aws::GroundStation
|
|
478
663
|
# Name of a mission profile.
|
479
664
|
# @return [String]
|
480
665
|
#
|
666
|
+
# @!attribute [rw] streams_kms_key
|
667
|
+
# KMS key to use for encrypting streams.
|
668
|
+
# @return [Types::KmsKey]
|
669
|
+
#
|
670
|
+
# @!attribute [rw] streams_kms_role
|
671
|
+
# Role to use for encrypting streams with KMS key.
|
672
|
+
# @return [String]
|
673
|
+
#
|
481
674
|
# @!attribute [rw] tags
|
482
675
|
# Tags assigned to a mission profile.
|
483
676
|
# @return [Hash<String,String>]
|
@@ -494,6 +687,8 @@ module Aws::GroundStation
|
|
494
687
|
:dataflow_edges,
|
495
688
|
:minimum_viable_contact_duration_seconds,
|
496
689
|
:name,
|
690
|
+
:streams_kms_key,
|
691
|
+
:streams_kms_role,
|
497
692
|
:tags,
|
498
693
|
:tracking_config_arn)
|
499
694
|
SENSITIVE = []
|
@@ -901,6 +1096,30 @@ module Aws::GroundStation
|
|
901
1096
|
include Aws::Structure
|
902
1097
|
end
|
903
1098
|
|
1099
|
+
# Data for agent discovery.
|
1100
|
+
#
|
1101
|
+
# @!attribute [rw] capability_arns
|
1102
|
+
# List of capabilities to associate with agent.
|
1103
|
+
# @return [Array<String>]
|
1104
|
+
#
|
1105
|
+
# @!attribute [rw] private_ip_addresses
|
1106
|
+
# List of private IP addresses to associate with agent.
|
1107
|
+
# @return [Array<String>]
|
1108
|
+
#
|
1109
|
+
# @!attribute [rw] public_ip_addresses
|
1110
|
+
# List of public IP addresses to associate with agent.
|
1111
|
+
# @return [Array<String>]
|
1112
|
+
#
|
1113
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/DiscoveryData AWS API Documentation
|
1114
|
+
#
|
1115
|
+
class DiscoveryData < Struct.new(
|
1116
|
+
:capability_arns,
|
1117
|
+
:private_ip_addresses,
|
1118
|
+
:public_ip_addresses)
|
1119
|
+
SENSITIVE = []
|
1120
|
+
include Aws::Structure
|
1121
|
+
end
|
1122
|
+
|
904
1123
|
# Object that represents EIRP.
|
905
1124
|
#
|
906
1125
|
# @!attribute [rw] units
|
@@ -941,10 +1160,24 @@ module Aws::GroundStation
|
|
941
1160
|
|
942
1161
|
# Information about the endpoint details.
|
943
1162
|
#
|
1163
|
+
# @!attribute [rw] aws_ground_station_agent_endpoint
|
1164
|
+
# An agent endpoint.
|
1165
|
+
# @return [Types::AwsGroundStationAgentEndpoint]
|
1166
|
+
#
|
944
1167
|
# @!attribute [rw] endpoint
|
945
1168
|
# A dataflow endpoint.
|
946
1169
|
# @return [Types::DataflowEndpoint]
|
947
1170
|
#
|
1171
|
+
# @!attribute [rw] health_reasons
|
1172
|
+
# Health reasons for a dataflow endpoint. This field is ignored when
|
1173
|
+
# calling `CreateDataflowEndpointGroup`.
|
1174
|
+
# @return [Array<String>]
|
1175
|
+
#
|
1176
|
+
# @!attribute [rw] health_status
|
1177
|
+
# A dataflow endpoint health status. This field is ignored when
|
1178
|
+
# calling `CreateDataflowEndpointGroup`.
|
1179
|
+
# @return [String]
|
1180
|
+
#
|
948
1181
|
# @!attribute [rw] security_details
|
949
1182
|
# Endpoint security details including a list of subnets, a list of
|
950
1183
|
# security groups and a role to connect streams to instances.
|
@@ -953,7 +1186,10 @@ module Aws::GroundStation
|
|
953
1186
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/EndpointDetails AWS API Documentation
|
954
1187
|
#
|
955
1188
|
class EndpointDetails < Struct.new(
|
1189
|
+
:aws_ground_station_agent_endpoint,
|
956
1190
|
:endpoint,
|
1191
|
+
:health_reasons,
|
1192
|
+
:health_status,
|
957
1193
|
:security_details)
|
958
1194
|
SENSITIVE = []
|
959
1195
|
include Aws::Structure
|
@@ -1180,6 +1416,35 @@ module Aws::GroundStation
|
|
1180
1416
|
include Aws::Structure
|
1181
1417
|
end
|
1182
1418
|
|
1419
|
+
# @!attribute [rw] agent_id
|
1420
|
+
# UUID of agent to get configuration information for.
|
1421
|
+
# @return [String]
|
1422
|
+
#
|
1423
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/GetAgentConfigurationRequest AWS API Documentation
|
1424
|
+
#
|
1425
|
+
class GetAgentConfigurationRequest < Struct.new(
|
1426
|
+
:agent_id)
|
1427
|
+
SENSITIVE = []
|
1428
|
+
include Aws::Structure
|
1429
|
+
end
|
1430
|
+
|
1431
|
+
# @!attribute [rw] agent_id
|
1432
|
+
# UUID of agent.
|
1433
|
+
# @return [String]
|
1434
|
+
#
|
1435
|
+
# @!attribute [rw] tasking_document
|
1436
|
+
# Tasking document for agent.
|
1437
|
+
# @return [String]
|
1438
|
+
#
|
1439
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/GetAgentConfigurationResponse AWS API Documentation
|
1440
|
+
#
|
1441
|
+
class GetAgentConfigurationResponse < Struct.new(
|
1442
|
+
:agent_id,
|
1443
|
+
:tasking_document)
|
1444
|
+
SENSITIVE = []
|
1445
|
+
include Aws::Structure
|
1446
|
+
end
|
1447
|
+
|
1183
1448
|
# @!attribute [rw] config_id
|
1184
1449
|
# UUID of a `Config`.
|
1185
1450
|
# @return [String]
|
@@ -1247,15 +1512,19 @@ module Aws::GroundStation
|
|
1247
1512
|
end
|
1248
1513
|
|
1249
1514
|
# @!attribute [rw] contact_post_pass_duration_seconds
|
1250
|
-
# Amount of time, in seconds, after a contact ends
|
1251
|
-
#
|
1252
|
-
#
|
1515
|
+
# Amount of time, in seconds, after a contact ends that the Ground
|
1516
|
+
# Station Dataflow Endpoint Group will be in a `POSTPASS` state. A
|
1517
|
+
# Ground Station Dataflow Endpoint Group State Change event will be
|
1518
|
+
# emitted when the Dataflow Endpoint Group enters and exits the
|
1519
|
+
# `POSTPASS` state.
|
1253
1520
|
# @return [Integer]
|
1254
1521
|
#
|
1255
1522
|
# @!attribute [rw] contact_pre_pass_duration_seconds
|
1256
|
-
# Amount of time, in seconds,
|
1257
|
-
#
|
1258
|
-
#
|
1523
|
+
# Amount of time, in seconds, before a contact starts that the Ground
|
1524
|
+
# Station Dataflow Endpoint Group will be in a `PREPASS` state. A
|
1525
|
+
# Ground Station Dataflow Endpoint Group State Change event will be
|
1526
|
+
# emitted when the Dataflow Endpoint Group enters and exits the
|
1527
|
+
# `PREPASS` state.
|
1259
1528
|
# @return [Integer]
|
1260
1529
|
#
|
1261
1530
|
# @!attribute [rw] dataflow_endpoint_group_arn
|
@@ -1390,6 +1659,14 @@ module Aws::GroundStation
|
|
1390
1659
|
# Region of a mission profile.
|
1391
1660
|
# @return [String]
|
1392
1661
|
#
|
1662
|
+
# @!attribute [rw] streams_kms_key
|
1663
|
+
# KMS key to use for encrypting streams.
|
1664
|
+
# @return [Types::KmsKey]
|
1665
|
+
#
|
1666
|
+
# @!attribute [rw] streams_kms_role
|
1667
|
+
# Role to use for encrypting streams with KMS key.
|
1668
|
+
# @return [String]
|
1669
|
+
#
|
1393
1670
|
# @!attribute [rw] tags
|
1394
1671
|
# Tags assigned to a mission profile.
|
1395
1672
|
# @return [Hash<String,String>]
|
@@ -1409,6 +1686,8 @@ module Aws::GroundStation
|
|
1409
1686
|
:mission_profile_id,
|
1410
1687
|
:name,
|
1411
1688
|
:region,
|
1689
|
+
:streams_kms_key,
|
1690
|
+
:streams_kms_role,
|
1412
1691
|
:tags,
|
1413
1692
|
:tracking_config_arn)
|
1414
1693
|
SENSITIVE = []
|
@@ -1484,6 +1763,25 @@ module Aws::GroundStation
|
|
1484
1763
|
include Aws::Structure
|
1485
1764
|
end
|
1486
1765
|
|
1766
|
+
# An integer range that has a minimum and maximum value.
|
1767
|
+
#
|
1768
|
+
# @!attribute [rw] maximum
|
1769
|
+
# A maximum value.
|
1770
|
+
# @return [Integer]
|
1771
|
+
#
|
1772
|
+
# @!attribute [rw] minimum
|
1773
|
+
# A minimum value.
|
1774
|
+
# @return [Integer]
|
1775
|
+
#
|
1776
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/IntegerRange AWS API Documentation
|
1777
|
+
#
|
1778
|
+
class IntegerRange < Struct.new(
|
1779
|
+
:maximum,
|
1780
|
+
:minimum)
|
1781
|
+
SENSITIVE = []
|
1782
|
+
include Aws::Structure
|
1783
|
+
end
|
1784
|
+
|
1487
1785
|
# One or more parameters are not valid.
|
1488
1786
|
#
|
1489
1787
|
# @!attribute [rw] message
|
@@ -1501,6 +1799,35 @@ module Aws::GroundStation
|
|
1501
1799
|
include Aws::Structure
|
1502
1800
|
end
|
1503
1801
|
|
1802
|
+
# AWS Key Management Service (KMS) Key.
|
1803
|
+
#
|
1804
|
+
# @note KmsKey is a union - when making an API calls you must set exactly one of the members.
|
1805
|
+
#
|
1806
|
+
# @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.
|
1807
|
+
#
|
1808
|
+
# @!attribute [rw] kms_alias_arn
|
1809
|
+
# KMS Alias Arn.
|
1810
|
+
# @return [String]
|
1811
|
+
#
|
1812
|
+
# @!attribute [rw] kms_key_arn
|
1813
|
+
# KMS Key Arn.
|
1814
|
+
# @return [String]
|
1815
|
+
#
|
1816
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/KmsKey AWS API Documentation
|
1817
|
+
#
|
1818
|
+
class KmsKey < Struct.new(
|
1819
|
+
:kms_alias_arn,
|
1820
|
+
:kms_key_arn,
|
1821
|
+
:unknown)
|
1822
|
+
SENSITIVE = []
|
1823
|
+
include Aws::Structure
|
1824
|
+
include Aws::Structure::Union
|
1825
|
+
|
1826
|
+
class KmsAliasArn < KmsKey; end
|
1827
|
+
class KmsKeyArn < KmsKey; end
|
1828
|
+
class Unknown < KmsKey; end
|
1829
|
+
end
|
1830
|
+
|
1504
1831
|
# @!attribute [rw] max_results
|
1505
1832
|
# Maximum number of `Configs` returned.
|
1506
1833
|
# @return [Integer]
|
@@ -1897,6 +2224,75 @@ module Aws::GroundStation
|
|
1897
2224
|
include Aws::Structure
|
1898
2225
|
end
|
1899
2226
|
|
2227
|
+
# Ingress address of AgentEndpoint with a port range and an optional
|
2228
|
+
# mtu.
|
2229
|
+
#
|
2230
|
+
# @!attribute [rw] mtu
|
2231
|
+
# Maximum transmission unit (MTU) size in bytes of a dataflow
|
2232
|
+
# endpoint.
|
2233
|
+
# @return [Integer]
|
2234
|
+
#
|
2235
|
+
# @!attribute [rw] socket_address
|
2236
|
+
# A ranged socket address.
|
2237
|
+
# @return [Types::RangedSocketAddress]
|
2238
|
+
#
|
2239
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/RangedConnectionDetails AWS API Documentation
|
2240
|
+
#
|
2241
|
+
class RangedConnectionDetails < Struct.new(
|
2242
|
+
:mtu,
|
2243
|
+
:socket_address)
|
2244
|
+
SENSITIVE = []
|
2245
|
+
include Aws::Structure
|
2246
|
+
end
|
2247
|
+
|
2248
|
+
# A socket address with a port range.
|
2249
|
+
#
|
2250
|
+
# @!attribute [rw] name
|
2251
|
+
# IPv4 socket address.
|
2252
|
+
# @return [String]
|
2253
|
+
#
|
2254
|
+
# @!attribute [rw] port_range
|
2255
|
+
# Port range of a socket address.
|
2256
|
+
# @return [Types::IntegerRange]
|
2257
|
+
#
|
2258
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/RangedSocketAddress AWS API Documentation
|
2259
|
+
#
|
2260
|
+
class RangedSocketAddress < Struct.new(
|
2261
|
+
:name,
|
2262
|
+
:port_range)
|
2263
|
+
SENSITIVE = []
|
2264
|
+
include Aws::Structure
|
2265
|
+
end
|
2266
|
+
|
2267
|
+
# @!attribute [rw] agent_details
|
2268
|
+
# Detailed information about the agent being registered.
|
2269
|
+
# @return [Types::AgentDetails]
|
2270
|
+
#
|
2271
|
+
# @!attribute [rw] discovery_data
|
2272
|
+
# Data for associating an agent with the capabilities it is managing.
|
2273
|
+
# @return [Types::DiscoveryData]
|
2274
|
+
#
|
2275
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/RegisterAgentRequest AWS API Documentation
|
2276
|
+
#
|
2277
|
+
class RegisterAgentRequest < Struct.new(
|
2278
|
+
:agent_details,
|
2279
|
+
:discovery_data)
|
2280
|
+
SENSITIVE = []
|
2281
|
+
include Aws::Structure
|
2282
|
+
end
|
2283
|
+
|
2284
|
+
# @!attribute [rw] agent_id
|
2285
|
+
# UUID of registered agent.
|
2286
|
+
# @return [String]
|
2287
|
+
#
|
2288
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/RegisterAgentResponse AWS API Documentation
|
2289
|
+
#
|
2290
|
+
class RegisterAgentResponse < Struct.new(
|
2291
|
+
:agent_id)
|
2292
|
+
SENSITIVE = []
|
2293
|
+
include Aws::Structure
|
2294
|
+
end
|
2295
|
+
|
1900
2296
|
# @!attribute [rw] end_time
|
1901
2297
|
# End time of a contact in UTC.
|
1902
2298
|
# @return [Time]
|
@@ -2297,6 +2693,45 @@ module Aws::GroundStation
|
|
2297
2693
|
#
|
2298
2694
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
2299
2695
|
|
2696
|
+
# @!attribute [rw] agent_id
|
2697
|
+
# UUID of agent to update.
|
2698
|
+
# @return [String]
|
2699
|
+
#
|
2700
|
+
# @!attribute [rw] aggregate_status
|
2701
|
+
# Aggregate status for agent.
|
2702
|
+
# @return [Types::AggregateStatus]
|
2703
|
+
#
|
2704
|
+
# @!attribute [rw] component_statuses
|
2705
|
+
# List of component statuses for agent.
|
2706
|
+
# @return [Array<Types::ComponentStatusData>]
|
2707
|
+
#
|
2708
|
+
# @!attribute [rw] task_id
|
2709
|
+
# GUID of agent task.
|
2710
|
+
# @return [String]
|
2711
|
+
#
|
2712
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/UpdateAgentStatusRequest AWS API Documentation
|
2713
|
+
#
|
2714
|
+
class UpdateAgentStatusRequest < Struct.new(
|
2715
|
+
:agent_id,
|
2716
|
+
:aggregate_status,
|
2717
|
+
:component_statuses,
|
2718
|
+
:task_id)
|
2719
|
+
SENSITIVE = []
|
2720
|
+
include Aws::Structure
|
2721
|
+
end
|
2722
|
+
|
2723
|
+
# @!attribute [rw] agent_id
|
2724
|
+
# UUID of updated agent.
|
2725
|
+
# @return [String]
|
2726
|
+
#
|
2727
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/UpdateAgentStatusResponse AWS API Documentation
|
2728
|
+
#
|
2729
|
+
class UpdateAgentStatusResponse < Struct.new(
|
2730
|
+
:agent_id)
|
2731
|
+
SENSITIVE = []
|
2732
|
+
include Aws::Structure
|
2733
|
+
end
|
2734
|
+
|
2300
2735
|
# @!attribute [rw] config_data
|
2301
2736
|
# Parameters of a `Config`.
|
2302
2737
|
# @return [Types::ConfigTypeData]
|
@@ -2388,6 +2823,14 @@ module Aws::GroundStation
|
|
2388
2823
|
# Name of a mission profile.
|
2389
2824
|
# @return [String]
|
2390
2825
|
#
|
2826
|
+
# @!attribute [rw] streams_kms_key
|
2827
|
+
# KMS key to use for encrypting streams.
|
2828
|
+
# @return [Types::KmsKey]
|
2829
|
+
#
|
2830
|
+
# @!attribute [rw] streams_kms_role
|
2831
|
+
# Role to use for encrypting streams with KMS key.
|
2832
|
+
# @return [String]
|
2833
|
+
#
|
2391
2834
|
# @!attribute [rw] tracking_config_arn
|
2392
2835
|
# ARN of a tracking `Config`.
|
2393
2836
|
# @return [String]
|
@@ -2401,6 +2844,8 @@ module Aws::GroundStation
|
|
2401
2844
|
:minimum_viable_contact_duration_seconds,
|
2402
2845
|
:mission_profile_id,
|
2403
2846
|
:name,
|
2847
|
+
:streams_kms_key,
|
2848
|
+
:streams_kms_role,
|
2404
2849
|
:tracking_config_arn)
|
2405
2850
|
SENSITIVE = []
|
2406
2851
|
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.33.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-
|
11
|
+
date: 2023-04-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|