google-apis-securitycenter_v1beta2 0.101.0 → 0.102.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: a3cd403ce63baa41fb5687ea595f8c4bb22f9856fd593c89f3067de5b71f117e
|
|
4
|
+
data.tar.gz: 5a55ca3f8afdaa75d9a664e5a2a4834279840ba8c236e1420e4e705bbc8aed8e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f44b3829e1f531b492101fa57b93be024d4a5a0de3f2305f4bc751b2ca7625c86317c069b64a17b9b7a6f61ec096e7c43c177e2c4d1d51a0c061454e7802e9c6
|
|
7
|
+
data.tar.gz: ba9832831aeaf1812974688ff9babac4b02ebc9cd109a0f7b9f1f566cb149b44ec51cb4b1b98919db5554d873603a6a9250ffbf93ae4aca840edeede5781fafd
|
data/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
# Release history for google-apis-securitycenter_v1beta2
|
|
2
2
|
|
|
3
|
-
### v0.
|
|
3
|
+
### v0.102.0 (2026-07-19)
|
|
4
4
|
|
|
5
|
-
* Regenerated from discovery document revision
|
|
5
|
+
* Regenerated from discovery document revision 20260710
|
|
6
|
+
|
|
7
|
+
### v0.101.0 (2026-06-28)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260619
|
|
6
10
|
|
|
7
11
|
### v0.100.0 (2026-06-14)
|
|
8
12
|
|
|
@@ -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::SecuritycenterV1beta2::DetectorReference>]
|
|
297
|
+
attr_accessor :detector_references
|
|
298
|
+
|
|
299
|
+
#
|
|
300
|
+
# Corresponds to the JSON property `invocationReferences`
|
|
301
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::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
|
|
@@ -1818,6 +1893,49 @@ module Google
|
|
|
1818
1893
|
end
|
|
1819
1894
|
end
|
|
1820
1895
|
|
|
1896
|
+
#
|
|
1897
|
+
class DetectorReference
|
|
1898
|
+
include Google::Apis::Core::Hashable
|
|
1899
|
+
|
|
1900
|
+
#
|
|
1901
|
+
# Corresponds to the JSON property `detectorId`
|
|
1902
|
+
# @return [String]
|
|
1903
|
+
attr_accessor :detector_id
|
|
1904
|
+
|
|
1905
|
+
#
|
|
1906
|
+
# Corresponds to the JSON property `displayName`
|
|
1907
|
+
# @return [String]
|
|
1908
|
+
attr_accessor :display_name
|
|
1909
|
+
|
|
1910
|
+
#
|
|
1911
|
+
# Corresponds to the JSON property `explanation`
|
|
1912
|
+
# @return [String]
|
|
1913
|
+
attr_accessor :explanation
|
|
1914
|
+
|
|
1915
|
+
#
|
|
1916
|
+
# Corresponds to the JSON property `recommendation`
|
|
1917
|
+
# @return [String]
|
|
1918
|
+
attr_accessor :recommendation
|
|
1919
|
+
|
|
1920
|
+
#
|
|
1921
|
+
# Corresponds to the JSON property `severity`
|
|
1922
|
+
# @return [String]
|
|
1923
|
+
attr_accessor :severity
|
|
1924
|
+
|
|
1925
|
+
def initialize(**args)
|
|
1926
|
+
update!(**args)
|
|
1927
|
+
end
|
|
1928
|
+
|
|
1929
|
+
# Update properties of this object
|
|
1930
|
+
def update!(**args)
|
|
1931
|
+
@detector_id = args[:detector_id] if args.key?(:detector_id)
|
|
1932
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
|
1933
|
+
@explanation = args[:explanation] if args.key?(:explanation)
|
|
1934
|
+
@recommendation = args[:recommendation] if args.key?(:recommendation)
|
|
1935
|
+
@severity = args[:severity] if args.key?(:severity)
|
|
1936
|
+
end
|
|
1937
|
+
end
|
|
1938
|
+
|
|
1821
1939
|
#
|
|
1822
1940
|
class DiscoveredWorkload
|
|
1823
1941
|
include Google::Apis::Core::Hashable
|
|
@@ -2366,11 +2484,26 @@ module Google
|
|
|
2366
2484
|
# @return [Google::Apis::SecuritycenterV1beta2::AffectedResources]
|
|
2367
2485
|
attr_accessor :affected_resources
|
|
2368
2486
|
|
|
2487
|
+
#
|
|
2488
|
+
# Corresponds to the JSON property `agent`
|
|
2489
|
+
# @return [Google::Apis::SecuritycenterV1beta2::Agent]
|
|
2490
|
+
attr_accessor :agent
|
|
2491
|
+
|
|
2492
|
+
#
|
|
2493
|
+
# Corresponds to the JSON property `agentAnomaly`
|
|
2494
|
+
# @return [Google::Apis::SecuritycenterV1beta2::AgentAnomaly]
|
|
2495
|
+
attr_accessor :agent_anomaly
|
|
2496
|
+
|
|
2369
2497
|
#
|
|
2370
2498
|
# Corresponds to the JSON property `agentDataAccessEvents`
|
|
2371
2499
|
# @return [Array<Google::Apis::SecuritycenterV1beta2::AgentDataAccessEvent>]
|
|
2372
2500
|
attr_accessor :agent_data_access_events
|
|
2373
2501
|
|
|
2502
|
+
#
|
|
2503
|
+
# Corresponds to the JSON property `agentSessions`
|
|
2504
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::AgentSession>]
|
|
2505
|
+
attr_accessor :agent_sessions
|
|
2506
|
+
|
|
2374
2507
|
#
|
|
2375
2508
|
# Corresponds to the JSON property `aiModel`
|
|
2376
2509
|
# @return [Google::Apis::SecuritycenterV1beta2::AiModel]
|
|
@@ -2536,6 +2669,11 @@ module Google
|
|
|
2536
2669
|
# @return [Array<Google::Apis::SecuritycenterV1beta2::IamBinding>]
|
|
2537
2670
|
attr_accessor :iam_bindings
|
|
2538
2671
|
|
|
2672
|
+
#
|
|
2673
|
+
# Corresponds to the JSON property `iamDetails`
|
|
2674
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1IamDetails]
|
|
2675
|
+
attr_accessor :iam_details
|
|
2676
|
+
|
|
2539
2677
|
#
|
|
2540
2678
|
# Corresponds to the JSON property `indicator`
|
|
2541
2679
|
# @return [Google::Apis::SecuritycenterV1beta2::Indicator]
|
|
@@ -2704,7 +2842,10 @@ module Google
|
|
|
2704
2842
|
def update!(**args)
|
|
2705
2843
|
@access = args[:access] if args.key?(:access)
|
|
2706
2844
|
@affected_resources = args[:affected_resources] if args.key?(:affected_resources)
|
|
2845
|
+
@agent = args[:agent] if args.key?(:agent)
|
|
2846
|
+
@agent_anomaly = args[:agent_anomaly] if args.key?(:agent_anomaly)
|
|
2707
2847
|
@agent_data_access_events = args[:agent_data_access_events] if args.key?(:agent_data_access_events)
|
|
2848
|
+
@agent_sessions = args[:agent_sessions] if args.key?(:agent_sessions)
|
|
2708
2849
|
@ai_model = args[:ai_model] if args.key?(:ai_model)
|
|
2709
2850
|
@application = args[:application] if args.key?(:application)
|
|
2710
2851
|
@artifact_guard_policies = args[:artifact_guard_policies] if args.key?(:artifact_guard_policies)
|
|
@@ -2738,6 +2879,7 @@ module Google
|
|
|
2738
2879
|
@finding_class = args[:finding_class] if args.key?(:finding_class)
|
|
2739
2880
|
@group_memberships = args[:group_memberships] if args.key?(:group_memberships)
|
|
2740
2881
|
@iam_bindings = args[:iam_bindings] if args.key?(:iam_bindings)
|
|
2882
|
+
@iam_details = args[:iam_details] if args.key?(:iam_details)
|
|
2741
2883
|
@indicator = args[:indicator] if args.key?(:indicator)
|
|
2742
2884
|
@ip_rules = args[:ip_rules] if args.key?(:ip_rules)
|
|
2743
2885
|
@job = args[:job] if args.key?(:job)
|
|
@@ -3210,6 +3352,50 @@ module Google
|
|
|
3210
3352
|
end
|
|
3211
3353
|
end
|
|
3212
3354
|
|
|
3355
|
+
#
|
|
3356
|
+
class GoogleCloudSecuritycenterV1IamDetails
|
|
3357
|
+
include Google::Apis::Core::Hashable
|
|
3358
|
+
|
|
3359
|
+
#
|
|
3360
|
+
# Corresponds to the JSON property `iamRolePermissions`
|
|
3361
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1IamRolePermission>]
|
|
3362
|
+
attr_accessor :iam_role_permissions
|
|
3363
|
+
|
|
3364
|
+
def initialize(**args)
|
|
3365
|
+
update!(**args)
|
|
3366
|
+
end
|
|
3367
|
+
|
|
3368
|
+
# Update properties of this object
|
|
3369
|
+
def update!(**args)
|
|
3370
|
+
@iam_role_permissions = args[:iam_role_permissions] if args.key?(:iam_role_permissions)
|
|
3371
|
+
end
|
|
3372
|
+
end
|
|
3373
|
+
|
|
3374
|
+
#
|
|
3375
|
+
class GoogleCloudSecuritycenterV1IamRolePermission
|
|
3376
|
+
include Google::Apis::Core::Hashable
|
|
3377
|
+
|
|
3378
|
+
#
|
|
3379
|
+
# Corresponds to the JSON property `name`
|
|
3380
|
+
# @return [String]
|
|
3381
|
+
attr_accessor :name
|
|
3382
|
+
|
|
3383
|
+
#
|
|
3384
|
+
# Corresponds to the JSON property `role`
|
|
3385
|
+
# @return [String]
|
|
3386
|
+
attr_accessor :role
|
|
3387
|
+
|
|
3388
|
+
def initialize(**args)
|
|
3389
|
+
update!(**args)
|
|
3390
|
+
end
|
|
3391
|
+
|
|
3392
|
+
# Update properties of this object
|
|
3393
|
+
def update!(**args)
|
|
3394
|
+
@name = args[:name] if args.key?(:name)
|
|
3395
|
+
@role = args[:role] if args.key?(:role)
|
|
3396
|
+
end
|
|
3397
|
+
end
|
|
3398
|
+
|
|
3213
3399
|
#
|
|
3214
3400
|
class GoogleCloudSecuritycenterV1MuteConfig
|
|
3215
3401
|
include Google::Apis::Core::Hashable
|
|
@@ -4306,6 +4492,62 @@ module Google
|
|
|
4306
4492
|
end
|
|
4307
4493
|
end
|
|
4308
4494
|
|
|
4495
|
+
#
|
|
4496
|
+
class GoogleCloudSecuritycenterV2Agent
|
|
4497
|
+
include Google::Apis::Core::Hashable
|
|
4498
|
+
|
|
4499
|
+
#
|
|
4500
|
+
# Corresponds to the JSON property `displayName`
|
|
4501
|
+
# @return [String]
|
|
4502
|
+
attr_accessor :display_name
|
|
4503
|
+
|
|
4504
|
+
#
|
|
4505
|
+
# Corresponds to the JSON property `id`
|
|
4506
|
+
# @return [String]
|
|
4507
|
+
attr_accessor :id
|
|
4508
|
+
|
|
4509
|
+
def initialize(**args)
|
|
4510
|
+
update!(**args)
|
|
4511
|
+
end
|
|
4512
|
+
|
|
4513
|
+
# Update properties of this object
|
|
4514
|
+
def update!(**args)
|
|
4515
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
|
4516
|
+
@id = args[:id] if args.key?(:id)
|
|
4517
|
+
end
|
|
4518
|
+
end
|
|
4519
|
+
|
|
4520
|
+
#
|
|
4521
|
+
class GoogleCloudSecuritycenterV2AgentAnomaly
|
|
4522
|
+
include Google::Apis::Core::Hashable
|
|
4523
|
+
|
|
4524
|
+
#
|
|
4525
|
+
# Corresponds to the JSON property `confidenceScore`
|
|
4526
|
+
# @return [Float]
|
|
4527
|
+
attr_accessor :confidence_score
|
|
4528
|
+
|
|
4529
|
+
#
|
|
4530
|
+
# Corresponds to the JSON property `detectorReferences`
|
|
4531
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2DetectorReference>]
|
|
4532
|
+
attr_accessor :detector_references
|
|
4533
|
+
|
|
4534
|
+
#
|
|
4535
|
+
# Corresponds to the JSON property `invocationReferences`
|
|
4536
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2InvocationReference>]
|
|
4537
|
+
attr_accessor :invocation_references
|
|
4538
|
+
|
|
4539
|
+
def initialize(**args)
|
|
4540
|
+
update!(**args)
|
|
4541
|
+
end
|
|
4542
|
+
|
|
4543
|
+
# Update properties of this object
|
|
4544
|
+
def update!(**args)
|
|
4545
|
+
@confidence_score = args[:confidence_score] if args.key?(:confidence_score)
|
|
4546
|
+
@detector_references = args[:detector_references] if args.key?(:detector_references)
|
|
4547
|
+
@invocation_references = args[:invocation_references] if args.key?(:invocation_references)
|
|
4548
|
+
end
|
|
4549
|
+
end
|
|
4550
|
+
|
|
4309
4551
|
#
|
|
4310
4552
|
class GoogleCloudSecuritycenterV2AgentDataAccessEvent
|
|
4311
4553
|
include Google::Apis::Core::Hashable
|
|
@@ -4343,6 +4585,25 @@ module Google
|
|
|
4343
4585
|
end
|
|
4344
4586
|
end
|
|
4345
4587
|
|
|
4588
|
+
#
|
|
4589
|
+
class GoogleCloudSecuritycenterV2AgentSession
|
|
4590
|
+
include Google::Apis::Core::Hashable
|
|
4591
|
+
|
|
4592
|
+
#
|
|
4593
|
+
# Corresponds to the JSON property `sessionId`
|
|
4594
|
+
# @return [String]
|
|
4595
|
+
attr_accessor :session_id
|
|
4596
|
+
|
|
4597
|
+
def initialize(**args)
|
|
4598
|
+
update!(**args)
|
|
4599
|
+
end
|
|
4600
|
+
|
|
4601
|
+
# Update properties of this object
|
|
4602
|
+
def update!(**args)
|
|
4603
|
+
@session_id = args[:session_id] if args.key?(:session_id)
|
|
4604
|
+
end
|
|
4605
|
+
end
|
|
4606
|
+
|
|
4346
4607
|
#
|
|
4347
4608
|
class GoogleCloudSecuritycenterV2AiModel
|
|
4348
4609
|
include Google::Apis::Core::Hashable
|
|
@@ -5866,6 +6127,49 @@ module Google
|
|
|
5866
6127
|
end
|
|
5867
6128
|
end
|
|
5868
6129
|
|
|
6130
|
+
#
|
|
6131
|
+
class GoogleCloudSecuritycenterV2DetectorReference
|
|
6132
|
+
include Google::Apis::Core::Hashable
|
|
6133
|
+
|
|
6134
|
+
#
|
|
6135
|
+
# Corresponds to the JSON property `detectorId`
|
|
6136
|
+
# @return [String]
|
|
6137
|
+
attr_accessor :detector_id
|
|
6138
|
+
|
|
6139
|
+
#
|
|
6140
|
+
# Corresponds to the JSON property `displayName`
|
|
6141
|
+
# @return [String]
|
|
6142
|
+
attr_accessor :display_name
|
|
6143
|
+
|
|
6144
|
+
#
|
|
6145
|
+
# Corresponds to the JSON property `explanation`
|
|
6146
|
+
# @return [String]
|
|
6147
|
+
attr_accessor :explanation
|
|
6148
|
+
|
|
6149
|
+
#
|
|
6150
|
+
# Corresponds to the JSON property `recommendation`
|
|
6151
|
+
# @return [String]
|
|
6152
|
+
attr_accessor :recommendation
|
|
6153
|
+
|
|
6154
|
+
#
|
|
6155
|
+
# Corresponds to the JSON property `severity`
|
|
6156
|
+
# @return [String]
|
|
6157
|
+
attr_accessor :severity
|
|
6158
|
+
|
|
6159
|
+
def initialize(**args)
|
|
6160
|
+
update!(**args)
|
|
6161
|
+
end
|
|
6162
|
+
|
|
6163
|
+
# Update properties of this object
|
|
6164
|
+
def update!(**args)
|
|
6165
|
+
@detector_id = args[:detector_id] if args.key?(:detector_id)
|
|
6166
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
|
6167
|
+
@explanation = args[:explanation] if args.key?(:explanation)
|
|
6168
|
+
@recommendation = args[:recommendation] if args.key?(:recommendation)
|
|
6169
|
+
@severity = args[:severity] if args.key?(:severity)
|
|
6170
|
+
end
|
|
6171
|
+
end
|
|
6172
|
+
|
|
5869
6173
|
#
|
|
5870
6174
|
class GoogleCloudSecuritycenterV2DiscoveredWorkload
|
|
5871
6175
|
include Google::Apis::Core::Hashable
|
|
@@ -6381,11 +6685,26 @@ module Google
|
|
|
6381
6685
|
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AffectedResources]
|
|
6382
6686
|
attr_accessor :affected_resources
|
|
6383
6687
|
|
|
6688
|
+
#
|
|
6689
|
+
# Corresponds to the JSON property `agent`
|
|
6690
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Agent]
|
|
6691
|
+
attr_accessor :agent
|
|
6692
|
+
|
|
6693
|
+
#
|
|
6694
|
+
# Corresponds to the JSON property `agentAnomaly`
|
|
6695
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AgentAnomaly]
|
|
6696
|
+
attr_accessor :agent_anomaly
|
|
6697
|
+
|
|
6384
6698
|
#
|
|
6385
6699
|
# Corresponds to the JSON property `agentDataAccessEvents`
|
|
6386
6700
|
# @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AgentDataAccessEvent>]
|
|
6387
6701
|
attr_accessor :agent_data_access_events
|
|
6388
6702
|
|
|
6703
|
+
#
|
|
6704
|
+
# Corresponds to the JSON property `agentSessions`
|
|
6705
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AgentSession>]
|
|
6706
|
+
attr_accessor :agent_sessions
|
|
6707
|
+
|
|
6389
6708
|
#
|
|
6390
6709
|
# Corresponds to the JSON property `aiModel`
|
|
6391
6710
|
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AiModel]
|
|
@@ -6556,6 +6875,11 @@ module Google
|
|
|
6556
6875
|
# @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IamBinding>]
|
|
6557
6876
|
attr_accessor :iam_bindings
|
|
6558
6877
|
|
|
6878
|
+
#
|
|
6879
|
+
# Corresponds to the JSON property `iamDetails`
|
|
6880
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IamDetails]
|
|
6881
|
+
attr_accessor :iam_details
|
|
6882
|
+
|
|
6559
6883
|
#
|
|
6560
6884
|
# Corresponds to the JSON property `indicator`
|
|
6561
6885
|
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Indicator]
|
|
@@ -6724,7 +7048,10 @@ module Google
|
|
|
6724
7048
|
def update!(**args)
|
|
6725
7049
|
@access = args[:access] if args.key?(:access)
|
|
6726
7050
|
@affected_resources = args[:affected_resources] if args.key?(:affected_resources)
|
|
7051
|
+
@agent = args[:agent] if args.key?(:agent)
|
|
7052
|
+
@agent_anomaly = args[:agent_anomaly] if args.key?(:agent_anomaly)
|
|
6727
7053
|
@agent_data_access_events = args[:agent_data_access_events] if args.key?(:agent_data_access_events)
|
|
7054
|
+
@agent_sessions = args[:agent_sessions] if args.key?(:agent_sessions)
|
|
6728
7055
|
@ai_model = args[:ai_model] if args.key?(:ai_model)
|
|
6729
7056
|
@application = args[:application] if args.key?(:application)
|
|
6730
7057
|
@artifact_guard_policies = args[:artifact_guard_policies] if args.key?(:artifact_guard_policies)
|
|
@@ -6759,6 +7086,7 @@ module Google
|
|
|
6759
7086
|
@finding_class = args[:finding_class] if args.key?(:finding_class)
|
|
6760
7087
|
@group_memberships = args[:group_memberships] if args.key?(:group_memberships)
|
|
6761
7088
|
@iam_bindings = args[:iam_bindings] if args.key?(:iam_bindings)
|
|
7089
|
+
@iam_details = args[:iam_details] if args.key?(:iam_details)
|
|
6762
7090
|
@indicator = args[:indicator] if args.key?(:indicator)
|
|
6763
7091
|
@ip_rules = args[:ip_rules] if args.key?(:ip_rules)
|
|
6764
7092
|
@job = args[:job] if args.key?(:job)
|
|
@@ -6962,6 +7290,50 @@ module Google
|
|
|
6962
7290
|
end
|
|
6963
7291
|
end
|
|
6964
7292
|
|
|
7293
|
+
#
|
|
7294
|
+
class GoogleCloudSecuritycenterV2IamDetails
|
|
7295
|
+
include Google::Apis::Core::Hashable
|
|
7296
|
+
|
|
7297
|
+
#
|
|
7298
|
+
# Corresponds to the JSON property `iamRolePermissions`
|
|
7299
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IamRolePermission>]
|
|
7300
|
+
attr_accessor :iam_role_permissions
|
|
7301
|
+
|
|
7302
|
+
def initialize(**args)
|
|
7303
|
+
update!(**args)
|
|
7304
|
+
end
|
|
7305
|
+
|
|
7306
|
+
# Update properties of this object
|
|
7307
|
+
def update!(**args)
|
|
7308
|
+
@iam_role_permissions = args[:iam_role_permissions] if args.key?(:iam_role_permissions)
|
|
7309
|
+
end
|
|
7310
|
+
end
|
|
7311
|
+
|
|
7312
|
+
#
|
|
7313
|
+
class GoogleCloudSecuritycenterV2IamRolePermission
|
|
7314
|
+
include Google::Apis::Core::Hashable
|
|
7315
|
+
|
|
7316
|
+
#
|
|
7317
|
+
# Corresponds to the JSON property `name`
|
|
7318
|
+
# @return [String]
|
|
7319
|
+
attr_accessor :name
|
|
7320
|
+
|
|
7321
|
+
#
|
|
7322
|
+
# Corresponds to the JSON property `role`
|
|
7323
|
+
# @return [String]
|
|
7324
|
+
attr_accessor :role
|
|
7325
|
+
|
|
7326
|
+
def initialize(**args)
|
|
7327
|
+
update!(**args)
|
|
7328
|
+
end
|
|
7329
|
+
|
|
7330
|
+
# Update properties of this object
|
|
7331
|
+
def update!(**args)
|
|
7332
|
+
@name = args[:name] if args.key?(:name)
|
|
7333
|
+
@role = args[:role] if args.key?(:role)
|
|
7334
|
+
end
|
|
7335
|
+
end
|
|
7336
|
+
|
|
6965
7337
|
#
|
|
6966
7338
|
class GoogleCloudSecuritycenterV2Indicator
|
|
6967
7339
|
include Google::Apis::Core::Hashable
|
|
@@ -7030,6 +7402,25 @@ module Google
|
|
|
7030
7402
|
end
|
|
7031
7403
|
end
|
|
7032
7404
|
|
|
7405
|
+
#
|
|
7406
|
+
class GoogleCloudSecuritycenterV2InvocationReference
|
|
7407
|
+
include Google::Apis::Core::Hashable
|
|
7408
|
+
|
|
7409
|
+
#
|
|
7410
|
+
# Corresponds to the JSON property `invocationId`
|
|
7411
|
+
# @return [String]
|
|
7412
|
+
attr_accessor :invocation_id
|
|
7413
|
+
|
|
7414
|
+
def initialize(**args)
|
|
7415
|
+
update!(**args)
|
|
7416
|
+
end
|
|
7417
|
+
|
|
7418
|
+
# Update properties of this object
|
|
7419
|
+
def update!(**args)
|
|
7420
|
+
@invocation_id = args[:invocation_id] if args.key?(:invocation_id)
|
|
7421
|
+
end
|
|
7422
|
+
end
|
|
7423
|
+
|
|
7033
7424
|
#
|
|
7034
7425
|
class GoogleCloudSecuritycenterV2IpRule
|
|
7035
7426
|
include Google::Apis::Core::Hashable
|
|
@@ -9833,6 +10224,25 @@ module Google
|
|
|
9833
10224
|
end
|
|
9834
10225
|
end
|
|
9835
10226
|
|
|
10227
|
+
#
|
|
10228
|
+
class InvocationReference
|
|
10229
|
+
include Google::Apis::Core::Hashable
|
|
10230
|
+
|
|
10231
|
+
#
|
|
10232
|
+
# Corresponds to the JSON property `invocationId`
|
|
10233
|
+
# @return [String]
|
|
10234
|
+
attr_accessor :invocation_id
|
|
10235
|
+
|
|
10236
|
+
def initialize(**args)
|
|
10237
|
+
update!(**args)
|
|
10238
|
+
end
|
|
10239
|
+
|
|
10240
|
+
# Update properties of this object
|
|
10241
|
+
def update!(**args)
|
|
10242
|
+
@invocation_id = args[:invocation_id] if args.key?(:invocation_id)
|
|
10243
|
+
end
|
|
10244
|
+
end
|
|
10245
|
+
|
|
9836
10246
|
#
|
|
9837
10247
|
class IpRule
|
|
9838
10248
|
include Google::Apis::Core::Hashable
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module SecuritycenterV1beta2
|
|
18
18
|
# Version of the google-apis-securitycenter_v1beta2 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.102.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
|
|
|
@@ -334,6 +352,12 @@ module Google
|
|
|
334
352
|
include Google::Apis::Core::JsonObjectSupport
|
|
335
353
|
end
|
|
336
354
|
|
|
355
|
+
class DetectorReference
|
|
356
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
357
|
+
|
|
358
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
359
|
+
end
|
|
360
|
+
|
|
337
361
|
class DiscoveredWorkload
|
|
338
362
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
339
363
|
|
|
@@ -490,6 +514,18 @@ module Google
|
|
|
490
514
|
include Google::Apis::Core::JsonObjectSupport
|
|
491
515
|
end
|
|
492
516
|
|
|
517
|
+
class GoogleCloudSecuritycenterV1IamDetails
|
|
518
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
519
|
+
|
|
520
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
521
|
+
end
|
|
522
|
+
|
|
523
|
+
class GoogleCloudSecuritycenterV1IamRolePermission
|
|
524
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
525
|
+
|
|
526
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
527
|
+
end
|
|
528
|
+
|
|
493
529
|
class GoogleCloudSecuritycenterV1MuteConfig
|
|
494
530
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
495
531
|
|
|
@@ -658,12 +694,30 @@ module Google
|
|
|
658
694
|
include Google::Apis::Core::JsonObjectSupport
|
|
659
695
|
end
|
|
660
696
|
|
|
697
|
+
class GoogleCloudSecuritycenterV2Agent
|
|
698
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
699
|
+
|
|
700
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
701
|
+
end
|
|
702
|
+
|
|
703
|
+
class GoogleCloudSecuritycenterV2AgentAnomaly
|
|
704
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
705
|
+
|
|
706
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
707
|
+
end
|
|
708
|
+
|
|
661
709
|
class GoogleCloudSecuritycenterV2AgentDataAccessEvent
|
|
662
710
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
663
711
|
|
|
664
712
|
include Google::Apis::Core::JsonObjectSupport
|
|
665
713
|
end
|
|
666
714
|
|
|
715
|
+
class GoogleCloudSecuritycenterV2AgentSession
|
|
716
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
717
|
+
|
|
718
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
719
|
+
end
|
|
720
|
+
|
|
667
721
|
class GoogleCloudSecuritycenterV2AiModel
|
|
668
722
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
669
723
|
|
|
@@ -922,6 +976,12 @@ module Google
|
|
|
922
976
|
include Google::Apis::Core::JsonObjectSupport
|
|
923
977
|
end
|
|
924
978
|
|
|
979
|
+
class GoogleCloudSecuritycenterV2DetectorReference
|
|
980
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
981
|
+
|
|
982
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
983
|
+
end
|
|
984
|
+
|
|
925
985
|
class GoogleCloudSecuritycenterV2DiscoveredWorkload
|
|
926
986
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
927
987
|
|
|
@@ -1030,6 +1090,18 @@ module Google
|
|
|
1030
1090
|
include Google::Apis::Core::JsonObjectSupport
|
|
1031
1091
|
end
|
|
1032
1092
|
|
|
1093
|
+
class GoogleCloudSecuritycenterV2IamDetails
|
|
1094
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1095
|
+
|
|
1096
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1097
|
+
end
|
|
1098
|
+
|
|
1099
|
+
class GoogleCloudSecuritycenterV2IamRolePermission
|
|
1100
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1101
|
+
|
|
1102
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1103
|
+
end
|
|
1104
|
+
|
|
1033
1105
|
class GoogleCloudSecuritycenterV2Indicator
|
|
1034
1106
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1035
1107
|
|
|
@@ -1042,6 +1114,12 @@ module Google
|
|
|
1042
1114
|
include Google::Apis::Core::JsonObjectSupport
|
|
1043
1115
|
end
|
|
1044
1116
|
|
|
1117
|
+
class GoogleCloudSecuritycenterV2InvocationReference
|
|
1118
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1119
|
+
|
|
1120
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1121
|
+
end
|
|
1122
|
+
|
|
1045
1123
|
class GoogleCloudSecuritycenterV2IpRule
|
|
1046
1124
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1047
1125
|
|
|
@@ -1552,6 +1630,12 @@ module Google
|
|
|
1552
1630
|
include Google::Apis::Core::JsonObjectSupport
|
|
1553
1631
|
end
|
|
1554
1632
|
|
|
1633
|
+
class InvocationReference
|
|
1634
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1635
|
+
|
|
1636
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1637
|
+
end
|
|
1638
|
+
|
|
1555
1639
|
class IpRule
|
|
1556
1640
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1557
1641
|
|
|
@@ -1951,6 +2035,25 @@ module Google
|
|
|
1951
2035
|
end
|
|
1952
2036
|
end
|
|
1953
2037
|
|
|
2038
|
+
class Agent
|
|
2039
|
+
# @private
|
|
2040
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2041
|
+
property :display_name, as: 'displayName'
|
|
2042
|
+
property :id, as: 'id'
|
|
2043
|
+
end
|
|
2044
|
+
end
|
|
2045
|
+
|
|
2046
|
+
class AgentAnomaly
|
|
2047
|
+
# @private
|
|
2048
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2049
|
+
property :confidence_score, as: 'confidenceScore'
|
|
2050
|
+
collection :detector_references, as: 'detectorReferences', class: Google::Apis::SecuritycenterV1beta2::DetectorReference, decorator: Google::Apis::SecuritycenterV1beta2::DetectorReference::Representation
|
|
2051
|
+
|
|
2052
|
+
collection :invocation_references, as: 'invocationReferences', class: Google::Apis::SecuritycenterV1beta2::InvocationReference, decorator: Google::Apis::SecuritycenterV1beta2::InvocationReference::Representation
|
|
2053
|
+
|
|
2054
|
+
end
|
|
2055
|
+
end
|
|
2056
|
+
|
|
1954
2057
|
class AgentDataAccessEvent
|
|
1955
2058
|
# @private
|
|
1956
2059
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1961,6 +2064,13 @@ module Google
|
|
|
1961
2064
|
end
|
|
1962
2065
|
end
|
|
1963
2066
|
|
|
2067
|
+
class AgentSession
|
|
2068
|
+
# @private
|
|
2069
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2070
|
+
property :session_id, as: 'sessionId'
|
|
2071
|
+
end
|
|
2072
|
+
end
|
|
2073
|
+
|
|
1964
2074
|
class AiModel
|
|
1965
2075
|
# @private
|
|
1966
2076
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2406,6 +2516,17 @@ module Google
|
|
|
2406
2516
|
end
|
|
2407
2517
|
end
|
|
2408
2518
|
|
|
2519
|
+
class DetectorReference
|
|
2520
|
+
# @private
|
|
2521
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2522
|
+
property :detector_id, as: 'detectorId'
|
|
2523
|
+
property :display_name, as: 'displayName'
|
|
2524
|
+
property :explanation, as: 'explanation'
|
|
2525
|
+
property :recommendation, as: 'recommendation'
|
|
2526
|
+
property :severity, as: 'severity'
|
|
2527
|
+
end
|
|
2528
|
+
end
|
|
2529
|
+
|
|
2409
2530
|
class DiscoveredWorkload
|
|
2410
2531
|
# @private
|
|
2411
2532
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2562,8 +2683,14 @@ module Google
|
|
|
2562
2683
|
|
|
2563
2684
|
property :affected_resources, as: 'affectedResources', class: Google::Apis::SecuritycenterV1beta2::AffectedResources, decorator: Google::Apis::SecuritycenterV1beta2::AffectedResources::Representation
|
|
2564
2685
|
|
|
2686
|
+
property :agent, as: 'agent', class: Google::Apis::SecuritycenterV1beta2::Agent, decorator: Google::Apis::SecuritycenterV1beta2::Agent::Representation
|
|
2687
|
+
|
|
2688
|
+
property :agent_anomaly, as: 'agentAnomaly', class: Google::Apis::SecuritycenterV1beta2::AgentAnomaly, decorator: Google::Apis::SecuritycenterV1beta2::AgentAnomaly::Representation
|
|
2689
|
+
|
|
2565
2690
|
collection :agent_data_access_events, as: 'agentDataAccessEvents', class: Google::Apis::SecuritycenterV1beta2::AgentDataAccessEvent, decorator: Google::Apis::SecuritycenterV1beta2::AgentDataAccessEvent::Representation
|
|
2566
2691
|
|
|
2692
|
+
collection :agent_sessions, as: 'agentSessions', class: Google::Apis::SecuritycenterV1beta2::AgentSession, decorator: Google::Apis::SecuritycenterV1beta2::AgentSession::Representation
|
|
2693
|
+
|
|
2567
2694
|
property :ai_model, as: 'aiModel', class: Google::Apis::SecuritycenterV1beta2::AiModel, decorator: Google::Apis::SecuritycenterV1beta2::AiModel::Representation
|
|
2568
2695
|
|
|
2569
2696
|
property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta2::Application, decorator: Google::Apis::SecuritycenterV1beta2::Application::Representation
|
|
@@ -2623,6 +2750,8 @@ module Google
|
|
|
2623
2750
|
|
|
2624
2751
|
collection :iam_bindings, as: 'iamBindings', class: Google::Apis::SecuritycenterV1beta2::IamBinding, decorator: Google::Apis::SecuritycenterV1beta2::IamBinding::Representation
|
|
2625
2752
|
|
|
2753
|
+
property :iam_details, as: 'iamDetails', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1IamDetails, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1IamDetails::Representation
|
|
2754
|
+
|
|
2626
2755
|
property :indicator, as: 'indicator', class: Google::Apis::SecuritycenterV1beta2::Indicator, decorator: Google::Apis::SecuritycenterV1beta2::Indicator::Representation
|
|
2627
2756
|
|
|
2628
2757
|
property :ip_rules, as: 'ipRules', class: Google::Apis::SecuritycenterV1beta2::IpRules, decorator: Google::Apis::SecuritycenterV1beta2::IpRules::Representation
|
|
@@ -2803,6 +2932,22 @@ module Google
|
|
|
2803
2932
|
end
|
|
2804
2933
|
end
|
|
2805
2934
|
|
|
2935
|
+
class GoogleCloudSecuritycenterV1IamDetails
|
|
2936
|
+
# @private
|
|
2937
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2938
|
+
collection :iam_role_permissions, as: 'iamRolePermissions', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1IamRolePermission, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1IamRolePermission::Representation
|
|
2939
|
+
|
|
2940
|
+
end
|
|
2941
|
+
end
|
|
2942
|
+
|
|
2943
|
+
class GoogleCloudSecuritycenterV1IamRolePermission
|
|
2944
|
+
# @private
|
|
2945
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2946
|
+
property :name, as: 'name'
|
|
2947
|
+
property :role, as: 'role'
|
|
2948
|
+
end
|
|
2949
|
+
end
|
|
2950
|
+
|
|
2806
2951
|
class GoogleCloudSecuritycenterV1MuteConfig
|
|
2807
2952
|
# @private
|
|
2808
2953
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3119,6 +3264,25 @@ module Google
|
|
|
3119
3264
|
end
|
|
3120
3265
|
end
|
|
3121
3266
|
|
|
3267
|
+
class GoogleCloudSecuritycenterV2Agent
|
|
3268
|
+
# @private
|
|
3269
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3270
|
+
property :display_name, as: 'displayName'
|
|
3271
|
+
property :id, as: 'id'
|
|
3272
|
+
end
|
|
3273
|
+
end
|
|
3274
|
+
|
|
3275
|
+
class GoogleCloudSecuritycenterV2AgentAnomaly
|
|
3276
|
+
# @private
|
|
3277
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3278
|
+
property :confidence_score, as: 'confidenceScore'
|
|
3279
|
+
collection :detector_references, as: 'detectorReferences', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2DetectorReference, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2DetectorReference::Representation
|
|
3280
|
+
|
|
3281
|
+
collection :invocation_references, as: 'invocationReferences', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2InvocationReference, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2InvocationReference::Representation
|
|
3282
|
+
|
|
3283
|
+
end
|
|
3284
|
+
end
|
|
3285
|
+
|
|
3122
3286
|
class GoogleCloudSecuritycenterV2AgentDataAccessEvent
|
|
3123
3287
|
# @private
|
|
3124
3288
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3129,6 +3293,13 @@ module Google
|
|
|
3129
3293
|
end
|
|
3130
3294
|
end
|
|
3131
3295
|
|
|
3296
|
+
class GoogleCloudSecuritycenterV2AgentSession
|
|
3297
|
+
# @private
|
|
3298
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3299
|
+
property :session_id, as: 'sessionId'
|
|
3300
|
+
end
|
|
3301
|
+
end
|
|
3302
|
+
|
|
3132
3303
|
class GoogleCloudSecuritycenterV2AiModel
|
|
3133
3304
|
# @private
|
|
3134
3305
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3571,6 +3742,17 @@ module Google
|
|
|
3571
3742
|
end
|
|
3572
3743
|
end
|
|
3573
3744
|
|
|
3745
|
+
class GoogleCloudSecuritycenterV2DetectorReference
|
|
3746
|
+
# @private
|
|
3747
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3748
|
+
property :detector_id, as: 'detectorId'
|
|
3749
|
+
property :display_name, as: 'displayName'
|
|
3750
|
+
property :explanation, as: 'explanation'
|
|
3751
|
+
property :recommendation, as: 'recommendation'
|
|
3752
|
+
property :severity, as: 'severity'
|
|
3753
|
+
end
|
|
3754
|
+
end
|
|
3755
|
+
|
|
3574
3756
|
class GoogleCloudSecuritycenterV2DiscoveredWorkload
|
|
3575
3757
|
# @private
|
|
3576
3758
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3709,8 +3891,14 @@ module Google
|
|
|
3709
3891
|
|
|
3710
3892
|
property :affected_resources, as: 'affectedResources', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AffectedResources, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AffectedResources::Representation
|
|
3711
3893
|
|
|
3894
|
+
property :agent, as: 'agent', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Agent, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Agent::Representation
|
|
3895
|
+
|
|
3896
|
+
property :agent_anomaly, as: 'agentAnomaly', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AgentAnomaly, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AgentAnomaly::Representation
|
|
3897
|
+
|
|
3712
3898
|
collection :agent_data_access_events, as: 'agentDataAccessEvents', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AgentDataAccessEvent, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AgentDataAccessEvent::Representation
|
|
3713
3899
|
|
|
3900
|
+
collection :agent_sessions, as: 'agentSessions', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AgentSession, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AgentSession::Representation
|
|
3901
|
+
|
|
3714
3902
|
property :ai_model, as: 'aiModel', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AiModel, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AiModel::Representation
|
|
3715
3903
|
|
|
3716
3904
|
property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Application, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Application::Representation
|
|
@@ -3771,6 +3959,8 @@ module Google
|
|
|
3771
3959
|
|
|
3772
3960
|
collection :iam_bindings, as: 'iamBindings', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IamBinding, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IamBinding::Representation
|
|
3773
3961
|
|
|
3962
|
+
property :iam_details, as: 'iamDetails', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IamDetails, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IamDetails::Representation
|
|
3963
|
+
|
|
3774
3964
|
property :indicator, as: 'indicator', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Indicator, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Indicator::Representation
|
|
3775
3965
|
|
|
3776
3966
|
property :ip_rules, as: 'ipRules', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IpRules, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IpRules::Representation
|
|
@@ -3878,6 +4068,22 @@ module Google
|
|
|
3878
4068
|
end
|
|
3879
4069
|
end
|
|
3880
4070
|
|
|
4071
|
+
class GoogleCloudSecuritycenterV2IamDetails
|
|
4072
|
+
# @private
|
|
4073
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4074
|
+
collection :iam_role_permissions, as: 'iamRolePermissions', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IamRolePermission, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IamRolePermission::Representation
|
|
4075
|
+
|
|
4076
|
+
end
|
|
4077
|
+
end
|
|
4078
|
+
|
|
4079
|
+
class GoogleCloudSecuritycenterV2IamRolePermission
|
|
4080
|
+
# @private
|
|
4081
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4082
|
+
property :name, as: 'name'
|
|
4083
|
+
property :role, as: 'role'
|
|
4084
|
+
end
|
|
4085
|
+
end
|
|
4086
|
+
|
|
3881
4087
|
class GoogleCloudSecuritycenterV2Indicator
|
|
3882
4088
|
# @private
|
|
3883
4089
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3899,6 +4105,13 @@ module Google
|
|
|
3899
4105
|
end
|
|
3900
4106
|
end
|
|
3901
4107
|
|
|
4108
|
+
class GoogleCloudSecuritycenterV2InvocationReference
|
|
4109
|
+
# @private
|
|
4110
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4111
|
+
property :invocation_id, as: 'invocationId'
|
|
4112
|
+
end
|
|
4113
|
+
end
|
|
4114
|
+
|
|
3902
4115
|
class GoogleCloudSecuritycenterV2IpRule
|
|
3903
4116
|
# @private
|
|
3904
4117
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -4771,6 +4984,13 @@ module Google
|
|
|
4771
4984
|
end
|
|
4772
4985
|
end
|
|
4773
4986
|
|
|
4987
|
+
class InvocationReference
|
|
4988
|
+
# @private
|
|
4989
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4990
|
+
property :invocation_id, as: 'invocationId'
|
|
4991
|
+
end
|
|
4992
|
+
end
|
|
4993
|
+
|
|
4774
4994
|
class IpRule
|
|
4775
4995
|
# @private
|
|
4776
4996
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-securitycenter_v1beta2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.102.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_v1beta2/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.102.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta2
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|