aws-sdk-ivschat 1.56.0 → 1.57.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-ivschat/client.rb +1 -1
- data/lib/aws-sdk-ivschat.rb +1 -1
- data/sig/client.rbs +2 -22
- data/sig/params.rbs +25 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a2f5de5650a2a593d529d38b7dabf342e5f62de05ec29d27d1b57e5b058afd55
|
|
4
|
+
data.tar.gz: 5a44376c7a99cf2c6ad40d396bc8373de4cda90896e93570dd38b742d424ab43
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 25d4470bb3b89e0a46a8380ffcbae075cd6304cbd197667fe6ed491710c85fde7d918a2b0ab9dca225c3b09a1d84884f0b993c6368add711d37360d15ef2783f
|
|
7
|
+
data.tar.gz: a32f9e1311e62a108455af9f36bac12ba330d7039d8449c65c60a8884997091570e80db9d219dcdfe790812856cc068507c2d6f032bbc2fc602ab016792ebfd5
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.57.0
|
data/lib/aws-sdk-ivschat.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -108,17 +108,7 @@ module Aws
|
|
|
108
108
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#create_logging_configuration-instance_method
|
|
109
109
|
def create_logging_configuration: (
|
|
110
110
|
?name: ::String,
|
|
111
|
-
destination_configuration:
|
|
112
|
-
s3: {
|
|
113
|
-
bucket_name: ::String
|
|
114
|
-
}?,
|
|
115
|
-
cloud_watch_logs: {
|
|
116
|
-
log_group_name: ::String
|
|
117
|
-
}?,
|
|
118
|
-
firehose: {
|
|
119
|
-
delivery_stream_name: ::String
|
|
120
|
-
}?
|
|
121
|
-
},
|
|
111
|
+
destination_configuration: Params::destination_configuration,
|
|
122
112
|
?tags: Hash[::String, ::String]
|
|
123
113
|
) -> _CreateLoggingConfigurationResponseSuccess
|
|
124
114
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLoggingConfigurationResponseSuccess
|
|
@@ -305,17 +295,7 @@ module Aws
|
|
|
305
295
|
def update_logging_configuration: (
|
|
306
296
|
identifier: ::String,
|
|
307
297
|
?name: ::String,
|
|
308
|
-
?destination_configuration:
|
|
309
|
-
s3: {
|
|
310
|
-
bucket_name: ::String
|
|
311
|
-
}?,
|
|
312
|
-
cloud_watch_logs: {
|
|
313
|
-
log_group_name: ::String
|
|
314
|
-
}?,
|
|
315
|
-
firehose: {
|
|
316
|
-
delivery_stream_name: ::String
|
|
317
|
-
}?
|
|
318
|
-
}
|
|
298
|
+
?destination_configuration: Params::destination_configuration
|
|
319
299
|
) -> _UpdateLoggingConfigurationResponseSuccess
|
|
320
300
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLoggingConfigurationResponseSuccess
|
|
321
301
|
|
data/sig/params.rbs
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
|
2
|
+
#
|
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
5
|
+
#
|
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
|
7
|
+
|
|
8
|
+
module Aws
|
|
9
|
+
module Ivschat
|
|
10
|
+
module Params
|
|
11
|
+
type destination_configuration = {
|
|
12
|
+
s3: {
|
|
13
|
+
bucket_name: ::String
|
|
14
|
+
}?,
|
|
15
|
+
cloud_watch_logs: {
|
|
16
|
+
log_group_name: ::String
|
|
17
|
+
}?,
|
|
18
|
+
firehose: {
|
|
19
|
+
delivery_stream_name: ::String
|
|
20
|
+
}?
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-ivschat
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.57.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -68,6 +68,7 @@ files:
|
|
|
68
68
|
- lib/aws-sdk-ivschat/waiters.rb
|
|
69
69
|
- sig/client.rbs
|
|
70
70
|
- sig/errors.rbs
|
|
71
|
+
- sig/params.rbs
|
|
71
72
|
- sig/resource.rbs
|
|
72
73
|
- sig/types.rbs
|
|
73
74
|
- sig/waiters.rbs
|