aws-sdk-groundstation 1.32.0 → 1.33.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e5b4ff66e5a28b560467b9adee19d8f3a52acb5defcab833f555ad5394cd2cfa
4
- data.tar.gz: b05059a21fd9770236adafa2df814c029050c9269c1befa07b6d898f5ac7b9f6
3
+ metadata.gz: 688b8ec5c35d18f73db549aaa2fb08400b3ba1a984fc4304cd9a6b5a3e6e3588
4
+ data.tar.gz: 890a5196e25d78344557ac6c067d0c693aa71d85ad0d3ce81e220ca8bbedbb78
5
5
  SHA512:
6
- metadata.gz: b7a103b39db4a017c9aeec8574b040a14ed091828d1cb0e24edae363f00cef19213f27b3023550517a1f17471068f100e885beca22327824b3ad524e431db95b
7
- data.tar.gz: 1f1e24fad8e5dfc27db4324363412f5dd6216db840363d7021f75c60e1bf9d98a76951d099273a8549559f7700560d24197ef7f413bef1f6e5493c02cfdfa0f0
6
+ metadata.gz: 2d15cd42e93ee1e76f0e25fa4cb09182a0d16a8dd8e0dad4943f0c1b8a90b755293312a2730893364a944498824049d38dd610c6f52887fa5ce72456d3fe98a2
7
+ data.tar.gz: e486dd4283bd794db67b169c88d4d46b7f2d845acc7c72db236fee100b8012fab7705f455bef88c91f444d41565fb6c2340f4c90810736b038051b6f78df8434
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.33.0 (2023-04-12)
5
+ ------------------
6
+
7
+ * Feature - AWS Ground Station Wideband DigIF GA Release
8
+
4
9
  1.32.0 (2023-01-31)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.32.0
1
+ 1.33.0
@@ -514,14 +514,17 @@ module Aws::GroundStation
514
514
  # `Config` must match a `DataflowEndpoint` in the same group.
515
515
  #
516
516
  # @option params [Integer] :contact_post_pass_duration_seconds
517
- # Amount of time, in seconds, after a contact ends for the contact to
518
- # remain in a `POSTPASS` state. A CloudWatch event is emitted when the
519
- # contact enters and exits the `POSTPASS` state.
517
+ # Amount of time, in seconds, after a contact ends that the Ground
518
+ # Station Dataflow Endpoint Group will be in a `POSTPASS` state. A
519
+ # Ground Station Dataflow Endpoint Group State Change event will be
520
+ # emitted when the Dataflow Endpoint Group enters and exits the
521
+ # `POSTPASS` state.
520
522
  #
521
523
  # @option params [Integer] :contact_pre_pass_duration_seconds
522
- # Amount of time, in seconds, prior to contact start for the contact to
523
- # remain in a `PREPASS` state. A CloudWatch event is emitted when the
524
- # contact enters and exits the `PREPASS` state.
524
+ # Amount of time, in seconds, before a contact starts that the Ground
525
+ # Station Dataflow Endpoint Group will be in a `PREPASS` state. A Ground
526
+ # Station Dataflow Endpoint Group State Change event will be emitted
527
+ # when the Dataflow Endpoint Group enters and exits the `PREPASS` state.
525
528
  #
526
529
  # @option params [required, Array<Types::EndpointDetails>] :endpoint_details
527
530
  # Endpoint details of each endpoint in the dataflow endpoint group.
@@ -571,6 +574,8 @@ module Aws::GroundStation
571
574
  # name: "SafeName",
572
575
  # status: "created", # accepts created, creating, deleted, deleting, failed
573
576
  # },
577
+ # health_reasons: ["NO_REGISTERED_AGENT"], # accepts NO_REGISTERED_AGENT, INVALID_IP_OWNERSHIP, NOT_AUTHORIZED_TO_CREATE_SLR, UNVERIFIED_IP_OWNERSHIP, INITIALIZING_DATAPLANE, DATAPLANE_FAILURE, HEALTHY
578
+ # health_status: "UNHEALTHY", # accepts UNHEALTHY, HEALTHY
574
579
  # security_details: {
575
580
  # role_arn: "RoleArn", # required
576
581
  # security_group_ids: ["String"], # required
@@ -935,6 +940,9 @@ module Aws::GroundStation
935
940
  # resp.dataflow_list[0].destination.config_details.endpoint_details.endpoint.mtu #=> Integer
936
941
  # resp.dataflow_list[0].destination.config_details.endpoint_details.endpoint.name #=> String
937
942
  # resp.dataflow_list[0].destination.config_details.endpoint_details.endpoint.status #=> String, one of "created", "creating", "deleted", "deleting", "failed"
943
+ # resp.dataflow_list[0].destination.config_details.endpoint_details.health_reasons #=> Array
944
+ # resp.dataflow_list[0].destination.config_details.endpoint_details.health_reasons[0] #=> String, one of "NO_REGISTERED_AGENT", "INVALID_IP_OWNERSHIP", "NOT_AUTHORIZED_TO_CREATE_SLR", "UNVERIFIED_IP_OWNERSHIP", "INITIALIZING_DATAPLANE", "DATAPLANE_FAILURE", "HEALTHY"
945
+ # resp.dataflow_list[0].destination.config_details.endpoint_details.health_status #=> String, one of "UNHEALTHY", "HEALTHY"
938
946
  # resp.dataflow_list[0].destination.config_details.endpoint_details.security_details.role_arn #=> String
939
947
  # resp.dataflow_list[0].destination.config_details.endpoint_details.security_details.security_group_ids #=> Array
940
948
  # resp.dataflow_list[0].destination.config_details.endpoint_details.security_details.security_group_ids[0] #=> String
@@ -962,6 +970,9 @@ module Aws::GroundStation
962
970
  # resp.dataflow_list[0].source.config_details.endpoint_details.endpoint.mtu #=> Integer
963
971
  # resp.dataflow_list[0].source.config_details.endpoint_details.endpoint.name #=> String
964
972
  # resp.dataflow_list[0].source.config_details.endpoint_details.endpoint.status #=> String, one of "created", "creating", "deleted", "deleting", "failed"
973
+ # resp.dataflow_list[0].source.config_details.endpoint_details.health_reasons #=> Array
974
+ # resp.dataflow_list[0].source.config_details.endpoint_details.health_reasons[0] #=> String, one of "NO_REGISTERED_AGENT", "INVALID_IP_OWNERSHIP", "NOT_AUTHORIZED_TO_CREATE_SLR", "UNVERIFIED_IP_OWNERSHIP", "INITIALIZING_DATAPLANE", "DATAPLANE_FAILURE", "HEALTHY"
975
+ # resp.dataflow_list[0].source.config_details.endpoint_details.health_status #=> String, one of "UNHEALTHY", "HEALTHY"
965
976
  # resp.dataflow_list[0].source.config_details.endpoint_details.security_details.role_arn #=> String
966
977
  # resp.dataflow_list[0].source.config_details.endpoint_details.security_details.security_group_ids #=> Array
967
978
  # resp.dataflow_list[0].source.config_details.endpoint_details.security_details.security_group_ids[0] #=> String
@@ -1054,6 +1065,10 @@ module Aws::GroundStation
1054
1065
  req.send_request(options)
1055
1066
  end
1056
1067
 
1068
+ # <note markdown="1"> For use by AWS Ground Station Agent and shouldn't be called directly.
1069
+ #
1070
+ # </note>
1071
+ #
1057
1072
  # Gets the latest configuration information for a registered agent.
1058
1073
  #
1059
1074
  # @option params [required, String] :agent_id
@@ -1196,6 +1211,9 @@ module Aws::GroundStation
1196
1211
  # resp.endpoints_details[0].endpoint.mtu #=> Integer
1197
1212
  # resp.endpoints_details[0].endpoint.name #=> String
1198
1213
  # resp.endpoints_details[0].endpoint.status #=> String, one of "created", "creating", "deleted", "deleting", "failed"
1214
+ # resp.endpoints_details[0].health_reasons #=> Array
1215
+ # resp.endpoints_details[0].health_reasons[0] #=> String, one of "NO_REGISTERED_AGENT", "INVALID_IP_OWNERSHIP", "NOT_AUTHORIZED_TO_CREATE_SLR", "UNVERIFIED_IP_OWNERSHIP", "INITIALIZING_DATAPLANE", "DATAPLANE_FAILURE", "HEALTHY"
1216
+ # resp.endpoints_details[0].health_status #=> String, one of "UNHEALTHY", "HEALTHY"
1199
1217
  # resp.endpoints_details[0].security_details.role_arn #=> String
1200
1218
  # resp.endpoints_details[0].security_details.security_group_ids #=> Array
1201
1219
  # resp.endpoints_details[0].security_details.security_group_ids[0] #=> String
@@ -1732,13 +1750,17 @@ module Aws::GroundStation
1732
1750
  req.send_request(options)
1733
1751
  end
1734
1752
 
1735
- # Registers a new agent with AWS Groundstation.
1753
+ # <note markdown="1"> For use by AWS Ground Station Agent and shouldn't be called directly.
1754
+ #
1755
+ # </note>
1756
+ #
1757
+ # Registers a new agent with AWS Ground Station.
1736
1758
  #
1737
1759
  # @option params [required, Types::AgentDetails] :agent_details
1738
1760
  # Detailed information about the agent being registered.
1739
1761
  #
1740
1762
  # @option params [required, Types::DiscoveryData] :discovery_data
1741
- # Data for associating and agent with the capabilities it is managing.
1763
+ # Data for associating an agent with the capabilities it is managing.
1742
1764
  #
1743
1765
  # @return [Types::RegisterAgentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1744
1766
  #
@@ -1748,16 +1770,17 @@ module Aws::GroundStation
1748
1770
  #
1749
1771
  # resp = client.register_agent({
1750
1772
  # agent_details: { # required
1773
+ # agent_cpu_cores: [1],
1751
1774
  # agent_version: "VersionString", # required
1752
1775
  # component_versions: [ # required
1753
1776
  # {
1754
- # component_type: "LAMINAR_FLOW", # required, accepts LAMINAR_FLOW, PRISM, DIGITIZER
1777
+ # component_type: "ComponentTypeString", # required
1755
1778
  # versions: ["VersionString"], # required
1756
1779
  # },
1757
1780
  # ],
1758
1781
  # instance_id: "InstanceId", # required
1759
1782
  # instance_type: "InstanceType", # required
1760
- # reserved_cpu_cores: [1], # required
1783
+ # reserved_cpu_cores: [1],
1761
1784
  # },
1762
1785
  # discovery_data: { # required
1763
1786
  # capability_arns: ["CapabilityArn"], # required
@@ -1883,6 +1906,10 @@ module Aws::GroundStation
1883
1906
  req.send_request(options)
1884
1907
  end
1885
1908
 
1909
+ # <note markdown="1"> For use by AWS Ground Station Agent and shouldn't be called directly.
1910
+ #
1911
+ # </note>
1912
+ #
1886
1913
  # Update the status of the agent.
1887
1914
  #
1888
1915
  # @option params [required, String] :agent_id
@@ -1916,7 +1943,7 @@ module Aws::GroundStation
1916
1943
  # bytes_received: 1,
1917
1944
  # bytes_sent: 1,
1918
1945
  # capability_arn: "CapabilityArn", # required
1919
- # component_type: "LAMINAR_FLOW", # required, accepts LAMINAR_FLOW, PRISM, DIGITIZER
1946
+ # component_type: "ComponentTypeString", # required
1920
1947
  # dataflow_id: "Uuid", # required
1921
1948
  # packets_dropped: 1,
1922
1949
  # status: "SUCCESS", # required, accepts SUCCESS, FAILED, ACTIVE, INACTIVE
@@ -2182,7 +2209,7 @@ module Aws::GroundStation
2182
2209
  params: params,
2183
2210
  config: config)
2184
2211
  context[:gem_name] = 'aws-sdk-groundstation'
2185
- context[:gem_version] = '1.32.0'
2212
+ context[:gem_version] = '1.33.0'
2186
2213
  Seahorse::Client::Request.new(handlers, context)
2187
2214
  end
2188
2215
 
@@ -14,6 +14,7 @@ module Aws::GroundStation
14
14
  include Seahorse::Model
15
15
 
16
16
  AWSRegion = Shapes::StringShape.new(name: 'AWSRegion')
17
+ AgentCpuCoresList = Shapes::ListShape.new(name: 'AgentCpuCoresList')
17
18
  AgentDetails = Shapes::StructureShape.new(name: 'AgentDetails')
18
19
  AgentStatus = Shapes::StringShape.new(name: 'AgentStatus')
19
20
  AggregateStatus = Shapes::StructureShape.new(name: 'AggregateStatus')
@@ -31,9 +32,12 @@ module Aws::GroundStation
31
32
  CancelContactRequest = Shapes::StructureShape.new(name: 'CancelContactRequest')
32
33
  CapabilityArn = Shapes::StringShape.new(name: 'CapabilityArn')
33
34
  CapabilityArnList = Shapes::ListShape.new(name: 'CapabilityArnList')
35
+ CapabilityHealth = Shapes::StringShape.new(name: 'CapabilityHealth')
36
+ CapabilityHealthReason = Shapes::StringShape.new(name: 'CapabilityHealthReason')
37
+ CapabilityHealthReasonList = Shapes::ListShape.new(name: 'CapabilityHealthReasonList')
34
38
  ComponentStatusData = Shapes::StructureShape.new(name: 'ComponentStatusData')
35
39
  ComponentStatusList = Shapes::ListShape.new(name: 'ComponentStatusList')
36
- ComponentType = Shapes::StringShape.new(name: 'ComponentType')
40
+ ComponentTypeString = Shapes::StringShape.new(name: 'ComponentTypeString')
37
41
  ComponentVersion = Shapes::StructureShape.new(name: 'ComponentVersion')
38
42
  ComponentVersionList = Shapes::ListShape.new(name: 'ComponentVersionList')
39
43
  ConfigArn = Shapes::StringShape.new(name: 'ConfigArn')
@@ -162,7 +166,6 @@ module Aws::GroundStation
162
166
  RegisterAgentRequest = Shapes::StructureShape.new(name: 'RegisterAgentRequest')
163
167
  RegisterAgentResponse = Shapes::StructureShape.new(name: 'RegisterAgentResponse')
164
168
  ReserveContactRequest = Shapes::StructureShape.new(name: 'ReserveContactRequest')
165
- ReservedCpuCoresList = Shapes::ListShape.new(name: 'ReservedCpuCoresList')
166
169
  ResourceLimitExceededException = Shapes::StructureShape.new(name: 'ResourceLimitExceededException')
167
170
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
168
171
  RoleArn = Shapes::StringShape.new(name: 'RoleArn')
@@ -214,11 +217,14 @@ module Aws::GroundStation
214
217
  noradSatelliteID = Shapes::IntegerShape.new(name: 'noradSatelliteID')
215
218
  satelliteArn = Shapes::StringShape.new(name: 'satelliteArn')
216
219
 
220
+ AgentCpuCoresList.member = Shapes::ShapeRef.new(shape: Integer)
221
+
222
+ AgentDetails.add_member(:agent_cpu_cores, Shapes::ShapeRef.new(shape: AgentCpuCoresList, location_name: "agentCpuCores"))
217
223
  AgentDetails.add_member(:agent_version, Shapes::ShapeRef.new(shape: VersionString, required: true, location_name: "agentVersion"))
218
224
  AgentDetails.add_member(:component_versions, Shapes::ShapeRef.new(shape: ComponentVersionList, required: true, location_name: "componentVersions"))
219
225
  AgentDetails.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "instanceId"))
220
226
  AgentDetails.add_member(:instance_type, Shapes::ShapeRef.new(shape: InstanceType, required: true, location_name: "instanceType"))
221
- AgentDetails.add_member(:reserved_cpu_cores, Shapes::ShapeRef.new(shape: ReservedCpuCoresList, required: true, location_name: "reservedCpuCores"))
227
+ AgentDetails.add_member(:reserved_cpu_cores, Shapes::ShapeRef.new(shape: AgentCpuCoresList, location_name: "reservedCpuCores"))
222
228
  AgentDetails.struct_class = Types::AgentDetails
223
229
 
224
230
  AggregateStatus.add_member(:signature_map, Shapes::ShapeRef.new(shape: SignatureMap, location_name: "signatureMap"))
@@ -253,10 +259,12 @@ module Aws::GroundStation
253
259
 
254
260
  CapabilityArnList.member = Shapes::ShapeRef.new(shape: CapabilityArn)
255
261
 
262
+ CapabilityHealthReasonList.member = Shapes::ShapeRef.new(shape: CapabilityHealthReason)
263
+
256
264
  ComponentStatusData.add_member(:bytes_received, Shapes::ShapeRef.new(shape: Long, location_name: "bytesReceived"))
257
265
  ComponentStatusData.add_member(:bytes_sent, Shapes::ShapeRef.new(shape: Long, location_name: "bytesSent"))
258
266
  ComponentStatusData.add_member(:capability_arn, Shapes::ShapeRef.new(shape: CapabilityArn, required: true, location_name: "capabilityArn"))
259
- ComponentStatusData.add_member(:component_type, Shapes::ShapeRef.new(shape: ComponentType, required: true, location_name: "componentType"))
267
+ ComponentStatusData.add_member(:component_type, Shapes::ShapeRef.new(shape: ComponentTypeString, required: true, location_name: "componentType"))
260
268
  ComponentStatusData.add_member(:dataflow_id, Shapes::ShapeRef.new(shape: Uuid, required: true, location_name: "dataflowId"))
261
269
  ComponentStatusData.add_member(:packets_dropped, Shapes::ShapeRef.new(shape: Long, location_name: "packetsDropped"))
262
270
  ComponentStatusData.add_member(:status, Shapes::ShapeRef.new(shape: AgentStatus, required: true, location_name: "status"))
@@ -264,7 +272,7 @@ module Aws::GroundStation
264
272
 
265
273
  ComponentStatusList.member = Shapes::ShapeRef.new(shape: ComponentStatusData)
266
274
 
267
- ComponentVersion.add_member(:component_type, Shapes::ShapeRef.new(shape: ComponentType, required: true, location_name: "componentType"))
275
+ ComponentVersion.add_member(:component_type, Shapes::ShapeRef.new(shape: ComponentTypeString, required: true, location_name: "componentType"))
268
276
  ComponentVersion.add_member(:versions, Shapes::ShapeRef.new(shape: VersionStringList, required: true, location_name: "versions"))
269
277
  ComponentVersion.struct_class = Types::ComponentVersion
270
278
 
@@ -475,6 +483,8 @@ module Aws::GroundStation
475
483
 
476
484
  EndpointDetails.add_member(:aws_ground_station_agent_endpoint, Shapes::ShapeRef.new(shape: AwsGroundStationAgentEndpoint, location_name: "awsGroundStationAgentEndpoint"))
477
485
  EndpointDetails.add_member(:endpoint, Shapes::ShapeRef.new(shape: DataflowEndpoint, location_name: "endpoint"))
486
+ EndpointDetails.add_member(:health_reasons, Shapes::ShapeRef.new(shape: CapabilityHealthReasonList, location_name: "healthReasons"))
487
+ EndpointDetails.add_member(:health_status, Shapes::ShapeRef.new(shape: CapabilityHealth, location_name: "healthStatus"))
478
488
  EndpointDetails.add_member(:security_details, Shapes::ShapeRef.new(shape: SecurityDetails, location_name: "securityDetails"))
479
489
  EndpointDetails.struct_class = Types::EndpointDetails
480
490
 
@@ -736,8 +746,6 @@ module Aws::GroundStation
736
746
  ReserveContactRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
737
747
  ReserveContactRequest.struct_class = Types::ReserveContactRequest
738
748
 
739
- ReservedCpuCoresList.member = Shapes::ShapeRef.new(shape: Integer)
740
-
741
749
  ResourceLimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
742
750
  ResourceLimitExceededException.add_member(:parameter_name, Shapes::ShapeRef.new(shape: String, location_name: "parameterName"))
743
751
  ResourceLimitExceededException.struct_class = Types::ResourceLimitExceededException
@@ -50,9 +50,6 @@ module Aws::GroundStation
50
50
 
51
51
  def initialize(options = {})
52
52
  self[:region] = options[:region]
53
- if self[:region].nil?
54
- raise ArgumentError, "Missing required EndpointParameter: :region"
55
- end
56
53
  self[:use_dual_stack] = options[:use_dual_stack]
57
54
  self[:use_dual_stack] = false if self[:use_dual_stack].nil?
58
55
  if self[:use_dual_stack].nil?
@@ -14,36 +14,39 @@ module Aws::GroundStation
14
14
  use_dual_stack = parameters.use_dual_stack
15
15
  use_fips = parameters.use_fips
16
16
  endpoint = parameters.endpoint
17
- if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
- if Aws::Endpoints::Matchers.set?(endpoint)
19
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
- raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
- end
22
- if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
- raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
- end
25
- return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
- end
27
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
- return Aws::Endpoints::Endpoint.new(url: "https://groundstation-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
- end
31
- raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
- end
17
+ if Aws::Endpoints::Matchers.set?(endpoint)
33
18
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
- return Aws::Endpoints::Endpoint.new(url: "https://groundstation-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
- end
37
- raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
19
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
38
20
  end
39
21
  if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
- return Aws::Endpoints::Endpoint.new(url: "https://groundstation.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
22
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
23
+ end
24
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
25
+ end
26
+ if Aws::Endpoints::Matchers.set?(region)
27
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
28
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
29
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
30
+ return Aws::Endpoints::Endpoint.new(url: "https://groundstation-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
31
+ end
32
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
+ end
34
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
36
+ return Aws::Endpoints::Endpoint.new(url: "https://groundstation-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
+ end
38
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
39
+ end
40
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
41
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
42
+ return Aws::Endpoints::Endpoint.new(url: "https://groundstation.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
43
+ end
44
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
42
45
  end
43
- raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
46
+ return Aws::Endpoints::Endpoint.new(url: "https://groundstation.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
44
47
  end
45
- return Aws::Endpoints::Endpoint.new(url: "https://groundstation.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
46
48
  end
49
+ raise ArgumentError, "Invalid Configuration: Missing Region"
47
50
  raise ArgumentError, 'No endpoint could be resolved'
48
51
 
49
52
  end
@@ -12,6 +12,10 @@ module Aws::GroundStation
12
12
 
13
13
  # Detailed information about the agent.
14
14
  #
15
+ # @!attribute [rw] agent_cpu_cores
16
+ # List of CPU cores reserved for the agent.
17
+ # @return [Array<Integer>]
18
+ #
15
19
  # @!attribute [rw] agent_version
16
20
  # Current agent version.
17
21
  # @return [String]
@@ -29,12 +33,18 @@ module Aws::GroundStation
29
33
  # @return [String]
30
34
  #
31
35
  # @!attribute [rw] reserved_cpu_cores
32
- # Number of Cpu cores reserved for agent.
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.
33
42
  # @return [Array<Integer>]
34
43
  #
35
44
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/AgentDetails AWS API Documentation
36
45
  #
37
46
  class AgentDetails < Struct.new(
47
+ :agent_cpu_cores,
38
48
  :agent_version,
39
49
  :component_versions,
40
50
  :instance_id,
@@ -535,15 +545,19 @@ module Aws::GroundStation
535
545
  end
536
546
 
537
547
  # @!attribute [rw] contact_post_pass_duration_seconds
538
- # Amount of time, in seconds, after a contact ends for the contact to
539
- # remain in a `POSTPASS` state. A CloudWatch event is emitted when the
540
- # contact enters and exits the `POSTPASS` state.
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.
541
553
  # @return [Integer]
542
554
  #
543
555
  # @!attribute [rw] contact_pre_pass_duration_seconds
544
- # Amount of time, in seconds, prior to contact start for the contact
545
- # to remain in a `PREPASS` state. A CloudWatch event is emitted when
546
- # the contact enters and exits the `PREPASS` state.
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.
547
561
  # @return [Integer]
548
562
  #
549
563
  # @!attribute [rw] endpoint_details
@@ -1154,6 +1168,16 @@ module Aws::GroundStation
1154
1168
  # A dataflow endpoint.
1155
1169
  # @return [Types::DataflowEndpoint]
1156
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
+ #
1157
1181
  # @!attribute [rw] security_details
1158
1182
  # Endpoint security details including a list of subnets, a list of
1159
1183
  # security groups and a role to connect streams to instances.
@@ -1164,6 +1188,8 @@ module Aws::GroundStation
1164
1188
  class EndpointDetails < Struct.new(
1165
1189
  :aws_ground_station_agent_endpoint,
1166
1190
  :endpoint,
1191
+ :health_reasons,
1192
+ :health_status,
1167
1193
  :security_details)
1168
1194
  SENSITIVE = []
1169
1195
  include Aws::Structure
@@ -1486,15 +1512,19 @@ module Aws::GroundStation
1486
1512
  end
1487
1513
 
1488
1514
  # @!attribute [rw] contact_post_pass_duration_seconds
1489
- # Amount of time, in seconds, after a contact ends for the contact to
1490
- # remain in a `POSTPASS` state. A CloudWatch event is emitted when the
1491
- # contact enters and exits the `POSTPASS` state.
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.
1492
1520
  # @return [Integer]
1493
1521
  #
1494
1522
  # @!attribute [rw] contact_pre_pass_duration_seconds
1495
- # Amount of time, in seconds, prior to contact start for the contact
1496
- # to remain in a `PREPASS` state. A CloudWatch event is emitted when
1497
- # the contact enters and exits the `PREPASS` state.
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.
1498
1528
  # @return [Integer]
1499
1529
  #
1500
1530
  # @!attribute [rw] dataflow_endpoint_group_arn
@@ -2239,7 +2269,7 @@ module Aws::GroundStation
2239
2269
  # @return [Types::AgentDetails]
2240
2270
  #
2241
2271
  # @!attribute [rw] discovery_data
2242
- # Data for associating and agent with the capabilities it is managing.
2272
+ # Data for associating an agent with the capabilities it is managing.
2243
2273
  # @return [Types::DiscoveryData]
2244
2274
  #
2245
2275
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/RegisterAgentRequest AWS API Documentation
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-groundstation/customizations'
53
53
  # @!group service
54
54
  module Aws::GroundStation
55
55
 
56
- GEM_VERSION = '1.32.0'
56
+ GEM_VERSION = '1.33.0'
57
57
 
58
58
  end
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.32.0
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-01-31 00:00:00.000000000 Z
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