google-apis-securitycenter_v1 0.119.0 → 0.120.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dd6ce510da6f8008bdfff62d8e7c0577ae04a9b1cdbab607f1a4991ff776e0f8
|
|
4
|
+
data.tar.gz: 70aea3376f147036cd2ac42a98f00e91cf739be9903917aa39f0db07855296aa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 005f5190919de86a4bd57f345ade9962c3b4be11a5bf4c1466bb2dd14e46f0c3768ad437aa4ce78c140a8706e8d5c94adef4e0d63957d3cffe592e9668290a12
|
|
7
|
+
data.tar.gz: eeb25faad72ffa1598177a077750fc08b00a3088697d556132fd78f8beade5a3d18155ff9e3ce44f79a6bbbf9777311ab048ce43eb93cc1a87aa2181dd1c3990
|
data/CHANGELOG.md
CHANGED
|
@@ -257,6 +257,62 @@ module Google
|
|
|
257
257
|
end
|
|
258
258
|
end
|
|
259
259
|
|
|
260
|
+
#
|
|
261
|
+
class Agent
|
|
262
|
+
include Google::Apis::Core::Hashable
|
|
263
|
+
|
|
264
|
+
#
|
|
265
|
+
# Corresponds to the JSON property `displayName`
|
|
266
|
+
# @return [String]
|
|
267
|
+
attr_accessor :display_name
|
|
268
|
+
|
|
269
|
+
#
|
|
270
|
+
# Corresponds to the JSON property `id`
|
|
271
|
+
# @return [String]
|
|
272
|
+
attr_accessor :id
|
|
273
|
+
|
|
274
|
+
def initialize(**args)
|
|
275
|
+
update!(**args)
|
|
276
|
+
end
|
|
277
|
+
|
|
278
|
+
# Update properties of this object
|
|
279
|
+
def update!(**args)
|
|
280
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
|
281
|
+
@id = args[:id] if args.key?(:id)
|
|
282
|
+
end
|
|
283
|
+
end
|
|
284
|
+
|
|
285
|
+
#
|
|
286
|
+
class AgentAnomaly
|
|
287
|
+
include Google::Apis::Core::Hashable
|
|
288
|
+
|
|
289
|
+
#
|
|
290
|
+
# Corresponds to the JSON property `confidenceScore`
|
|
291
|
+
# @return [Float]
|
|
292
|
+
attr_accessor :confidence_score
|
|
293
|
+
|
|
294
|
+
#
|
|
295
|
+
# Corresponds to the JSON property `detectorReferences`
|
|
296
|
+
# @return [Array<Google::Apis::SecuritycenterV1::DetectorReference>]
|
|
297
|
+
attr_accessor :detector_references
|
|
298
|
+
|
|
299
|
+
#
|
|
300
|
+
# Corresponds to the JSON property `invocationReferences`
|
|
301
|
+
# @return [Array<Google::Apis::SecuritycenterV1::InvocationReference>]
|
|
302
|
+
attr_accessor :invocation_references
|
|
303
|
+
|
|
304
|
+
def initialize(**args)
|
|
305
|
+
update!(**args)
|
|
306
|
+
end
|
|
307
|
+
|
|
308
|
+
# Update properties of this object
|
|
309
|
+
def update!(**args)
|
|
310
|
+
@confidence_score = args[:confidence_score] if args.key?(:confidence_score)
|
|
311
|
+
@detector_references = args[:detector_references] if args.key?(:detector_references)
|
|
312
|
+
@invocation_references = args[:invocation_references] if args.key?(:invocation_references)
|
|
313
|
+
end
|
|
314
|
+
end
|
|
315
|
+
|
|
260
316
|
#
|
|
261
317
|
class AgentDataAccessEvent
|
|
262
318
|
include Google::Apis::Core::Hashable
|
|
@@ -294,6 +350,25 @@ module Google
|
|
|
294
350
|
end
|
|
295
351
|
end
|
|
296
352
|
|
|
353
|
+
#
|
|
354
|
+
class AgentSession
|
|
355
|
+
include Google::Apis::Core::Hashable
|
|
356
|
+
|
|
357
|
+
#
|
|
358
|
+
# Corresponds to the JSON property `sessionId`
|
|
359
|
+
# @return [String]
|
|
360
|
+
attr_accessor :session_id
|
|
361
|
+
|
|
362
|
+
def initialize(**args)
|
|
363
|
+
update!(**args)
|
|
364
|
+
end
|
|
365
|
+
|
|
366
|
+
# Update properties of this object
|
|
367
|
+
def update!(**args)
|
|
368
|
+
@session_id = args[:session_id] if args.key?(:session_id)
|
|
369
|
+
end
|
|
370
|
+
end
|
|
371
|
+
|
|
297
372
|
#
|
|
298
373
|
class AiModel
|
|
299
374
|
include Google::Apis::Core::Hashable
|
|
@@ -2190,6 +2265,49 @@ module Google
|
|
|
2190
2265
|
end
|
|
2191
2266
|
end
|
|
2192
2267
|
|
|
2268
|
+
#
|
|
2269
|
+
class DetectorReference
|
|
2270
|
+
include Google::Apis::Core::Hashable
|
|
2271
|
+
|
|
2272
|
+
#
|
|
2273
|
+
# Corresponds to the JSON property `detectorId`
|
|
2274
|
+
# @return [String]
|
|
2275
|
+
attr_accessor :detector_id
|
|
2276
|
+
|
|
2277
|
+
#
|
|
2278
|
+
# Corresponds to the JSON property `displayName`
|
|
2279
|
+
# @return [String]
|
|
2280
|
+
attr_accessor :display_name
|
|
2281
|
+
|
|
2282
|
+
#
|
|
2283
|
+
# Corresponds to the JSON property `explanation`
|
|
2284
|
+
# @return [String]
|
|
2285
|
+
attr_accessor :explanation
|
|
2286
|
+
|
|
2287
|
+
#
|
|
2288
|
+
# Corresponds to the JSON property `recommendation`
|
|
2289
|
+
# @return [String]
|
|
2290
|
+
attr_accessor :recommendation
|
|
2291
|
+
|
|
2292
|
+
#
|
|
2293
|
+
# Corresponds to the JSON property `severity`
|
|
2294
|
+
# @return [String]
|
|
2295
|
+
attr_accessor :severity
|
|
2296
|
+
|
|
2297
|
+
def initialize(**args)
|
|
2298
|
+
update!(**args)
|
|
2299
|
+
end
|
|
2300
|
+
|
|
2301
|
+
# Update properties of this object
|
|
2302
|
+
def update!(**args)
|
|
2303
|
+
@detector_id = args[:detector_id] if args.key?(:detector_id)
|
|
2304
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
|
2305
|
+
@explanation = args[:explanation] if args.key?(:explanation)
|
|
2306
|
+
@recommendation = args[:recommendation] if args.key?(:recommendation)
|
|
2307
|
+
@severity = args[:severity] if args.key?(:severity)
|
|
2308
|
+
end
|
|
2309
|
+
end
|
|
2310
|
+
|
|
2193
2311
|
#
|
|
2194
2312
|
class DiscoveredWorkload
|
|
2195
2313
|
include Google::Apis::Core::Hashable
|
|
@@ -2842,11 +2960,26 @@ module Google
|
|
|
2842
2960
|
# @return [Google::Apis::SecuritycenterV1::AffectedResources]
|
|
2843
2961
|
attr_accessor :affected_resources
|
|
2844
2962
|
|
|
2963
|
+
#
|
|
2964
|
+
# Corresponds to the JSON property `agent`
|
|
2965
|
+
# @return [Google::Apis::SecuritycenterV1::Agent]
|
|
2966
|
+
attr_accessor :agent
|
|
2967
|
+
|
|
2968
|
+
#
|
|
2969
|
+
# Corresponds to the JSON property `agentAnomaly`
|
|
2970
|
+
# @return [Google::Apis::SecuritycenterV1::AgentAnomaly]
|
|
2971
|
+
attr_accessor :agent_anomaly
|
|
2972
|
+
|
|
2845
2973
|
#
|
|
2846
2974
|
# Corresponds to the JSON property `agentDataAccessEvents`
|
|
2847
2975
|
# @return [Array<Google::Apis::SecuritycenterV1::AgentDataAccessEvent>]
|
|
2848
2976
|
attr_accessor :agent_data_access_events
|
|
2849
2977
|
|
|
2978
|
+
#
|
|
2979
|
+
# Corresponds to the JSON property `agentSessions`
|
|
2980
|
+
# @return [Array<Google::Apis::SecuritycenterV1::AgentSession>]
|
|
2981
|
+
attr_accessor :agent_sessions
|
|
2982
|
+
|
|
2850
2983
|
#
|
|
2851
2984
|
# Corresponds to the JSON property `aiModel`
|
|
2852
2985
|
# @return [Google::Apis::SecuritycenterV1::AiModel]
|
|
@@ -3185,7 +3318,10 @@ module Google
|
|
|
3185
3318
|
def update!(**args)
|
|
3186
3319
|
@access = args[:access] if args.key?(:access)
|
|
3187
3320
|
@affected_resources = args[:affected_resources] if args.key?(:affected_resources)
|
|
3321
|
+
@agent = args[:agent] if args.key?(:agent)
|
|
3322
|
+
@agent_anomaly = args[:agent_anomaly] if args.key?(:agent_anomaly)
|
|
3188
3323
|
@agent_data_access_events = args[:agent_data_access_events] if args.key?(:agent_data_access_events)
|
|
3324
|
+
@agent_sessions = args[:agent_sessions] if args.key?(:agent_sessions)
|
|
3189
3325
|
@ai_model = args[:ai_model] if args.key?(:ai_model)
|
|
3190
3326
|
@application = args[:application] if args.key?(:application)
|
|
3191
3327
|
@artifact_guard_policies = args[:artifact_guard_policies] if args.key?(:artifact_guard_policies)
|
|
@@ -4870,6 +5006,62 @@ module Google
|
|
|
4870
5006
|
end
|
|
4871
5007
|
end
|
|
4872
5008
|
|
|
5009
|
+
#
|
|
5010
|
+
class GoogleCloudSecuritycenterV2Agent
|
|
5011
|
+
include Google::Apis::Core::Hashable
|
|
5012
|
+
|
|
5013
|
+
#
|
|
5014
|
+
# Corresponds to the JSON property `displayName`
|
|
5015
|
+
# @return [String]
|
|
5016
|
+
attr_accessor :display_name
|
|
5017
|
+
|
|
5018
|
+
#
|
|
5019
|
+
# Corresponds to the JSON property `id`
|
|
5020
|
+
# @return [String]
|
|
5021
|
+
attr_accessor :id
|
|
5022
|
+
|
|
5023
|
+
def initialize(**args)
|
|
5024
|
+
update!(**args)
|
|
5025
|
+
end
|
|
5026
|
+
|
|
5027
|
+
# Update properties of this object
|
|
5028
|
+
def update!(**args)
|
|
5029
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
|
5030
|
+
@id = args[:id] if args.key?(:id)
|
|
5031
|
+
end
|
|
5032
|
+
end
|
|
5033
|
+
|
|
5034
|
+
#
|
|
5035
|
+
class GoogleCloudSecuritycenterV2AgentAnomaly
|
|
5036
|
+
include Google::Apis::Core::Hashable
|
|
5037
|
+
|
|
5038
|
+
#
|
|
5039
|
+
# Corresponds to the JSON property `confidenceScore`
|
|
5040
|
+
# @return [Float]
|
|
5041
|
+
attr_accessor :confidence_score
|
|
5042
|
+
|
|
5043
|
+
#
|
|
5044
|
+
# Corresponds to the JSON property `detectorReferences`
|
|
5045
|
+
# @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2DetectorReference>]
|
|
5046
|
+
attr_accessor :detector_references
|
|
5047
|
+
|
|
5048
|
+
#
|
|
5049
|
+
# Corresponds to the JSON property `invocationReferences`
|
|
5050
|
+
# @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2InvocationReference>]
|
|
5051
|
+
attr_accessor :invocation_references
|
|
5052
|
+
|
|
5053
|
+
def initialize(**args)
|
|
5054
|
+
update!(**args)
|
|
5055
|
+
end
|
|
5056
|
+
|
|
5057
|
+
# Update properties of this object
|
|
5058
|
+
def update!(**args)
|
|
5059
|
+
@confidence_score = args[:confidence_score] if args.key?(:confidence_score)
|
|
5060
|
+
@detector_references = args[:detector_references] if args.key?(:detector_references)
|
|
5061
|
+
@invocation_references = args[:invocation_references] if args.key?(:invocation_references)
|
|
5062
|
+
end
|
|
5063
|
+
end
|
|
5064
|
+
|
|
4873
5065
|
#
|
|
4874
5066
|
class GoogleCloudSecuritycenterV2AgentDataAccessEvent
|
|
4875
5067
|
include Google::Apis::Core::Hashable
|
|
@@ -4907,6 +5099,25 @@ module Google
|
|
|
4907
5099
|
end
|
|
4908
5100
|
end
|
|
4909
5101
|
|
|
5102
|
+
#
|
|
5103
|
+
class GoogleCloudSecuritycenterV2AgentSession
|
|
5104
|
+
include Google::Apis::Core::Hashable
|
|
5105
|
+
|
|
5106
|
+
#
|
|
5107
|
+
# Corresponds to the JSON property `sessionId`
|
|
5108
|
+
# @return [String]
|
|
5109
|
+
attr_accessor :session_id
|
|
5110
|
+
|
|
5111
|
+
def initialize(**args)
|
|
5112
|
+
update!(**args)
|
|
5113
|
+
end
|
|
5114
|
+
|
|
5115
|
+
# Update properties of this object
|
|
5116
|
+
def update!(**args)
|
|
5117
|
+
@session_id = args[:session_id] if args.key?(:session_id)
|
|
5118
|
+
end
|
|
5119
|
+
end
|
|
5120
|
+
|
|
4910
5121
|
#
|
|
4911
5122
|
class GoogleCloudSecuritycenterV2AiModel
|
|
4912
5123
|
include Google::Apis::Core::Hashable
|
|
@@ -6430,6 +6641,49 @@ module Google
|
|
|
6430
6641
|
end
|
|
6431
6642
|
end
|
|
6432
6643
|
|
|
6644
|
+
#
|
|
6645
|
+
class GoogleCloudSecuritycenterV2DetectorReference
|
|
6646
|
+
include Google::Apis::Core::Hashable
|
|
6647
|
+
|
|
6648
|
+
#
|
|
6649
|
+
# Corresponds to the JSON property `detectorId`
|
|
6650
|
+
# @return [String]
|
|
6651
|
+
attr_accessor :detector_id
|
|
6652
|
+
|
|
6653
|
+
#
|
|
6654
|
+
# Corresponds to the JSON property `displayName`
|
|
6655
|
+
# @return [String]
|
|
6656
|
+
attr_accessor :display_name
|
|
6657
|
+
|
|
6658
|
+
#
|
|
6659
|
+
# Corresponds to the JSON property `explanation`
|
|
6660
|
+
# @return [String]
|
|
6661
|
+
attr_accessor :explanation
|
|
6662
|
+
|
|
6663
|
+
#
|
|
6664
|
+
# Corresponds to the JSON property `recommendation`
|
|
6665
|
+
# @return [String]
|
|
6666
|
+
attr_accessor :recommendation
|
|
6667
|
+
|
|
6668
|
+
#
|
|
6669
|
+
# Corresponds to the JSON property `severity`
|
|
6670
|
+
# @return [String]
|
|
6671
|
+
attr_accessor :severity
|
|
6672
|
+
|
|
6673
|
+
def initialize(**args)
|
|
6674
|
+
update!(**args)
|
|
6675
|
+
end
|
|
6676
|
+
|
|
6677
|
+
# Update properties of this object
|
|
6678
|
+
def update!(**args)
|
|
6679
|
+
@detector_id = args[:detector_id] if args.key?(:detector_id)
|
|
6680
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
|
6681
|
+
@explanation = args[:explanation] if args.key?(:explanation)
|
|
6682
|
+
@recommendation = args[:recommendation] if args.key?(:recommendation)
|
|
6683
|
+
@severity = args[:severity] if args.key?(:severity)
|
|
6684
|
+
end
|
|
6685
|
+
end
|
|
6686
|
+
|
|
6433
6687
|
#
|
|
6434
6688
|
class GoogleCloudSecuritycenterV2DiscoveredWorkload
|
|
6435
6689
|
include Google::Apis::Core::Hashable
|
|
@@ -6945,11 +7199,26 @@ module Google
|
|
|
6945
7199
|
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AffectedResources]
|
|
6946
7200
|
attr_accessor :affected_resources
|
|
6947
7201
|
|
|
7202
|
+
#
|
|
7203
|
+
# Corresponds to the JSON property `agent`
|
|
7204
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Agent]
|
|
7205
|
+
attr_accessor :agent
|
|
7206
|
+
|
|
7207
|
+
#
|
|
7208
|
+
# Corresponds to the JSON property `agentAnomaly`
|
|
7209
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AgentAnomaly]
|
|
7210
|
+
attr_accessor :agent_anomaly
|
|
7211
|
+
|
|
6948
7212
|
#
|
|
6949
7213
|
# Corresponds to the JSON property `agentDataAccessEvents`
|
|
6950
7214
|
# @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AgentDataAccessEvent>]
|
|
6951
7215
|
attr_accessor :agent_data_access_events
|
|
6952
7216
|
|
|
7217
|
+
#
|
|
7218
|
+
# Corresponds to the JSON property `agentSessions`
|
|
7219
|
+
# @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AgentSession>]
|
|
7220
|
+
attr_accessor :agent_sessions
|
|
7221
|
+
|
|
6953
7222
|
#
|
|
6954
7223
|
# Corresponds to the JSON property `aiModel`
|
|
6955
7224
|
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AiModel]
|
|
@@ -7293,7 +7562,10 @@ module Google
|
|
|
7293
7562
|
def update!(**args)
|
|
7294
7563
|
@access = args[:access] if args.key?(:access)
|
|
7295
7564
|
@affected_resources = args[:affected_resources] if args.key?(:affected_resources)
|
|
7565
|
+
@agent = args[:agent] if args.key?(:agent)
|
|
7566
|
+
@agent_anomaly = args[:agent_anomaly] if args.key?(:agent_anomaly)
|
|
7296
7567
|
@agent_data_access_events = args[:agent_data_access_events] if args.key?(:agent_data_access_events)
|
|
7568
|
+
@agent_sessions = args[:agent_sessions] if args.key?(:agent_sessions)
|
|
7297
7569
|
@ai_model = args[:ai_model] if args.key?(:ai_model)
|
|
7298
7570
|
@application = args[:application] if args.key?(:application)
|
|
7299
7571
|
@artifact_guard_policies = args[:artifact_guard_policies] if args.key?(:artifact_guard_policies)
|
|
@@ -7644,6 +7916,25 @@ module Google
|
|
|
7644
7916
|
end
|
|
7645
7917
|
end
|
|
7646
7918
|
|
|
7919
|
+
#
|
|
7920
|
+
class GoogleCloudSecuritycenterV2InvocationReference
|
|
7921
|
+
include Google::Apis::Core::Hashable
|
|
7922
|
+
|
|
7923
|
+
#
|
|
7924
|
+
# Corresponds to the JSON property `invocationId`
|
|
7925
|
+
# @return [String]
|
|
7926
|
+
attr_accessor :invocation_id
|
|
7927
|
+
|
|
7928
|
+
def initialize(**args)
|
|
7929
|
+
update!(**args)
|
|
7930
|
+
end
|
|
7931
|
+
|
|
7932
|
+
# Update properties of this object
|
|
7933
|
+
def update!(**args)
|
|
7934
|
+
@invocation_id = args[:invocation_id] if args.key?(:invocation_id)
|
|
7935
|
+
end
|
|
7936
|
+
end
|
|
7937
|
+
|
|
7647
7938
|
#
|
|
7648
7939
|
class GoogleCloudSecuritycenterV2IpRule
|
|
7649
7940
|
include Google::Apis::Core::Hashable
|
|
@@ -10663,6 +10954,25 @@ module Google
|
|
|
10663
10954
|
end
|
|
10664
10955
|
end
|
|
10665
10956
|
|
|
10957
|
+
#
|
|
10958
|
+
class InvocationReference
|
|
10959
|
+
include Google::Apis::Core::Hashable
|
|
10960
|
+
|
|
10961
|
+
#
|
|
10962
|
+
# Corresponds to the JSON property `invocationId`
|
|
10963
|
+
# @return [String]
|
|
10964
|
+
attr_accessor :invocation_id
|
|
10965
|
+
|
|
10966
|
+
def initialize(**args)
|
|
10967
|
+
update!(**args)
|
|
10968
|
+
end
|
|
10969
|
+
|
|
10970
|
+
# Update properties of this object
|
|
10971
|
+
def update!(**args)
|
|
10972
|
+
@invocation_id = args[:invocation_id] if args.key?(:invocation_id)
|
|
10973
|
+
end
|
|
10974
|
+
end
|
|
10975
|
+
|
|
10666
10976
|
#
|
|
10667
10977
|
class IpRule
|
|
10668
10978
|
include Google::Apis::Core::Hashable
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module SecuritycenterV1
|
|
18
18
|
# Version of the google-apis-securitycenter_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.120.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260710"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -64,12 +64,30 @@ module Google
|
|
|
64
64
|
include Google::Apis::Core::JsonObjectSupport
|
|
65
65
|
end
|
|
66
66
|
|
|
67
|
+
class Agent
|
|
68
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
69
|
+
|
|
70
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
class AgentAnomaly
|
|
74
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
75
|
+
|
|
76
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
77
|
+
end
|
|
78
|
+
|
|
67
79
|
class AgentDataAccessEvent
|
|
68
80
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
69
81
|
|
|
70
82
|
include Google::Apis::Core::JsonObjectSupport
|
|
71
83
|
end
|
|
72
84
|
|
|
85
|
+
class AgentSession
|
|
86
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
87
|
+
|
|
88
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
89
|
+
end
|
|
90
|
+
|
|
73
91
|
class AiModel
|
|
74
92
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
75
93
|
|
|
@@ -406,6 +424,12 @@ module Google
|
|
|
406
424
|
include Google::Apis::Core::JsonObjectSupport
|
|
407
425
|
end
|
|
408
426
|
|
|
427
|
+
class DetectorReference
|
|
428
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
429
|
+
|
|
430
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
431
|
+
end
|
|
432
|
+
|
|
409
433
|
class DiscoveredWorkload
|
|
410
434
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
411
435
|
|
|
@@ -766,12 +790,30 @@ module Google
|
|
|
766
790
|
include Google::Apis::Core::JsonObjectSupport
|
|
767
791
|
end
|
|
768
792
|
|
|
793
|
+
class GoogleCloudSecuritycenterV2Agent
|
|
794
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
795
|
+
|
|
796
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
797
|
+
end
|
|
798
|
+
|
|
799
|
+
class GoogleCloudSecuritycenterV2AgentAnomaly
|
|
800
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
801
|
+
|
|
802
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
803
|
+
end
|
|
804
|
+
|
|
769
805
|
class GoogleCloudSecuritycenterV2AgentDataAccessEvent
|
|
770
806
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
771
807
|
|
|
772
808
|
include Google::Apis::Core::JsonObjectSupport
|
|
773
809
|
end
|
|
774
810
|
|
|
811
|
+
class GoogleCloudSecuritycenterV2AgentSession
|
|
812
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
813
|
+
|
|
814
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
815
|
+
end
|
|
816
|
+
|
|
775
817
|
class GoogleCloudSecuritycenterV2AiModel
|
|
776
818
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
777
819
|
|
|
@@ -1030,6 +1072,12 @@ module Google
|
|
|
1030
1072
|
include Google::Apis::Core::JsonObjectSupport
|
|
1031
1073
|
end
|
|
1032
1074
|
|
|
1075
|
+
class GoogleCloudSecuritycenterV2DetectorReference
|
|
1076
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1077
|
+
|
|
1078
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1079
|
+
end
|
|
1080
|
+
|
|
1033
1081
|
class GoogleCloudSecuritycenterV2DiscoveredWorkload
|
|
1034
1082
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1035
1083
|
|
|
@@ -1162,6 +1210,12 @@ module Google
|
|
|
1162
1210
|
include Google::Apis::Core::JsonObjectSupport
|
|
1163
1211
|
end
|
|
1164
1212
|
|
|
1213
|
+
class GoogleCloudSecuritycenterV2InvocationReference
|
|
1214
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1215
|
+
|
|
1216
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1217
|
+
end
|
|
1218
|
+
|
|
1165
1219
|
class GoogleCloudSecuritycenterV2IpRule
|
|
1166
1220
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1167
1221
|
|
|
@@ -1708,6 +1762,12 @@ module Google
|
|
|
1708
1762
|
include Google::Apis::Core::JsonObjectSupport
|
|
1709
1763
|
end
|
|
1710
1764
|
|
|
1765
|
+
class InvocationReference
|
|
1766
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1767
|
+
|
|
1768
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1769
|
+
end
|
|
1770
|
+
|
|
1711
1771
|
class IpRule
|
|
1712
1772
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1713
1773
|
|
|
@@ -2335,6 +2395,25 @@ module Google
|
|
|
2335
2395
|
end
|
|
2336
2396
|
end
|
|
2337
2397
|
|
|
2398
|
+
class Agent
|
|
2399
|
+
# @private
|
|
2400
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2401
|
+
property :display_name, as: 'displayName'
|
|
2402
|
+
property :id, as: 'id'
|
|
2403
|
+
end
|
|
2404
|
+
end
|
|
2405
|
+
|
|
2406
|
+
class AgentAnomaly
|
|
2407
|
+
# @private
|
|
2408
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2409
|
+
property :confidence_score, as: 'confidenceScore'
|
|
2410
|
+
collection :detector_references, as: 'detectorReferences', class: Google::Apis::SecuritycenterV1::DetectorReference, decorator: Google::Apis::SecuritycenterV1::DetectorReference::Representation
|
|
2411
|
+
|
|
2412
|
+
collection :invocation_references, as: 'invocationReferences', class: Google::Apis::SecuritycenterV1::InvocationReference, decorator: Google::Apis::SecuritycenterV1::InvocationReference::Representation
|
|
2413
|
+
|
|
2414
|
+
end
|
|
2415
|
+
end
|
|
2416
|
+
|
|
2338
2417
|
class AgentDataAccessEvent
|
|
2339
2418
|
# @private
|
|
2340
2419
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2345,6 +2424,13 @@ module Google
|
|
|
2345
2424
|
end
|
|
2346
2425
|
end
|
|
2347
2426
|
|
|
2427
|
+
class AgentSession
|
|
2428
|
+
# @private
|
|
2429
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2430
|
+
property :session_id, as: 'sessionId'
|
|
2431
|
+
end
|
|
2432
|
+
end
|
|
2433
|
+
|
|
2348
2434
|
class AiModel
|
|
2349
2435
|
# @private
|
|
2350
2436
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2912,6 +2998,17 @@ module Google
|
|
|
2912
2998
|
end
|
|
2913
2999
|
end
|
|
2914
3000
|
|
|
3001
|
+
class DetectorReference
|
|
3002
|
+
# @private
|
|
3003
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3004
|
+
property :detector_id, as: 'detectorId'
|
|
3005
|
+
property :display_name, as: 'displayName'
|
|
3006
|
+
property :explanation, as: 'explanation'
|
|
3007
|
+
property :recommendation, as: 'recommendation'
|
|
3008
|
+
property :severity, as: 'severity'
|
|
3009
|
+
end
|
|
3010
|
+
end
|
|
3011
|
+
|
|
2915
3012
|
class DiscoveredWorkload
|
|
2916
3013
|
# @private
|
|
2917
3014
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3092,8 +3189,14 @@ module Google
|
|
|
3092
3189
|
|
|
3093
3190
|
property :affected_resources, as: 'affectedResources', class: Google::Apis::SecuritycenterV1::AffectedResources, decorator: Google::Apis::SecuritycenterV1::AffectedResources::Representation
|
|
3094
3191
|
|
|
3192
|
+
property :agent, as: 'agent', class: Google::Apis::SecuritycenterV1::Agent, decorator: Google::Apis::SecuritycenterV1::Agent::Representation
|
|
3193
|
+
|
|
3194
|
+
property :agent_anomaly, as: 'agentAnomaly', class: Google::Apis::SecuritycenterV1::AgentAnomaly, decorator: Google::Apis::SecuritycenterV1::AgentAnomaly::Representation
|
|
3195
|
+
|
|
3095
3196
|
collection :agent_data_access_events, as: 'agentDataAccessEvents', class: Google::Apis::SecuritycenterV1::AgentDataAccessEvent, decorator: Google::Apis::SecuritycenterV1::AgentDataAccessEvent::Representation
|
|
3096
3197
|
|
|
3198
|
+
collection :agent_sessions, as: 'agentSessions', class: Google::Apis::SecuritycenterV1::AgentSession, decorator: Google::Apis::SecuritycenterV1::AgentSession::Representation
|
|
3199
|
+
|
|
3097
3200
|
property :ai_model, as: 'aiModel', class: Google::Apis::SecuritycenterV1::AiModel, decorator: Google::Apis::SecuritycenterV1::AiModel::Representation
|
|
3098
3201
|
|
|
3099
3202
|
property :application, as: 'application', class: Google::Apis::SecuritycenterV1::Application, decorator: Google::Apis::SecuritycenterV1::Application::Representation
|
|
@@ -3682,6 +3785,25 @@ module Google
|
|
|
3682
3785
|
end
|
|
3683
3786
|
end
|
|
3684
3787
|
|
|
3788
|
+
class GoogleCloudSecuritycenterV2Agent
|
|
3789
|
+
# @private
|
|
3790
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3791
|
+
property :display_name, as: 'displayName'
|
|
3792
|
+
property :id, as: 'id'
|
|
3793
|
+
end
|
|
3794
|
+
end
|
|
3795
|
+
|
|
3796
|
+
class GoogleCloudSecuritycenterV2AgentAnomaly
|
|
3797
|
+
# @private
|
|
3798
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3799
|
+
property :confidence_score, as: 'confidenceScore'
|
|
3800
|
+
collection :detector_references, as: 'detectorReferences', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2DetectorReference, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2DetectorReference::Representation
|
|
3801
|
+
|
|
3802
|
+
collection :invocation_references, as: 'invocationReferences', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2InvocationReference, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2InvocationReference::Representation
|
|
3803
|
+
|
|
3804
|
+
end
|
|
3805
|
+
end
|
|
3806
|
+
|
|
3685
3807
|
class GoogleCloudSecuritycenterV2AgentDataAccessEvent
|
|
3686
3808
|
# @private
|
|
3687
3809
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3692,6 +3814,13 @@ module Google
|
|
|
3692
3814
|
end
|
|
3693
3815
|
end
|
|
3694
3816
|
|
|
3817
|
+
class GoogleCloudSecuritycenterV2AgentSession
|
|
3818
|
+
# @private
|
|
3819
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3820
|
+
property :session_id, as: 'sessionId'
|
|
3821
|
+
end
|
|
3822
|
+
end
|
|
3823
|
+
|
|
3695
3824
|
class GoogleCloudSecuritycenterV2AiModel
|
|
3696
3825
|
# @private
|
|
3697
3826
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -4134,6 +4263,17 @@ module Google
|
|
|
4134
4263
|
end
|
|
4135
4264
|
end
|
|
4136
4265
|
|
|
4266
|
+
class GoogleCloudSecuritycenterV2DetectorReference
|
|
4267
|
+
# @private
|
|
4268
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4269
|
+
property :detector_id, as: 'detectorId'
|
|
4270
|
+
property :display_name, as: 'displayName'
|
|
4271
|
+
property :explanation, as: 'explanation'
|
|
4272
|
+
property :recommendation, as: 'recommendation'
|
|
4273
|
+
property :severity, as: 'severity'
|
|
4274
|
+
end
|
|
4275
|
+
end
|
|
4276
|
+
|
|
4137
4277
|
class GoogleCloudSecuritycenterV2DiscoveredWorkload
|
|
4138
4278
|
# @private
|
|
4139
4279
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -4272,8 +4412,14 @@ module Google
|
|
|
4272
4412
|
|
|
4273
4413
|
property :affected_resources, as: 'affectedResources', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AffectedResources, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AffectedResources::Representation
|
|
4274
4414
|
|
|
4415
|
+
property :agent, as: 'agent', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Agent, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Agent::Representation
|
|
4416
|
+
|
|
4417
|
+
property :agent_anomaly, as: 'agentAnomaly', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AgentAnomaly, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AgentAnomaly::Representation
|
|
4418
|
+
|
|
4275
4419
|
collection :agent_data_access_events, as: 'agentDataAccessEvents', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AgentDataAccessEvent, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AgentDataAccessEvent::Representation
|
|
4276
4420
|
|
|
4421
|
+
collection :agent_sessions, as: 'agentSessions', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AgentSession, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AgentSession::Representation
|
|
4422
|
+
|
|
4277
4423
|
property :ai_model, as: 'aiModel', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AiModel, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AiModel::Representation
|
|
4278
4424
|
|
|
4279
4425
|
property :application, as: 'application', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Application, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Application::Representation
|
|
@@ -4480,6 +4626,13 @@ module Google
|
|
|
4480
4626
|
end
|
|
4481
4627
|
end
|
|
4482
4628
|
|
|
4629
|
+
class GoogleCloudSecuritycenterV2InvocationReference
|
|
4630
|
+
# @private
|
|
4631
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4632
|
+
property :invocation_id, as: 'invocationId'
|
|
4633
|
+
end
|
|
4634
|
+
end
|
|
4635
|
+
|
|
4483
4636
|
class GoogleCloudSecuritycenterV2IpRule
|
|
4484
4637
|
# @private
|
|
4485
4638
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -5413,6 +5566,13 @@ module Google
|
|
|
5413
5566
|
end
|
|
5414
5567
|
end
|
|
5415
5568
|
|
|
5569
|
+
class InvocationReference
|
|
5570
|
+
# @private
|
|
5571
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5572
|
+
property :invocation_id, as: 'invocationId'
|
|
5573
|
+
end
|
|
5574
|
+
end
|
|
5575
|
+
|
|
5416
5576
|
class IpRule
|
|
5417
5577
|
# @private
|
|
5418
5578
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-securitycenter_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.120.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.120.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|