aws-sdk-cloudsearchdomain 1.51.0 → 1.53.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-cloudsearchdomain/client.rb +1 -3
- data/lib/aws-sdk-cloudsearchdomain/client_api.rb +1 -0
- data/lib/aws-sdk-cloudsearchdomain/types.rb +1 -0
- data/lib/aws-sdk-cloudsearchdomain.rb +9 -7
- 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: 356226504946d5042c6016b235a2e62807a7ddc5c4a4a528f8c4e2afa52f0b39
|
|
4
|
+
data.tar.gz: f285911ef6d3415234161dfb0dd3861ac73207da3dfc11acfca132fa7dc1b007
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0baeb575cedd89c1d375a7dedb3655d209d13253c80238d1baa5f04e7987c2343deaf7481a414eb1b0b40a87664631f7f4091d9793d0f8a7f322195138afc59a
|
|
7
|
+
data.tar.gz: 69a96da4111edefcab500e14b0fb96956f61b2bc505145ab3bce6952cf27f5491a304f2df5876b9a01c51d1c5fc8ebf951d477059434cc211b031c5d42ba59f3
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.53.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.52.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.51.0 (2024-09-20)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.53.0
|
|
@@ -35,8 +35,6 @@ require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
|
|
35
35
|
require 'aws-sdk-cloudsearchdomain/plugins/conditional_signing.rb'
|
|
36
36
|
require 'aws-sdk-cloudsearchdomain/plugins/switch_to_post.rb'
|
|
37
37
|
|
|
38
|
-
Aws::Plugins::GlobalConfiguration.add_identifier(:cloudsearchdomain)
|
|
39
|
-
|
|
40
38
|
module Aws::CloudSearchDomain
|
|
41
39
|
# An API client for CloudSearchDomain. To construct a client, you need to configure a `:region` and `:credentials`.
|
|
42
40
|
#
|
|
@@ -992,7 +990,7 @@ module Aws::CloudSearchDomain
|
|
|
992
990
|
tracer: tracer
|
|
993
991
|
)
|
|
994
992
|
context[:gem_name] = 'aws-sdk-cloudsearchdomain'
|
|
995
|
-
context[:gem_version] = '1.
|
|
993
|
+
context[:gem_version] = '1.53.0'
|
|
996
994
|
Seahorse::Client::Request.new(handlers, context)
|
|
997
995
|
end
|
|
998
996
|
|
|
@@ -11,12 +11,7 @@
|
|
|
11
11
|
require 'aws-sdk-core'
|
|
12
12
|
require 'aws-sigv4'
|
|
13
13
|
|
|
14
|
-
|
|
15
|
-
require_relative 'aws-sdk-cloudsearchdomain/client_api'
|
|
16
|
-
require_relative 'aws-sdk-cloudsearchdomain/client'
|
|
17
|
-
require_relative 'aws-sdk-cloudsearchdomain/errors'
|
|
18
|
-
require_relative 'aws-sdk-cloudsearchdomain/resource'
|
|
19
|
-
require_relative 'aws-sdk-cloudsearchdomain/customizations'
|
|
14
|
+
Aws::Plugins::GlobalConfiguration.add_identifier(:cloudsearchdomain)
|
|
20
15
|
|
|
21
16
|
# This module provides support for Amazon CloudSearch Domain. This module is available in the
|
|
22
17
|
# `aws-sdk-cloudsearchdomain` gem.
|
|
@@ -47,7 +42,14 @@ require_relative 'aws-sdk-cloudsearchdomain/customizations'
|
|
|
47
42
|
#
|
|
48
43
|
# @!group service
|
|
49
44
|
module Aws::CloudSearchDomain
|
|
45
|
+
autoload :Types, 'aws-sdk-cloudsearchdomain/types'
|
|
46
|
+
autoload :ClientApi, 'aws-sdk-cloudsearchdomain/client_api'
|
|
47
|
+
autoload :Client, 'aws-sdk-cloudsearchdomain/client'
|
|
48
|
+
autoload :Errors, 'aws-sdk-cloudsearchdomain/errors'
|
|
49
|
+
autoload :Resource, 'aws-sdk-cloudsearchdomain/resource'
|
|
50
50
|
|
|
51
|
-
GEM_VERSION = '1.
|
|
51
|
+
GEM_VERSION = '1.53.0'
|
|
52
52
|
|
|
53
53
|
end
|
|
54
|
+
|
|
55
|
+
require_relative 'aws-sdk-cloudsearchdomain/customizations'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-cloudsearchdomain
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.53.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
|