aws-sdk-codecatalyst 1.27.0 → 1.29.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-codecatalyst/client.rb +1 -3
- data/lib/aws-sdk-codecatalyst/client_api.rb +1 -0
- data/lib/aws-sdk-codecatalyst/types.rb +1 -0
- data/lib/aws-sdk-codecatalyst.rb +16 -12
- 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: 83221674b2a15574af642e4b9d3ff929ddb61c1acc7e4a47254b8e6249393ea5
|
4
|
+
data.tar.gz: 26361c32073f1c09551d29c862f8fd59e72dad357b62d81410de2e585088fbfa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fc785be51fdbd832672dd0da415be59705d8ef3722447eca84925a8f62a6230302f391f6c32a55eaed0643c505da41944ebfc8c9565243363e4275aab154aa14
|
7
|
+
data.tar.gz: 9547fb3a56bc498af137b9e4e7dc54b306d58d2d6669bd7f87d856ee712301c74c1dbafcc7452037cf12a3382b55c4a3bb47d415738544096e2e480651c7e896
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.29.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.28.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.27.0 (2024-09-20)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.29.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(:codecatalyst)
|
40
|
-
|
41
39
|
module Aws::CodeCatalyst
|
42
40
|
# An API client for CodeCatalyst. To construct a client, you need to configure a `:region` and `:credentials`.
|
43
41
|
#
|
@@ -2463,7 +2461,7 @@ module Aws::CodeCatalyst
|
|
2463
2461
|
tracer: tracer
|
2464
2462
|
)
|
2465
2463
|
context[:gem_name] = 'aws-sdk-codecatalyst'
|
2466
|
-
context[:gem_version] = '1.
|
2464
|
+
context[:gem_version] = '1.29.0'
|
2467
2465
|
Seahorse::Client::Request.new(handlers, context)
|
2468
2466
|
end
|
2469
2467
|
|
data/lib/aws-sdk-codecatalyst.rb
CHANGED
@@ -10,17 +10,7 @@
|
|
10
10
|
|
11
11
|
require 'aws-sdk-core'
|
12
12
|
|
13
|
-
|
14
|
-
require_relative 'aws-sdk-codecatalyst/client_api'
|
15
|
-
require_relative 'aws-sdk-codecatalyst/plugins/endpoints.rb'
|
16
|
-
require_relative 'aws-sdk-codecatalyst/client'
|
17
|
-
require_relative 'aws-sdk-codecatalyst/errors'
|
18
|
-
require_relative 'aws-sdk-codecatalyst/waiters'
|
19
|
-
require_relative 'aws-sdk-codecatalyst/resource'
|
20
|
-
require_relative 'aws-sdk-codecatalyst/endpoint_parameters'
|
21
|
-
require_relative 'aws-sdk-codecatalyst/endpoint_provider'
|
22
|
-
require_relative 'aws-sdk-codecatalyst/endpoints'
|
23
|
-
require_relative 'aws-sdk-codecatalyst/customizations'
|
13
|
+
Aws::Plugins::GlobalConfiguration.add_identifier(:codecatalyst)
|
24
14
|
|
25
15
|
# This module provides support for Amazon CodeCatalyst. This module is available in the
|
26
16
|
# `aws-sdk-codecatalyst` gem.
|
@@ -51,7 +41,21 @@ require_relative 'aws-sdk-codecatalyst/customizations'
|
|
51
41
|
#
|
52
42
|
# @!group service
|
53
43
|
module Aws::CodeCatalyst
|
44
|
+
autoload :Types, 'aws-sdk-codecatalyst/types'
|
45
|
+
autoload :ClientApi, 'aws-sdk-codecatalyst/client_api'
|
46
|
+
module Plugins
|
47
|
+
autoload :Endpoints, 'aws-sdk-codecatalyst/plugins/endpoints.rb'
|
48
|
+
end
|
49
|
+
autoload :Client, 'aws-sdk-codecatalyst/client'
|
50
|
+
autoload :Errors, 'aws-sdk-codecatalyst/errors'
|
51
|
+
autoload :Waiters, 'aws-sdk-codecatalyst/waiters'
|
52
|
+
autoload :Resource, 'aws-sdk-codecatalyst/resource'
|
53
|
+
autoload :EndpointParameters, 'aws-sdk-codecatalyst/endpoint_parameters'
|
54
|
+
autoload :EndpointProvider, 'aws-sdk-codecatalyst/endpoint_provider'
|
55
|
+
autoload :Endpoints, 'aws-sdk-codecatalyst/endpoints'
|
54
56
|
|
55
|
-
GEM_VERSION = '1.
|
57
|
+
GEM_VERSION = '1.29.0'
|
56
58
|
|
57
59
|
end
|
60
|
+
|
61
|
+
require_relative 'aws-sdk-codecatalyst/customizations'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-codecatalyst
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.29.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
|