aws-sdk-groundstation 1.10.0 → 1.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-groundstation.rb +3 -2
- data/lib/aws-sdk-groundstation/client.rb +62 -11
- data/lib/aws-sdk-groundstation/client_api.rb +36 -0
- data/lib/aws-sdk-groundstation/types.rb +178 -10
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b620cf76b352b20bf4a9422b61a2fa4312f09ea5b3893d6156802924e5e0f02a
|
4
|
+
data.tar.gz: 57d907247a8a4ddd7a48096d703c45e806f0ead0230cb81752e76cd7e94ace5d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b13d58e9e4b90f5b7fc97bb495f4509301beb70dbfcc629d5b4ba19f2a1bc610217676fa78c4906fac1946d9a67ea89fc86a9c88e677058848bb8f8d47947da2
|
7
|
+
data.tar.gz: 285dc06b2f6c46bf9f67424beb798248c2c6c8619b945ffdbadfcdaaf16fe313131a41377f91dbaa6a09d52c95cde1f012c8355773becfa6f692374899d53c1c
|
@@ -7,6 +7,7 @@
|
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
10
|
+
|
10
11
|
require 'aws-sdk-core'
|
11
12
|
require 'aws-sigv4'
|
12
13
|
|
@@ -44,9 +45,9 @@ require_relative 'aws-sdk-groundstation/customizations'
|
|
44
45
|
#
|
45
46
|
# See {Errors} for more information.
|
46
47
|
#
|
47
|
-
#
|
48
|
+
# @!group service
|
48
49
|
module Aws::GroundStation
|
49
50
|
|
50
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.15.0'
|
51
52
|
|
52
53
|
end
|
@@ -85,13 +85,28 @@ module Aws::GroundStation
|
|
85
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
86
86
|
# credentials.
|
87
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
88
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
89
103
|
# from an EC2 IMDS on an EC2 instance.
|
90
104
|
#
|
91
|
-
# * `Aws::
|
92
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
93
107
|
#
|
94
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
95
110
|
#
|
96
111
|
# When `:credentials` are not configured directly, the following
|
97
112
|
# locations will be searched for credentials:
|
@@ -101,10 +116,10 @@ module Aws::GroundStation
|
|
101
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
102
117
|
# * `~/.aws/credentials`
|
103
118
|
# * `~/.aws/config`
|
104
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
105
|
-
# very aggressive. Construct and pass an instance of
|
106
|
-
# `Aws::InstanceProfileCredentails`
|
107
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
108
123
|
#
|
109
124
|
# @option options [required, String] :region
|
110
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -407,6 +422,7 @@ module Aws::GroundStation
|
|
407
422
|
# units: "dBW", # required, accepts dBW
|
408
423
|
# value: 1.0, # required
|
409
424
|
# },
|
425
|
+
# transmit_disabled: false,
|
410
426
|
# },
|
411
427
|
# dataflow_endpoint_config: {
|
412
428
|
# dataflow_endpoint_name: "String", # required
|
@@ -471,6 +487,7 @@ module Aws::GroundStation
|
|
471
487
|
# name: "String", # required
|
472
488
|
# port: 1, # required
|
473
489
|
# },
|
490
|
+
# mtu: 1,
|
474
491
|
# name: "SafeName",
|
475
492
|
# status: "created", # accepts created, creating, deleted, deleting, failed
|
476
493
|
# },
|
@@ -664,6 +681,7 @@ module Aws::GroundStation
|
|
664
681
|
#
|
665
682
|
# * {Types::DescribeContactResponse#contact_id #contact_id} => String
|
666
683
|
# * {Types::DescribeContactResponse#contact_status #contact_status} => String
|
684
|
+
# * {Types::DescribeContactResponse#dataflow_list #dataflow_list} => Array<Types::DataflowDetail>
|
667
685
|
# * {Types::DescribeContactResponse#end_time #end_time} => Time
|
668
686
|
# * {Types::DescribeContactResponse#error_message #error_message} => String
|
669
687
|
# * {Types::DescribeContactResponse#ground_station #ground_station} => String
|
@@ -685,7 +703,37 @@ module Aws::GroundStation
|
|
685
703
|
# @example Response structure
|
686
704
|
#
|
687
705
|
# resp.contact_id #=> String
|
688
|
-
# resp.contact_status #=> String, one of "AVAILABLE", "AWS_CANCELLED", "CANCELLED", "CANCELLING", "COMPLETED", "FAILED", "FAILED_TO_SCHEDULE", "PASS", "POSTPASS", "PREPASS", "SCHEDULED", "SCHEDULING"
|
706
|
+
# resp.contact_status #=> String, one of "AVAILABLE", "AWS_CANCELLED", "AWS_FAILED", "CANCELLED", "CANCELLING", "COMPLETED", "FAILED", "FAILED_TO_SCHEDULE", "PASS", "POSTPASS", "PREPASS", "SCHEDULED", "SCHEDULING"
|
707
|
+
# resp.dataflow_list #=> Array
|
708
|
+
# resp.dataflow_list[0].destination.config_details.antenna_demod_decode_details.output_node #=> String
|
709
|
+
# resp.dataflow_list[0].destination.config_details.endpoint_details.endpoint.address.name #=> String
|
710
|
+
# resp.dataflow_list[0].destination.config_details.endpoint_details.endpoint.address.port #=> Integer
|
711
|
+
# resp.dataflow_list[0].destination.config_details.endpoint_details.endpoint.mtu #=> Integer
|
712
|
+
# resp.dataflow_list[0].destination.config_details.endpoint_details.endpoint.name #=> String
|
713
|
+
# resp.dataflow_list[0].destination.config_details.endpoint_details.endpoint.status #=> String, one of "created", "creating", "deleted", "deleting", "failed"
|
714
|
+
# resp.dataflow_list[0].destination.config_details.endpoint_details.security_details.role_arn #=> String
|
715
|
+
# resp.dataflow_list[0].destination.config_details.endpoint_details.security_details.security_group_ids #=> Array
|
716
|
+
# resp.dataflow_list[0].destination.config_details.endpoint_details.security_details.security_group_ids[0] #=> String
|
717
|
+
# resp.dataflow_list[0].destination.config_details.endpoint_details.security_details.subnet_ids #=> Array
|
718
|
+
# resp.dataflow_list[0].destination.config_details.endpoint_details.security_details.subnet_ids[0] #=> String
|
719
|
+
# 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"
|
721
|
+
# resp.dataflow_list[0].destination.dataflow_destination_region #=> String
|
722
|
+
# resp.dataflow_list[0].error_message #=> String
|
723
|
+
# resp.dataflow_list[0].source.config_details.antenna_demod_decode_details.output_node #=> String
|
724
|
+
# resp.dataflow_list[0].source.config_details.endpoint_details.endpoint.address.name #=> String
|
725
|
+
# resp.dataflow_list[0].source.config_details.endpoint_details.endpoint.address.port #=> Integer
|
726
|
+
# resp.dataflow_list[0].source.config_details.endpoint_details.endpoint.mtu #=> Integer
|
727
|
+
# resp.dataflow_list[0].source.config_details.endpoint_details.endpoint.name #=> String
|
728
|
+
# resp.dataflow_list[0].source.config_details.endpoint_details.endpoint.status #=> String, one of "created", "creating", "deleted", "deleting", "failed"
|
729
|
+
# resp.dataflow_list[0].source.config_details.endpoint_details.security_details.role_arn #=> String
|
730
|
+
# resp.dataflow_list[0].source.config_details.endpoint_details.security_details.security_group_ids #=> Array
|
731
|
+
# resp.dataflow_list[0].source.config_details.endpoint_details.security_details.security_group_ids[0] #=> String
|
732
|
+
# resp.dataflow_list[0].source.config_details.endpoint_details.security_details.subnet_ids #=> Array
|
733
|
+
# resp.dataflow_list[0].source.config_details.endpoint_details.security_details.subnet_ids[0] #=> String
|
734
|
+
# 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"
|
736
|
+
# resp.dataflow_list[0].source.dataflow_source_region #=> String
|
689
737
|
# resp.end_time #=> Time
|
690
738
|
# resp.error_message #=> String
|
691
739
|
# resp.ground_station #=> String
|
@@ -755,6 +803,7 @@ module Aws::GroundStation
|
|
755
803
|
# resp.config_data.antenna_uplink_config.spectrum_config.polarization #=> String, one of "LEFT_HAND", "NONE", "RIGHT_HAND"
|
756
804
|
# resp.config_data.antenna_uplink_config.target_eirp.units #=> String, one of "dBW"
|
757
805
|
# resp.config_data.antenna_uplink_config.target_eirp.value #=> Float
|
806
|
+
# resp.config_data.antenna_uplink_config.transmit_disabled #=> Boolean
|
758
807
|
# resp.config_data.dataflow_endpoint_config.dataflow_endpoint_name #=> String
|
759
808
|
# resp.config_data.dataflow_endpoint_config.dataflow_endpoint_region #=> String
|
760
809
|
# resp.config_data.tracking_config.autotrack #=> String, one of "PREFERRED", "REMOVED", "REQUIRED"
|
@@ -800,6 +849,7 @@ module Aws::GroundStation
|
|
800
849
|
# resp.endpoints_details #=> Array
|
801
850
|
# resp.endpoints_details[0].endpoint.address.name #=> String
|
802
851
|
# resp.endpoints_details[0].endpoint.address.port #=> Integer
|
852
|
+
# resp.endpoints_details[0].endpoint.mtu #=> Integer
|
803
853
|
# resp.endpoints_details[0].endpoint.name #=> String
|
804
854
|
# resp.endpoints_details[0].endpoint.status #=> String, one of "created", "creating", "deleted", "deleting", "failed"
|
805
855
|
# resp.endpoints_details[0].security_details.role_arn #=> String
|
@@ -1031,14 +1081,14 @@ module Aws::GroundStation
|
|
1031
1081
|
# next_token: "String",
|
1032
1082
|
# satellite_arn: "satelliteArn",
|
1033
1083
|
# start_time: Time.now, # required
|
1034
|
-
# status_list: ["AVAILABLE"], # required, accepts AVAILABLE, AWS_CANCELLED, CANCELLED, CANCELLING, COMPLETED, FAILED, FAILED_TO_SCHEDULE, PASS, POSTPASS, PREPASS, SCHEDULED, SCHEDULING
|
1084
|
+
# status_list: ["AVAILABLE"], # required, accepts AVAILABLE, AWS_CANCELLED, AWS_FAILED, CANCELLED, CANCELLING, COMPLETED, FAILED, FAILED_TO_SCHEDULE, PASS, POSTPASS, PREPASS, SCHEDULED, SCHEDULING
|
1035
1085
|
# })
|
1036
1086
|
#
|
1037
1087
|
# @example Response structure
|
1038
1088
|
#
|
1039
1089
|
# resp.contact_list #=> Array
|
1040
1090
|
# resp.contact_list[0].contact_id #=> String
|
1041
|
-
# resp.contact_list[0].contact_status #=> String, one of "AVAILABLE", "AWS_CANCELLED", "CANCELLED", "CANCELLING", "COMPLETED", "FAILED", "FAILED_TO_SCHEDULE", "PASS", "POSTPASS", "PREPASS", "SCHEDULED", "SCHEDULING"
|
1091
|
+
# resp.contact_list[0].contact_status #=> String, one of "AVAILABLE", "AWS_CANCELLED", "AWS_FAILED", "CANCELLED", "CANCELLING", "COMPLETED", "FAILED", "FAILED_TO_SCHEDULE", "PASS", "POSTPASS", "PREPASS", "SCHEDULED", "SCHEDULING"
|
1042
1092
|
# resp.contact_list[0].end_time #=> Time
|
1043
1093
|
# resp.contact_list[0].error_message #=> String
|
1044
1094
|
# resp.contact_list[0].ground_station #=> String
|
@@ -1434,6 +1484,7 @@ module Aws::GroundStation
|
|
1434
1484
|
# units: "dBW", # required, accepts dBW
|
1435
1485
|
# value: 1.0, # required
|
1436
1486
|
# },
|
1487
|
+
# transmit_disabled: false,
|
1437
1488
|
# },
|
1438
1489
|
# dataflow_endpoint_config: {
|
1439
1490
|
# dataflow_endpoint_name: "String", # required
|
@@ -1542,7 +1593,7 @@ module Aws::GroundStation
|
|
1542
1593
|
params: params,
|
1543
1594
|
config: config)
|
1544
1595
|
context[:gem_name] = 'aws-sdk-groundstation'
|
1545
|
-
context[:gem_version] = '1.
|
1596
|
+
context[:gem_version] = '1.15.0'
|
1546
1597
|
Seahorse::Client::Request.new(handlers, context)
|
1547
1598
|
end
|
1548
1599
|
|
@@ -14,6 +14,7 @@ module Aws::GroundStation
|
|
14
14
|
include Seahorse::Model
|
15
15
|
|
16
16
|
AngleUnits = Shapes::StringShape.new(name: 'AngleUnits')
|
17
|
+
AntennaDemodDecodeDetails = Shapes::StructureShape.new(name: 'AntennaDemodDecodeDetails')
|
17
18
|
AntennaDownlinkConfig = Shapes::StructureShape.new(name: 'AntennaDownlinkConfig')
|
18
19
|
AntennaDownlinkDemodDecodeConfig = Shapes::StructureShape.new(name: 'AntennaDownlinkDemodDecodeConfig')
|
19
20
|
AntennaUplinkConfig = Shapes::StructureShape.new(name: 'AntennaUplinkConfig')
|
@@ -22,6 +23,7 @@ module Aws::GroundStation
|
|
22
23
|
CancelContactRequest = Shapes::StructureShape.new(name: 'CancelContactRequest')
|
23
24
|
ConfigArn = Shapes::StringShape.new(name: 'ConfigArn')
|
24
25
|
ConfigCapabilityType = Shapes::StringShape.new(name: 'ConfigCapabilityType')
|
26
|
+
ConfigDetails = Shapes::StructureShape.new(name: 'ConfigDetails')
|
25
27
|
ConfigIdResponse = Shapes::StructureShape.new(name: 'ConfigIdResponse')
|
26
28
|
ConfigList = Shapes::ListShape.new(name: 'ConfigList')
|
27
29
|
ConfigListItem = Shapes::StructureShape.new(name: 'ConfigListItem')
|
@@ -34,6 +36,7 @@ module Aws::GroundStation
|
|
34
36
|
CreateDataflowEndpointGroupRequest = Shapes::StructureShape.new(name: 'CreateDataflowEndpointGroupRequest')
|
35
37
|
CreateMissionProfileRequest = Shapes::StructureShape.new(name: 'CreateMissionProfileRequest')
|
36
38
|
Criticality = Shapes::StringShape.new(name: 'Criticality')
|
39
|
+
DataflowDetail = Shapes::StructureShape.new(name: 'DataflowDetail')
|
37
40
|
DataflowEdge = Shapes::ListShape.new(name: 'DataflowEdge')
|
38
41
|
DataflowEdgeList = Shapes::ListShape.new(name: 'DataflowEdgeList')
|
39
42
|
DataflowEndpoint = Shapes::StructureShape.new(name: 'DataflowEndpoint')
|
@@ -42,6 +45,8 @@ module Aws::GroundStation
|
|
42
45
|
DataflowEndpointGroupIdResponse = Shapes::StructureShape.new(name: 'DataflowEndpointGroupIdResponse')
|
43
46
|
DataflowEndpointGroupList = Shapes::ListShape.new(name: 'DataflowEndpointGroupList')
|
44
47
|
DataflowEndpointListItem = Shapes::StructureShape.new(name: 'DataflowEndpointListItem')
|
48
|
+
DataflowEndpointmtuInteger = Shapes::IntegerShape.new(name: 'DataflowEndpointmtuInteger')
|
49
|
+
DataflowList = Shapes::ListShape.new(name: 'DataflowList')
|
45
50
|
DecodeConfig = Shapes::StructureShape.new(name: 'DecodeConfig')
|
46
51
|
DeleteConfigRequest = Shapes::StructureShape.new(name: 'DeleteConfigRequest')
|
47
52
|
DeleteDataflowEndpointGroupRequest = Shapes::StructureShape.new(name: 'DeleteDataflowEndpointGroupRequest')
|
@@ -50,6 +55,7 @@ module Aws::GroundStation
|
|
50
55
|
DependencyException = Shapes::StructureShape.new(name: 'DependencyException')
|
51
56
|
DescribeContactRequest = Shapes::StructureShape.new(name: 'DescribeContactRequest')
|
52
57
|
DescribeContactResponse = Shapes::StructureShape.new(name: 'DescribeContactResponse')
|
58
|
+
Destination = Shapes::StructureShape.new(name: 'Destination')
|
53
59
|
Double = Shapes::FloatShape.new(name: 'Double')
|
54
60
|
DurationInSeconds = Shapes::IntegerShape.new(name: 'DurationInSeconds')
|
55
61
|
Eirp = Shapes::StructureShape.new(name: 'Eirp')
|
@@ -106,6 +112,7 @@ module Aws::GroundStation
|
|
106
112
|
SecurityDetails = Shapes::StructureShape.new(name: 'SecurityDetails')
|
107
113
|
SecurityGroupIdList = Shapes::ListShape.new(name: 'SecurityGroupIdList')
|
108
114
|
SocketAddress = Shapes::StructureShape.new(name: 'SocketAddress')
|
115
|
+
Source = Shapes::StructureShape.new(name: 'Source')
|
109
116
|
SpectrumConfig = Shapes::StructureShape.new(name: 'SpectrumConfig')
|
110
117
|
StatusList = Shapes::ListShape.new(name: 'StatusList')
|
111
118
|
String = Shapes::StringShape.new(name: 'String')
|
@@ -126,6 +133,9 @@ module Aws::GroundStation
|
|
126
133
|
noradSatelliteID = Shapes::IntegerShape.new(name: 'noradSatelliteID')
|
127
134
|
satelliteArn = Shapes::StringShape.new(name: 'satelliteArn')
|
128
135
|
|
136
|
+
AntennaDemodDecodeDetails.add_member(:output_node, Shapes::ShapeRef.new(shape: String, location_name: "outputNode"))
|
137
|
+
AntennaDemodDecodeDetails.struct_class = Types::AntennaDemodDecodeDetails
|
138
|
+
|
129
139
|
AntennaDownlinkConfig.add_member(:spectrum_config, Shapes::ShapeRef.new(shape: SpectrumConfig, required: true, location_name: "spectrumConfig"))
|
130
140
|
AntennaDownlinkConfig.struct_class = Types::AntennaDownlinkConfig
|
131
141
|
|
@@ -136,11 +146,16 @@ module Aws::GroundStation
|
|
136
146
|
|
137
147
|
AntennaUplinkConfig.add_member(:spectrum_config, Shapes::ShapeRef.new(shape: UplinkSpectrumConfig, required: true, location_name: "spectrumConfig"))
|
138
148
|
AntennaUplinkConfig.add_member(:target_eirp, Shapes::ShapeRef.new(shape: Eirp, required: true, location_name: "targetEirp"))
|
149
|
+
AntennaUplinkConfig.add_member(:transmit_disabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "transmitDisabled"))
|
139
150
|
AntennaUplinkConfig.struct_class = Types::AntennaUplinkConfig
|
140
151
|
|
141
152
|
CancelContactRequest.add_member(:contact_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "contactId"))
|
142
153
|
CancelContactRequest.struct_class = Types::CancelContactRequest
|
143
154
|
|
155
|
+
ConfigDetails.add_member(:antenna_demod_decode_details, Shapes::ShapeRef.new(shape: AntennaDemodDecodeDetails, location_name: "antennaDemodDecodeDetails"))
|
156
|
+
ConfigDetails.add_member(:endpoint_details, Shapes::ShapeRef.new(shape: EndpointDetails, location_name: "endpointDetails"))
|
157
|
+
ConfigDetails.struct_class = Types::ConfigDetails
|
158
|
+
|
144
159
|
ConfigIdResponse.add_member(:config_arn, Shapes::ShapeRef.new(shape: ConfigArn, location_name: "configArn"))
|
145
160
|
ConfigIdResponse.add_member(:config_id, Shapes::ShapeRef.new(shape: String, location_name: "configId"))
|
146
161
|
ConfigIdResponse.add_member(:config_type, Shapes::ShapeRef.new(shape: ConfigCapabilityType, location_name: "configType"))
|
@@ -200,11 +215,17 @@ module Aws::GroundStation
|
|
200
215
|
CreateMissionProfileRequest.add_member(:tracking_config_arn, Shapes::ShapeRef.new(shape: ConfigArn, required: true, location_name: "trackingConfigArn"))
|
201
216
|
CreateMissionProfileRequest.struct_class = Types::CreateMissionProfileRequest
|
202
217
|
|
218
|
+
DataflowDetail.add_member(:destination, Shapes::ShapeRef.new(shape: Destination, location_name: "destination"))
|
219
|
+
DataflowDetail.add_member(:error_message, Shapes::ShapeRef.new(shape: String, location_name: "errorMessage"))
|
220
|
+
DataflowDetail.add_member(:source, Shapes::ShapeRef.new(shape: Source, location_name: "source"))
|
221
|
+
DataflowDetail.struct_class = Types::DataflowDetail
|
222
|
+
|
203
223
|
DataflowEdge.member = Shapes::ShapeRef.new(shape: ConfigArn)
|
204
224
|
|
205
225
|
DataflowEdgeList.member = Shapes::ShapeRef.new(shape: DataflowEdge)
|
206
226
|
|
207
227
|
DataflowEndpoint.add_member(:address, Shapes::ShapeRef.new(shape: SocketAddress, location_name: "address"))
|
228
|
+
DataflowEndpoint.add_member(:mtu, Shapes::ShapeRef.new(shape: DataflowEndpointmtuInteger, location_name: "mtu"))
|
208
229
|
DataflowEndpoint.add_member(:name, Shapes::ShapeRef.new(shape: SafeName, location_name: "name"))
|
209
230
|
DataflowEndpoint.add_member(:status, Shapes::ShapeRef.new(shape: EndpointStatus, location_name: "status"))
|
210
231
|
DataflowEndpoint.struct_class = Types::DataflowEndpoint
|
@@ -222,6 +243,8 @@ module Aws::GroundStation
|
|
222
243
|
DataflowEndpointListItem.add_member(:dataflow_endpoint_group_id, Shapes::ShapeRef.new(shape: String, location_name: "dataflowEndpointGroupId"))
|
223
244
|
DataflowEndpointListItem.struct_class = Types::DataflowEndpointListItem
|
224
245
|
|
246
|
+
DataflowList.member = Shapes::ShapeRef.new(shape: DataflowDetail)
|
247
|
+
|
225
248
|
DecodeConfig.add_member(:unvalidated_json, Shapes::ShapeRef.new(shape: JsonString, required: true, location_name: "unvalidatedJSON"))
|
226
249
|
DecodeConfig.struct_class = Types::DecodeConfig
|
227
250
|
|
@@ -247,6 +270,7 @@ module Aws::GroundStation
|
|
247
270
|
|
248
271
|
DescribeContactResponse.add_member(:contact_id, Shapes::ShapeRef.new(shape: String, location_name: "contactId"))
|
249
272
|
DescribeContactResponse.add_member(:contact_status, Shapes::ShapeRef.new(shape: ContactStatus, location_name: "contactStatus"))
|
273
|
+
DescribeContactResponse.add_member(:dataflow_list, Shapes::ShapeRef.new(shape: DataflowList, location_name: "dataflowList"))
|
250
274
|
DescribeContactResponse.add_member(:end_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "endTime"))
|
251
275
|
DescribeContactResponse.add_member(:error_message, Shapes::ShapeRef.new(shape: String, location_name: "errorMessage"))
|
252
276
|
DescribeContactResponse.add_member(:ground_station, Shapes::ShapeRef.new(shape: String, location_name: "groundStation"))
|
@@ -260,6 +284,12 @@ module Aws::GroundStation
|
|
260
284
|
DescribeContactResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
261
285
|
DescribeContactResponse.struct_class = Types::DescribeContactResponse
|
262
286
|
|
287
|
+
Destination.add_member(:config_details, Shapes::ShapeRef.new(shape: ConfigDetails, location_name: "configDetails"))
|
288
|
+
Destination.add_member(:config_id, Shapes::ShapeRef.new(shape: String, location_name: "configId"))
|
289
|
+
Destination.add_member(:config_type, Shapes::ShapeRef.new(shape: ConfigCapabilityType, location_name: "configType"))
|
290
|
+
Destination.add_member(:dataflow_destination_region, Shapes::ShapeRef.new(shape: String, location_name: "dataflowDestinationRegion"))
|
291
|
+
Destination.struct_class = Types::Destination
|
292
|
+
|
263
293
|
Eirp.add_member(:units, Shapes::ShapeRef.new(shape: EirpUnits, required: true, location_name: "units"))
|
264
294
|
Eirp.add_member(:value, Shapes::ShapeRef.new(shape: Double, required: true, location_name: "value"))
|
265
295
|
Eirp.struct_class = Types::Eirp
|
@@ -457,6 +487,12 @@ module Aws::GroundStation
|
|
457
487
|
SocketAddress.add_member(:port, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "port"))
|
458
488
|
SocketAddress.struct_class = Types::SocketAddress
|
459
489
|
|
490
|
+
Source.add_member(:config_details, Shapes::ShapeRef.new(shape: ConfigDetails, location_name: "configDetails"))
|
491
|
+
Source.add_member(:config_id, Shapes::ShapeRef.new(shape: String, location_name: "configId"))
|
492
|
+
Source.add_member(:config_type, Shapes::ShapeRef.new(shape: ConfigCapabilityType, location_name: "configType"))
|
493
|
+
Source.add_member(:dataflow_source_region, Shapes::ShapeRef.new(shape: String, location_name: "dataflowSourceRegion"))
|
494
|
+
Source.struct_class = Types::Source
|
495
|
+
|
460
496
|
SpectrumConfig.add_member(:bandwidth, Shapes::ShapeRef.new(shape: FrequencyBandwidth, required: true, location_name: "bandwidth"))
|
461
497
|
SpectrumConfig.add_member(:center_frequency, Shapes::ShapeRef.new(shape: Frequency, required: true, location_name: "centerFrequency"))
|
462
498
|
SpectrumConfig.add_member(:polarization, Shapes::ShapeRef.new(shape: Polarization, location_name: "polarization"))
|
@@ -10,6 +10,20 @@
|
|
10
10
|
module Aws::GroundStation
|
11
11
|
module Types
|
12
12
|
|
13
|
+
# Details about an antenna demod decode `Config` used in a contact.
|
14
|
+
#
|
15
|
+
# @!attribute [rw] output_node
|
16
|
+
# Name of an antenna demod decode output node used in a contact.
|
17
|
+
# @return [String]
|
18
|
+
#
|
19
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/AntennaDemodDecodeDetails AWS API Documentation
|
20
|
+
#
|
21
|
+
class AntennaDemodDecodeDetails < Struct.new(
|
22
|
+
:output_node)
|
23
|
+
SENSITIVE = []
|
24
|
+
include Aws::Structure
|
25
|
+
end
|
26
|
+
|
13
27
|
# Information about how AWS Ground Station should configure an antenna
|
14
28
|
# for downlink during a contact.
|
15
29
|
#
|
@@ -107,6 +121,7 @@ module Aws::GroundStation
|
|
107
121
|
# units: "dBW", # required, accepts dBW
|
108
122
|
# value: 1.0, # required
|
109
123
|
# },
|
124
|
+
# transmit_disabled: false,
|
110
125
|
# }
|
111
126
|
#
|
112
127
|
# @!attribute [rw] spectrum_config
|
@@ -117,11 +132,16 @@ module Aws::GroundStation
|
|
117
132
|
# EIRP of the target.
|
118
133
|
# @return [Types::Eirp]
|
119
134
|
#
|
135
|
+
# @!attribute [rw] transmit_disabled
|
136
|
+
# Whether or not uplink transmit is disabled.
|
137
|
+
# @return [Boolean]
|
138
|
+
#
|
120
139
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/AntennaUplinkConfig AWS API Documentation
|
121
140
|
#
|
122
141
|
class AntennaUplinkConfig < Struct.new(
|
123
142
|
:spectrum_config,
|
124
|
-
:target_eirp
|
143
|
+
:target_eirp,
|
144
|
+
:transmit_disabled)
|
125
145
|
SENSITIVE = []
|
126
146
|
include Aws::Structure
|
127
147
|
end
|
@@ -145,6 +165,25 @@ module Aws::GroundStation
|
|
145
165
|
include Aws::Structure
|
146
166
|
end
|
147
167
|
|
168
|
+
# Details for certain `Config` object types in a contact.
|
169
|
+
#
|
170
|
+
# @!attribute [rw] antenna_demod_decode_details
|
171
|
+
# Details for antenna demod decode `Config` in a contact.
|
172
|
+
# @return [Types::AntennaDemodDecodeDetails]
|
173
|
+
#
|
174
|
+
# @!attribute [rw] endpoint_details
|
175
|
+
# Information about the endpoint details.
|
176
|
+
# @return [Types::EndpointDetails]
|
177
|
+
#
|
178
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ConfigDetails AWS API Documentation
|
179
|
+
#
|
180
|
+
class ConfigDetails < Struct.new(
|
181
|
+
:antenna_demod_decode_details,
|
182
|
+
:endpoint_details)
|
183
|
+
SENSITIVE = []
|
184
|
+
include Aws::Structure
|
185
|
+
end
|
186
|
+
|
148
187
|
# @!attribute [rw] config_arn
|
149
188
|
# ARN of a `Config`.
|
150
189
|
# @return [String]
|
@@ -248,6 +287,7 @@ module Aws::GroundStation
|
|
248
287
|
# units: "dBW", # required, accepts dBW
|
249
288
|
# value: 1.0, # required
|
250
289
|
# },
|
290
|
+
# transmit_disabled: false,
|
251
291
|
# },
|
252
292
|
# dataflow_endpoint_config: {
|
253
293
|
# dataflow_endpoint_name: "String", # required
|
@@ -444,6 +484,7 @@ module Aws::GroundStation
|
|
444
484
|
# units: "dBW", # required, accepts dBW
|
445
485
|
# value: 1.0, # required
|
446
486
|
# },
|
487
|
+
# transmit_disabled: false,
|
447
488
|
# },
|
448
489
|
# dataflow_endpoint_config: {
|
449
490
|
# dataflow_endpoint_name: "String", # required
|
@@ -496,6 +537,7 @@ module Aws::GroundStation
|
|
496
537
|
# name: "String", # required
|
497
538
|
# port: 1, # required
|
498
539
|
# },
|
540
|
+
# mtu: 1,
|
499
541
|
# name: "SafeName",
|
500
542
|
# status: "created", # accepts created, creating, deleted, deleting, failed
|
501
543
|
# },
|
@@ -592,6 +634,30 @@ module Aws::GroundStation
|
|
592
634
|
include Aws::Structure
|
593
635
|
end
|
594
636
|
|
637
|
+
# Information about a dataflow edge used in a contact.
|
638
|
+
#
|
639
|
+
# @!attribute [rw] destination
|
640
|
+
# Dataflow details for the destination side.
|
641
|
+
# @return [Types::Destination]
|
642
|
+
#
|
643
|
+
# @!attribute [rw] error_message
|
644
|
+
# Error message for a dataflow.
|
645
|
+
# @return [String]
|
646
|
+
#
|
647
|
+
# @!attribute [rw] source
|
648
|
+
# Dataflow details for the source side.
|
649
|
+
# @return [Types::Source]
|
650
|
+
#
|
651
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/DataflowDetail AWS API Documentation
|
652
|
+
#
|
653
|
+
class DataflowDetail < Struct.new(
|
654
|
+
:destination,
|
655
|
+
:error_message,
|
656
|
+
:source)
|
657
|
+
SENSITIVE = []
|
658
|
+
include Aws::Structure
|
659
|
+
end
|
660
|
+
|
595
661
|
# Information about a dataflow endpoint.
|
596
662
|
#
|
597
663
|
# @note When making an API call, you may pass DataflowEndpoint
|
@@ -602,6 +668,7 @@ module Aws::GroundStation
|
|
602
668
|
# name: "String", # required
|
603
669
|
# port: 1, # required
|
604
670
|
# },
|
671
|
+
# mtu: 1,
|
605
672
|
# name: "SafeName",
|
606
673
|
# status: "created", # accepts created, creating, deleted, deleting, failed
|
607
674
|
# }
|
@@ -610,6 +677,11 @@ module Aws::GroundStation
|
|
610
677
|
# Socket address of a dataflow endpoint.
|
611
678
|
# @return [Types::SocketAddress]
|
612
679
|
#
|
680
|
+
# @!attribute [rw] mtu
|
681
|
+
# Maximum transmission unit (MTU) size in bytes of a dataflow
|
682
|
+
# endpoint.
|
683
|
+
# @return [Integer]
|
684
|
+
#
|
613
685
|
# @!attribute [rw] name
|
614
686
|
# Name of a dataflow endpoint.
|
615
687
|
# @return [String]
|
@@ -622,6 +694,7 @@ module Aws::GroundStation
|
|
622
694
|
#
|
623
695
|
class DataflowEndpoint < Struct.new(
|
624
696
|
:address,
|
697
|
+
:mtu,
|
625
698
|
:name,
|
626
699
|
:status)
|
627
700
|
SENSITIVE = []
|
@@ -835,6 +908,11 @@ module Aws::GroundStation
|
|
835
908
|
# Status of a contact.
|
836
909
|
# @return [String]
|
837
910
|
#
|
911
|
+
# @!attribute [rw] dataflow_list
|
912
|
+
# List describing source and destination details for each dataflow
|
913
|
+
# edge.
|
914
|
+
# @return [Array<Types::DataflowDetail>]
|
915
|
+
#
|
838
916
|
# @!attribute [rw] end_time
|
839
917
|
# End time of a contact.
|
840
918
|
# @return [Time]
|
@@ -886,6 +964,7 @@ module Aws::GroundStation
|
|
886
964
|
class DescribeContactResponse < Struct.new(
|
887
965
|
:contact_id,
|
888
966
|
:contact_status,
|
967
|
+
:dataflow_list,
|
889
968
|
:end_time,
|
890
969
|
:error_message,
|
891
970
|
:ground_station,
|
@@ -901,6 +980,36 @@ module Aws::GroundStation
|
|
901
980
|
include Aws::Structure
|
902
981
|
end
|
903
982
|
|
983
|
+
# Dataflow details for the destination side.
|
984
|
+
#
|
985
|
+
# @!attribute [rw] config_details
|
986
|
+
# Additional details for a `Config`, if type is dataflow endpoint or
|
987
|
+
# antenna demod decode.
|
988
|
+
# @return [Types::ConfigDetails]
|
989
|
+
#
|
990
|
+
# @!attribute [rw] config_id
|
991
|
+
# UUID of a `Config`.
|
992
|
+
# @return [String]
|
993
|
+
#
|
994
|
+
# @!attribute [rw] config_type
|
995
|
+
# Type of a `Config`.
|
996
|
+
# @return [String]
|
997
|
+
#
|
998
|
+
# @!attribute [rw] dataflow_destination_region
|
999
|
+
# Region of a dataflow destination.
|
1000
|
+
# @return [String]
|
1001
|
+
#
|
1002
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/Destination AWS API Documentation
|
1003
|
+
#
|
1004
|
+
class Destination < Struct.new(
|
1005
|
+
:config_details,
|
1006
|
+
:config_id,
|
1007
|
+
:config_type,
|
1008
|
+
:dataflow_destination_region)
|
1009
|
+
SENSITIVE = []
|
1010
|
+
include Aws::Structure
|
1011
|
+
end
|
1012
|
+
|
904
1013
|
# Object that represents EIRP.
|
905
1014
|
#
|
906
1015
|
# @note When making an API call, you may pass Eirp
|
@@ -916,7 +1025,7 @@ module Aws::GroundStation
|
|
916
1025
|
# @return [String]
|
917
1026
|
#
|
918
1027
|
# @!attribute [rw] value
|
919
|
-
# Value of an EIRP.
|
1028
|
+
# Value of an EIRP. Valid values are between 20.0 to 50.0 dBW.
|
920
1029
|
# @return [Float]
|
921
1030
|
#
|
922
1031
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/Eirp AWS API Documentation
|
@@ -958,6 +1067,7 @@ module Aws::GroundStation
|
|
958
1067
|
# name: "String", # required
|
959
1068
|
# port: 1, # required
|
960
1069
|
# },
|
1070
|
+
# mtu: 1,
|
961
1071
|
# name: "SafeName",
|
962
1072
|
# status: "created", # accepts created, creating, deleted, deleting, failed
|
963
1073
|
# },
|
@@ -1000,7 +1110,8 @@ module Aws::GroundStation
|
|
1000
1110
|
# @return [String]
|
1001
1111
|
#
|
1002
1112
|
# @!attribute [rw] value
|
1003
|
-
# Frequency value.
|
1113
|
+
# Frequency value. Valid values are between 2200 to 2300 MHz and 7750
|
1114
|
+
# to 8400 MHz for downlink and 2025 to 2120 MHz for uplink.
|
1004
1115
|
# @return [Float]
|
1005
1116
|
#
|
1006
1117
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/Frequency AWS API Documentation
|
@@ -1027,7 +1138,17 @@ module Aws::GroundStation
|
|
1027
1138
|
# @return [String]
|
1028
1139
|
#
|
1029
1140
|
# @!attribute [rw] value
|
1030
|
-
# Frequency bandwidth value.
|
1141
|
+
# Frequency bandwidth value. AWS Ground Station currently has the
|
1142
|
+
# following bandwidth limitations:
|
1143
|
+
#
|
1144
|
+
# * For `AntennaDownlinkDemodDecodeconfig`, valid values are between
|
1145
|
+
# 125 kHz to 650 MHz.
|
1146
|
+
#
|
1147
|
+
# * For `AntennaDownlinkconfig`, valid values are between 10 kHz to 54
|
1148
|
+
# MHz.
|
1149
|
+
#
|
1150
|
+
# * For `AntennaUplinkConfig`, valid values are between 10 kHz to 54
|
1151
|
+
# MHz.
|
1031
1152
|
# @return [Float]
|
1032
1153
|
#
|
1033
1154
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/FrequencyBandwidth AWS API Documentation
|
@@ -1432,7 +1553,7 @@ module Aws::GroundStation
|
|
1432
1553
|
# next_token: "String",
|
1433
1554
|
# satellite_arn: "satelliteArn",
|
1434
1555
|
# start_time: Time.now, # required
|
1435
|
-
# status_list: ["AVAILABLE"], # required, accepts AVAILABLE, AWS_CANCELLED, CANCELLED, CANCELLING, COMPLETED, FAILED, FAILED_TO_SCHEDULE, PASS, POSTPASS, PREPASS, SCHEDULED, SCHEDULING
|
1556
|
+
# status_list: ["AVAILABLE"], # required, accepts AVAILABLE, AWS_CANCELLED, AWS_FAILED, CANCELLED, CANCELLING, COMPLETED, FAILED, FAILED_TO_SCHEDULE, PASS, POSTPASS, PREPASS, SCHEDULED, SCHEDULING
|
1436
1557
|
# }
|
1437
1558
|
#
|
1438
1559
|
# @!attribute [rw] end_time
|
@@ -1928,6 +2049,36 @@ module Aws::GroundStation
|
|
1928
2049
|
include Aws::Structure
|
1929
2050
|
end
|
1930
2051
|
|
2052
|
+
# Dataflow details for the source side.
|
2053
|
+
#
|
2054
|
+
# @!attribute [rw] config_details
|
2055
|
+
# Additional details for a `Config`, if type is dataflow endpoint or
|
2056
|
+
# antenna demod decode.
|
2057
|
+
# @return [Types::ConfigDetails]
|
2058
|
+
#
|
2059
|
+
# @!attribute [rw] config_id
|
2060
|
+
# UUID of a `Config`.
|
2061
|
+
# @return [String]
|
2062
|
+
#
|
2063
|
+
# @!attribute [rw] config_type
|
2064
|
+
# Type of a `Config`.
|
2065
|
+
# @return [String]
|
2066
|
+
#
|
2067
|
+
# @!attribute [rw] dataflow_source_region
|
2068
|
+
# Region of a dataflow source.
|
2069
|
+
# @return [String]
|
2070
|
+
#
|
2071
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/Source AWS API Documentation
|
2072
|
+
#
|
2073
|
+
class Source < Struct.new(
|
2074
|
+
:config_details,
|
2075
|
+
:config_id,
|
2076
|
+
:config_type,
|
2077
|
+
:dataflow_source_region)
|
2078
|
+
SENSITIVE = []
|
2079
|
+
include Aws::Structure
|
2080
|
+
end
|
2081
|
+
|
1931
2082
|
# Object that describes a spectral `Config`.
|
1932
2083
|
#
|
1933
2084
|
# @note When making an API call, you may pass SpectrumConfig
|
@@ -1946,15 +2097,28 @@ module Aws::GroundStation
|
|
1946
2097
|
# }
|
1947
2098
|
#
|
1948
2099
|
# @!attribute [rw] bandwidth
|
1949
|
-
# Bandwidth of a spectral `Config`.
|
2100
|
+
# Bandwidth of a spectral `Config`. AWS Ground Station currently has
|
2101
|
+
# the following bandwidth limitations:
|
2102
|
+
#
|
2103
|
+
# * For `AntennaDownlinkDemodDecodeconfig`, valid values are between
|
2104
|
+
# 125 kHz to 650 MHz.
|
2105
|
+
#
|
2106
|
+
# * For `AntennaDownlinkconfig` valid values are between 10 kHz to 54
|
2107
|
+
# MHz.
|
2108
|
+
#
|
2109
|
+
# * For `AntennaUplinkConfig`, valid values are between 10 kHz to 54
|
2110
|
+
# MHz.
|
1950
2111
|
# @return [Types::FrequencyBandwidth]
|
1951
2112
|
#
|
1952
2113
|
# @!attribute [rw] center_frequency
|
1953
|
-
# Center frequency of a spectral `Config`.
|
2114
|
+
# Center frequency of a spectral `Config`. Valid values are between
|
2115
|
+
# 2200 to 2300 MHz and 7750 to 8400 MHz for downlink and 2025 to 2120
|
2116
|
+
# MHz for uplink.
|
1954
2117
|
# @return [Types::Frequency]
|
1955
2118
|
#
|
1956
2119
|
# @!attribute [rw] polarization
|
1957
|
-
# Polarization of a spectral `Config`.
|
2120
|
+
# Polarization of a spectral `Config`. Capturing both `"RIGHT_HAND"`
|
2121
|
+
# and `"LEFT_HAND"` polarization requires two separate configs.
|
1958
2122
|
# @return [String]
|
1959
2123
|
#
|
1960
2124
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/SpectrumConfig AWS API Documentation
|
@@ -2098,6 +2262,7 @@ module Aws::GroundStation
|
|
2098
2262
|
# units: "dBW", # required, accepts dBW
|
2099
2263
|
# value: 1.0, # required
|
2100
2264
|
# },
|
2265
|
+
# transmit_disabled: false,
|
2101
2266
|
# },
|
2102
2267
|
# dataflow_endpoint_config: {
|
2103
2268
|
# dataflow_endpoint_name: "String", # required
|
@@ -2250,11 +2415,14 @@ module Aws::GroundStation
|
|
2250
2415
|
# }
|
2251
2416
|
#
|
2252
2417
|
# @!attribute [rw] center_frequency
|
2253
|
-
# Center frequency of an uplink spectral `Config`.
|
2418
|
+
# Center frequency of an uplink spectral `Config`. Valid values are
|
2419
|
+
# between 2025 to 2120 MHz.
|
2254
2420
|
# @return [Types::Frequency]
|
2255
2421
|
#
|
2256
2422
|
# @!attribute [rw] polarization
|
2257
|
-
# Polarization of an uplink spectral `Config`.
|
2423
|
+
# Polarization of an uplink spectral `Config`. Capturing both
|
2424
|
+
# `"RIGHT_HAND"` and `"LEFT_HAND"` polarization requires two separate
|
2425
|
+
# configs.
|
2258
2426
|
# @return [String]
|
2259
2427
|
#
|
2260
2428
|
# @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/UplinkSpectrumConfig AWS API Documentation
|
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.15.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: 2020-
|
11
|
+
date: 2020-10-15 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.109.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.109.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|