aws-sdk-groundstation 1.29.0 → 1.30.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 249b713bc7971a443e010439c89d67791aefbecaad5507fd5ef44bdcf1db267a
4
- data.tar.gz: 8517de08ffa7bd876519d9fffbb63530ccf47bfa15f0404282e9a31d47f0a5cb
3
+ metadata.gz: 7f28fef1ccf14310628814ae5baffbf87cae0db3c3e80625de93ada955f28632
4
+ data.tar.gz: b852252cf13a8294976ffde486f776a6b82ada0dd71f74709d6880d055f84fad
5
5
  SHA512:
6
- metadata.gz: c805ded350c3b7f76ace6124eaf7f6ab07c8e88f58aefb7f2e219510cf82666d864d4b4964fac7dd2e9cb8ee30ac3fcd62e77e80c107a337628292e7e04f1ea3
7
- data.tar.gz: d85e2ddaa7a55f466546f7d4af844b7aff03b2d524a79655b895f96ce331baf0b7d2c9b182371abf91031486c816c5f6606a735eaa91c03ed50fdf0946679aa0
6
+ metadata.gz: 6559ec0e35ed7faba690bb2d66e2b62fc02aeb110bda03c7ec0ac750b564e874e242cd25c1b809e9f77c9c685412c87f250d62fc4114b379bc859b032a124146
7
+ data.tar.gz: e8c93ee7c8928a08eac4d3ad6d8d970c067d3afe232d8f44be11065363c09bc305b7307737a92d6b8a0bb1bae11875349b3b991f453b6287dae120cee2bbd2af
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.30.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
4
11
  1.29.0 (2022-11-09)
5
12
  ------------------
6
13
 
@@ -155,4 +162,4 @@ Unreleased Changes
155
162
  1.0.0 (2019-05-28)
156
163
  ------------------
157
164
 
158
- * Feature - Initial release of `aws-sdk-groundstation`.
165
+ * Feature - Initial release of `aws-sdk-groundstation`.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.29.0
1
+ 1.30.0
@@ -1950,7 +1950,7 @@ module Aws::GroundStation
1950
1950
  params: params,
1951
1951
  config: config)
1952
1952
  context[:gem_name] = 'aws-sdk-groundstation'
1953
- context[:gem_version] = '1.29.0'
1953
+ context[:gem_version] = '1.30.0'
1954
1954
  Seahorse::Client::Request.new(handlers, context)
1955
1955
  end
1956
1956
 
@@ -9,104 +9,43 @@
9
9
 
10
10
  module Aws::GroundStation
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(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
33
+ 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"
38
+ end
39
+ 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: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://groundstation.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL2dyb3VuZHN0YXRpb24tZmlwcy57UmVnaW9u
77
- fS57UGFydGl0aW9uUmVzdWx0I2R1YWxTdGFja0Ruc1N1ZmZpeH0iLCJwcm9w
78
- ZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19
79
- LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBhbmQgRHVhbFN0YWNr
80
- IGFyZSBlbmFibGVkLCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3Vw
81
- cG9ydCBvbmUgb3IgYm90aCIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRp
82
- b25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJV
83
- c2VGSVBTIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29u
84
- ZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUs
85
- eyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1
86
- bHQifSwic3VwcG9ydHNGSVBTIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVz
87
- IjpbeyJjb25kaXRpb25zIjpbXSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3si
88
- Y29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vZ3Jv
89
- dW5kc3RhdGlvbi1maXBzLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5z
90
- U3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUi
91
- OiJlbmRwb2ludCJ9XX1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJ
92
- UFMgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3Vw
93
- cG9ydCBGSVBTIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7
94
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
95
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
96
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
97
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
98
- In0sInN1cHBvcnRzRHVhbFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1
99
- bGVzIjpbeyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0
100
- cHM6Ly9ncm91bmRzdGF0aW9uLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQj
101
- ZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJz
102
- Ijp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwi
103
- ZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRp
104
- b24gZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3Ii
105
- fV19LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBz
106
- Oi8vZ3JvdW5kc3RhdGlvbi57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ru
107
- c1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBl
108
- IjoiZW5kcG9pbnQifV19XX0=
109
-
110
- JSON
111
50
  end
112
51
  end
@@ -27,23 +27,6 @@ module Aws::GroundStation
27
27
  # Information about how AWS Ground Station should configure an antenna
28
28
  # for downlink during a contact.
29
29
  #
30
- # @note When making an API call, you may pass AntennaDownlinkConfig
31
- # data as a hash:
32
- #
33
- # {
34
- # spectrum_config: { # required
35
- # bandwidth: { # required
36
- # units: "GHz", # required, accepts GHz, MHz, kHz
37
- # value: 1.0, # required
38
- # },
39
- # center_frequency: { # required
40
- # units: "GHz", # required, accepts GHz, MHz, kHz
41
- # value: 1.0, # required
42
- # },
43
- # polarization: "LEFT_HAND", # accepts LEFT_HAND, NONE, RIGHT_HAND
44
- # },
45
- # }
46
- #
47
30
  # @!attribute [rw] spectrum_config
48
31
  # Object that describes a spectral `Config`.
49
32
  # @return [Types::SpectrumConfig]
@@ -59,29 +42,6 @@ module Aws::GroundStation
59
42
  # Information about how AWS Ground Station should configure an antenna
60
43
  # for downlink demod decode during a contact.
61
44
  #
62
- # @note When making an API call, you may pass AntennaDownlinkDemodDecodeConfig
63
- # data as a hash:
64
- #
65
- # {
66
- # decode_config: { # required
67
- # unvalidated_json: "JsonString", # required
68
- # },
69
- # demodulation_config: { # required
70
- # unvalidated_json: "JsonString", # required
71
- # },
72
- # spectrum_config: { # required
73
- # bandwidth: { # required
74
- # units: "GHz", # required, accepts GHz, MHz, kHz
75
- # value: 1.0, # required
76
- # },
77
- # center_frequency: { # required
78
- # units: "GHz", # required, accepts GHz, MHz, kHz
79
- # value: 1.0, # required
80
- # },
81
- # polarization: "LEFT_HAND", # accepts LEFT_HAND, NONE, RIGHT_HAND
82
- # },
83
- # }
84
- #
85
45
  # @!attribute [rw] decode_config
86
46
  # Information about the decode `Config`.
87
47
  # @return [Types::DecodeConfig]
@@ -106,24 +66,6 @@ module Aws::GroundStation
106
66
 
107
67
  # Information about the uplink `Config` of an antenna.
108
68
  #
109
- # @note When making an API call, you may pass AntennaUplinkConfig
110
- # data as a hash:
111
- #
112
- # {
113
- # spectrum_config: { # required
114
- # center_frequency: { # required
115
- # units: "GHz", # required, accepts GHz, MHz, kHz
116
- # value: 1.0, # required
117
- # },
118
- # polarization: "LEFT_HAND", # accepts LEFT_HAND, NONE, RIGHT_HAND
119
- # },
120
- # target_eirp: { # required
121
- # units: "dBW", # required, accepts dBW
122
- # value: 1.0, # required
123
- # },
124
- # transmit_disabled: false,
125
- # }
126
- #
127
69
  # @!attribute [rw] spectrum_config
128
70
  # Information about the uplink spectral `Config`.
129
71
  # @return [Types::UplinkSpectrumConfig]
@@ -146,13 +88,6 @@ module Aws::GroundStation
146
88
  include Aws::Structure
147
89
  end
148
90
 
149
- # @note When making an API call, you may pass CancelContactRequest
150
- # data as a hash:
151
- #
152
- # {
153
- # contact_id: "Uuid", # required
154
- # }
155
- #
156
91
  # @!attribute [rw] contact_id
157
92
  # UUID of a contact.
158
93
  # @return [String]
@@ -406,80 +341,6 @@ module Aws::GroundStation
406
341
  include Aws::Structure
407
342
  end
408
343
 
409
- # @note When making an API call, you may pass CreateConfigRequest
410
- # data as a hash:
411
- #
412
- # {
413
- # config_data: { # required
414
- # antenna_downlink_config: {
415
- # spectrum_config: { # required
416
- # bandwidth: { # required
417
- # units: "GHz", # required, accepts GHz, MHz, kHz
418
- # value: 1.0, # required
419
- # },
420
- # center_frequency: { # required
421
- # units: "GHz", # required, accepts GHz, MHz, kHz
422
- # value: 1.0, # required
423
- # },
424
- # polarization: "LEFT_HAND", # accepts LEFT_HAND, NONE, RIGHT_HAND
425
- # },
426
- # },
427
- # antenna_downlink_demod_decode_config: {
428
- # decode_config: { # required
429
- # unvalidated_json: "JsonString", # required
430
- # },
431
- # demodulation_config: { # required
432
- # unvalidated_json: "JsonString", # required
433
- # },
434
- # spectrum_config: { # required
435
- # bandwidth: { # required
436
- # units: "GHz", # required, accepts GHz, MHz, kHz
437
- # value: 1.0, # required
438
- # },
439
- # center_frequency: { # required
440
- # units: "GHz", # required, accepts GHz, MHz, kHz
441
- # value: 1.0, # required
442
- # },
443
- # polarization: "LEFT_HAND", # accepts LEFT_HAND, NONE, RIGHT_HAND
444
- # },
445
- # },
446
- # antenna_uplink_config: {
447
- # spectrum_config: { # required
448
- # center_frequency: { # required
449
- # units: "GHz", # required, accepts GHz, MHz, kHz
450
- # value: 1.0, # required
451
- # },
452
- # polarization: "LEFT_HAND", # accepts LEFT_HAND, NONE, RIGHT_HAND
453
- # },
454
- # target_eirp: { # required
455
- # units: "dBW", # required, accepts dBW
456
- # value: 1.0, # required
457
- # },
458
- # transmit_disabled: false,
459
- # },
460
- # dataflow_endpoint_config: {
461
- # dataflow_endpoint_name: "String", # required
462
- # dataflow_endpoint_region: "String",
463
- # },
464
- # s3_recording_config: {
465
- # bucket_arn: "BucketArn", # required
466
- # prefix: "S3KeyPrefix",
467
- # role_arn: "RoleArn", # required
468
- # },
469
- # tracking_config: {
470
- # autotrack: "PREFERRED", # required, accepts PREFERRED, REMOVED, REQUIRED
471
- # },
472
- # uplink_echo_config: {
473
- # antenna_uplink_config_arn: "ConfigArn", # required
474
- # enabled: false, # required
475
- # },
476
- # },
477
- # name: "SafeName", # required
478
- # tags: {
479
- # "String" => "String",
480
- # },
481
- # }
482
- #
483
344
  # @!attribute [rw] config_data
484
345
  # Parameters of a `Config`.
485
346
  # @return [Types::ConfigTypeData]
@@ -502,33 +363,6 @@ module Aws::GroundStation
502
363
  include Aws::Structure
503
364
  end
504
365
 
505
- # @note When making an API call, you may pass CreateDataflowEndpointGroupRequest
506
- # data as a hash:
507
- #
508
- # {
509
- # endpoint_details: [ # required
510
- # {
511
- # endpoint: {
512
- # address: {
513
- # name: "String", # required
514
- # port: 1, # required
515
- # },
516
- # mtu: 1,
517
- # name: "SafeName",
518
- # status: "created", # accepts created, creating, deleted, deleting, failed
519
- # },
520
- # security_details: {
521
- # role_arn: "RoleArn", # required
522
- # security_group_ids: ["String"], # required
523
- # subnet_ids: ["String"], # required
524
- # },
525
- # },
526
- # ],
527
- # tags: {
528
- # "String" => "String",
529
- # },
530
- # }
531
- #
532
366
  # @!attribute [rw] endpoint_details
533
367
  # Endpoint details of each endpoint in the dataflow endpoint group.
534
368
  # @return [Array<Types::EndpointDetails>]
@@ -546,48 +380,6 @@ module Aws::GroundStation
546
380
  include Aws::Structure
547
381
  end
548
382
 
549
- # @note When making an API call, you may pass CreateEphemerisRequest
550
- # data as a hash:
551
- #
552
- # {
553
- # enabled: false,
554
- # ephemeris: {
555
- # oem: {
556
- # oem_data: "UnboundedString",
557
- # s3_object: {
558
- # bucket: "S3BucketName",
559
- # key: "S3ObjectKey",
560
- # version: "S3VersionId",
561
- # },
562
- # },
563
- # tle: {
564
- # s3_object: {
565
- # bucket: "S3BucketName",
566
- # key: "S3ObjectKey",
567
- # version: "S3VersionId",
568
- # },
569
- # tle_data: [
570
- # {
571
- # tle_line_1: "TleLineOne", # required
572
- # tle_line_2: "TleLineTwo", # required
573
- # valid_time_range: { # required
574
- # end_time: Time.now, # required
575
- # start_time: Time.now, # required
576
- # },
577
- # },
578
- # ],
579
- # },
580
- # },
581
- # expiration_time: Time.now,
582
- # kms_key_arn: "KeyArn",
583
- # name: "SafeName", # required
584
- # priority: 1,
585
- # satellite_id: "Uuid", # required
586
- # tags: {
587
- # "String" => "String",
588
- # },
589
- # }
590
- #
591
383
  # @!attribute [rw] enabled
592
384
  # Whether to set the ephemeris status to `ENABLED` after validation.
593
385
  #
@@ -647,23 +439,6 @@ module Aws::GroundStation
647
439
  include Aws::Structure
648
440
  end
649
441
 
650
- # @note When making an API call, you may pass CreateMissionProfileRequest
651
- # data as a hash:
652
- #
653
- # {
654
- # contact_post_pass_duration_seconds: 1,
655
- # contact_pre_pass_duration_seconds: 1,
656
- # dataflow_edges: [ # required
657
- # ["ConfigArn"],
658
- # ],
659
- # minimum_viable_contact_duration_seconds: 1, # required
660
- # name: "SafeName", # required
661
- # tags: {
662
- # "String" => "String",
663
- # },
664
- # tracking_config_arn: "ConfigArn", # required
665
- # }
666
- #
667
442
  # @!attribute [rw] contact_post_pass_duration_seconds
668
443
  # Amount of time after a contact ends that you’d like to receive a
669
444
  # CloudWatch event indicating the pass has finished.
@@ -737,19 +512,6 @@ module Aws::GroundStation
737
512
 
738
513
  # Information about a dataflow endpoint.
739
514
  #
740
- # @note When making an API call, you may pass DataflowEndpoint
741
- # data as a hash:
742
- #
743
- # {
744
- # address: {
745
- # name: "String", # required
746
- # port: 1, # required
747
- # },
748
- # mtu: 1,
749
- # name: "SafeName",
750
- # status: "created", # accepts created, creating, deleted, deleting, failed
751
- # }
752
- #
753
515
  # @!attribute [rw] address
754
516
  # Socket address of a dataflow endpoint.
755
517
  # @return [Types::SocketAddress]
@@ -780,14 +542,6 @@ module Aws::GroundStation
780
542
 
781
543
  # Information about the dataflow endpoint `Config`.
782
544
  #
783
- # @note When making an API call, you may pass DataflowEndpointConfig
784
- # data as a hash:
785
- #
786
- # {
787
- # dataflow_endpoint_name: "String", # required
788
- # dataflow_endpoint_region: "String",
789
- # }
790
- #
791
545
  # @!attribute [rw] dataflow_endpoint_name
792
546
  # Name of a dataflow endpoint.
793
547
  # @return [String]
@@ -838,13 +592,6 @@ module Aws::GroundStation
838
592
 
839
593
  # Information about the decode `Config`.
840
594
  #
841
- # @note When making an API call, you may pass DecodeConfig
842
- # data as a hash:
843
- #
844
- # {
845
- # unvalidated_json: "JsonString", # required
846
- # }
847
- #
848
595
  # @!attribute [rw] unvalidated_json
849
596
  # Unvalidated JSON of a decode `Config`.
850
597
  # @return [String]
@@ -857,14 +604,6 @@ module Aws::GroundStation
857
604
  include Aws::Structure
858
605
  end
859
606
 
860
- # @note When making an API call, you may pass DeleteConfigRequest
861
- # data as a hash:
862
- #
863
- # {
864
- # config_id: "Uuid", # required
865
- # config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, antenna-uplink, dataflow-endpoint, tracking, uplink-echo, s3-recording
866
- # }
867
- #
868
607
  # @!attribute [rw] config_id
869
608
  # UUID of a `Config`.
870
609
  # @return [String]
@@ -882,13 +621,6 @@ module Aws::GroundStation
882
621
  include Aws::Structure
883
622
  end
884
623
 
885
- # @note When making an API call, you may pass DeleteDataflowEndpointGroupRequest
886
- # data as a hash:
887
- #
888
- # {
889
- # dataflow_endpoint_group_id: "Uuid", # required
890
- # }
891
- #
892
624
  # @!attribute [rw] dataflow_endpoint_group_id
893
625
  # UUID of a dataflow endpoint group.
894
626
  # @return [String]
@@ -901,13 +633,6 @@ module Aws::GroundStation
901
633
  include Aws::Structure
902
634
  end
903
635
 
904
- # @note When making an API call, you may pass DeleteEphemerisRequest
905
- # data as a hash:
906
- #
907
- # {
908
- # ephemeris_id: "Uuid", # required
909
- # }
910
- #
911
636
  # @!attribute [rw] ephemeris_id
912
637
  # The AWS Ground Station ephemeris ID.
913
638
  # @return [String]
@@ -920,13 +645,6 @@ module Aws::GroundStation
920
645
  include Aws::Structure
921
646
  end
922
647
 
923
- # @note When making an API call, you may pass DeleteMissionProfileRequest
924
- # data as a hash:
925
- #
926
- # {
927
- # mission_profile_id: "Uuid", # required
928
- # }
929
- #
930
648
  # @!attribute [rw] mission_profile_id
931
649
  # UUID of a mission profile.
932
650
  # @return [String]
@@ -941,13 +659,6 @@ module Aws::GroundStation
941
659
 
942
660
  # Information about the demodulation `Config`.
943
661
  #
944
- # @note When making an API call, you may pass DemodulationConfig
945
- # data as a hash:
946
- #
947
- # {
948
- # unvalidated_json: "JsonString", # required
949
- # }
950
- #
951
662
  # @!attribute [rw] unvalidated_json
952
663
  # Unvalidated JSON of a demodulation `Config`.
953
664
  # @return [String]
@@ -977,13 +688,6 @@ module Aws::GroundStation
977
688
  include Aws::Structure
978
689
  end
979
690
 
980
- # @note When making an API call, you may pass DescribeContactRequest
981
- # data as a hash:
982
- #
983
- # {
984
- # contact_id: "Uuid", # required
985
- # }
986
- #
987
691
  # @!attribute [rw] contact_id
988
692
  # UUID of a contact.
989
693
  # @return [String]
@@ -1076,13 +780,6 @@ module Aws::GroundStation
1076
780
  include Aws::Structure
1077
781
  end
1078
782
 
1079
- # @note When making an API call, you may pass DescribeEphemerisRequest
1080
- # data as a hash:
1081
- #
1082
- # {
1083
- # ephemeris_id: "Uuid", # required
1084
- # }
1085
- #
1086
783
  # @!attribute [rw] ephemeris_id
1087
784
  # The AWS Ground Station ephemeris ID.
1088
785
  # @return [String]
@@ -1192,14 +889,6 @@ module Aws::GroundStation
1192
889
 
1193
890
  # Object that represents EIRP.
1194
891
  #
1195
- # @note When making an API call, you may pass Eirp
1196
- # data as a hash:
1197
- #
1198
- # {
1199
- # units: "dBW", # required, accepts dBW
1200
- # value: 1.0, # required
1201
- # }
1202
- #
1203
892
  # @!attribute [rw] units
1204
893
  # Units of an EIRP.
1205
894
  # @return [String]
@@ -1238,26 +927,6 @@ module Aws::GroundStation
1238
927
 
1239
928
  # Information about the endpoint details.
1240
929
  #
1241
- # @note When making an API call, you may pass EndpointDetails
1242
- # data as a hash:
1243
- #
1244
- # {
1245
- # endpoint: {
1246
- # address: {
1247
- # name: "String", # required
1248
- # port: 1, # required
1249
- # },
1250
- # mtu: 1,
1251
- # name: "SafeName",
1252
- # status: "created", # accepts created, creating, deleted, deleting, failed
1253
- # },
1254
- # security_details: {
1255
- # role_arn: "RoleArn", # required
1256
- # security_group_ids: ["String"], # required
1257
- # subnet_ids: ["String"], # required
1258
- # },
1259
- # }
1260
- #
1261
930
  # @!attribute [rw] endpoint
1262
931
  # A dataflow endpoint.
1263
932
  # @return [Types::DataflowEndpoint]
@@ -1450,14 +1119,6 @@ module Aws::GroundStation
1450
1119
 
1451
1120
  # Object that describes the frequency.
1452
1121
  #
1453
- # @note When making an API call, you may pass Frequency
1454
- # data as a hash:
1455
- #
1456
- # {
1457
- # units: "GHz", # required, accepts GHz, MHz, kHz
1458
- # value: 1.0, # required
1459
- # }
1460
- #
1461
1122
  # @!attribute [rw] units
1462
1123
  # Frequency units.
1463
1124
  # @return [String]
@@ -1478,14 +1139,6 @@ module Aws::GroundStation
1478
1139
 
1479
1140
  # Object that describes the frequency bandwidth.
1480
1141
  #
1481
- # @note When making an API call, you may pass FrequencyBandwidth
1482
- # data as a hash:
1483
- #
1484
- # {
1485
- # units: "GHz", # required, accepts GHz, MHz, kHz
1486
- # value: 1.0, # required
1487
- # }
1488
- #
1489
1142
  # @!attribute [rw] units
1490
1143
  # Frequency bandwidth units.
1491
1144
  # @return [String]
@@ -1513,14 +1166,6 @@ module Aws::GroundStation
1513
1166
  include Aws::Structure
1514
1167
  end
1515
1168
 
1516
- # @note When making an API call, you may pass GetConfigRequest
1517
- # data as a hash:
1518
- #
1519
- # {
1520
- # config_id: "Uuid", # required
1521
- # config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, antenna-uplink, dataflow-endpoint, tracking, uplink-echo, s3-recording
1522
- # }
1523
- #
1524
1169
  # @!attribute [rw] config_id
1525
1170
  # UUID of a `Config`.
1526
1171
  # @return [String]
@@ -1575,13 +1220,6 @@ module Aws::GroundStation
1575
1220
  include Aws::Structure
1576
1221
  end
1577
1222
 
1578
- # @note When making an API call, you may pass GetDataflowEndpointGroupRequest
1579
- # data as a hash:
1580
- #
1581
- # {
1582
- # dataflow_endpoint_group_id: "Uuid", # required
1583
- # }
1584
- #
1585
1223
  # @!attribute [rw] dataflow_endpoint_group_id
1586
1224
  # UUID of a dataflow endpoint group.
1587
1225
  # @return [String]
@@ -1621,14 +1259,6 @@ module Aws::GroundStation
1621
1259
  include Aws::Structure
1622
1260
  end
1623
1261
 
1624
- # @note When making an API call, you may pass GetMinuteUsageRequest
1625
- # data as a hash:
1626
- #
1627
- # {
1628
- # month: 1, # required
1629
- # year: 1, # required
1630
- # }
1631
- #
1632
1262
  # @!attribute [rw] month
1633
1263
  # The month being requested, with a value of 1-12.
1634
1264
  # @return [Integer]
@@ -1683,13 +1313,6 @@ module Aws::GroundStation
1683
1313
  include Aws::Structure
1684
1314
  end
1685
1315
 
1686
- # @note When making an API call, you may pass GetMissionProfileRequest
1687
- # data as a hash:
1688
- #
1689
- # {
1690
- # mission_profile_id: "Uuid", # required
1691
- # }
1692
- #
1693
1316
  # @!attribute [rw] mission_profile_id
1694
1317
  # UUID of a mission profile.
1695
1318
  # @return [String]
@@ -1764,13 +1387,6 @@ module Aws::GroundStation
1764
1387
  include Aws::Structure
1765
1388
  end
1766
1389
 
1767
- # @note When making an API call, you may pass GetSatelliteRequest
1768
- # data as a hash:
1769
- #
1770
- # {
1771
- # satellite_id: "Uuid", # required
1772
- # }
1773
- #
1774
1390
  # @!attribute [rw] satellite_id
1775
1391
  # UUID of a satellite.
1776
1392
  # @return [String]
@@ -1857,14 +1473,6 @@ module Aws::GroundStation
1857
1473
  include Aws::Structure
1858
1474
  end
1859
1475
 
1860
- # @note When making an API call, you may pass ListConfigsRequest
1861
- # data as a hash:
1862
- #
1863
- # {
1864
- # max_results: 1,
1865
- # next_token: "PaginationToken",
1866
- # }
1867
- #
1868
1476
  # @!attribute [rw] max_results
1869
1477
  # Maximum number of `Configs` returned.
1870
1478
  # @return [Integer]
@@ -1901,20 +1509,6 @@ module Aws::GroundStation
1901
1509
  include Aws::Structure
1902
1510
  end
1903
1511
 
1904
- # @note When making an API call, you may pass ListContactsRequest
1905
- # data as a hash:
1906
- #
1907
- # {
1908
- # end_time: Time.now, # required
1909
- # ground_station: "GroundStationName",
1910
- # max_results: 1,
1911
- # mission_profile_arn: "MissionProfileArn",
1912
- # next_token: "PaginationToken",
1913
- # satellite_arn: "satelliteArn",
1914
- # start_time: Time.now, # required
1915
- # status_list: ["AVAILABLE"], # required, accepts AVAILABLE, AWS_CANCELLED, AWS_FAILED, CANCELLED, CANCELLING, COMPLETED, FAILED, FAILED_TO_SCHEDULE, PASS, POSTPASS, PREPASS, SCHEDULED, SCHEDULING
1916
- # }
1917
- #
1918
1512
  # @!attribute [rw] end_time
1919
1513
  # End time of a contact in UTC.
1920
1514
  # @return [Time]
@@ -1981,14 +1575,6 @@ module Aws::GroundStation
1981
1575
  include Aws::Structure
1982
1576
  end
1983
1577
 
1984
- # @note When making an API call, you may pass ListDataflowEndpointGroupsRequest
1985
- # data as a hash:
1986
- #
1987
- # {
1988
- # max_results: 1,
1989
- # next_token: "PaginationToken",
1990
- # }
1991
- #
1992
1578
  # @!attribute [rw] max_results
1993
1579
  # Maximum number of dataflow endpoint groups returned.
1994
1580
  # @return [Integer]
@@ -2027,18 +1613,6 @@ module Aws::GroundStation
2027
1613
  include Aws::Structure
2028
1614
  end
2029
1615
 
2030
- # @note When making an API call, you may pass ListEphemeridesRequest
2031
- # data as a hash:
2032
- #
2033
- # {
2034
- # end_time: Time.now, # required
2035
- # max_results: 1,
2036
- # next_token: "PaginationToken",
2037
- # satellite_id: "Uuid", # required
2038
- # start_time: Time.now, # required
2039
- # status_list: ["VALIDATING"], # accepts VALIDATING, INVALID, ERROR, ENABLED, DISABLED, EXPIRED
2040
- # }
2041
- #
2042
1616
  # @!attribute [rw] end_time
2043
1617
  # The end time to list in UTC. The operation will return an ephemeris
2044
1618
  # if its expiration time is within the time range defined by the
@@ -2097,15 +1671,6 @@ module Aws::GroundStation
2097
1671
  include Aws::Structure
2098
1672
  end
2099
1673
 
2100
- # @note When making an API call, you may pass ListGroundStationsRequest
2101
- # data as a hash:
2102
- #
2103
- # {
2104
- # max_results: 1,
2105
- # next_token: "PaginationToken",
2106
- # satellite_id: "Uuid",
2107
- # }
2108
- #
2109
1674
  # @!attribute [rw] max_results
2110
1675
  # Maximum number of ground stations returned.
2111
1676
  # @return [Integer]
@@ -2147,14 +1712,6 @@ module Aws::GroundStation
2147
1712
  include Aws::Structure
2148
1713
  end
2149
1714
 
2150
- # @note When making an API call, you may pass ListMissionProfilesRequest
2151
- # data as a hash:
2152
- #
2153
- # {
2154
- # max_results: 1,
2155
- # next_token: "PaginationToken",
2156
- # }
2157
- #
2158
1715
  # @!attribute [rw] max_results
2159
1716
  # Maximum number of mission profiles returned.
2160
1717
  # @return [Integer]
@@ -2191,14 +1748,6 @@ module Aws::GroundStation
2191
1748
  include Aws::Structure
2192
1749
  end
2193
1750
 
2194
- # @note When making an API call, you may pass ListSatellitesRequest
2195
- # data as a hash:
2196
- #
2197
- # {
2198
- # max_results: 1,
2199
- # next_token: "PaginationToken",
2200
- # }
2201
- #
2202
1751
  # @!attribute [rw] max_results
2203
1752
  # Maximum number of satellites returned.
2204
1753
  # @return [Integer]
@@ -2235,13 +1784,6 @@ module Aws::GroundStation
2235
1784
  include Aws::Structure
2236
1785
  end
2237
1786
 
2238
- # @note When making an API call, you may pass ListTagsForResourceRequest
2239
- # data as a hash:
2240
- #
2241
- # {
2242
- # resource_arn: "AnyArn", # required
2243
- # }
2244
- #
2245
1787
  # @!attribute [rw] resource_arn
2246
1788
  # ARN of a resource.
2247
1789
  # @return [String]
@@ -2309,18 +1851,6 @@ module Aws::GroundStation
2309
1851
 
2310
1852
  # Ephemeris data in Orbit Ephemeris Message (OEM) format.
2311
1853
  #
2312
- # @note When making an API call, you may pass OEMEphemeris
2313
- # data as a hash:
2314
- #
2315
- # {
2316
- # oem_data: "UnboundedString",
2317
- # s3_object: {
2318
- # bucket: "S3BucketName",
2319
- # key: "S3ObjectKey",
2320
- # version: "S3VersionId",
2321
- # },
2322
- # }
2323
- #
2324
1854
  # @!attribute [rw] oem_data
2325
1855
  # The data for an OEM ephemeris, supplied directly in the request
2326
1856
  # rather than through an S3 object.
@@ -2339,20 +1869,6 @@ module Aws::GroundStation
2339
1869
  include Aws::Structure
2340
1870
  end
2341
1871
 
2342
- # @note When making an API call, you may pass ReserveContactRequest
2343
- # data as a hash:
2344
- #
2345
- # {
2346
- # end_time: Time.now, # required
2347
- # ground_station: "GroundStationName", # required
2348
- # mission_profile_arn: "MissionProfileArn", # required
2349
- # satellite_arn: "satelliteArn", # required
2350
- # start_time: Time.now, # required
2351
- # tags: {
2352
- # "String" => "String",
2353
- # },
2354
- # }
2355
- #
2356
1872
  # @!attribute [rw] end_time
2357
1873
  # End time of a contact in UTC.
2358
1874
  # @return [Time]
@@ -2422,15 +1938,6 @@ module Aws::GroundStation
2422
1938
 
2423
1939
  # Object stored in S3 containing ephemeris data.
2424
1940
  #
2425
- # @note When making an API call, you may pass S3Object
2426
- # data as a hash:
2427
- #
2428
- # {
2429
- # bucket: "S3BucketName",
2430
- # key: "S3ObjectKey",
2431
- # version: "S3VersionId",
2432
- # }
2433
- #
2434
1941
  # @!attribute [rw] bucket
2435
1942
  # An Amazon S3 Bucket name.
2436
1943
  # @return [String]
@@ -2455,15 +1962,6 @@ module Aws::GroundStation
2455
1962
 
2456
1963
  # Information about an S3 recording `Config`.
2457
1964
  #
2458
- # @note When making an API call, you may pass S3RecordingConfig
2459
- # data as a hash:
2460
- #
2461
- # {
2462
- # bucket_arn: "BucketArn", # required
2463
- # prefix: "S3KeyPrefix",
2464
- # role_arn: "RoleArn", # required
2465
- # }
2466
- #
2467
1965
  # @!attribute [rw] bucket_arn
2468
1966
  # ARN of the bucket to record to.
2469
1967
  # @return [String]
@@ -2542,15 +2040,6 @@ module Aws::GroundStation
2542
2040
 
2543
2041
  # Information about endpoints.
2544
2042
  #
2545
- # @note When making an API call, you may pass SecurityDetails
2546
- # data as a hash:
2547
- #
2548
- # {
2549
- # role_arn: "RoleArn", # required
2550
- # security_group_ids: ["String"], # required
2551
- # subnet_ids: ["String"], # required
2552
- # }
2553
- #
2554
2043
  # @!attribute [rw] role_arn
2555
2044
  # ARN to a role needed for connecting streams to your instances.
2556
2045
  # @return [String]
@@ -2576,14 +2065,6 @@ module Aws::GroundStation
2576
2065
 
2577
2066
  # Information about the socket address.
2578
2067
  #
2579
- # @note When making an API call, you may pass SocketAddress
2580
- # data as a hash:
2581
- #
2582
- # {
2583
- # name: "String", # required
2584
- # port: 1, # required
2585
- # }
2586
- #
2587
2068
  # @!attribute [rw] name
2588
2069
  # Name of a socket address.
2589
2070
  # @return [String]
@@ -2633,21 +2114,6 @@ module Aws::GroundStation
2633
2114
 
2634
2115
  # Object that describes a spectral `Config`.
2635
2116
  #
2636
- # @note When making an API call, you may pass SpectrumConfig
2637
- # data as a hash:
2638
- #
2639
- # {
2640
- # bandwidth: { # required
2641
- # units: "GHz", # required, accepts GHz, MHz, kHz
2642
- # value: 1.0, # required
2643
- # },
2644
- # center_frequency: { # required
2645
- # units: "GHz", # required, accepts GHz, MHz, kHz
2646
- # value: 1.0, # required
2647
- # },
2648
- # polarization: "LEFT_HAND", # accepts LEFT_HAND, NONE, RIGHT_HAND
2649
- # }
2650
- #
2651
2117
  # @!attribute [rw] bandwidth
2652
2118
  # Bandwidth of a spectral `Config`. AWS Ground Station currently has
2653
2119
  # the following bandwidth limitations:
@@ -2685,18 +2151,6 @@ module Aws::GroundStation
2685
2151
 
2686
2152
  # Two-line element set (TLE) data.
2687
2153
  #
2688
- # @note When making an API call, you may pass TLEData
2689
- # data as a hash:
2690
- #
2691
- # {
2692
- # tle_line_1: "TleLineOne", # required
2693
- # tle_line_2: "TleLineTwo", # required
2694
- # valid_time_range: { # required
2695
- # end_time: Time.now, # required
2696
- # start_time: Time.now, # required
2697
- # },
2698
- # }
2699
- #
2700
2154
  # @!attribute [rw] tle_line_1
2701
2155
  # First line of two-line element set (TLE) data.
2702
2156
  # @return [String]
@@ -2721,27 +2175,6 @@ module Aws::GroundStation
2721
2175
 
2722
2176
  # Two-line element set (TLE) ephemeris.
2723
2177
  #
2724
- # @note When making an API call, you may pass TLEEphemeris
2725
- # data as a hash:
2726
- #
2727
- # {
2728
- # s3_object: {
2729
- # bucket: "S3BucketName",
2730
- # key: "S3ObjectKey",
2731
- # version: "S3VersionId",
2732
- # },
2733
- # tle_data: [
2734
- # {
2735
- # tle_line_1: "TleLineOne", # required
2736
- # tle_line_2: "TleLineTwo", # required
2737
- # valid_time_range: { # required
2738
- # end_time: Time.now, # required
2739
- # start_time: Time.now, # required
2740
- # },
2741
- # },
2742
- # ],
2743
- # }
2744
- #
2745
2178
  # @!attribute [rw] s3_object
2746
2179
  # Identifies the S3 object to be used as the ephemeris.
2747
2180
  # @return [Types::S3Object]
@@ -2760,16 +2193,6 @@ module Aws::GroundStation
2760
2193
  include Aws::Structure
2761
2194
  end
2762
2195
 
2763
- # @note When making an API call, you may pass TagResourceRequest
2764
- # data as a hash:
2765
- #
2766
- # {
2767
- # resource_arn: "AnyArn", # required
2768
- # tags: { # required
2769
- # "String" => "String",
2770
- # },
2771
- # }
2772
- #
2773
2196
  # @!attribute [rw] resource_arn
2774
2197
  # ARN of a resource tag.
2775
2198
  # @return [String]
@@ -2793,14 +2216,6 @@ module Aws::GroundStation
2793
2216
 
2794
2217
  # A time range with a start and end time.
2795
2218
  #
2796
- # @note When making an API call, you may pass TimeRange
2797
- # data as a hash:
2798
- #
2799
- # {
2800
- # end_time: Time.now, # required
2801
- # start_time: Time.now, # required
2802
- # }
2803
- #
2804
2219
  # @!attribute [rw] end_time
2805
2220
  # Time in UTC at which the time range ends.
2806
2221
  # @return [Time]
@@ -2821,13 +2236,6 @@ module Aws::GroundStation
2821
2236
  # Object that determines whether tracking should be used during a
2822
2237
  # contact executed with this `Config` in the mission profile.
2823
2238
  #
2824
- # @note When making an API call, you may pass TrackingConfig
2825
- # data as a hash:
2826
- #
2827
- # {
2828
- # autotrack: "PREFERRED", # required, accepts PREFERRED, REMOVED, REQUIRED
2829
- # }
2830
- #
2831
2239
  # @!attribute [rw] autotrack
2832
2240
  # Current setting for autotrack.
2833
2241
  # @return [String]
@@ -2840,14 +2248,6 @@ module Aws::GroundStation
2840
2248
  include Aws::Structure
2841
2249
  end
2842
2250
 
2843
- # @note When making an API call, you may pass UntagResourceRequest
2844
- # data as a hash:
2845
- #
2846
- # {
2847
- # resource_arn: "AnyArn", # required
2848
- # tag_keys: ["UnboundedString"], # required
2849
- # }
2850
- #
2851
2251
  # @!attribute [rw] resource_arn
2852
2252
  # ARN of a resource.
2853
2253
  # @return [String]
@@ -2869,79 +2269,6 @@ module Aws::GroundStation
2869
2269
  #
2870
2270
  class UntagResourceResponse < Aws::EmptyStructure; end
2871
2271
 
2872
- # @note When making an API call, you may pass UpdateConfigRequest
2873
- # data as a hash:
2874
- #
2875
- # {
2876
- # config_data: { # required
2877
- # antenna_downlink_config: {
2878
- # spectrum_config: { # required
2879
- # bandwidth: { # required
2880
- # units: "GHz", # required, accepts GHz, MHz, kHz
2881
- # value: 1.0, # required
2882
- # },
2883
- # center_frequency: { # required
2884
- # units: "GHz", # required, accepts GHz, MHz, kHz
2885
- # value: 1.0, # required
2886
- # },
2887
- # polarization: "LEFT_HAND", # accepts LEFT_HAND, NONE, RIGHT_HAND
2888
- # },
2889
- # },
2890
- # antenna_downlink_demod_decode_config: {
2891
- # decode_config: { # required
2892
- # unvalidated_json: "JsonString", # required
2893
- # },
2894
- # demodulation_config: { # required
2895
- # unvalidated_json: "JsonString", # required
2896
- # },
2897
- # spectrum_config: { # required
2898
- # bandwidth: { # required
2899
- # units: "GHz", # required, accepts GHz, MHz, kHz
2900
- # value: 1.0, # required
2901
- # },
2902
- # center_frequency: { # required
2903
- # units: "GHz", # required, accepts GHz, MHz, kHz
2904
- # value: 1.0, # required
2905
- # },
2906
- # polarization: "LEFT_HAND", # accepts LEFT_HAND, NONE, RIGHT_HAND
2907
- # },
2908
- # },
2909
- # antenna_uplink_config: {
2910
- # spectrum_config: { # required
2911
- # center_frequency: { # required
2912
- # units: "GHz", # required, accepts GHz, MHz, kHz
2913
- # value: 1.0, # required
2914
- # },
2915
- # polarization: "LEFT_HAND", # accepts LEFT_HAND, NONE, RIGHT_HAND
2916
- # },
2917
- # target_eirp: { # required
2918
- # units: "dBW", # required, accepts dBW
2919
- # value: 1.0, # required
2920
- # },
2921
- # transmit_disabled: false,
2922
- # },
2923
- # dataflow_endpoint_config: {
2924
- # dataflow_endpoint_name: "String", # required
2925
- # dataflow_endpoint_region: "String",
2926
- # },
2927
- # s3_recording_config: {
2928
- # bucket_arn: "BucketArn", # required
2929
- # prefix: "S3KeyPrefix",
2930
- # role_arn: "RoleArn", # required
2931
- # },
2932
- # tracking_config: {
2933
- # autotrack: "PREFERRED", # required, accepts PREFERRED, REMOVED, REQUIRED
2934
- # },
2935
- # uplink_echo_config: {
2936
- # antenna_uplink_config_arn: "ConfigArn", # required
2937
- # enabled: false, # required
2938
- # },
2939
- # },
2940
- # config_id: "Uuid", # required
2941
- # config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, antenna-uplink, dataflow-endpoint, tracking, uplink-echo, s3-recording
2942
- # name: "SafeName", # required
2943
- # }
2944
- #
2945
2272
  # @!attribute [rw] config_data
2946
2273
  # Parameters of a `Config`.
2947
2274
  # @return [Types::ConfigTypeData]
@@ -2969,16 +2296,6 @@ module Aws::GroundStation
2969
2296
  include Aws::Structure
2970
2297
  end
2971
2298
 
2972
- # @note When making an API call, you may pass UpdateEphemerisRequest
2973
- # data as a hash:
2974
- #
2975
- # {
2976
- # enabled: false, # required
2977
- # ephemeris_id: "Uuid", # required
2978
- # name: "SafeName",
2979
- # priority: 1,
2980
- # }
2981
- #
2982
2299
  # @!attribute [rw] enabled
2983
2300
  # Whether the ephemeris is enabled or not. Changing this value will
2984
2301
  # not require the ephemeris to be re-validated.
@@ -3014,21 +2331,6 @@ module Aws::GroundStation
3014
2331
  include Aws::Structure
3015
2332
  end
3016
2333
 
3017
- # @note When making an API call, you may pass UpdateMissionProfileRequest
3018
- # data as a hash:
3019
- #
3020
- # {
3021
- # contact_post_pass_duration_seconds: 1,
3022
- # contact_pre_pass_duration_seconds: 1,
3023
- # dataflow_edges: [
3024
- # ["ConfigArn"],
3025
- # ],
3026
- # minimum_viable_contact_duration_seconds: 1,
3027
- # mission_profile_id: "Uuid", # required
3028
- # name: "SafeName",
3029
- # tracking_config_arn: "ConfigArn",
3030
- # }
3031
- #
3032
2334
  # @!attribute [rw] contact_post_pass_duration_seconds
3033
2335
  # Amount of time after a contact ends that you’d like to receive a
3034
2336
  # CloudWatch event indicating the pass has finished.
@@ -3082,14 +2384,6 @@ module Aws::GroundStation
3082
2384
  # specified `AntennaUplinkConfigArn`, are used when this
3083
2385
  # `UplinkEchoConfig` is used in a contact.
3084
2386
  #
3085
- # @note When making an API call, you may pass UplinkEchoConfig
3086
- # data as a hash:
3087
- #
3088
- # {
3089
- # antenna_uplink_config_arn: "ConfigArn", # required
3090
- # enabled: false, # required
3091
- # }
3092
- #
3093
2387
  # @!attribute [rw] antenna_uplink_config_arn
3094
2388
  # ARN of an uplink `Config`.
3095
2389
  # @return [String]
@@ -3109,17 +2403,6 @@ module Aws::GroundStation
3109
2403
 
3110
2404
  # Information about the uplink spectral `Config`.
3111
2405
  #
3112
- # @note When making an API call, you may pass UplinkSpectrumConfig
3113
- # data as a hash:
3114
- #
3115
- # {
3116
- # center_frequency: { # required
3117
- # units: "GHz", # required, accepts GHz, MHz, kHz
3118
- # value: 1.0, # required
3119
- # },
3120
- # polarization: "LEFT_HAND", # accepts LEFT_HAND, NONE, RIGHT_HAND
3121
- # }
3122
- #
3123
2406
  # @!attribute [rw] center_frequency
3124
2407
  # Center frequency of an uplink spectral `Config`. Valid values are
3125
2408
  # between 2025 to 2120 MHz.
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-groundstation/customizations'
52
52
  # @!group service
53
53
  module Aws::GroundStation
54
54
 
55
- GEM_VERSION = '1.29.0'
55
+ GEM_VERSION = '1.30.0'
56
56
 
57
57
  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.29.0
4
+ version: 1.30.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: 2022-11-09 00:00:00.000000000 Z
11
+ date: 2023-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core