aws-sdk-appconfig 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: cf9c7b43fcdf678a03151fe88f95923ed639e6821c09446aeb7ffbb50c425052
4
- data.tar.gz: f0c915c9b30be8fce573e4dece1778eefae6ccafa2a0c3fa695e46045cf54970
3
+ metadata.gz: f7f838ea11c6c1054ff42de9e5e3c32cd339c319f47942b712a3667a81fc5b29
4
+ data.tar.gz: '06189479e948f17fd56fa41a673df6ffc2b9f0f4db46c3a294c4a428b828488c'
5
5
  SHA512:
6
- metadata.gz: e983581d51d15ac9396a7c185150bbcd3ced30c0986a8e818ccca5efdc045ea929dcae474da73e5469789fdedb5b3601f37e271c8faaacc695c62ea79235c0a2
7
- data.tar.gz: '084ecdfbe31dceb3be0e18fb5636153f0e2b0c5113be101667d967c11e15390d718bb885288bd48a5d859039f21b929a30a026095b51b78d6b88dd50fc92679e'
6
+ metadata.gz: 23d4ea49f0a5b290f3a66e2fef0aa76b562ecc6043e4b3331504762d35015c857362cfceca376458250c87e95e49a26143a3c2878cc711671e17007c7a81579a
7
+ data.tar.gz: 19624f37ee7ffdbc92e9faaadc0b8fee368b0b6a9191f7bf97d5cabc4521534971c3529c0318e313249d1cc50a6f8d2640cbdd624ef6d81b0ddabc8f8d0d2edc
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.30.0 (2023-02-14)
5
+ ------------------
6
+
7
+ * Feature - AWS AppConfig now offers the option to set a version label on hosted configuration versions. Version labels allow you to identify specific hosted configuration versions based on an alternate versioning scheme that you define.
8
+
4
9
  1.29.0 (2023-02-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.29.0
1
+ 1.30.0
@@ -1048,6 +1048,11 @@ module Aws::AppConfig
1048
1048
  # configuration versions in rapid succession, specify the version number
1049
1049
  # of the latest hosted configuration version.
1050
1050
  #
1051
+ # @option params [String] :version_label
1052
+ # An optional, user-defined label for the AppConfig hosted configuration
1053
+ # version. This value must contain at least one non-numeric character.
1054
+ # For example, "v2.2.0".
1055
+ #
1051
1056
  # @return [Types::HostedConfigurationVersion] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1052
1057
  #
1053
1058
  # * {Types::HostedConfigurationVersion#application_id #application_id} => String
@@ -1056,6 +1061,7 @@ module Aws::AppConfig
1056
1061
  # * {Types::HostedConfigurationVersion#description #description} => String
1057
1062
  # * {Types::HostedConfigurationVersion#content #content} => String
1058
1063
  # * {Types::HostedConfigurationVersion#content_type #content_type} => String
1064
+ # * {Types::HostedConfigurationVersion#version_label #version_label} => String
1059
1065
  #
1060
1066
  #
1061
1067
  # @example Example: To create a hosted configuration version
@@ -1088,6 +1094,7 @@ module Aws::AppConfig
1088
1094
  # content: "data", # required
1089
1095
  # content_type: "StringWithLengthBetween1And255", # required
1090
1096
  # latest_version_number: 1,
1097
+ # version_label: "VersionLabel",
1091
1098
  # })
1092
1099
  #
1093
1100
  # @example Response structure
@@ -1098,6 +1105,7 @@ module Aws::AppConfig
1098
1105
  # resp.description #=> String
1099
1106
  # resp.content #=> String
1100
1107
  # resp.content_type #=> String
1108
+ # resp.version_label #=> String
1101
1109
  #
1102
1110
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/CreateHostedConfigurationVersion AWS API Documentation
1103
1111
  #
@@ -1996,6 +2004,7 @@ module Aws::AppConfig
1996
2004
  # * {Types::HostedConfigurationVersion#description #description} => String
1997
2005
  # * {Types::HostedConfigurationVersion#content #content} => String
1998
2006
  # * {Types::HostedConfigurationVersion#content_type #content_type} => String
2007
+ # * {Types::HostedConfigurationVersion#version_label #version_label} => String
1999
2008
  #
2000
2009
  #
2001
2010
  # @example Example: To retrieve hosted configuration details
@@ -2033,6 +2042,7 @@ module Aws::AppConfig
2033
2042
  # resp.description #=> String
2034
2043
  # resp.content #=> String
2035
2044
  # resp.content_type #=> String
2045
+ # resp.version_label #=> String
2036
2046
  #
2037
2047
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/GetHostedConfigurationVersion AWS API Documentation
2038
2048
  #
@@ -2556,6 +2566,13 @@ module Aws::AppConfig
2556
2566
  # A token to start the list. Use this token to get the next set of
2557
2567
  # results.
2558
2568
  #
2569
+ # @option params [String] :version_label
2570
+ # An optional filter that can be used to specify the version label of an
2571
+ # AppConfig hosted configuration version. This parameter supports
2572
+ # filtering by prefix using a wildcard, for example "v2*". If you
2573
+ # don't specify an asterisk at the end of the value, only an exact
2574
+ # match is returned.
2575
+ #
2559
2576
  # @return [Types::HostedConfigurationVersions] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2560
2577
  #
2561
2578
  # * {Types::HostedConfigurationVersions#items #items} => Array<Types::HostedConfigurationVersionSummary>
@@ -2593,6 +2610,7 @@ module Aws::AppConfig
2593
2610
  # configuration_profile_id: "Id", # required
2594
2611
  # max_results: 1,
2595
2612
  # next_token: "NextToken",
2613
+ # version_label: "QueryName",
2596
2614
  # })
2597
2615
  #
2598
2616
  # @example Response structure
@@ -2603,6 +2621,7 @@ module Aws::AppConfig
2603
2621
  # resp.items[0].version_number #=> Integer
2604
2622
  # resp.items[0].description #=> String
2605
2623
  # resp.items[0].content_type #=> String
2624
+ # resp.items[0].version_label #=> String
2606
2625
  # resp.next_token #=> String
2607
2626
  #
2608
2627
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/ListHostedConfigurationVersions AWS API Documentation
@@ -2674,7 +2693,9 @@ module Aws::AppConfig
2674
2693
  # The configuration profile ID.
2675
2694
  #
2676
2695
  # @option params [required, String] :configuration_version
2677
- # The configuration version to deploy.
2696
+ # The configuration version to deploy. If deploying an AppConfig hosted
2697
+ # configuration version, you can specify either the version number or
2698
+ # version label.
2678
2699
  #
2679
2700
  # @option params [String] :description
2680
2701
  # A description of the deployment.
@@ -3552,7 +3573,7 @@ module Aws::AppConfig
3552
3573
  params: params,
3553
3574
  config: config)
3554
3575
  context[:gem_name] = 'aws-sdk-appconfig'
3555
- context[:gem_version] = '1.29.0'
3576
+ context[:gem_version] = '1.30.0'
3556
3577
  Seahorse::Client::Request.new(handlers, context)
3557
3578
  end
3558
3579
 
@@ -154,6 +154,7 @@ module Aws::AppConfig
154
154
  ValidatorType = Shapes::StringShape.new(name: 'ValidatorType')
155
155
  ValidatorTypeList = Shapes::ListShape.new(name: 'ValidatorTypeList')
156
156
  Version = Shapes::StringShape.new(name: 'Version')
157
+ VersionLabel = Shapes::StringShape.new(name: 'VersionLabel')
157
158
 
158
159
  Action.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "Name"))
159
160
  Action.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
@@ -294,6 +295,7 @@ module Aws::AppConfig
294
295
  CreateHostedConfigurationVersionRequest.add_member(:content, Shapes::ShapeRef.new(shape: Blob, required: true, location_name: "Content"))
295
296
  CreateHostedConfigurationVersionRequest.add_member(:content_type, Shapes::ShapeRef.new(shape: StringWithLengthBetween1And255, required: true, location: "header", location_name: "Content-Type"))
296
297
  CreateHostedConfigurationVersionRequest.add_member(:latest_version_number, Shapes::ShapeRef.new(shape: Integer, location: "header", location_name: "Latest-Version-Number", metadata: {"box"=>true}))
298
+ CreateHostedConfigurationVersionRequest.add_member(:version_label, Shapes::ShapeRef.new(shape: VersionLabel, location: "header", location_name: "VersionLabel"))
297
299
  CreateHostedConfigurationVersionRequest.struct_class = Types::CreateHostedConfigurationVersionRequest
298
300
  CreateHostedConfigurationVersionRequest[:payload] = :content
299
301
  CreateHostedConfigurationVersionRequest[:payload_member] = CreateHostedConfigurationVersionRequest.member(:content)
@@ -490,6 +492,7 @@ module Aws::AppConfig
490
492
  HostedConfigurationVersion.add_member(:description, Shapes::ShapeRef.new(shape: Description, location: "header", location_name: "Description"))
491
493
  HostedConfigurationVersion.add_member(:content, Shapes::ShapeRef.new(shape: Blob, location_name: "Content"))
492
494
  HostedConfigurationVersion.add_member(:content_type, Shapes::ShapeRef.new(shape: StringWithLengthBetween1And255, location: "header", location_name: "Content-Type"))
495
+ HostedConfigurationVersion.add_member(:version_label, Shapes::ShapeRef.new(shape: VersionLabel, location: "header", location_name: "VersionLabel"))
493
496
  HostedConfigurationVersion.struct_class = Types::HostedConfigurationVersion
494
497
  HostedConfigurationVersion[:payload] = :content
495
498
  HostedConfigurationVersion[:payload_member] = HostedConfigurationVersion.member(:content)
@@ -499,6 +502,7 @@ module Aws::AppConfig
499
502
  HostedConfigurationVersionSummary.add_member(:version_number, Shapes::ShapeRef.new(shape: Integer, location_name: "VersionNumber"))
500
503
  HostedConfigurationVersionSummary.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
501
504
  HostedConfigurationVersionSummary.add_member(:content_type, Shapes::ShapeRef.new(shape: StringWithLengthBetween1And255, location_name: "ContentType"))
505
+ HostedConfigurationVersionSummary.add_member(:version_label, Shapes::ShapeRef.new(shape: VersionLabel, location_name: "VersionLabel"))
502
506
  HostedConfigurationVersionSummary.struct_class = Types::HostedConfigurationVersionSummary
503
507
 
504
508
  HostedConfigurationVersionSummaryList.member = Shapes::ShapeRef.new(shape: HostedConfigurationVersionSummary)
@@ -560,6 +564,7 @@ module Aws::AppConfig
560
564
  ListHostedConfigurationVersionsRequest.add_member(:configuration_profile_id, Shapes::ShapeRef.new(shape: Id, required: true, location: "uri", location_name: "ConfigurationProfileId"))
561
565
  ListHostedConfigurationVersionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "max_results", metadata: {"box"=>true}))
562
566
  ListHostedConfigurationVersionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "next_token"))
567
+ ListHostedConfigurationVersionsRequest.add_member(:version_label, Shapes::ShapeRef.new(shape: QueryName, location: "querystring", location_name: "version_label"))
563
568
  ListHostedConfigurationVersionsRequest.struct_class = Types::ListHostedConfigurationVersionsRequest
564
569
 
565
570
  ListTagsForResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location: "uri", location_name: "ResourceArn"))
@@ -50,9 +50,6 @@ module Aws::AppConfig
50
50
 
51
51
  def initialize(options = {})
52
52
  self[:region] = options[:region]
53
- if self[:region].nil?
54
- raise ArgumentError, "Missing required EndpointParameter: :region"
55
- end
56
53
  self[:use_dual_stack] = options[:use_dual_stack]
57
54
  self[:use_dual_stack] = false if self[:use_dual_stack].nil?
58
55
  if self[:use_dual_stack].nil?
@@ -14,42 +14,45 @@ module Aws::AppConfig
14
14
  use_dual_stack = parameters.use_dual_stack
15
15
  use_fips = parameters.use_fips
16
16
  endpoint = parameters.endpoint
17
- if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
- if Aws::Endpoints::Matchers.set?(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: {})
17
+ if Aws::Endpoints::Matchers.set?(endpoint)
18
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
19
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
26
20
  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://appconfig-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"
21
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
22
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
32
23
  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
- if Aws::Endpoints::Matchers.string_equals?(region, "us-gov-east-1")
36
- return Aws::Endpoints::Endpoint.new(url: "https://appconfig.us-gov-east-1.amazonaws.com", headers: {}, properties: {})
24
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
25
+ end
26
+ if Aws::Endpoints::Matchers.set?(region)
27
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
28
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
29
+ 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"))
30
+ return Aws::Endpoints::Endpoint.new(url: "https://appconfig-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
37
31
  end
38
- if Aws::Endpoints::Matchers.string_equals?(region, "us-gov-west-1")
39
- return Aws::Endpoints::Endpoint.new(url: "https://appconfig.us-gov-west-1.amazonaws.com", headers: {}, properties: {})
32
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
+ end
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"))
36
+ if Aws::Endpoints::Matchers.string_equals?(region, "us-gov-east-1")
37
+ return Aws::Endpoints::Endpoint.new(url: "https://appconfig.us-gov-east-1.amazonaws.com", headers: {}, properties: {})
38
+ end
39
+ if Aws::Endpoints::Matchers.string_equals?(region, "us-gov-west-1")
40
+ return Aws::Endpoints::Endpoint.new(url: "https://appconfig.us-gov-west-1.amazonaws.com", headers: {}, properties: {})
41
+ end
42
+ return Aws::Endpoints::Endpoint.new(url: "https://appconfig-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
40
43
  end
41
- return Aws::Endpoints::Endpoint.new(url: "https://appconfig-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
44
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
42
45
  end
43
- raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
44
- end
45
- if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
46
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
47
- return Aws::Endpoints::Endpoint.new(url: "https://appconfig.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
46
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
47
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
48
+ return Aws::Endpoints::Endpoint.new(url: "https://appconfig.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
49
+ end
50
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
48
51
  end
49
- raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
52
+ return Aws::Endpoints::Endpoint.new(url: "https://appconfig.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
50
53
  end
51
- return Aws::Endpoints::Endpoint.new(url: "https://appconfig.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
52
54
  end
55
+ raise ArgumentError, "Invalid Configuration: Missing Region"
53
56
  raise ArgumentError, 'No endpoint could be resolved'
54
57
 
55
58
  end
@@ -743,6 +743,12 @@ module Aws::AppConfig
743
743
  # number of the latest hosted configuration version.
744
744
  # @return [Integer]
745
745
  #
746
+ # @!attribute [rw] version_label
747
+ # An optional, user-defined label for the AppConfig hosted
748
+ # configuration version. This value must contain at least one
749
+ # non-numeric character. For example, "v2.2.0".
750
+ # @return [String]
751
+ #
746
752
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/CreateHostedConfigurationVersionRequest AWS API Documentation
747
753
  #
748
754
  class CreateHostedConfigurationVersionRequest < Struct.new(
@@ -751,7 +757,8 @@ module Aws::AppConfig
751
757
  :description,
752
758
  :content,
753
759
  :content_type,
754
- :latest_version_number)
760
+ :latest_version_number,
761
+ :version_label)
755
762
  SENSITIVE = [:content]
756
763
  include Aws::Structure
757
764
  end
@@ -1666,6 +1673,10 @@ module Aws::AppConfig
1666
1673
  # [1]: https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.17
1667
1674
  # @return [String]
1668
1675
  #
1676
+ # @!attribute [rw] version_label
1677
+ # A user-defined label for an AppConfig hosted configuration version.
1678
+ # @return [String]
1679
+ #
1669
1680
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/HostedConfigurationVersion AWS API Documentation
1670
1681
  #
1671
1682
  class HostedConfigurationVersion < Struct.new(
@@ -1674,7 +1685,8 @@ module Aws::AppConfig
1674
1685
  :version_number,
1675
1686
  :description,
1676
1687
  :content,
1677
- :content_type)
1688
+ :content_type,
1689
+ :version_label)
1678
1690
  SENSITIVE = [:content]
1679
1691
  include Aws::Structure
1680
1692
  end
@@ -1706,6 +1718,10 @@ module Aws::AppConfig
1706
1718
  # [1]: https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.17
1707
1719
  # @return [String]
1708
1720
  #
1721
+ # @!attribute [rw] version_label
1722
+ # A user-defined label for an AppConfig hosted configuration version.
1723
+ # @return [String]
1724
+ #
1709
1725
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/HostedConfigurationVersionSummary AWS API Documentation
1710
1726
  #
1711
1727
  class HostedConfigurationVersionSummary < Struct.new(
@@ -1713,7 +1729,8 @@ module Aws::AppConfig
1713
1729
  :configuration_profile_id,
1714
1730
  :version_number,
1715
1731
  :description,
1716
- :content_type)
1732
+ :content_type,
1733
+ :version_label)
1717
1734
  SENSITIVE = []
1718
1735
  include Aws::Structure
1719
1736
  end
@@ -2000,13 +2017,22 @@ module Aws::AppConfig
2000
2017
  # results.
2001
2018
  # @return [String]
2002
2019
  #
2020
+ # @!attribute [rw] version_label
2021
+ # An optional filter that can be used to specify the version label of
2022
+ # an AppConfig hosted configuration version. This parameter supports
2023
+ # filtering by prefix using a wildcard, for example "v2*". If you
2024
+ # don't specify an asterisk at the end of the value, only an exact
2025
+ # match is returned.
2026
+ # @return [String]
2027
+ #
2003
2028
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/ListHostedConfigurationVersionsRequest AWS API Documentation
2004
2029
  #
2005
2030
  class ListHostedConfigurationVersionsRequest < Struct.new(
2006
2031
  :application_id,
2007
2032
  :configuration_profile_id,
2008
2033
  :max_results,
2009
- :next_token)
2034
+ :next_token,
2035
+ :version_label)
2010
2036
  SENSITIVE = []
2011
2037
  include Aws::Structure
2012
2038
  end
@@ -2158,7 +2184,9 @@ module Aws::AppConfig
2158
2184
  # @return [String]
2159
2185
  #
2160
2186
  # @!attribute [rw] configuration_version
2161
- # The configuration version to deploy.
2187
+ # The configuration version to deploy. If deploying an AppConfig
2188
+ # hosted configuration version, you can specify either the version
2189
+ # number or version label.
2162
2190
  # @return [String]
2163
2191
  #
2164
2192
  # @!attribute [rw] description
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-appconfig/customizations'
52
52
  # @!group service
53
53
  module Aws::AppConfig
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-appconfig
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: 2023-02-02 00:00:00.000000000 Z
11
+ date: 2023-02-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core