aws-sdk-cloudformation 1.118.0 → 1.119.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudformation/client.rb +1 -1
- 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 +19 -17
- 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: b23ed8f681bb67b2176bd206c418f59a47d13eb3585c48cb47e557b09b39c90c
|
|
4
|
+
data.tar.gz: e1f8b580ac4cd98d8f8aaf71e78f7c7ceb51ed1ef9878822906570ea14c81264
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d1d2bb3c33aa7d75b8b84aae030711b98d0a349957741fe7d015d89c8287efbba41235c813c6886c93580ae3e58164d35ac902bf9b2870425e67d1a97f840323
|
|
7
|
+
data.tar.gz: ee27e83e55990475e5cc44efe56e64cbac38991830bd3d342a39a8e69babf32027d7040318ab80df7ec43cbd91c28a3751636f25812b71b1ca9f53562723bc71
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.119.0
|
|
@@ -8419,7 +8419,7 @@ module Aws::CloudFormation
|
|
|
8419
8419
|
tracer: tracer
|
|
8420
8420
|
)
|
|
8421
8421
|
context[:gem_name] = 'aws-sdk-cloudformation'
|
|
8422
|
-
context[:gem_version] = '1.
|
|
8422
|
+
context[:gem_version] = '1.119.0'
|
|
8423
8423
|
Seahorse::Client::Request.new(handlers, context)
|
|
8424
8424
|
end
|
|
8425
8425
|
|
|
@@ -11678,3 +11678,4 @@ module Aws::CloudFormation
|
|
|
11678
11678
|
|
|
11679
11679
|
end
|
|
11680
11680
|
end
|
|
11681
|
+
|
|
@@ -11,22 +11,6 @@
|
|
|
11
11
|
require 'aws-sdk-core'
|
|
12
12
|
require 'aws-sigv4'
|
|
13
13
|
|
|
14
|
-
require_relative 'aws-sdk-cloudformation/types'
|
|
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'
|
|
29
|
-
|
|
30
14
|
# This module provides support for AWS CloudFormation. This module is available in the
|
|
31
15
|
# `aws-sdk-cloudformation` gem.
|
|
32
16
|
#
|
|
@@ -56,7 +40,25 @@ require_relative 'aws-sdk-cloudformation/customizations'
|
|
|
56
40
|
#
|
|
57
41
|
# @!group service
|
|
58
42
|
module Aws::CloudFormation
|
|
43
|
+
autoload :Types, 'aws-sdk-cloudformation/types'
|
|
44
|
+
autoload :ClientApi, 'aws-sdk-cloudformation/client_api'
|
|
45
|
+
module Plugins
|
|
46
|
+
autoload :Endpoints, 'aws-sdk-cloudformation/plugins/endpoints.rb'
|
|
47
|
+
end
|
|
48
|
+
autoload :Client, 'aws-sdk-cloudformation/client'
|
|
49
|
+
autoload :Errors, 'aws-sdk-cloudformation/errors'
|
|
50
|
+
autoload :Waiters, 'aws-sdk-cloudformation/waiters'
|
|
51
|
+
autoload :Resource, 'aws-sdk-cloudformation/resource'
|
|
52
|
+
autoload :EndpointParameters, 'aws-sdk-cloudformation/endpoint_parameters'
|
|
53
|
+
autoload :EndpointProvider, 'aws-sdk-cloudformation/endpoint_provider'
|
|
54
|
+
autoload :Endpoints, 'aws-sdk-cloudformation/endpoints'
|
|
55
|
+
autoload :Event, 'aws-sdk-cloudformation/event'
|
|
56
|
+
autoload :Stack, 'aws-sdk-cloudformation/stack'
|
|
57
|
+
autoload :StackResource, 'aws-sdk-cloudformation/stack_resource'
|
|
58
|
+
autoload :StackResourceSummary, 'aws-sdk-cloudformation/stack_resource_summary'
|
|
59
59
|
|
|
60
|
-
GEM_VERSION = '1.
|
|
60
|
+
GEM_VERSION = '1.119.0'
|
|
61
61
|
|
|
62
62
|
end
|
|
63
|
+
|
|
64
|
+
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.119.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-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|