aws-sdk-cloudformation 1.118.0 → 1.120.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudformation/client.rb +1 -3
- data/lib/aws-sdk-cloudformation/client_api.rb +1 -0
- data/lib/aws-sdk-cloudformation/types.rb +1 -0
- data/lib/aws-sdk-cloudformation.rb +20 -16
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fcfe46d8c3e67f7588bc843b9e6b47cf92d0dd09116ec34cbd5956f30005c710
|
4
|
+
data.tar.gz: 3b113df4319eeba01dc7726faaa89649f90582cc4ef99aede96ad274c95af564
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: db3ba7de31d84800c62b54c45bcfab1db904f5d44dca5ec7ae0c6b106fa2525ca26aed7c30e3dc385f907894ddf1b34872f77f9f1477746290aeb91c8fa3d44b
|
7
|
+
data.tar.gz: 8b1fa6ea5023d1ab3598fc68116e6790c23ec08067953160d1b0355e9b17550ed16f8a478c2556e2115c6d5c8dff2ff0cf6662ce7b0b668fbc80e222141b0ee8
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.120.0 (2024-09-24)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.119.0 (2024-09-23)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.118.0 (2024-09-20)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.120.0
|
@@ -36,8 +36,6 @@ require 'aws-sdk-core/plugins/telemetry.rb'
|
|
36
36
|
require 'aws-sdk-core/plugins/sign.rb'
|
37
37
|
require 'aws-sdk-core/plugins/protocols/query.rb'
|
38
38
|
|
39
|
-
Aws::Plugins::GlobalConfiguration.add_identifier(:cloudformation)
|
40
|
-
|
41
39
|
module Aws::CloudFormation
|
42
40
|
# An API client for CloudFormation. To construct a client, you need to configure a `:region` and `:credentials`.
|
43
41
|
#
|
@@ -8419,7 +8417,7 @@ module Aws::CloudFormation
|
|
8419
8417
|
tracer: tracer
|
8420
8418
|
)
|
8421
8419
|
context[:gem_name] = 'aws-sdk-cloudformation'
|
8422
|
-
context[:gem_version] = '1.
|
8420
|
+
context[:gem_version] = '1.120.0'
|
8423
8421
|
Seahorse::Client::Request.new(handlers, context)
|
8424
8422
|
end
|
8425
8423
|
|
@@ -11678,3 +11678,4 @@ module Aws::CloudFormation
|
|
11678
11678
|
|
11679
11679
|
end
|
11680
11680
|
end
|
11681
|
+
|
@@ -11,21 +11,7 @@
|
|
11
11
|
require 'aws-sdk-core'
|
12
12
|
require 'aws-sigv4'
|
13
13
|
|
14
|
-
|
15
|
-
require_relative 'aws-sdk-cloudformation/client_api'
|
16
|
-
require_relative 'aws-sdk-cloudformation/plugins/endpoints.rb'
|
17
|
-
require_relative 'aws-sdk-cloudformation/client'
|
18
|
-
require_relative 'aws-sdk-cloudformation/errors'
|
19
|
-
require_relative 'aws-sdk-cloudformation/waiters'
|
20
|
-
require_relative 'aws-sdk-cloudformation/resource'
|
21
|
-
require_relative 'aws-sdk-cloudformation/endpoint_parameters'
|
22
|
-
require_relative 'aws-sdk-cloudformation/endpoint_provider'
|
23
|
-
require_relative 'aws-sdk-cloudformation/endpoints'
|
24
|
-
require_relative 'aws-sdk-cloudformation/event'
|
25
|
-
require_relative 'aws-sdk-cloudformation/stack'
|
26
|
-
require_relative 'aws-sdk-cloudformation/stack_resource'
|
27
|
-
require_relative 'aws-sdk-cloudformation/stack_resource_summary'
|
28
|
-
require_relative 'aws-sdk-cloudformation/customizations'
|
14
|
+
Aws::Plugins::GlobalConfiguration.add_identifier(:cloudformation)
|
29
15
|
|
30
16
|
# This module provides support for AWS CloudFormation. This module is available in the
|
31
17
|
# `aws-sdk-cloudformation` gem.
|
@@ -56,7 +42,25 @@ require_relative 'aws-sdk-cloudformation/customizations'
|
|
56
42
|
#
|
57
43
|
# @!group service
|
58
44
|
module Aws::CloudFormation
|
45
|
+
autoload :Types, 'aws-sdk-cloudformation/types'
|
46
|
+
autoload :ClientApi, 'aws-sdk-cloudformation/client_api'
|
47
|
+
module Plugins
|
48
|
+
autoload :Endpoints, 'aws-sdk-cloudformation/plugins/endpoints.rb'
|
49
|
+
end
|
50
|
+
autoload :Client, 'aws-sdk-cloudformation/client'
|
51
|
+
autoload :Errors, 'aws-sdk-cloudformation/errors'
|
52
|
+
autoload :Waiters, 'aws-sdk-cloudformation/waiters'
|
53
|
+
autoload :Resource, 'aws-sdk-cloudformation/resource'
|
54
|
+
autoload :EndpointParameters, 'aws-sdk-cloudformation/endpoint_parameters'
|
55
|
+
autoload :EndpointProvider, 'aws-sdk-cloudformation/endpoint_provider'
|
56
|
+
autoload :Endpoints, 'aws-sdk-cloudformation/endpoints'
|
57
|
+
autoload :Event, 'aws-sdk-cloudformation/event'
|
58
|
+
autoload :Stack, 'aws-sdk-cloudformation/stack'
|
59
|
+
autoload :StackResource, 'aws-sdk-cloudformation/stack_resource'
|
60
|
+
autoload :StackResourceSummary, 'aws-sdk-cloudformation/stack_resource_summary'
|
59
61
|
|
60
|
-
GEM_VERSION = '1.
|
62
|
+
GEM_VERSION = '1.120.0'
|
61
63
|
|
62
64
|
end
|
65
|
+
|
66
|
+
require_relative 'aws-sdk-cloudformation/customizations'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-cloudformation
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.120.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-09-
|
11
|
+
date: 2024-09-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|