aws-sdk-cloudtrail 1.85.0 → 1.92.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 +35 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudtrail/client.rb +114 -47
- data/lib/aws-sdk-cloudtrail/client_api.rb +1 -0
- data/lib/aws-sdk-cloudtrail/endpoints.rb +49 -196
- data/lib/aws-sdk-cloudtrail/plugins/endpoints.rb +18 -6
- data/lib/aws-sdk-cloudtrail/types.rb +207 -565
- data/lib/aws-sdk-cloudtrail.rb +15 -11
- data/sig/client.rbs +2 -0
- data/sig/resource.rbs +2 -0
- metadata +4 -4
data/lib/aws-sdk-cloudtrail.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-cloudtrail/client_api'
|
16
|
-
require_relative 'aws-sdk-cloudtrail/plugins/endpoints.rb'
|
17
|
-
require_relative 'aws-sdk-cloudtrail/client'
|
18
|
-
require_relative 'aws-sdk-cloudtrail/errors'
|
19
|
-
require_relative 'aws-sdk-cloudtrail/resource'
|
20
|
-
require_relative 'aws-sdk-cloudtrail/endpoint_parameters'
|
21
|
-
require_relative 'aws-sdk-cloudtrail/endpoint_provider'
|
22
|
-
require_relative 'aws-sdk-cloudtrail/endpoints'
|
23
|
-
require_relative 'aws-sdk-cloudtrail/customizations'
|
14
|
+
Aws::Plugins::GlobalConfiguration.add_identifier(:cloudtrail)
|
24
15
|
|
25
16
|
# This module provides support for AWS CloudTrail. This module is available in the
|
26
17
|
# `aws-sdk-cloudtrail` gem.
|
@@ -51,7 +42,20 @@ require_relative 'aws-sdk-cloudtrail/customizations'
|
|
51
42
|
#
|
52
43
|
# @!group service
|
53
44
|
module Aws::CloudTrail
|
45
|
+
autoload :Types, 'aws-sdk-cloudtrail/types'
|
46
|
+
autoload :ClientApi, 'aws-sdk-cloudtrail/client_api'
|
47
|
+
module Plugins
|
48
|
+
autoload :Endpoints, 'aws-sdk-cloudtrail/plugins/endpoints.rb'
|
49
|
+
end
|
50
|
+
autoload :Client, 'aws-sdk-cloudtrail/client'
|
51
|
+
autoload :Errors, 'aws-sdk-cloudtrail/errors'
|
52
|
+
autoload :Resource, 'aws-sdk-cloudtrail/resource'
|
53
|
+
autoload :EndpointParameters, 'aws-sdk-cloudtrail/endpoint_parameters'
|
54
|
+
autoload :EndpointProvider, 'aws-sdk-cloudtrail/endpoint_provider'
|
55
|
+
autoload :Endpoints, 'aws-sdk-cloudtrail/endpoints'
|
54
56
|
|
55
|
-
GEM_VERSION = '1.
|
57
|
+
GEM_VERSION = '1.92.0'
|
56
58
|
|
57
59
|
end
|
60
|
+
|
61
|
+
require_relative 'aws-sdk-cloudtrail/customizations'
|
data/sig/client.rbs
CHANGED
@@ -15,6 +15,7 @@ module Aws
|
|
15
15
|
?credentials: untyped,
|
16
16
|
?region: String,
|
17
17
|
?access_key_id: String,
|
18
|
+
?account_id: String,
|
18
19
|
?active_endpoint_cache: bool,
|
19
20
|
?adaptive_retry_wait_to_fill: bool,
|
20
21
|
?client_side_monitoring: bool,
|
@@ -51,6 +52,7 @@ module Aws
|
|
51
52
|
?sigv4a_signing_region_set: Array[String],
|
52
53
|
?simple_json: bool,
|
53
54
|
?stub_responses: untyped,
|
55
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
54
56
|
?token_provider: untyped,
|
55
57
|
?use_dualstack_endpoint: bool,
|
56
58
|
?use_fips_endpoint: bool,
|
data/sig/resource.rbs
CHANGED
@@ -15,6 +15,7 @@ module Aws
|
|
15
15
|
?credentials: untyped,
|
16
16
|
?region: String,
|
17
17
|
?access_key_id: String,
|
18
|
+
?account_id: String,
|
18
19
|
?active_endpoint_cache: bool,
|
19
20
|
?adaptive_retry_wait_to_fill: bool,
|
20
21
|
?client_side_monitoring: bool,
|
@@ -51,6 +52,7 @@ module Aws
|
|
51
52
|
?sigv4a_signing_region_set: Array[String],
|
52
53
|
?simple_json: bool,
|
53
54
|
?stub_responses: untyped,
|
55
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
54
56
|
?token_provider: untyped,
|
55
57
|
?use_dualstack_endpoint: bool,
|
56
58
|
?use_fips_endpoint: bool,
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-cloudtrail
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.92.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-
|
11
|
+
date: 2024-09-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.207.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.207.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|