aws-sdk-groundstation 1.17.0 → 1.21.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-groundstation/client.rb +28 -11
- data/lib/aws-sdk-groundstation/client_api.rb +33 -4
- data/lib/aws-sdk-groundstation/types.rb +99 -66
- data/lib/aws-sdk-groundstation.rb +1 -1
- metadata +8 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 34bb87b27e8e8ac9a5e2c2ed6fcaf1992f1cd061d4df9bef315ae1bb5c1a58e0
|
4
|
+
data.tar.gz: d91b476be1bca2f164a5232c580d3cada8b6e2a0918c4f78863ed0e089b40bf4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e3ea265011bc7f8e79db4d16e535d0b66e0d4298d3c59f241f33a27489358ad8a5d38583e170e2f2762c3982b0fb6f739079847bf68ba671c7a2d403a65b5190
|
7
|
+
data.tar.gz: 3fa8a3cb3ef504ee4fe71814c2963004b7510d0ebfee8c49c825baaf00c34fb4e708b88f3c561d8129b78972c9bc0b6307d96a5c2a48394bfb2e6a040af6f04a
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.21.0 (2021-09-01)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.20.0 (2021-07-30)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.19.0 (2021-07-28)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.18.0 (2021-04-21)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Support new S3 Recording Config allowing customers to write downlink data directly to S3.
|
23
|
+
|
4
24
|
1.17.0 (2021-03-10)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.21.0
|
@@ -428,6 +428,11 @@ module Aws::GroundStation
|
|
428
428
|
# dataflow_endpoint_name: "String", # required
|
429
429
|
# dataflow_endpoint_region: "String",
|
430
430
|
# },
|
431
|
+
# s3_recording_config: {
|
432
|
+
# bucket_arn: "BucketArn", # required
|
433
|
+
# prefix: "S3KeyPrefix",
|
434
|
+
# role_arn: "RoleArn", # required
|
435
|
+
# },
|
431
436
|
# tracking_config: {
|
432
437
|
# autotrack: "PREFERRED", # required, accepts PREFERRED, REMOVED, REQUIRED
|
433
438
|
# },
|
@@ -446,7 +451,7 @@ module Aws::GroundStation
|
|
446
451
|
#
|
447
452
|
# resp.config_arn #=> String
|
448
453
|
# resp.config_id #=> String
|
449
|
-
# resp.config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "antenna-uplink", "dataflow-endpoint", "tracking", "uplink-echo"
|
454
|
+
# resp.config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "antenna-uplink", "dataflow-endpoint", "tracking", "uplink-echo", "s3-recording"
|
450
455
|
#
|
451
456
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/CreateConfig AWS API Documentation
|
452
457
|
#
|
@@ -598,14 +603,14 @@ module Aws::GroundStation
|
|
598
603
|
#
|
599
604
|
# resp = client.delete_config({
|
600
605
|
# config_id: "String", # required
|
601
|
-
# config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, antenna-uplink, dataflow-endpoint, tracking, uplink-echo
|
606
|
+
# config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, antenna-uplink, dataflow-endpoint, tracking, uplink-echo, s3-recording
|
602
607
|
# })
|
603
608
|
#
|
604
609
|
# @example Response structure
|
605
610
|
#
|
606
611
|
# resp.config_arn #=> String
|
607
612
|
# resp.config_id #=> String
|
608
|
-
# resp.config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "antenna-uplink", "dataflow-endpoint", "tracking", "uplink-echo"
|
613
|
+
# resp.config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "antenna-uplink", "dataflow-endpoint", "tracking", "uplink-echo", "s3-recording"
|
609
614
|
#
|
610
615
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/DeleteConfig AWS API Documentation
|
611
616
|
#
|
@@ -716,8 +721,10 @@ module Aws::GroundStation
|
|
716
721
|
# resp.dataflow_list[0].destination.config_details.endpoint_details.security_details.security_group_ids[0] #=> String
|
717
722
|
# resp.dataflow_list[0].destination.config_details.endpoint_details.security_details.subnet_ids #=> Array
|
718
723
|
# resp.dataflow_list[0].destination.config_details.endpoint_details.security_details.subnet_ids[0] #=> String
|
724
|
+
# resp.dataflow_list[0].destination.config_details.s3_recording_details.bucket_arn #=> String
|
725
|
+
# resp.dataflow_list[0].destination.config_details.s3_recording_details.key_template #=> String
|
719
726
|
# resp.dataflow_list[0].destination.config_id #=> String
|
720
|
-
# resp.dataflow_list[0].destination.config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "antenna-uplink", "dataflow-endpoint", "tracking", "uplink-echo"
|
727
|
+
# resp.dataflow_list[0].destination.config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "antenna-uplink", "dataflow-endpoint", "tracking", "uplink-echo", "s3-recording"
|
721
728
|
# resp.dataflow_list[0].destination.dataflow_destination_region #=> String
|
722
729
|
# resp.dataflow_list[0].error_message #=> String
|
723
730
|
# resp.dataflow_list[0].source.config_details.antenna_demod_decode_details.output_node #=> String
|
@@ -731,8 +738,10 @@ module Aws::GroundStation
|
|
731
738
|
# resp.dataflow_list[0].source.config_details.endpoint_details.security_details.security_group_ids[0] #=> String
|
732
739
|
# resp.dataflow_list[0].source.config_details.endpoint_details.security_details.subnet_ids #=> Array
|
733
740
|
# resp.dataflow_list[0].source.config_details.endpoint_details.security_details.subnet_ids[0] #=> String
|
741
|
+
# resp.dataflow_list[0].source.config_details.s3_recording_details.bucket_arn #=> String
|
742
|
+
# resp.dataflow_list[0].source.config_details.s3_recording_details.key_template #=> String
|
734
743
|
# resp.dataflow_list[0].source.config_id #=> String
|
735
|
-
# resp.dataflow_list[0].source.config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "antenna-uplink", "dataflow-endpoint", "tracking", "uplink-echo"
|
744
|
+
# resp.dataflow_list[0].source.config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "antenna-uplink", "dataflow-endpoint", "tracking", "uplink-echo", "s3-recording"
|
736
745
|
# resp.dataflow_list[0].source.dataflow_source_region #=> String
|
737
746
|
# resp.end_time #=> Time
|
738
747
|
# resp.error_message #=> String
|
@@ -780,7 +789,7 @@ module Aws::GroundStation
|
|
780
789
|
#
|
781
790
|
# resp = client.get_config({
|
782
791
|
# config_id: "String", # required
|
783
|
-
# config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, antenna-uplink, dataflow-endpoint, tracking, uplink-echo
|
792
|
+
# config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, antenna-uplink, dataflow-endpoint, tracking, uplink-echo, s3-recording
|
784
793
|
# })
|
785
794
|
#
|
786
795
|
# @example Response structure
|
@@ -806,11 +815,14 @@ module Aws::GroundStation
|
|
806
815
|
# resp.config_data.antenna_uplink_config.transmit_disabled #=> Boolean
|
807
816
|
# resp.config_data.dataflow_endpoint_config.dataflow_endpoint_name #=> String
|
808
817
|
# resp.config_data.dataflow_endpoint_config.dataflow_endpoint_region #=> String
|
818
|
+
# resp.config_data.s3_recording_config.bucket_arn #=> String
|
819
|
+
# resp.config_data.s3_recording_config.prefix #=> String
|
820
|
+
# resp.config_data.s3_recording_config.role_arn #=> String
|
809
821
|
# resp.config_data.tracking_config.autotrack #=> String, one of "PREFERRED", "REMOVED", "REQUIRED"
|
810
822
|
# resp.config_data.uplink_echo_config.antenna_uplink_config_arn #=> String
|
811
823
|
# resp.config_data.uplink_echo_config.enabled #=> Boolean
|
812
824
|
# resp.config_id #=> String
|
813
|
-
# resp.config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "antenna-uplink", "dataflow-endpoint", "tracking", "uplink-echo"
|
825
|
+
# resp.config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "antenna-uplink", "dataflow-endpoint", "tracking", "uplink-echo", "s3-recording"
|
814
826
|
# resp.name #=> String
|
815
827
|
# resp.tags #=> Hash
|
816
828
|
# resp.tags["String"] #=> String
|
@@ -1021,7 +1033,7 @@ module Aws::GroundStation
|
|
1021
1033
|
# resp.config_list #=> Array
|
1022
1034
|
# resp.config_list[0].config_arn #=> String
|
1023
1035
|
# resp.config_list[0].config_id #=> String
|
1024
|
-
# resp.config_list[0].config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "antenna-uplink", "dataflow-endpoint", "tracking", "uplink-echo"
|
1036
|
+
# resp.config_list[0].config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "antenna-uplink", "dataflow-endpoint", "tracking", "uplink-echo", "s3-recording"
|
1025
1037
|
# resp.config_list[0].name #=> String
|
1026
1038
|
# resp.next_token #=> String
|
1027
1039
|
#
|
@@ -1490,6 +1502,11 @@ module Aws::GroundStation
|
|
1490
1502
|
# dataflow_endpoint_name: "String", # required
|
1491
1503
|
# dataflow_endpoint_region: "String",
|
1492
1504
|
# },
|
1505
|
+
# s3_recording_config: {
|
1506
|
+
# bucket_arn: "BucketArn", # required
|
1507
|
+
# prefix: "S3KeyPrefix",
|
1508
|
+
# role_arn: "RoleArn", # required
|
1509
|
+
# },
|
1493
1510
|
# tracking_config: {
|
1494
1511
|
# autotrack: "PREFERRED", # required, accepts PREFERRED, REMOVED, REQUIRED
|
1495
1512
|
# },
|
@@ -1499,7 +1516,7 @@ module Aws::GroundStation
|
|
1499
1516
|
# },
|
1500
1517
|
# },
|
1501
1518
|
# config_id: "String", # required
|
1502
|
-
# config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, antenna-uplink, dataflow-endpoint, tracking, uplink-echo
|
1519
|
+
# config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, antenna-uplink, dataflow-endpoint, tracking, uplink-echo, s3-recording
|
1503
1520
|
# name: "SafeName", # required
|
1504
1521
|
# })
|
1505
1522
|
#
|
@@ -1507,7 +1524,7 @@ module Aws::GroundStation
|
|
1507
1524
|
#
|
1508
1525
|
# resp.config_arn #=> String
|
1509
1526
|
# resp.config_id #=> String
|
1510
|
-
# resp.config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "antenna-uplink", "dataflow-endpoint", "tracking", "uplink-echo"
|
1527
|
+
# resp.config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "antenna-uplink", "dataflow-endpoint", "tracking", "uplink-echo", "s3-recording"
|
1511
1528
|
#
|
1512
1529
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/UpdateConfig AWS API Documentation
|
1513
1530
|
#
|
@@ -1593,7 +1610,7 @@ module Aws::GroundStation
|
|
1593
1610
|
params: params,
|
1594
1611
|
config: config)
|
1595
1612
|
context[:gem_name] = 'aws-sdk-groundstation'
|
1596
|
-
context[:gem_version] = '1.
|
1613
|
+
context[:gem_version] = '1.21.0'
|
1597
1614
|
Seahorse::Client::Request.new(handlers, context)
|
1598
1615
|
end
|
1599
1616
|
|
@@ -20,14 +20,15 @@ module Aws::GroundStation
|
|
20
20
|
AntennaUplinkConfig = Shapes::StructureShape.new(name: 'AntennaUplinkConfig')
|
21
21
|
BandwidthUnits = Shapes::StringShape.new(name: 'BandwidthUnits')
|
22
22
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
23
|
+
BucketArn = Shapes::StringShape.new(name: 'BucketArn')
|
23
24
|
CancelContactRequest = Shapes::StructureShape.new(name: 'CancelContactRequest')
|
24
25
|
ConfigArn = Shapes::StringShape.new(name: 'ConfigArn')
|
25
26
|
ConfigCapabilityType = Shapes::StringShape.new(name: 'ConfigCapabilityType')
|
26
|
-
ConfigDetails = Shapes::
|
27
|
+
ConfigDetails = Shapes::UnionShape.new(name: 'ConfigDetails')
|
27
28
|
ConfigIdResponse = Shapes::StructureShape.new(name: 'ConfigIdResponse')
|
28
29
|
ConfigList = Shapes::ListShape.new(name: 'ConfigList')
|
29
30
|
ConfigListItem = Shapes::StructureShape.new(name: 'ConfigListItem')
|
30
|
-
ConfigTypeData = Shapes::
|
31
|
+
ConfigTypeData = Shapes::UnionShape.new(name: 'ConfigTypeData')
|
31
32
|
ContactData = Shapes::StructureShape.new(name: 'ContactData')
|
32
33
|
ContactIdResponse = Shapes::StructureShape.new(name: 'ContactIdResponse')
|
33
34
|
ContactList = Shapes::ListShape.new(name: 'ContactList')
|
@@ -45,7 +46,7 @@ module Aws::GroundStation
|
|
45
46
|
DataflowEndpointGroupIdResponse = Shapes::StructureShape.new(name: 'DataflowEndpointGroupIdResponse')
|
46
47
|
DataflowEndpointGroupList = Shapes::ListShape.new(name: 'DataflowEndpointGroupList')
|
47
48
|
DataflowEndpointListItem = Shapes::StructureShape.new(name: 'DataflowEndpointListItem')
|
48
|
-
|
49
|
+
DataflowEndpointMtuInteger = Shapes::IntegerShape.new(name: 'DataflowEndpointMtuInteger')
|
49
50
|
DataflowList = Shapes::ListShape.new(name: 'DataflowList')
|
50
51
|
DecodeConfig = Shapes::StructureShape.new(name: 'DecodeConfig')
|
51
52
|
DeleteConfigRequest = Shapes::StructureShape.new(name: 'DeleteConfigRequest')
|
@@ -106,6 +107,9 @@ module Aws::GroundStation
|
|
106
107
|
ResourceLimitExceededException = Shapes::StructureShape.new(name: 'ResourceLimitExceededException')
|
107
108
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
108
109
|
RoleArn = Shapes::StringShape.new(name: 'RoleArn')
|
110
|
+
S3KeyPrefix = Shapes::StringShape.new(name: 'S3KeyPrefix')
|
111
|
+
S3RecordingConfig = Shapes::StructureShape.new(name: 'S3RecordingConfig')
|
112
|
+
S3RecordingDetails = Shapes::StructureShape.new(name: 'S3RecordingDetails')
|
109
113
|
SafeName = Shapes::StringShape.new(name: 'SafeName')
|
110
114
|
SatelliteList = Shapes::ListShape.new(name: 'SatelliteList')
|
111
115
|
SatelliteListItem = Shapes::StructureShape.new(name: 'SatelliteListItem')
|
@@ -154,6 +158,12 @@ module Aws::GroundStation
|
|
154
158
|
|
155
159
|
ConfigDetails.add_member(:antenna_demod_decode_details, Shapes::ShapeRef.new(shape: AntennaDemodDecodeDetails, location_name: "antennaDemodDecodeDetails"))
|
156
160
|
ConfigDetails.add_member(:endpoint_details, Shapes::ShapeRef.new(shape: EndpointDetails, location_name: "endpointDetails"))
|
161
|
+
ConfigDetails.add_member(:s3_recording_details, Shapes::ShapeRef.new(shape: S3RecordingDetails, location_name: "s3RecordingDetails"))
|
162
|
+
ConfigDetails.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
163
|
+
ConfigDetails.add_member_subclass(:antenna_demod_decode_details, Types::ConfigDetails::AntennaDemodDecodeDetails)
|
164
|
+
ConfigDetails.add_member_subclass(:endpoint_details, Types::ConfigDetails::EndpointDetails)
|
165
|
+
ConfigDetails.add_member_subclass(:s3_recording_details, Types::ConfigDetails::S3RecordingDetails)
|
166
|
+
ConfigDetails.add_member_subclass(:unknown, Types::ConfigDetails::Unknown)
|
157
167
|
ConfigDetails.struct_class = Types::ConfigDetails
|
158
168
|
|
159
169
|
ConfigIdResponse.add_member(:config_arn, Shapes::ShapeRef.new(shape: ConfigArn, location_name: "configArn"))
|
@@ -173,8 +183,18 @@ module Aws::GroundStation
|
|
173
183
|
ConfigTypeData.add_member(:antenna_downlink_demod_decode_config, Shapes::ShapeRef.new(shape: AntennaDownlinkDemodDecodeConfig, location_name: "antennaDownlinkDemodDecodeConfig"))
|
174
184
|
ConfigTypeData.add_member(:antenna_uplink_config, Shapes::ShapeRef.new(shape: AntennaUplinkConfig, location_name: "antennaUplinkConfig"))
|
175
185
|
ConfigTypeData.add_member(:dataflow_endpoint_config, Shapes::ShapeRef.new(shape: DataflowEndpointConfig, location_name: "dataflowEndpointConfig"))
|
186
|
+
ConfigTypeData.add_member(:s3_recording_config, Shapes::ShapeRef.new(shape: S3RecordingConfig, location_name: "s3RecordingConfig"))
|
176
187
|
ConfigTypeData.add_member(:tracking_config, Shapes::ShapeRef.new(shape: TrackingConfig, location_name: "trackingConfig"))
|
177
188
|
ConfigTypeData.add_member(:uplink_echo_config, Shapes::ShapeRef.new(shape: UplinkEchoConfig, location_name: "uplinkEchoConfig"))
|
189
|
+
ConfigTypeData.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
190
|
+
ConfigTypeData.add_member_subclass(:antenna_downlink_config, Types::ConfigTypeData::AntennaDownlinkConfig)
|
191
|
+
ConfigTypeData.add_member_subclass(:antenna_downlink_demod_decode_config, Types::ConfigTypeData::AntennaDownlinkDemodDecodeConfig)
|
192
|
+
ConfigTypeData.add_member_subclass(:antenna_uplink_config, Types::ConfigTypeData::AntennaUplinkConfig)
|
193
|
+
ConfigTypeData.add_member_subclass(:dataflow_endpoint_config, Types::ConfigTypeData::DataflowEndpointConfig)
|
194
|
+
ConfigTypeData.add_member_subclass(:s3_recording_config, Types::ConfigTypeData::S3RecordingConfig)
|
195
|
+
ConfigTypeData.add_member_subclass(:tracking_config, Types::ConfigTypeData::TrackingConfig)
|
196
|
+
ConfigTypeData.add_member_subclass(:uplink_echo_config, Types::ConfigTypeData::UplinkEchoConfig)
|
197
|
+
ConfigTypeData.add_member_subclass(:unknown, Types::ConfigTypeData::Unknown)
|
178
198
|
ConfigTypeData.struct_class = Types::ConfigTypeData
|
179
199
|
|
180
200
|
ContactData.add_member(:contact_id, Shapes::ShapeRef.new(shape: String, location_name: "contactId"))
|
@@ -225,7 +245,7 @@ module Aws::GroundStation
|
|
225
245
|
DataflowEdgeList.member = Shapes::ShapeRef.new(shape: DataflowEdge)
|
226
246
|
|
227
247
|
DataflowEndpoint.add_member(:address, Shapes::ShapeRef.new(shape: SocketAddress, location_name: "address"))
|
228
|
-
DataflowEndpoint.add_member(:mtu, Shapes::ShapeRef.new(shape:
|
248
|
+
DataflowEndpoint.add_member(:mtu, Shapes::ShapeRef.new(shape: DataflowEndpointMtuInteger, location_name: "mtu"))
|
229
249
|
DataflowEndpoint.add_member(:name, Shapes::ShapeRef.new(shape: SafeName, location_name: "name"))
|
230
250
|
DataflowEndpoint.add_member(:status, Shapes::ShapeRef.new(shape: EndpointStatus, location_name: "status"))
|
231
251
|
DataflowEndpoint.struct_class = Types::DataflowEndpoint
|
@@ -468,6 +488,15 @@ module Aws::GroundStation
|
|
468
488
|
ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
469
489
|
ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
|
470
490
|
|
491
|
+
S3RecordingConfig.add_member(:bucket_arn, Shapes::ShapeRef.new(shape: BucketArn, required: true, location_name: "bucketArn"))
|
492
|
+
S3RecordingConfig.add_member(:prefix, Shapes::ShapeRef.new(shape: S3KeyPrefix, location_name: "prefix"))
|
493
|
+
S3RecordingConfig.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "roleArn"))
|
494
|
+
S3RecordingConfig.struct_class = Types::S3RecordingConfig
|
495
|
+
|
496
|
+
S3RecordingDetails.add_member(:bucket_arn, Shapes::ShapeRef.new(shape: BucketArn, location_name: "bucketArn"))
|
497
|
+
S3RecordingDetails.add_member(:key_template, Shapes::ShapeRef.new(shape: String, location_name: "keyTemplate"))
|
498
|
+
S3RecordingDetails.struct_class = Types::S3RecordingDetails
|
499
|
+
|
471
500
|
SatelliteList.member = Shapes::ShapeRef.new(shape: SatelliteListItem)
|
472
501
|
|
473
502
|
SatelliteListItem.add_member(:ground_stations, Shapes::ShapeRef.new(shape: GroundStationIdList, location_name: "groundStations"))
|
@@ -167,6 +167,8 @@ module Aws::GroundStation
|
|
167
167
|
|
168
168
|
# Details for certain `Config` object types in a contact.
|
169
169
|
#
|
170
|
+
# @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.
|
171
|
+
#
|
170
172
|
# @!attribute [rw] antenna_demod_decode_details
|
171
173
|
# Details for antenna demod decode `Config` in a contact.
|
172
174
|
# @return [Types::AntennaDemodDecodeDetails]
|
@@ -175,13 +177,25 @@ module Aws::GroundStation
|
|
175
177
|
# Information about the endpoint details.
|
176
178
|
# @return [Types::EndpointDetails]
|
177
179
|
#
|
180
|
+
# @!attribute [rw] s3_recording_details
|
181
|
+
# Details for an S3 recording `Config` in a contact.
|
182
|
+
# @return [Types::S3RecordingDetails]
|
183
|
+
#
|
178
184
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ConfigDetails AWS API Documentation
|
179
185
|
#
|
180
186
|
class ConfigDetails < Struct.new(
|
181
187
|
:antenna_demod_decode_details,
|
182
|
-
:endpoint_details
|
188
|
+
:endpoint_details,
|
189
|
+
:s3_recording_details,
|
190
|
+
:unknown)
|
183
191
|
SENSITIVE = []
|
184
192
|
include Aws::Structure
|
193
|
+
include Aws::Structure::Union
|
194
|
+
|
195
|
+
class AntennaDemodDecodeDetails < ConfigDetails; end
|
196
|
+
class EndpointDetails < ConfigDetails; end
|
197
|
+
class S3RecordingDetails < ConfigDetails; end
|
198
|
+
class Unknown < ConfigDetails; end
|
185
199
|
end
|
186
200
|
|
187
201
|
# @!attribute [rw] config_arn
|
@@ -239,68 +253,9 @@ module Aws::GroundStation
|
|
239
253
|
#
|
240
254
|
# See the subtype definitions for what each type of `Config` contains.
|
241
255
|
#
|
242
|
-
# @note
|
243
|
-
# data as a hash:
|
256
|
+
# @note ConfigTypeData is a union - when making an API calls you must set exactly one of the members.
|
244
257
|
#
|
245
|
-
#
|
246
|
-
# antenna_downlink_config: {
|
247
|
-
# spectrum_config: { # required
|
248
|
-
# bandwidth: { # required
|
249
|
-
# units: "GHz", # required, accepts GHz, MHz, kHz
|
250
|
-
# value: 1.0, # required
|
251
|
-
# },
|
252
|
-
# center_frequency: { # required
|
253
|
-
# units: "GHz", # required, accepts GHz, MHz, kHz
|
254
|
-
# value: 1.0, # required
|
255
|
-
# },
|
256
|
-
# polarization: "LEFT_HAND", # accepts LEFT_HAND, NONE, RIGHT_HAND
|
257
|
-
# },
|
258
|
-
# },
|
259
|
-
# antenna_downlink_demod_decode_config: {
|
260
|
-
# decode_config: { # required
|
261
|
-
# unvalidated_json: "JsonString", # required
|
262
|
-
# },
|
263
|
-
# demodulation_config: { # required
|
264
|
-
# unvalidated_json: "JsonString", # required
|
265
|
-
# },
|
266
|
-
# spectrum_config: { # required
|
267
|
-
# bandwidth: { # required
|
268
|
-
# units: "GHz", # required, accepts GHz, MHz, kHz
|
269
|
-
# value: 1.0, # required
|
270
|
-
# },
|
271
|
-
# center_frequency: { # required
|
272
|
-
# units: "GHz", # required, accepts GHz, MHz, kHz
|
273
|
-
# value: 1.0, # required
|
274
|
-
# },
|
275
|
-
# polarization: "LEFT_HAND", # accepts LEFT_HAND, NONE, RIGHT_HAND
|
276
|
-
# },
|
277
|
-
# },
|
278
|
-
# antenna_uplink_config: {
|
279
|
-
# spectrum_config: { # required
|
280
|
-
# center_frequency: { # required
|
281
|
-
# units: "GHz", # required, accepts GHz, MHz, kHz
|
282
|
-
# value: 1.0, # required
|
283
|
-
# },
|
284
|
-
# polarization: "LEFT_HAND", # accepts LEFT_HAND, NONE, RIGHT_HAND
|
285
|
-
# },
|
286
|
-
# target_eirp: { # required
|
287
|
-
# units: "dBW", # required, accepts dBW
|
288
|
-
# value: 1.0, # required
|
289
|
-
# },
|
290
|
-
# transmit_disabled: false,
|
291
|
-
# },
|
292
|
-
# dataflow_endpoint_config: {
|
293
|
-
# dataflow_endpoint_name: "String", # required
|
294
|
-
# dataflow_endpoint_region: "String",
|
295
|
-
# },
|
296
|
-
# tracking_config: {
|
297
|
-
# autotrack: "PREFERRED", # required, accepts PREFERRED, REMOVED, REQUIRED
|
298
|
-
# },
|
299
|
-
# uplink_echo_config: {
|
300
|
-
# antenna_uplink_config_arn: "ConfigArn", # required
|
301
|
-
# enabled: false, # required
|
302
|
-
# },
|
303
|
-
# }
|
258
|
+
# @note ConfigTypeData is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ConfigTypeData corresponding to the set member.
|
304
259
|
#
|
305
260
|
# @!attribute [rw] antenna_downlink_config
|
306
261
|
# Information about how AWS Ground Station should configure an antenna
|
@@ -321,6 +276,10 @@ module Aws::GroundStation
|
|
321
276
|
# Information about the dataflow endpoint `Config`.
|
322
277
|
# @return [Types::DataflowEndpointConfig]
|
323
278
|
#
|
279
|
+
# @!attribute [rw] s3_recording_config
|
280
|
+
# Information about an S3 recording `Config`.
|
281
|
+
# @return [Types::S3RecordingConfig]
|
282
|
+
#
|
324
283
|
# @!attribute [rw] tracking_config
|
325
284
|
# Object that determines whether tracking should be used during a
|
326
285
|
# contact executed with this `Config` in the mission profile.
|
@@ -341,10 +300,22 @@ module Aws::GroundStation
|
|
341
300
|
:antenna_downlink_demod_decode_config,
|
342
301
|
:antenna_uplink_config,
|
343
302
|
:dataflow_endpoint_config,
|
303
|
+
:s3_recording_config,
|
344
304
|
:tracking_config,
|
345
|
-
:uplink_echo_config
|
305
|
+
:uplink_echo_config,
|
306
|
+
:unknown)
|
346
307
|
SENSITIVE = []
|
347
308
|
include Aws::Structure
|
309
|
+
include Aws::Structure::Union
|
310
|
+
|
311
|
+
class AntennaDownlinkConfig < ConfigTypeData; end
|
312
|
+
class AntennaDownlinkDemodDecodeConfig < ConfigTypeData; end
|
313
|
+
class AntennaUplinkConfig < ConfigTypeData; end
|
314
|
+
class DataflowEndpointConfig < ConfigTypeData; end
|
315
|
+
class S3RecordingConfig < ConfigTypeData; end
|
316
|
+
class TrackingConfig < ConfigTypeData; end
|
317
|
+
class UplinkEchoConfig < ConfigTypeData; end
|
318
|
+
class Unknown < ConfigTypeData; end
|
348
319
|
end
|
349
320
|
|
350
321
|
# Data describing a contact.
|
@@ -490,6 +461,11 @@ module Aws::GroundStation
|
|
490
461
|
# dataflow_endpoint_name: "String", # required
|
491
462
|
# dataflow_endpoint_region: "String",
|
492
463
|
# },
|
464
|
+
# s3_recording_config: {
|
465
|
+
# bucket_arn: "BucketArn", # required
|
466
|
+
# prefix: "S3KeyPrefix",
|
467
|
+
# role_arn: "RoleArn", # required
|
468
|
+
# },
|
493
469
|
# tracking_config: {
|
494
470
|
# autotrack: "PREFERRED", # required, accepts PREFERRED, REMOVED, REQUIRED
|
495
471
|
# },
|
@@ -785,7 +761,7 @@ module Aws::GroundStation
|
|
785
761
|
#
|
786
762
|
# {
|
787
763
|
# config_id: "String", # required
|
788
|
-
# config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, antenna-uplink, dataflow-endpoint, tracking, uplink-echo
|
764
|
+
# config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, antenna-uplink, dataflow-endpoint, tracking, uplink-echo, s3-recording
|
789
765
|
# }
|
790
766
|
#
|
791
767
|
# @!attribute [rw] config_id
|
@@ -1165,7 +1141,7 @@ module Aws::GroundStation
|
|
1165
1141
|
#
|
1166
1142
|
# {
|
1167
1143
|
# config_id: "String", # required
|
1168
|
-
# config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, antenna-uplink, dataflow-endpoint, tracking, uplink-echo
|
1144
|
+
# config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, antenna-uplink, dataflow-endpoint, tracking, uplink-echo, s3-recording
|
1169
1145
|
# }
|
1170
1146
|
#
|
1171
1147
|
# @!attribute [rw] config_id
|
@@ -1959,6 +1935,58 @@ module Aws::GroundStation
|
|
1959
1935
|
include Aws::Structure
|
1960
1936
|
end
|
1961
1937
|
|
1938
|
+
# Information about an S3 recording `Config`.
|
1939
|
+
#
|
1940
|
+
# @note When making an API call, you may pass S3RecordingConfig
|
1941
|
+
# data as a hash:
|
1942
|
+
#
|
1943
|
+
# {
|
1944
|
+
# bucket_arn: "BucketArn", # required
|
1945
|
+
# prefix: "S3KeyPrefix",
|
1946
|
+
# role_arn: "RoleArn", # required
|
1947
|
+
# }
|
1948
|
+
#
|
1949
|
+
# @!attribute [rw] bucket_arn
|
1950
|
+
# ARN of the bucket to record to.
|
1951
|
+
# @return [String]
|
1952
|
+
#
|
1953
|
+
# @!attribute [rw] prefix
|
1954
|
+
# S3 Key prefix to prefice data files.
|
1955
|
+
# @return [String]
|
1956
|
+
#
|
1957
|
+
# @!attribute [rw] role_arn
|
1958
|
+
# ARN of the role Ground Station assumes to write data to the bucket.
|
1959
|
+
# @return [String]
|
1960
|
+
#
|
1961
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/S3RecordingConfig AWS API Documentation
|
1962
|
+
#
|
1963
|
+
class S3RecordingConfig < Struct.new(
|
1964
|
+
:bucket_arn,
|
1965
|
+
:prefix,
|
1966
|
+
:role_arn)
|
1967
|
+
SENSITIVE = []
|
1968
|
+
include Aws::Structure
|
1969
|
+
end
|
1970
|
+
|
1971
|
+
# Details about an S3 recording `Config` used in a contact.
|
1972
|
+
#
|
1973
|
+
# @!attribute [rw] bucket_arn
|
1974
|
+
# ARN of the bucket used.
|
1975
|
+
# @return [String]
|
1976
|
+
#
|
1977
|
+
# @!attribute [rw] key_template
|
1978
|
+
# Template of the S3 key used.
|
1979
|
+
# @return [String]
|
1980
|
+
#
|
1981
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/S3RecordingDetails AWS API Documentation
|
1982
|
+
#
|
1983
|
+
class S3RecordingDetails < Struct.new(
|
1984
|
+
:bucket_arn,
|
1985
|
+
:key_template)
|
1986
|
+
SENSITIVE = []
|
1987
|
+
include Aws::Structure
|
1988
|
+
end
|
1989
|
+
|
1962
1990
|
# Item in a list of satellites.
|
1963
1991
|
#
|
1964
1992
|
# @!attribute [rw] ground_stations
|
@@ -2268,6 +2296,11 @@ module Aws::GroundStation
|
|
2268
2296
|
# dataflow_endpoint_name: "String", # required
|
2269
2297
|
# dataflow_endpoint_region: "String",
|
2270
2298
|
# },
|
2299
|
+
# s3_recording_config: {
|
2300
|
+
# bucket_arn: "BucketArn", # required
|
2301
|
+
# prefix: "S3KeyPrefix",
|
2302
|
+
# role_arn: "RoleArn", # required
|
2303
|
+
# },
|
2271
2304
|
# tracking_config: {
|
2272
2305
|
# autotrack: "PREFERRED", # required, accepts PREFERRED, REMOVED, REQUIRED
|
2273
2306
|
# },
|
@@ -2277,7 +2310,7 @@ module Aws::GroundStation
|
|
2277
2310
|
# },
|
2278
2311
|
# },
|
2279
2312
|
# config_id: "String", # required
|
2280
|
-
# config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, antenna-uplink, dataflow-endpoint, tracking, uplink-echo
|
2313
|
+
# config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, antenna-uplink, dataflow-endpoint, tracking, uplink-echo, s3-recording
|
2281
2314
|
# name: "SafeName", # required
|
2282
2315
|
# }
|
2283
2316
|
#
|
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.21.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: 2021-
|
11
|
+
date: 2021-09-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.120.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.120.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -66,8 +66,8 @@ homepage: https://github.com/aws/aws-sdk-ruby
|
|
66
66
|
licenses:
|
67
67
|
- Apache-2.0
|
68
68
|
metadata:
|
69
|
-
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/
|
70
|
-
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/
|
69
|
+
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-groundstation
|
70
|
+
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-groundstation/CHANGELOG.md
|
71
71
|
post_install_message:
|
72
72
|
rdoc_options: []
|
73
73
|
require_paths:
|
@@ -76,15 +76,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
76
76
|
requirements:
|
77
77
|
- - ">="
|
78
78
|
- !ruby/object:Gem::Version
|
79
|
-
version: '
|
79
|
+
version: '2.3'
|
80
80
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
81
81
|
requirements:
|
82
82
|
- - ">="
|
83
83
|
- !ruby/object:Gem::Version
|
84
84
|
version: '0'
|
85
85
|
requirements: []
|
86
|
-
|
87
|
-
rubygems_version: 2.7.6.2
|
86
|
+
rubygems_version: 3.1.6
|
88
87
|
signing_key:
|
89
88
|
specification_version: 4
|
90
89
|
summary: AWS SDK for Ruby - AWS Ground Station
|