aws-sdk-synthetics 1.52.0 → 1.54.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-synthetics/client.rb +1 -3
- data/lib/aws-sdk-synthetics/client_api.rb +1 -0
- data/lib/aws-sdk-synthetics/types.rb +1 -0
- data/lib/aws-sdk-synthetics.rb +15 -11
- 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: 837a4fe2537ed2634df3d27ee0885af56ce304a6fb2c260f6996094c03eb1cb3
|
4
|
+
data.tar.gz: ba2564ad7be0d798f958ccba32eacd15b4dad526003bbbd58093074856078f3c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7412b1b60cac934703fe46b6dad936baf78066306e46e48fceccb03b6d7a5a70706e7a192a32800a585676d29e459e112500212bee19ba42d301944de8775ad1
|
7
|
+
data.tar.gz: 42d7ceeee305ff31ed30db6b24752efc1946f4dafb033e9232e687406bb005d98fb87da8e310c46a9a7f579fb7de069a3e8032c86eb9f52d06a7cb64eeb17916
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.54.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.53.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.52.0 (2024-09-20)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.54.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/rest_json.rb'
|
38
38
|
|
39
|
-
Aws::Plugins::GlobalConfiguration.add_identifier(:synthetics)
|
40
|
-
|
41
39
|
module Aws::Synthetics
|
42
40
|
# An API client for Synthetics. To construct a client, you need to configure a `:region` and `:credentials`.
|
43
41
|
#
|
@@ -1812,7 +1810,7 @@ module Aws::Synthetics
|
|
1812
1810
|
tracer: tracer
|
1813
1811
|
)
|
1814
1812
|
context[:gem_name] = 'aws-sdk-synthetics'
|
1815
|
-
context[:gem_version] = '1.
|
1813
|
+
context[:gem_version] = '1.54.0'
|
1816
1814
|
Seahorse::Client::Request.new(handlers, context)
|
1817
1815
|
end
|
1818
1816
|
|
data/lib/aws-sdk-synthetics.rb
CHANGED
@@ -11,16 +11,7 @@
|
|
11
11
|
require 'aws-sdk-core'
|
12
12
|
require 'aws-sigv4'
|
13
13
|
|
14
|
-
|
15
|
-
require_relative 'aws-sdk-synthetics/client_api'
|
16
|
-
require_relative 'aws-sdk-synthetics/plugins/endpoints.rb'
|
17
|
-
require_relative 'aws-sdk-synthetics/client'
|
18
|
-
require_relative 'aws-sdk-synthetics/errors'
|
19
|
-
require_relative 'aws-sdk-synthetics/resource'
|
20
|
-
require_relative 'aws-sdk-synthetics/endpoint_parameters'
|
21
|
-
require_relative 'aws-sdk-synthetics/endpoint_provider'
|
22
|
-
require_relative 'aws-sdk-synthetics/endpoints'
|
23
|
-
require_relative 'aws-sdk-synthetics/customizations'
|
14
|
+
Aws::Plugins::GlobalConfiguration.add_identifier(:synthetics)
|
24
15
|
|
25
16
|
# This module provides support for Synthetics. This module is available in the
|
26
17
|
# `aws-sdk-synthetics` gem.
|
@@ -51,7 +42,20 @@ require_relative 'aws-sdk-synthetics/customizations'
|
|
51
42
|
#
|
52
43
|
# @!group service
|
53
44
|
module Aws::Synthetics
|
45
|
+
autoload :Types, 'aws-sdk-synthetics/types'
|
46
|
+
autoload :ClientApi, 'aws-sdk-synthetics/client_api'
|
47
|
+
module Plugins
|
48
|
+
autoload :Endpoints, 'aws-sdk-synthetics/plugins/endpoints.rb'
|
49
|
+
end
|
50
|
+
autoload :Client, 'aws-sdk-synthetics/client'
|
51
|
+
autoload :Errors, 'aws-sdk-synthetics/errors'
|
52
|
+
autoload :Resource, 'aws-sdk-synthetics/resource'
|
53
|
+
autoload :EndpointParameters, 'aws-sdk-synthetics/endpoint_parameters'
|
54
|
+
autoload :EndpointProvider, 'aws-sdk-synthetics/endpoint_provider'
|
55
|
+
autoload :Endpoints, 'aws-sdk-synthetics/endpoints'
|
54
56
|
|
55
|
-
GEM_VERSION = '1.
|
57
|
+
GEM_VERSION = '1.54.0'
|
56
58
|
|
57
59
|
end
|
60
|
+
|
61
|
+
require_relative 'aws-sdk-synthetics/customizations'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-synthetics
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.54.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
|