aws-sdk-groundstation 1.40.0 → 1.41.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: d6ec9dd45741e50ee58e3f6d63bc9af436d4d0af6d21d375548251030187a1fa
4
- data.tar.gz: 9cdb0a638bf4cf759b665fc147cbaf612a623abc6aab531674b9e1714e040d77
3
+ metadata.gz: a91941689e10b00aee748bef6fcbea669ae37b4ec354af02af48fe6a3d8163f1
4
+ data.tar.gz: 3934f033c00a81f01c00bb7de7bc54ee2fed690057bbd459280fc94420e375c1
5
5
  SHA512:
6
- metadata.gz: 5af709124a7dc1541f3d34deeaf5f79dadf35a8851d0b92a9d8ca1f94d69eeb768123e0196b96428202c7c0c021a7646a99b54f99f6adf09c36aaa978658e1ce
7
- data.tar.gz: 6934a104316a0019a7e4d3246f3776929847f2462fbf0d4258d3dcacf28724bb2bcb69d79e957581517b511445287c659ff3816061279de5dd9f9eeb8578fd0f
6
+ metadata.gz: e764fb0e9aa348836992e414e5675b84a3fc9e332cb57880aa46149f1a2139170dcdfd91ae6ae7defe72bbcb84d768f6c33dae35fac9a648e062793d4d6b3e33
7
+ data.tar.gz: 53e504b4056420db431b9d852882aa9901c26e7550ab88fc93b7e0097a7fb124db835e26e4e4dcd559dc347f9b26500a57f998cce3db2bb1dc0467ff9899f644
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.41.0 (2023-10-25)
5
+ ------------------
6
+
7
+ * Feature - This release will allow KMS alias names to be used when creating Mission Profiles
8
+
4
9
  1.40.0 (2023-09-27)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.40.0
1
+ 1.41.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.41.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.41.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.41.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-10-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core