aws-sdk-groundstation 1.40.0 → 1.42.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: d6ec9dd45741e50ee58e3f6d63bc9af436d4d0af6d21d375548251030187a1fa
4
- data.tar.gz: 9cdb0a638bf4cf759b665fc147cbaf612a623abc6aab531674b9e1714e040d77
3
+ metadata.gz: 74dfb1099652dbe8c4509604a49c6bf4cbf1c395780d12c9b291cd7c92550f58
4
+ data.tar.gz: 47083c962b8d158ce198b5b6990cc83db095597839636fa520ff269a70ce23f9
5
5
  SHA512:
6
- metadata.gz: 5af709124a7dc1541f3d34deeaf5f79dadf35a8851d0b92a9d8ca1f94d69eeb768123e0196b96428202c7c0c021a7646a99b54f99f6adf09c36aaa978658e1ce
7
- data.tar.gz: 6934a104316a0019a7e4d3246f3776929847f2462fbf0d4258d3dcacf28724bb2bcb69d79e957581517b511445287c659ff3816061279de5dd9f9eeb8578fd0f
6
+ metadata.gz: 38e123b760c984487ada9af3e6018af7393453c110c1462bc10928d48db584aae4973d9f9295ba9f981a7f11d4eaa13236d341f11122ef3b38fef82d810c46fb
7
+ data.tar.gz: 5b3f22233ab447317d1a6e7b1202bb7dc41a58d358effd69eb8bc9ddc95c3fe2c50c5e2b0ea5fc527bf097b48dce7803101a5540bb0c173f00d9360c5436a488
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.42.0 (2023-11-22)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.41.0 (2023-10-25)
10
+ ------------------
11
+
12
+ * Feature - This release will allow KMS alias names to be used when creating Mission Profiles
13
+
4
14
  1.40.0 (2023-09-27)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.40.0
1
+ 1.42.0
@@ -769,6 +769,7 @@ module Aws::GroundStation
769
769
  # name: "SafeName", # required
770
770
  # streams_kms_key: {
771
771
  # kms_alias_arn: "KeyAliasArn",
772
+ # kms_alias_name: "KeyAliasName",
772
773
  # kms_key_arn: "KeyArn",
773
774
  # },
774
775
  # streams_kms_role: "RoleArn",
@@ -1330,6 +1331,7 @@ module Aws::GroundStation
1330
1331
  # resp.name #=> String
1331
1332
  # resp.region #=> String
1332
1333
  # resp.streams_kms_key.kms_alias_arn #=> String
1334
+ # resp.streams_kms_key.kms_alias_name #=> String
1333
1335
  # resp.streams_kms_key.kms_key_arn #=> String
1334
1336
  # resp.streams_kms_role #=> String
1335
1337
  # resp.tags #=> Hash
@@ -2197,6 +2199,7 @@ module Aws::GroundStation
2197
2199
  # name: "SafeName",
2198
2200
  # streams_kms_key: {
2199
2201
  # kms_alias_arn: "KeyAliasArn",
2202
+ # kms_alias_name: "KeyAliasName",
2200
2203
  # kms_key_arn: "KeyArn",
2201
2204
  # },
2202
2205
  # streams_kms_role: "RoleArn",
@@ -2229,7 +2232,7 @@ module Aws::GroundStation
2229
2232
  params: params,
2230
2233
  config: config)
2231
2234
  context[:gem_name] = 'aws-sdk-groundstation'
2232
- context[:gem_version] = '1.40.0'
2235
+ context[:gem_version] = '1.42.0'
2233
2236
  Seahorse::Client::Request.new(handlers, context)
2234
2237
  end
2235
2238
 
@@ -131,6 +131,7 @@ module Aws::GroundStation
131
131
  IpV4Address = Shapes::StringShape.new(name: 'IpV4Address')
132
132
  JsonString = Shapes::StringShape.new(name: 'JsonString')
133
133
  KeyAliasArn = Shapes::StringShape.new(name: 'KeyAliasArn')
134
+ KeyAliasName = Shapes::StringShape.new(name: 'KeyAliasName')
134
135
  KeyArn = Shapes::StringShape.new(name: 'KeyArn')
135
136
  KmsKey = Shapes::UnionShape.new(name: 'KmsKey')
136
137
  ListConfigsRequest = Shapes::StructureShape.new(name: 'ListConfigsRequest')
@@ -628,9 +629,11 @@ module Aws::GroundStation
628
629
  IpAddressList.member = Shapes::ShapeRef.new(shape: IpV4Address)
629
630
 
630
631
  KmsKey.add_member(:kms_alias_arn, Shapes::ShapeRef.new(shape: KeyAliasArn, location_name: "kmsAliasArn"))
632
+ KmsKey.add_member(:kms_alias_name, Shapes::ShapeRef.new(shape: KeyAliasName, location_name: "kmsAliasName"))
631
633
  KmsKey.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KeyArn, location_name: "kmsKeyArn"))
632
634
  KmsKey.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
633
635
  KmsKey.add_member_subclass(:kms_alias_arn, Types::KmsKey::KmsAliasArn)
636
+ KmsKey.add_member_subclass(:kms_alias_name, Types::KmsKey::KmsAliasName)
634
637
  KmsKey.add_member_subclass(:kms_key_arn, Types::KmsKey::KmsKeyArn)
635
638
  KmsKey.add_member_subclass(:unknown, Types::KmsKey::Unknown)
636
639
  KmsKey.struct_class = Types::KmsKey
@@ -32,7 +32,7 @@ module Aws::GroundStation
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
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"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
36
  return Aws::Endpoints::Endpoint.new(url: "https://groundstation-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
37
  end
38
38
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
@@ -1809,6 +1809,10 @@ module Aws::GroundStation
1809
1809
  # KMS Alias Arn.
1810
1810
  # @return [String]
1811
1811
  #
1812
+ # @!attribute [rw] kms_alias_name
1813
+ # KMS Alias Name.
1814
+ # @return [String]
1815
+ #
1812
1816
  # @!attribute [rw] kms_key_arn
1813
1817
  # KMS Key Arn.
1814
1818
  # @return [String]
@@ -1817,6 +1821,7 @@ module Aws::GroundStation
1817
1821
  #
1818
1822
  class KmsKey < Struct.new(
1819
1823
  :kms_alias_arn,
1824
+ :kms_alias_name,
1820
1825
  :kms_key_arn,
1821
1826
  :unknown)
1822
1827
  SENSITIVE = []
@@ -1824,6 +1829,7 @@ module Aws::GroundStation
1824
1829
  include Aws::Structure::Union
1825
1830
 
1826
1831
  class KmsAliasArn < KmsKey; end
1832
+ class KmsAliasName < KmsKey; end
1827
1833
  class KmsKeyArn < KmsKey; end
1828
1834
  class Unknown < KmsKey; end
1829
1835
  end
@@ -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.40.0'
56
+ GEM_VERSION = '1.42.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.40.0
4
+ version: 1.42.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-09-27 00:00:00.000000000 Z
11
+ date: 2023-11-22 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.184.0
22
+ version: 3.188.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.184.0
32
+ version: 3.188.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -81,7 +81,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
81
81
  requirements:
82
82
  - - ">="
83
83
  - !ruby/object:Gem::Version
84
- version: '2.3'
84
+ version: '2.5'
85
85
  required_rubygems_version: !ruby/object:Gem::Requirement
86
86
  requirements:
87
87
  - - ">="