aws-sdk-groundstation 1.52.0 → 1.54.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: a725ee77307331ff39a7ff15d9f7664a83bb86f878fabffebdf844a1c08fd567
4
- data.tar.gz: 6b1421490f46c05aa75c73042394cb63f8faffabfb70849f6946517573ab431b
3
+ metadata.gz: fac35077b9240e4b8f96f29926d87f5624cd522de27c0b49bf14b10b4d9a0068
4
+ data.tar.gz: 4b56654487e5f9ead433944289e3927e621f727ac8237ec0590dfc8896d779ae
5
5
  SHA512:
6
- metadata.gz: d7b815fdc9c827883bc736dd0e0f4b63f464fc70eae5ffd6b3410b0f25cf7a22df47830f4c71c764c6343ab9a62ac20b19a3ad6520f8df235de448e3ad60c435
7
- data.tar.gz: 40026a451dfa86d5b284fee048316737ef051b154965d76400ea148f36f957fd3f536b2d4da9a6f909fa3b7356fc99afd668650771823bad6f3ecbc765cd0d44
6
+ metadata.gz: b615e3d282d3496cb2386364238b35bfe1cff16cf86732557c3884ede5960c0d6339406ccf2710b9bbe9d019f06edfbd3c7e2366beca4c0d4f3f9e00cbc746b3
7
+ data.tar.gz: 7629f057f4831b0e6152f138fedee86277d6b103746a2e76a3d0593a858774a52c0ac184ecdc7e96ebc952278bbbdd508e6c8f024ff696fc279a4f0c586d70f7
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.54.0 (2024-09-03)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.53.0 (2024-08-12)
10
+ ------------------
11
+
12
+ * Feature - Updating documentation for OEMEphemeris to link to AWS Ground Station User Guide
13
+
4
14
  1.52.0 (2024-07-10)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.52.0
1
+ 1.54.0
@@ -32,6 +32,7 @@ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
32
32
  require 'aws-sdk-core/plugins/request_compression.rb'
33
33
  require 'aws-sdk-core/plugins/defaults_mode.rb'
34
34
  require 'aws-sdk-core/plugins/recursion_detection.rb'
35
+ require 'aws-sdk-core/plugins/telemetry.rb'
35
36
  require 'aws-sdk-core/plugins/sign.rb'
36
37
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
37
38
 
@@ -83,6 +84,7 @@ module Aws::GroundStation
83
84
  add_plugin(Aws::Plugins::RequestCompression)
84
85
  add_plugin(Aws::Plugins::DefaultsMode)
85
86
  add_plugin(Aws::Plugins::RecursionDetection)
87
+ add_plugin(Aws::Plugins::Telemetry)
86
88
  add_plugin(Aws::Plugins::Sign)
87
89
  add_plugin(Aws::Plugins::Protocols::RestJson)
88
90
  add_plugin(Aws::GroundStation::Plugins::Endpoints)
@@ -330,6 +332,16 @@ module Aws::GroundStation
330
332
  # ** Please note ** When response stubbing is enabled, no HTTP
331
333
  # requests are made, and retries are disabled.
332
334
  #
335
+ # @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
336
+ # Allows you to provide a telemetry provider, which is used to
337
+ # emit telemetry data. By default, uses `NoOpTelemetryProvider` which
338
+ # will not record or emit any telemetry data. The SDK supports the
339
+ # following telemetry providers:
340
+ #
341
+ # * OpenTelemetry (OTel) - To use the OTel provider, install and require the
342
+ # `opentelemetry-sdk` gem and then, pass in an instance of a
343
+ # `Aws::Telemetry::OTelProvider` for telemetry provider.
344
+ #
333
345
  # @option options [Aws::TokenProvider] :token_provider
334
346
  # A Bearer Token Provider. This can be an instance of any one of the
335
347
  # following classes:
@@ -2271,14 +2283,19 @@ module Aws::GroundStation
2271
2283
  # @api private
2272
2284
  def build_request(operation_name, params = {})
2273
2285
  handlers = @handlers.for(operation_name)
2286
+ tracer = config.telemetry_provider.tracer_provider.tracer(
2287
+ Aws::Telemetry.module_to_tracer_name('Aws::GroundStation')
2288
+ )
2274
2289
  context = Seahorse::Client::RequestContext.new(
2275
2290
  operation_name: operation_name,
2276
2291
  operation: config.api.operation(operation_name),
2277
2292
  client: self,
2278
2293
  params: params,
2279
- config: config)
2294
+ config: config,
2295
+ tracer: tracer
2296
+ )
2280
2297
  context[:gem_name] = 'aws-sdk-groundstation'
2281
- context[:gem_version] = '1.52.0'
2298
+ context[:gem_version] = '1.54.0'
2282
2299
  Seahorse::Client::Request.new(handlers, context)
2283
2300
  end
2284
2301
 
@@ -1253,18 +1253,16 @@ module Aws::GroundStation
1253
1253
  # @!attribute [rw] oem
1254
1254
  # Ephemeris data in Orbit Ephemeris Message (OEM) format.
1255
1255
  #
1256
- # Position, velocity, and acceleration units must be represented in
1257
- # `km`, `km/s`, and `km/s**2`, respectively, in ephemeris data lines.
1258
- # Covariance matrix line units must be represented in `km**2` if
1259
- # computed from two positions, `km**2/s` if computed from one position
1260
- # and one velocity, and `km**2/s**2` if computed from two velocities.
1261
- # Consult section 7.7.2 of The Consultative Committee for Space Data
1262
- # Systems (CCSDS) [Recommended Standard for Orbit Data Messages][1]
1263
- # for more information.
1256
+ # AWS Ground Station processes OEM Customer Provided Ephemerides
1257
+ # according to the [CCSDS standard][1] with some extra restrictions.
1258
+ # OEM files should be in KVN format. For more detail about the OEM
1259
+ # format that AWS Ground Station supports, see [OEM ephemeris
1260
+ # format][2] in the AWS Ground Station user guide.
1264
1261
  #
1265
1262
  #
1266
1263
  #
1267
1264
  # [1]: https://public.ccsds.org/Pubs/502x0b3e1.pdf
1265
+ # [2]: https://docs.aws.amazon.com/ground-station/latest/ug/providing-custom-ephemeris-data.html#oem-ephemeris-format
1268
1266
  # @return [Types::OEMEphemeris]
1269
1267
  #
1270
1268
  # @!attribute [rw] tle
@@ -2276,18 +2274,16 @@ module Aws::GroundStation
2276
2274
 
2277
2275
  # Ephemeris data in Orbit Ephemeris Message (OEM) format.
2278
2276
  #
2279
- # Position, velocity, and acceleration units must be represented in
2280
- # `km`, `km/s`, and `km/s**2`, respectively, in ephemeris data lines.
2281
- # Covariance matrix line units must be represented in `km**2` if
2282
- # computed from two positions, `km**2/s` if computed from one position
2283
- # and one velocity, and `km**2/s**2` if computed from two velocities.
2284
- # Consult section 7.7.2 of The Consultative Committee for Space Data
2285
- # Systems (CCSDS) [Recommended Standard for Orbit Data Messages][1] for
2286
- # more information.
2277
+ # AWS Ground Station processes OEM Customer Provided Ephemerides
2278
+ # according to the [CCSDS standard][1] with some extra restrictions. OEM
2279
+ # files should be in KVN format. For more detail about the OEM format
2280
+ # that AWS Ground Station supports, see [OEM ephemeris format][2] in the
2281
+ # AWS Ground Station user guide.
2287
2282
  #
2288
2283
  #
2289
2284
  #
2290
2285
  # [1]: https://public.ccsds.org/Pubs/502x0b3e1.pdf
2286
+ # [2]: https://docs.aws.amazon.com/ground-station/latest/ug/providing-custom-ephemeris-data.html#oem-ephemeris-format
2291
2287
  #
2292
2288
  # @!attribute [rw] oem_data
2293
2289
  # The data for an OEM ephemeris, supplied directly in the request
@@ -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.52.0'
56
+ GEM_VERSION = '1.54.0'
57
57
 
58
58
  end
data/sig/client.rbs CHANGED
@@ -50,6 +50,7 @@ module Aws
50
50
  ?session_token: String,
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?stub_responses: untyped,
53
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
53
54
  ?token_provider: untyped,
54
55
  ?use_dualstack_endpoint: bool,
55
56
  ?use_fips_endpoint: bool,
data/sig/resource.rbs CHANGED
@@ -50,6 +50,7 @@ module Aws
50
50
  ?session_token: String,
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?stub_responses: untyped,
53
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
53
54
  ?token_provider: untyped,
54
55
  ?use_dualstack_endpoint: bool,
55
56
  ?use_fips_endpoint: bool,
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.52.0
4
+ version: 1.54.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: 2024-07-10 00:00:00.000000000 Z
11
+ date: 2024-09-03 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.201.0
22
+ version: 3.203.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.201.0
32
+ version: 3.203.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement