google-apis-securitycenter_v1beta1 0.109.0 → 0.110.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: d08b4c391dd25f7f54e3e853df961dfd936e8641cdabd7462f71824cc81b4dc2
4
- data.tar.gz: 3ad5ab54c8b808b76a8c61d9aa021673d1ffbbd2ddf7ab72564bb35ec79ec7c6
3
+ metadata.gz: 9b0f99f08865c32b94b0f174c7e9eb6bdeab346dfc0c1ae989e986acdfec4fa8
4
+ data.tar.gz: be7b1119d531488b4426d175cd2745fa1412aee42fd627d373b635d641d90b8e
5
5
  SHA512:
6
- metadata.gz: 8eb6b26ce82dcbd6c536b561042e56d66657e211c2d970a47f71c9fab7aa5291d4bc7fb1b042d14e9886848c8122cd3e4af37bef6263ba197e9ad2f42f453e6f
7
- data.tar.gz: be532b316b03df559e80c869ce681534f9c61d1385ecda7930d0429c9526cd9a43f179f5ff0b1a8896b5818ddd626981da14488d2ff72bd03e06edecf277b13c
6
+ metadata.gz: cc68ca637d1da202b35c6418d32ba97075cede08d80b22dc0d475e210ed680c2f9e6e6a9d923d09eaac85345d5cf0ba7a28cb67cd0622b182dc5edd465e9738e
7
+ data.tar.gz: a1732bfa758cafbb30543095db246455fa8e30923f75f8cba328ee4ad67a24f0de07338952f4041a911e4bac064fb4aaa8ce7e550f8fe8a10435d8c5b96112bf
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-securitycenter_v1beta1
2
2
 
3
+ ### v0.110.0 (2026-07-19)
4
+
5
+ * Regenerated from discovery document revision 20260710
6
+
3
7
  ### v0.109.0 (2026-07-05)
4
8
 
5
9
  * Regenerated from discovery document revision 20260619
@@ -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::SecuritycenterV1beta1::DetectorReference>]
297
+ attr_accessor :detector_references
298
+
299
+ #
300
+ # Corresponds to the JSON property `invocationReferences`
301
+ # @return [Array<Google::Apis::SecuritycenterV1beta1::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
@@ -1887,6 +1962,49 @@ module Google
1887
1962
  end
1888
1963
  end
1889
1964
 
1965
+ #
1966
+ class DetectorReference
1967
+ include Google::Apis::Core::Hashable
1968
+
1969
+ #
1970
+ # Corresponds to the JSON property `detectorId`
1971
+ # @return [String]
1972
+ attr_accessor :detector_id
1973
+
1974
+ #
1975
+ # Corresponds to the JSON property `displayName`
1976
+ # @return [String]
1977
+ attr_accessor :display_name
1978
+
1979
+ #
1980
+ # Corresponds to the JSON property `explanation`
1981
+ # @return [String]
1982
+ attr_accessor :explanation
1983
+
1984
+ #
1985
+ # Corresponds to the JSON property `recommendation`
1986
+ # @return [String]
1987
+ attr_accessor :recommendation
1988
+
1989
+ #
1990
+ # Corresponds to the JSON property `severity`
1991
+ # @return [String]
1992
+ attr_accessor :severity
1993
+
1994
+ def initialize(**args)
1995
+ update!(**args)
1996
+ end
1997
+
1998
+ # Update properties of this object
1999
+ def update!(**args)
2000
+ @detector_id = args[:detector_id] if args.key?(:detector_id)
2001
+ @display_name = args[:display_name] if args.key?(:display_name)
2002
+ @explanation = args[:explanation] if args.key?(:explanation)
2003
+ @recommendation = args[:recommendation] if args.key?(:recommendation)
2004
+ @severity = args[:severity] if args.key?(:severity)
2005
+ end
2006
+ end
2007
+
1890
2008
  #
1891
2009
  class DiscoveredWorkload
1892
2010
  include Google::Apis::Core::Hashable
@@ -2411,11 +2529,26 @@ module Google
2411
2529
  # @return [Google::Apis::SecuritycenterV1beta1::AffectedResources]
2412
2530
  attr_accessor :affected_resources
2413
2531
 
2532
+ #
2533
+ # Corresponds to the JSON property `agent`
2534
+ # @return [Google::Apis::SecuritycenterV1beta1::Agent]
2535
+ attr_accessor :agent
2536
+
2537
+ #
2538
+ # Corresponds to the JSON property `agentAnomaly`
2539
+ # @return [Google::Apis::SecuritycenterV1beta1::AgentAnomaly]
2540
+ attr_accessor :agent_anomaly
2541
+
2414
2542
  #
2415
2543
  # Corresponds to the JSON property `agentDataAccessEvents`
2416
2544
  # @return [Array<Google::Apis::SecuritycenterV1beta1::AgentDataAccessEvent>]
2417
2545
  attr_accessor :agent_data_access_events
2418
2546
 
2547
+ #
2548
+ # Corresponds to the JSON property `agentSessions`
2549
+ # @return [Array<Google::Apis::SecuritycenterV1beta1::AgentSession>]
2550
+ attr_accessor :agent_sessions
2551
+
2419
2552
  #
2420
2553
  # Corresponds to the JSON property `aiModel`
2421
2554
  # @return [Google::Apis::SecuritycenterV1beta1::AiModel]
@@ -2754,7 +2887,10 @@ module Google
2754
2887
  def update!(**args)
2755
2888
  @access = args[:access] if args.key?(:access)
2756
2889
  @affected_resources = args[:affected_resources] if args.key?(:affected_resources)
2890
+ @agent = args[:agent] if args.key?(:agent)
2891
+ @agent_anomaly = args[:agent_anomaly] if args.key?(:agent_anomaly)
2757
2892
  @agent_data_access_events = args[:agent_data_access_events] if args.key?(:agent_data_access_events)
2893
+ @agent_sessions = args[:agent_sessions] if args.key?(:agent_sessions)
2758
2894
  @ai_model = args[:ai_model] if args.key?(:ai_model)
2759
2895
  @application = args[:application] if args.key?(:application)
2760
2896
  @artifact_guard_policies = args[:artifact_guard_policies] if args.key?(:artifact_guard_policies)
@@ -4537,6 +4673,62 @@ module Google
4537
4673
  end
4538
4674
  end
4539
4675
 
4676
+ #
4677
+ class GoogleCloudSecuritycenterV2Agent
4678
+ include Google::Apis::Core::Hashable
4679
+
4680
+ #
4681
+ # Corresponds to the JSON property `displayName`
4682
+ # @return [String]
4683
+ attr_accessor :display_name
4684
+
4685
+ #
4686
+ # Corresponds to the JSON property `id`
4687
+ # @return [String]
4688
+ attr_accessor :id
4689
+
4690
+ def initialize(**args)
4691
+ update!(**args)
4692
+ end
4693
+
4694
+ # Update properties of this object
4695
+ def update!(**args)
4696
+ @display_name = args[:display_name] if args.key?(:display_name)
4697
+ @id = args[:id] if args.key?(:id)
4698
+ end
4699
+ end
4700
+
4701
+ #
4702
+ class GoogleCloudSecuritycenterV2AgentAnomaly
4703
+ include Google::Apis::Core::Hashable
4704
+
4705
+ #
4706
+ # Corresponds to the JSON property `confidenceScore`
4707
+ # @return [Float]
4708
+ attr_accessor :confidence_score
4709
+
4710
+ #
4711
+ # Corresponds to the JSON property `detectorReferences`
4712
+ # @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2DetectorReference>]
4713
+ attr_accessor :detector_references
4714
+
4715
+ #
4716
+ # Corresponds to the JSON property `invocationReferences`
4717
+ # @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2InvocationReference>]
4718
+ attr_accessor :invocation_references
4719
+
4720
+ def initialize(**args)
4721
+ update!(**args)
4722
+ end
4723
+
4724
+ # Update properties of this object
4725
+ def update!(**args)
4726
+ @confidence_score = args[:confidence_score] if args.key?(:confidence_score)
4727
+ @detector_references = args[:detector_references] if args.key?(:detector_references)
4728
+ @invocation_references = args[:invocation_references] if args.key?(:invocation_references)
4729
+ end
4730
+ end
4731
+
4540
4732
  #
4541
4733
  class GoogleCloudSecuritycenterV2AgentDataAccessEvent
4542
4734
  include Google::Apis::Core::Hashable
@@ -4574,6 +4766,25 @@ module Google
4574
4766
  end
4575
4767
  end
4576
4768
 
4769
+ #
4770
+ class GoogleCloudSecuritycenterV2AgentSession
4771
+ include Google::Apis::Core::Hashable
4772
+
4773
+ #
4774
+ # Corresponds to the JSON property `sessionId`
4775
+ # @return [String]
4776
+ attr_accessor :session_id
4777
+
4778
+ def initialize(**args)
4779
+ update!(**args)
4780
+ end
4781
+
4782
+ # Update properties of this object
4783
+ def update!(**args)
4784
+ @session_id = args[:session_id] if args.key?(:session_id)
4785
+ end
4786
+ end
4787
+
4577
4788
  #
4578
4789
  class GoogleCloudSecuritycenterV2AiModel
4579
4790
  include Google::Apis::Core::Hashable
@@ -6097,6 +6308,49 @@ module Google
6097
6308
  end
6098
6309
  end
6099
6310
 
6311
+ #
6312
+ class GoogleCloudSecuritycenterV2DetectorReference
6313
+ include Google::Apis::Core::Hashable
6314
+
6315
+ #
6316
+ # Corresponds to the JSON property `detectorId`
6317
+ # @return [String]
6318
+ attr_accessor :detector_id
6319
+
6320
+ #
6321
+ # Corresponds to the JSON property `displayName`
6322
+ # @return [String]
6323
+ attr_accessor :display_name
6324
+
6325
+ #
6326
+ # Corresponds to the JSON property `explanation`
6327
+ # @return [String]
6328
+ attr_accessor :explanation
6329
+
6330
+ #
6331
+ # Corresponds to the JSON property `recommendation`
6332
+ # @return [String]
6333
+ attr_accessor :recommendation
6334
+
6335
+ #
6336
+ # Corresponds to the JSON property `severity`
6337
+ # @return [String]
6338
+ attr_accessor :severity
6339
+
6340
+ def initialize(**args)
6341
+ update!(**args)
6342
+ end
6343
+
6344
+ # Update properties of this object
6345
+ def update!(**args)
6346
+ @detector_id = args[:detector_id] if args.key?(:detector_id)
6347
+ @display_name = args[:display_name] if args.key?(:display_name)
6348
+ @explanation = args[:explanation] if args.key?(:explanation)
6349
+ @recommendation = args[:recommendation] if args.key?(:recommendation)
6350
+ @severity = args[:severity] if args.key?(:severity)
6351
+ end
6352
+ end
6353
+
6100
6354
  #
6101
6355
  class GoogleCloudSecuritycenterV2DiscoveredWorkload
6102
6356
  include Google::Apis::Core::Hashable
@@ -6612,11 +6866,26 @@ module Google
6612
6866
  # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AffectedResources]
6613
6867
  attr_accessor :affected_resources
6614
6868
 
6869
+ #
6870
+ # Corresponds to the JSON property `agent`
6871
+ # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Agent]
6872
+ attr_accessor :agent
6873
+
6874
+ #
6875
+ # Corresponds to the JSON property `agentAnomaly`
6876
+ # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AgentAnomaly]
6877
+ attr_accessor :agent_anomaly
6878
+
6615
6879
  #
6616
6880
  # Corresponds to the JSON property `agentDataAccessEvents`
6617
6881
  # @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AgentDataAccessEvent>]
6618
6882
  attr_accessor :agent_data_access_events
6619
6883
 
6884
+ #
6885
+ # Corresponds to the JSON property `agentSessions`
6886
+ # @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AgentSession>]
6887
+ attr_accessor :agent_sessions
6888
+
6620
6889
  #
6621
6890
  # Corresponds to the JSON property `aiModel`
6622
6891
  # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AiModel]
@@ -6960,7 +7229,10 @@ module Google
6960
7229
  def update!(**args)
6961
7230
  @access = args[:access] if args.key?(:access)
6962
7231
  @affected_resources = args[:affected_resources] if args.key?(:affected_resources)
7232
+ @agent = args[:agent] if args.key?(:agent)
7233
+ @agent_anomaly = args[:agent_anomaly] if args.key?(:agent_anomaly)
6963
7234
  @agent_data_access_events = args[:agent_data_access_events] if args.key?(:agent_data_access_events)
7235
+ @agent_sessions = args[:agent_sessions] if args.key?(:agent_sessions)
6964
7236
  @ai_model = args[:ai_model] if args.key?(:ai_model)
6965
7237
  @application = args[:application] if args.key?(:application)
6966
7238
  @artifact_guard_policies = args[:artifact_guard_policies] if args.key?(:artifact_guard_policies)
@@ -7311,6 +7583,25 @@ module Google
7311
7583
  end
7312
7584
  end
7313
7585
 
7586
+ #
7587
+ class GoogleCloudSecuritycenterV2InvocationReference
7588
+ include Google::Apis::Core::Hashable
7589
+
7590
+ #
7591
+ # Corresponds to the JSON property `invocationId`
7592
+ # @return [String]
7593
+ attr_accessor :invocation_id
7594
+
7595
+ def initialize(**args)
7596
+ update!(**args)
7597
+ end
7598
+
7599
+ # Update properties of this object
7600
+ def update!(**args)
7601
+ @invocation_id = args[:invocation_id] if args.key?(:invocation_id)
7602
+ end
7603
+ end
7604
+
7314
7605
  #
7315
7606
  class GoogleCloudSecuritycenterV2IpRule
7316
7607
  include Google::Apis::Core::Hashable
@@ -10293,6 +10584,25 @@ module Google
10293
10584
  end
10294
10585
  end
10295
10586
 
10587
+ #
10588
+ class InvocationReference
10589
+ include Google::Apis::Core::Hashable
10590
+
10591
+ #
10592
+ # Corresponds to the JSON property `invocationId`
10593
+ # @return [String]
10594
+ attr_accessor :invocation_id
10595
+
10596
+ def initialize(**args)
10597
+ update!(**args)
10598
+ end
10599
+
10600
+ # Update properties of this object
10601
+ def update!(**args)
10602
+ @invocation_id = args[:invocation_id] if args.key?(:invocation_id)
10603
+ end
10604
+ end
10605
+
10296
10606
  #
10297
10607
  class IpRule
10298
10608
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module SecuritycenterV1beta1
18
18
  # Version of the google-apis-securitycenter_v1beta1 gem
19
- GEM_VERSION = "0.109.0"
19
+ GEM_VERSION = "0.110.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 = "20260619"
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
 
@@ -352,6 +370,12 @@ module Google
352
370
  include Google::Apis::Core::JsonObjectSupport
353
371
  end
354
372
 
373
+ class DetectorReference
374
+ class Representation < Google::Apis::Core::JsonRepresentation; end
375
+
376
+ include Google::Apis::Core::JsonObjectSupport
377
+ end
378
+
355
379
  class DiscoveredWorkload
356
380
  class Representation < Google::Apis::Core::JsonRepresentation; end
357
381
 
@@ -712,12 +736,30 @@ module Google
712
736
  include Google::Apis::Core::JsonObjectSupport
713
737
  end
714
738
 
739
+ class GoogleCloudSecuritycenterV2Agent
740
+ class Representation < Google::Apis::Core::JsonRepresentation; end
741
+
742
+ include Google::Apis::Core::JsonObjectSupport
743
+ end
744
+
745
+ class GoogleCloudSecuritycenterV2AgentAnomaly
746
+ class Representation < Google::Apis::Core::JsonRepresentation; end
747
+
748
+ include Google::Apis::Core::JsonObjectSupport
749
+ end
750
+
715
751
  class GoogleCloudSecuritycenterV2AgentDataAccessEvent
716
752
  class Representation < Google::Apis::Core::JsonRepresentation; end
717
753
 
718
754
  include Google::Apis::Core::JsonObjectSupport
719
755
  end
720
756
 
757
+ class GoogleCloudSecuritycenterV2AgentSession
758
+ class Representation < Google::Apis::Core::JsonRepresentation; end
759
+
760
+ include Google::Apis::Core::JsonObjectSupport
761
+ end
762
+
721
763
  class GoogleCloudSecuritycenterV2AiModel
722
764
  class Representation < Google::Apis::Core::JsonRepresentation; end
723
765
 
@@ -976,6 +1018,12 @@ module Google
976
1018
  include Google::Apis::Core::JsonObjectSupport
977
1019
  end
978
1020
 
1021
+ class GoogleCloudSecuritycenterV2DetectorReference
1022
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1023
+
1024
+ include Google::Apis::Core::JsonObjectSupport
1025
+ end
1026
+
979
1027
  class GoogleCloudSecuritycenterV2DiscoveredWorkload
980
1028
  class Representation < Google::Apis::Core::JsonRepresentation; end
981
1029
 
@@ -1108,6 +1156,12 @@ module Google
1108
1156
  include Google::Apis::Core::JsonObjectSupport
1109
1157
  end
1110
1158
 
1159
+ class GoogleCloudSecuritycenterV2InvocationReference
1160
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1161
+
1162
+ include Google::Apis::Core::JsonObjectSupport
1163
+ end
1164
+
1111
1165
  class GoogleCloudSecuritycenterV2IpRule
1112
1166
  class Representation < Google::Apis::Core::JsonRepresentation; end
1113
1167
 
@@ -1648,6 +1702,12 @@ module Google
1648
1702
  include Google::Apis::Core::JsonObjectSupport
1649
1703
  end
1650
1704
 
1705
+ class InvocationReference
1706
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1707
+
1708
+ include Google::Apis::Core::JsonObjectSupport
1709
+ end
1710
+
1651
1711
  class IpRule
1652
1712
  class Representation < Google::Apis::Core::JsonRepresentation; end
1653
1713
 
@@ -2107,6 +2167,25 @@ module Google
2107
2167
  end
2108
2168
  end
2109
2169
 
2170
+ class Agent
2171
+ # @private
2172
+ class Representation < Google::Apis::Core::JsonRepresentation
2173
+ property :display_name, as: 'displayName'
2174
+ property :id, as: 'id'
2175
+ end
2176
+ end
2177
+
2178
+ class AgentAnomaly
2179
+ # @private
2180
+ class Representation < Google::Apis::Core::JsonRepresentation
2181
+ property :confidence_score, as: 'confidenceScore'
2182
+ collection :detector_references, as: 'detectorReferences', class: Google::Apis::SecuritycenterV1beta1::DetectorReference, decorator: Google::Apis::SecuritycenterV1beta1::DetectorReference::Representation
2183
+
2184
+ collection :invocation_references, as: 'invocationReferences', class: Google::Apis::SecuritycenterV1beta1::InvocationReference, decorator: Google::Apis::SecuritycenterV1beta1::InvocationReference::Representation
2185
+
2186
+ end
2187
+ end
2188
+
2110
2189
  class AgentDataAccessEvent
2111
2190
  # @private
2112
2191
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2117,6 +2196,13 @@ module Google
2117
2196
  end
2118
2197
  end
2119
2198
 
2199
+ class AgentSession
2200
+ # @private
2201
+ class Representation < Google::Apis::Core::JsonRepresentation
2202
+ property :session_id, as: 'sessionId'
2203
+ end
2204
+ end
2205
+
2120
2206
  class AiModel
2121
2207
  # @private
2122
2208
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2588,6 +2674,17 @@ module Google
2588
2674
  end
2589
2675
  end
2590
2676
 
2677
+ class DetectorReference
2678
+ # @private
2679
+ class Representation < Google::Apis::Core::JsonRepresentation
2680
+ property :detector_id, as: 'detectorId'
2681
+ property :display_name, as: 'displayName'
2682
+ property :explanation, as: 'explanation'
2683
+ property :recommendation, as: 'recommendation'
2684
+ property :severity, as: 'severity'
2685
+ end
2686
+ end
2687
+
2591
2688
  class DiscoveredWorkload
2592
2689
  # @private
2593
2690
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2739,8 +2836,14 @@ module Google
2739
2836
 
2740
2837
  property :affected_resources, as: 'affectedResources', class: Google::Apis::SecuritycenterV1beta1::AffectedResources, decorator: Google::Apis::SecuritycenterV1beta1::AffectedResources::Representation
2741
2838
 
2839
+ property :agent, as: 'agent', class: Google::Apis::SecuritycenterV1beta1::Agent, decorator: Google::Apis::SecuritycenterV1beta1::Agent::Representation
2840
+
2841
+ property :agent_anomaly, as: 'agentAnomaly', class: Google::Apis::SecuritycenterV1beta1::AgentAnomaly, decorator: Google::Apis::SecuritycenterV1beta1::AgentAnomaly::Representation
2842
+
2742
2843
  collection :agent_data_access_events, as: 'agentDataAccessEvents', class: Google::Apis::SecuritycenterV1beta1::AgentDataAccessEvent, decorator: Google::Apis::SecuritycenterV1beta1::AgentDataAccessEvent::Representation
2743
2844
 
2845
+ collection :agent_sessions, as: 'agentSessions', class: Google::Apis::SecuritycenterV1beta1::AgentSession, decorator: Google::Apis::SecuritycenterV1beta1::AgentSession::Representation
2846
+
2744
2847
  property :ai_model, as: 'aiModel', class: Google::Apis::SecuritycenterV1beta1::AiModel, decorator: Google::Apis::SecuritycenterV1beta1::AiModel::Representation
2745
2848
 
2746
2849
  property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta1::Application, decorator: Google::Apis::SecuritycenterV1beta1::Application::Representation
@@ -3354,6 +3457,25 @@ module Google
3354
3457
  end
3355
3458
  end
3356
3459
 
3460
+ class GoogleCloudSecuritycenterV2Agent
3461
+ # @private
3462
+ class Representation < Google::Apis::Core::JsonRepresentation
3463
+ property :display_name, as: 'displayName'
3464
+ property :id, as: 'id'
3465
+ end
3466
+ end
3467
+
3468
+ class GoogleCloudSecuritycenterV2AgentAnomaly
3469
+ # @private
3470
+ class Representation < Google::Apis::Core::JsonRepresentation
3471
+ property :confidence_score, as: 'confidenceScore'
3472
+ collection :detector_references, as: 'detectorReferences', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2DetectorReference, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2DetectorReference::Representation
3473
+
3474
+ collection :invocation_references, as: 'invocationReferences', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2InvocationReference, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2InvocationReference::Representation
3475
+
3476
+ end
3477
+ end
3478
+
3357
3479
  class GoogleCloudSecuritycenterV2AgentDataAccessEvent
3358
3480
  # @private
3359
3481
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3364,6 +3486,13 @@ module Google
3364
3486
  end
3365
3487
  end
3366
3488
 
3489
+ class GoogleCloudSecuritycenterV2AgentSession
3490
+ # @private
3491
+ class Representation < Google::Apis::Core::JsonRepresentation
3492
+ property :session_id, as: 'sessionId'
3493
+ end
3494
+ end
3495
+
3367
3496
  class GoogleCloudSecuritycenterV2AiModel
3368
3497
  # @private
3369
3498
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3806,6 +3935,17 @@ module Google
3806
3935
  end
3807
3936
  end
3808
3937
 
3938
+ class GoogleCloudSecuritycenterV2DetectorReference
3939
+ # @private
3940
+ class Representation < Google::Apis::Core::JsonRepresentation
3941
+ property :detector_id, as: 'detectorId'
3942
+ property :display_name, as: 'displayName'
3943
+ property :explanation, as: 'explanation'
3944
+ property :recommendation, as: 'recommendation'
3945
+ property :severity, as: 'severity'
3946
+ end
3947
+ end
3948
+
3809
3949
  class GoogleCloudSecuritycenterV2DiscoveredWorkload
3810
3950
  # @private
3811
3951
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3944,8 +4084,14 @@ module Google
3944
4084
 
3945
4085
  property :affected_resources, as: 'affectedResources', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AffectedResources, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AffectedResources::Representation
3946
4086
 
4087
+ property :agent, as: 'agent', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Agent, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Agent::Representation
4088
+
4089
+ property :agent_anomaly, as: 'agentAnomaly', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AgentAnomaly, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AgentAnomaly::Representation
4090
+
3947
4091
  collection :agent_data_access_events, as: 'agentDataAccessEvents', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AgentDataAccessEvent, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AgentDataAccessEvent::Representation
3948
4092
 
4093
+ collection :agent_sessions, as: 'agentSessions', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AgentSession, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AgentSession::Representation
4094
+
3949
4095
  property :ai_model, as: 'aiModel', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AiModel, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AiModel::Representation
3950
4096
 
3951
4097
  property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Application, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Application::Representation
@@ -4152,6 +4298,13 @@ module Google
4152
4298
  end
4153
4299
  end
4154
4300
 
4301
+ class GoogleCloudSecuritycenterV2InvocationReference
4302
+ # @private
4303
+ class Representation < Google::Apis::Core::JsonRepresentation
4304
+ property :invocation_id, as: 'invocationId'
4305
+ end
4306
+ end
4307
+
4155
4308
  class GoogleCloudSecuritycenterV2IpRule
4156
4309
  # @private
4157
4310
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5075,6 +5228,13 @@ module Google
5075
5228
  end
5076
5229
  end
5077
5230
 
5231
+ class InvocationReference
5232
+ # @private
5233
+ class Representation < Google::Apis::Core::JsonRepresentation
5234
+ property :invocation_id, as: 'invocationId'
5235
+ end
5236
+ end
5237
+
5078
5238
  class IpRule
5079
5239
  # @private
5080
5240
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-securitycenter_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.109.0
4
+ version: 0.110.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_v1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.109.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.110.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta1
62
62
  rdoc_options: []
63
63
  require_paths: