google-cloud-security_center-v1 0.31.0 → 0.32.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/lib/google/cloud/security_center/v1/security_center/client.rb +10 -1
- data/lib/google/cloud/security_center/v1/security_center/operations.rb +10 -1
- data/lib/google/cloud/security_center/v1/security_center/rest/client.rb +762 -0
- data/lib/google/cloud/security_center/v1/security_center/rest/operations.rb +75 -0
- data/lib/google/cloud/security_center/v1/version.rb +1 -1
- data/proto_docs/google/api/field_behavior.rb +14 -0
- data/proto_docs/google/iam/v1/policy.rb +8 -4
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cb5f5353f5de55f1dc9bf90184f56161fdbb5924cd9d8fb1198bc481563a94c8
|
|
4
|
+
data.tar.gz: 70253ea6af60231b4a3d12959812797536b46b878387c2896861534502c97fb5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 96603c6e7fa25639bccac2877cff799588e283a23a75666cfb952594949030b550ce3f8a2ce0961a1566d3314484a420abb717a3e73eca99e557fd93ab10ed84
|
|
7
|
+
data.tar.gz: 43fbb35193c78344b9e2ad056447a03117d5b9b4da55c691237cc470202566b6119bc3ccfe86e26010193378f3de39ea1113fad9b513d6ece513f160d67ca043
|
|
@@ -254,7 +254,8 @@ module Google
|
|
|
254
254
|
credentials: credentials,
|
|
255
255
|
endpoint: @config.endpoint,
|
|
256
256
|
channel_args: @config.channel_args,
|
|
257
|
-
interceptors: @config.interceptors
|
|
257
|
+
interceptors: @config.interceptors,
|
|
258
|
+
channel_pool_config: @config.channel_pool
|
|
258
259
|
)
|
|
259
260
|
end
|
|
260
261
|
|
|
@@ -5015,6 +5016,14 @@ module Google
|
|
|
5015
5016
|
end
|
|
5016
5017
|
end
|
|
5017
5018
|
|
|
5019
|
+
##
|
|
5020
|
+
# Configuration for the channel pool
|
|
5021
|
+
# @return [::Gapic::ServiceStub::ChannelPool::Configuration]
|
|
5022
|
+
#
|
|
5023
|
+
def channel_pool
|
|
5024
|
+
@channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
|
|
5025
|
+
end
|
|
5026
|
+
|
|
5018
5027
|
##
|
|
5019
5028
|
# Configuration RPC class for the SecurityCenter API.
|
|
5020
5029
|
#
|
|
@@ -93,7 +93,8 @@ module Google
|
|
|
93
93
|
credentials: credentials,
|
|
94
94
|
endpoint: @config.endpoint,
|
|
95
95
|
channel_args: @config.channel_args,
|
|
96
|
-
interceptors: @config.interceptors
|
|
96
|
+
interceptors: @config.interceptors,
|
|
97
|
+
channel_pool_config: @config.channel_pool
|
|
97
98
|
)
|
|
98
99
|
|
|
99
100
|
# Used by an LRO wrapper for some methods of this service
|
|
@@ -701,6 +702,14 @@ module Google
|
|
|
701
702
|
end
|
|
702
703
|
end
|
|
703
704
|
|
|
705
|
+
##
|
|
706
|
+
# Configuration for the channel pool
|
|
707
|
+
# @return [::Gapic::ServiceStub::ChannelPool::Configuration]
|
|
708
|
+
#
|
|
709
|
+
def channel_pool
|
|
710
|
+
@channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
|
|
711
|
+
end
|
|
712
|
+
|
|
704
713
|
##
|
|
705
714
|
# Configuration RPC class for the Operations API.
|
|
706
715
|
#
|