aws-sdk-groundstation 1.50.0 → 1.52.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: dce7a6810a15d0bf949008bd786ea601f6628ac94ca95c4d3decbb9cca75e5b8
4
- data.tar.gz: 5c29ab97400cb14ed893e8b8463b363044b0c348a3b763301b916ad120dce483
3
+ metadata.gz: a725ee77307331ff39a7ff15d9f7664a83bb86f878fabffebdf844a1c08fd567
4
+ data.tar.gz: 6b1421490f46c05aa75c73042394cb63f8faffabfb70849f6946517573ab431b
5
5
  SHA512:
6
- metadata.gz: 60c4ddfd5a801907cfc622ab36ee4ff04a7f5e9a4a2ae4571c74f7ba55925d5bade381a6c81b7c18f024c166ffacb9401b168742a118e5a018a1e1ce97c474a4
7
- data.tar.gz: 53090685fc2142c72eb6e38e32a9e154a758ea43d8e7d7a37a707c55b352a0ac646665f7069b8b9854113508d2d0ffe896333eb2f12787025baaaacbf1d5adf7
6
+ metadata.gz: d7b815fdc9c827883bc736dd0e0f4b63f464fc70eae5ffd6b3410b0f25cf7a22df47830f4c71c764c6343ab9a62ac20b19a3ad6520f8df235de448e3ad60c435
7
+ data.tar.gz: 40026a451dfa86d5b284fee048316737ef051b154965d76400ea148f36f957fd3f536b2d4da9a6f909fa3b7356fc99afd668650771823bad6f3ecbc765cd0d44
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.52.0 (2024-07-10)
5
+ ------------------
6
+
7
+ * Feature - Documentation update specifying OEM ephemeris units of measurement
8
+
9
+ 1.51.0 (2024-07-02)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.50.0 (2024-06-25)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.50.0
1
+ 1.52.0
@@ -312,6 +312,15 @@ module Aws::GroundStation
312
312
  #
313
313
  # @option options [String] :session_token
314
314
  #
315
+ # @option options [Array] :sigv4a_signing_region_set
316
+ # A list of regions that should be signed with SigV4a signing. When
317
+ # not passed, a default `:sigv4a_signing_region_set` is searched for
318
+ # in the following locations:
319
+ #
320
+ # * `Aws.config[:sigv4a_signing_region_set]`
321
+ # * `ENV['AWS_SIGV4A_SIGNING_REGION_SET']`
322
+ # * `~/.aws/config`
323
+ #
315
324
  # @option options [Boolean] :stub_responses (false)
316
325
  # Causes the client to return stubbed responses. By default
317
326
  # fake responses are generated and returned. You can specify
@@ -2269,7 +2278,7 @@ module Aws::GroundStation
2269
2278
  params: params,
2270
2279
  config: config)
2271
2280
  context[:gem_name] = 'aws-sdk-groundstation'
2272
- context[:gem_version] = '1.50.0'
2281
+ context[:gem_version] = '1.52.0'
2273
2282
  Seahorse::Client::Request.new(handlers, context)
2274
2283
  end
2275
2284
 
@@ -897,9 +897,11 @@ module Aws::GroundStation
897
897
 
898
898
  api.metadata = {
899
899
  "apiVersion" => "2019-05-23",
900
+ "auth" => ["aws.auth#sigv4"],
900
901
  "endpointPrefix" => "groundstation",
901
902
  "jsonVersion" => "1.1",
902
903
  "protocol" => "rest-json",
904
+ "protocols" => ["rest-json"],
903
905
  "serviceFullName" => "AWS Ground Station",
904
906
  "serviceId" => "GroundStation",
905
907
  "signatureVersion" => "v4",
@@ -1252,6 +1252,19 @@ module Aws::GroundStation
1252
1252
  #
1253
1253
  # @!attribute [rw] oem
1254
1254
  # Ephemeris data in Orbit Ephemeris Message (OEM) format.
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.
1264
+ #
1265
+ #
1266
+ #
1267
+ # [1]: https://public.ccsds.org/Pubs/502x0b3e1.pdf
1255
1268
  # @return [Types::OEMEphemeris]
1256
1269
  #
1257
1270
  # @!attribute [rw] tle
@@ -2263,6 +2276,19 @@ module Aws::GroundStation
2263
2276
 
2264
2277
  # Ephemeris data in Orbit Ephemeris Message (OEM) format.
2265
2278
  #
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.
2287
+ #
2288
+ #
2289
+ #
2290
+ # [1]: https://public.ccsds.org/Pubs/502x0b3e1.pdf
2291
+ #
2266
2292
  # @!attribute [rw] oem_data
2267
2293
  # The data for an OEM ephemeris, supplied directly in the request
2268
2294
  # rather than through an S3 object.
@@ -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.50.0'
56
+ GEM_VERSION = '1.52.0'
57
57
 
58
58
  end
data/sig/client.rbs CHANGED
@@ -48,6 +48,7 @@ module Aws
48
48
  ?sdk_ua_app_id: String,
49
49
  ?secret_access_key: String,
50
50
  ?session_token: String,
51
+ ?sigv4a_signing_region_set: Array[String],
51
52
  ?stub_responses: untyped,
52
53
  ?token_provider: untyped,
53
54
  ?use_dualstack_endpoint: bool,
data/sig/resource.rbs CHANGED
@@ -48,6 +48,7 @@ module Aws
48
48
  ?sdk_ua_app_id: String,
49
49
  ?secret_access_key: String,
50
50
  ?session_token: String,
51
+ ?sigv4a_signing_region_set: Array[String],
51
52
  ?stub_responses: untyped,
52
53
  ?token_provider: untyped,
53
54
  ?use_dualstack_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.50.0
4
+ version: 1.52.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-06-25 00:00:00.000000000 Z
11
+ date: 2024-07-10 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.199.0
22
+ version: 3.201.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,21 +29,21 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.199.0
32
+ version: 3.201.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '1.1'
39
+ version: '1.5'
40
40
  type: :runtime
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '1.1'
46
+ version: '1.5'
47
47
  description: Official AWS Ruby gem for AWS Ground Station. This gem is part of the
48
48
  AWS SDK for Ruby.
49
49
  email: