google-apis-securitycenter_v1beta2 0.100.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,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-securitycenter_v1beta2
|
|
2
2
|
|
|
3
|
+
### v0.102.0 (2026-07-19)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260710
|
|
6
|
+
|
|
7
|
+
### v0.101.0 (2026-06-28)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260619
|
|
10
|
+
|
|
3
11
|
### v0.100.0 (2026-06-14)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260526
|
|
@@ -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
|
|
@@ -2195,6 +2313,11 @@ module Google
|
|
|
2195
2313
|
# @return [String]
|
|
2196
2314
|
attr_accessor :network_ingress_firewall_policy
|
|
2197
2315
|
|
|
2316
|
+
#
|
|
2317
|
+
# Corresponds to the JSON property `networkPathInsightsGenerationTime`
|
|
2318
|
+
# @return [String]
|
|
2319
|
+
attr_accessor :network_path_insights_generation_time
|
|
2320
|
+
|
|
2198
2321
|
#
|
|
2199
2322
|
# Corresponds to the JSON property `privateIpAddress`
|
|
2200
2323
|
# @return [String]
|
|
@@ -2249,6 +2372,7 @@ module Google
|
|
|
2249
2372
|
@load_balancer_firewall_policy = args[:load_balancer_firewall_policy] if args.key?(:load_balancer_firewall_policy)
|
|
2250
2373
|
@network_endpoint_group = args[:network_endpoint_group] if args.key?(:network_endpoint_group)
|
|
2251
2374
|
@network_ingress_firewall_policy = args[:network_ingress_firewall_policy] if args.key?(:network_ingress_firewall_policy)
|
|
2375
|
+
@network_path_insights_generation_time = args[:network_path_insights_generation_time] if args.key?(:network_path_insights_generation_time)
|
|
2252
2376
|
@private_ip_address = args[:private_ip_address] if args.key?(:private_ip_address)
|
|
2253
2377
|
@private_port = args[:private_port] if args.key?(:private_port)
|
|
2254
2378
|
@psc_network_attachment = args[:psc_network_attachment] if args.key?(:psc_network_attachment)
|
|
@@ -2360,11 +2484,26 @@ module Google
|
|
|
2360
2484
|
# @return [Google::Apis::SecuritycenterV1beta2::AffectedResources]
|
|
2361
2485
|
attr_accessor :affected_resources
|
|
2362
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
|
+
|
|
2363
2497
|
#
|
|
2364
2498
|
# Corresponds to the JSON property `agentDataAccessEvents`
|
|
2365
2499
|
# @return [Array<Google::Apis::SecuritycenterV1beta2::AgentDataAccessEvent>]
|
|
2366
2500
|
attr_accessor :agent_data_access_events
|
|
2367
2501
|
|
|
2502
|
+
#
|
|
2503
|
+
# Corresponds to the JSON property `agentSessions`
|
|
2504
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::AgentSession>]
|
|
2505
|
+
attr_accessor :agent_sessions
|
|
2506
|
+
|
|
2368
2507
|
#
|
|
2369
2508
|
# Corresponds to the JSON property `aiModel`
|
|
2370
2509
|
# @return [Google::Apis::SecuritycenterV1beta2::AiModel]
|
|
@@ -2530,6 +2669,11 @@ module Google
|
|
|
2530
2669
|
# @return [Array<Google::Apis::SecuritycenterV1beta2::IamBinding>]
|
|
2531
2670
|
attr_accessor :iam_bindings
|
|
2532
2671
|
|
|
2672
|
+
#
|
|
2673
|
+
# Corresponds to the JSON property `iamDetails`
|
|
2674
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1IamDetails]
|
|
2675
|
+
attr_accessor :iam_details
|
|
2676
|
+
|
|
2533
2677
|
#
|
|
2534
2678
|
# Corresponds to the JSON property `indicator`
|
|
2535
2679
|
# @return [Google::Apis::SecuritycenterV1beta2::Indicator]
|
|
@@ -2698,7 +2842,10 @@ module Google
|
|
|
2698
2842
|
def update!(**args)
|
|
2699
2843
|
@access = args[:access] if args.key?(:access)
|
|
2700
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)
|
|
2701
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)
|
|
2702
2849
|
@ai_model = args[:ai_model] if args.key?(:ai_model)
|
|
2703
2850
|
@application = args[:application] if args.key?(:application)
|
|
2704
2851
|
@artifact_guard_policies = args[:artifact_guard_policies] if args.key?(:artifact_guard_policies)
|
|
@@ -2732,6 +2879,7 @@ module Google
|
|
|
2732
2879
|
@finding_class = args[:finding_class] if args.key?(:finding_class)
|
|
2733
2880
|
@group_memberships = args[:group_memberships] if args.key?(:group_memberships)
|
|
2734
2881
|
@iam_bindings = args[:iam_bindings] if args.key?(:iam_bindings)
|
|
2882
|
+
@iam_details = args[:iam_details] if args.key?(:iam_details)
|
|
2735
2883
|
@indicator = args[:indicator] if args.key?(:indicator)
|
|
2736
2884
|
@ip_rules = args[:ip_rules] if args.key?(:ip_rules)
|
|
2737
2885
|
@job = args[:job] if args.key?(:job)
|
|
@@ -3204,6 +3352,50 @@ module Google
|
|
|
3204
3352
|
end
|
|
3205
3353
|
end
|
|
3206
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
|
+
|
|
3207
3399
|
#
|
|
3208
3400
|
class GoogleCloudSecuritycenterV1MuteConfig
|
|
3209
3401
|
include Google::Apis::Core::Hashable
|
|
@@ -4300,6 +4492,62 @@ module Google
|
|
|
4300
4492
|
end
|
|
4301
4493
|
end
|
|
4302
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
|
+
|
|
4303
4551
|
#
|
|
4304
4552
|
class GoogleCloudSecuritycenterV2AgentDataAccessEvent
|
|
4305
4553
|
include Google::Apis::Core::Hashable
|
|
@@ -4337,6 +4585,25 @@ module Google
|
|
|
4337
4585
|
end
|
|
4338
4586
|
end
|
|
4339
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
|
+
|
|
4340
4607
|
#
|
|
4341
4608
|
class GoogleCloudSecuritycenterV2AiModel
|
|
4342
4609
|
include Google::Apis::Core::Hashable
|
|
@@ -5860,6 +6127,49 @@ module Google
|
|
|
5860
6127
|
end
|
|
5861
6128
|
end
|
|
5862
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
|
+
|
|
5863
6173
|
#
|
|
5864
6174
|
class GoogleCloudSecuritycenterV2DiscoveredWorkload
|
|
5865
6175
|
include Google::Apis::Core::Hashable
|
|
@@ -6125,6 +6435,11 @@ module Google
|
|
|
6125
6435
|
# @return [String]
|
|
6126
6436
|
attr_accessor :network_ingress_firewall_policy
|
|
6127
6437
|
|
|
6438
|
+
#
|
|
6439
|
+
# Corresponds to the JSON property `networkPathInsightsGenerationTime`
|
|
6440
|
+
# @return [String]
|
|
6441
|
+
attr_accessor :network_path_insights_generation_time
|
|
6442
|
+
|
|
6128
6443
|
#
|
|
6129
6444
|
# Corresponds to the JSON property `privateIpAddress`
|
|
6130
6445
|
# @return [String]
|
|
@@ -6179,6 +6494,7 @@ module Google
|
|
|
6179
6494
|
@load_balancer_firewall_policy = args[:load_balancer_firewall_policy] if args.key?(:load_balancer_firewall_policy)
|
|
6180
6495
|
@network_endpoint_group = args[:network_endpoint_group] if args.key?(:network_endpoint_group)
|
|
6181
6496
|
@network_ingress_firewall_policy = args[:network_ingress_firewall_policy] if args.key?(:network_ingress_firewall_policy)
|
|
6497
|
+
@network_path_insights_generation_time = args[:network_path_insights_generation_time] if args.key?(:network_path_insights_generation_time)
|
|
6182
6498
|
@private_ip_address = args[:private_ip_address] if args.key?(:private_ip_address)
|
|
6183
6499
|
@private_port = args[:private_port] if args.key?(:private_port)
|
|
6184
6500
|
@psc_network_attachment = args[:psc_network_attachment] if args.key?(:psc_network_attachment)
|
|
@@ -6369,11 +6685,26 @@ module Google
|
|
|
6369
6685
|
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AffectedResources]
|
|
6370
6686
|
attr_accessor :affected_resources
|
|
6371
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
|
+
|
|
6372
6698
|
#
|
|
6373
6699
|
# Corresponds to the JSON property `agentDataAccessEvents`
|
|
6374
6700
|
# @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AgentDataAccessEvent>]
|
|
6375
6701
|
attr_accessor :agent_data_access_events
|
|
6376
6702
|
|
|
6703
|
+
#
|
|
6704
|
+
# Corresponds to the JSON property `agentSessions`
|
|
6705
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AgentSession>]
|
|
6706
|
+
attr_accessor :agent_sessions
|
|
6707
|
+
|
|
6377
6708
|
#
|
|
6378
6709
|
# Corresponds to the JSON property `aiModel`
|
|
6379
6710
|
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AiModel]
|
|
@@ -6544,6 +6875,11 @@ module Google
|
|
|
6544
6875
|
# @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IamBinding>]
|
|
6545
6876
|
attr_accessor :iam_bindings
|
|
6546
6877
|
|
|
6878
|
+
#
|
|
6879
|
+
# Corresponds to the JSON property `iamDetails`
|
|
6880
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IamDetails]
|
|
6881
|
+
attr_accessor :iam_details
|
|
6882
|
+
|
|
6547
6883
|
#
|
|
6548
6884
|
# Corresponds to the JSON property `indicator`
|
|
6549
6885
|
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Indicator]
|
|
@@ -6712,7 +7048,10 @@ module Google
|
|
|
6712
7048
|
def update!(**args)
|
|
6713
7049
|
@access = args[:access] if args.key?(:access)
|
|
6714
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)
|
|
6715
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)
|
|
6716
7055
|
@ai_model = args[:ai_model] if args.key?(:ai_model)
|
|
6717
7056
|
@application = args[:application] if args.key?(:application)
|
|
6718
7057
|
@artifact_guard_policies = args[:artifact_guard_policies] if args.key?(:artifact_guard_policies)
|
|
@@ -6747,6 +7086,7 @@ module Google
|
|
|
6747
7086
|
@finding_class = args[:finding_class] if args.key?(:finding_class)
|
|
6748
7087
|
@group_memberships = args[:group_memberships] if args.key?(:group_memberships)
|
|
6749
7088
|
@iam_bindings = args[:iam_bindings] if args.key?(:iam_bindings)
|
|
7089
|
+
@iam_details = args[:iam_details] if args.key?(:iam_details)
|
|
6750
7090
|
@indicator = args[:indicator] if args.key?(:indicator)
|
|
6751
7091
|
@ip_rules = args[:ip_rules] if args.key?(:ip_rules)
|
|
6752
7092
|
@job = args[:job] if args.key?(:job)
|
|
@@ -6950,6 +7290,50 @@ module Google
|
|
|
6950
7290
|
end
|
|
6951
7291
|
end
|
|
6952
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
|
+
|
|
6953
7337
|
#
|
|
6954
7338
|
class GoogleCloudSecuritycenterV2Indicator
|
|
6955
7339
|
include Google::Apis::Core::Hashable
|
|
@@ -7018,6 +7402,25 @@ module Google
|
|
|
7018
7402
|
end
|
|
7019
7403
|
end
|
|
7020
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
|
+
|
|
7021
7424
|
#
|
|
7022
7425
|
class GoogleCloudSecuritycenterV2IpRule
|
|
7023
7426
|
include Google::Apis::Core::Hashable
|
|
@@ -9821,6 +10224,25 @@ module Google
|
|
|
9821
10224
|
end
|
|
9822
10225
|
end
|
|
9823
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
|
+
|
|
9824
10246
|
#
|
|
9825
10247
|
class IpRule
|
|
9826
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
|
|
@@ -2520,6 +2641,7 @@ module Google
|
|
|
2520
2641
|
property :load_balancer_firewall_policy, as: 'loadBalancerFirewallPolicy'
|
|
2521
2642
|
property :network_endpoint_group, as: 'networkEndpointGroup'
|
|
2522
2643
|
property :network_ingress_firewall_policy, as: 'networkIngressFirewallPolicy'
|
|
2644
|
+
property :network_path_insights_generation_time, as: 'networkPathInsightsGenerationTime'
|
|
2523
2645
|
property :private_ip_address, as: 'privateIpAddress'
|
|
2524
2646
|
property :private_port, as: 'privatePort'
|
|
2525
2647
|
property :psc_network_attachment, as: 'pscNetworkAttachment'
|
|
@@ -2561,8 +2683,14 @@ module Google
|
|
|
2561
2683
|
|
|
2562
2684
|
property :affected_resources, as: 'affectedResources', class: Google::Apis::SecuritycenterV1beta2::AffectedResources, decorator: Google::Apis::SecuritycenterV1beta2::AffectedResources::Representation
|
|
2563
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
|
+
|
|
2564
2690
|
collection :agent_data_access_events, as: 'agentDataAccessEvents', class: Google::Apis::SecuritycenterV1beta2::AgentDataAccessEvent, decorator: Google::Apis::SecuritycenterV1beta2::AgentDataAccessEvent::Representation
|
|
2565
2691
|
|
|
2692
|
+
collection :agent_sessions, as: 'agentSessions', class: Google::Apis::SecuritycenterV1beta2::AgentSession, decorator: Google::Apis::SecuritycenterV1beta2::AgentSession::Representation
|
|
2693
|
+
|
|
2566
2694
|
property :ai_model, as: 'aiModel', class: Google::Apis::SecuritycenterV1beta2::AiModel, decorator: Google::Apis::SecuritycenterV1beta2::AiModel::Representation
|
|
2567
2695
|
|
|
2568
2696
|
property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta2::Application, decorator: Google::Apis::SecuritycenterV1beta2::Application::Representation
|
|
@@ -2622,6 +2750,8 @@ module Google
|
|
|
2622
2750
|
|
|
2623
2751
|
collection :iam_bindings, as: 'iamBindings', class: Google::Apis::SecuritycenterV1beta2::IamBinding, decorator: Google::Apis::SecuritycenterV1beta2::IamBinding::Representation
|
|
2624
2752
|
|
|
2753
|
+
property :iam_details, as: 'iamDetails', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1IamDetails, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1IamDetails::Representation
|
|
2754
|
+
|
|
2625
2755
|
property :indicator, as: 'indicator', class: Google::Apis::SecuritycenterV1beta2::Indicator, decorator: Google::Apis::SecuritycenterV1beta2::Indicator::Representation
|
|
2626
2756
|
|
|
2627
2757
|
property :ip_rules, as: 'ipRules', class: Google::Apis::SecuritycenterV1beta2::IpRules, decorator: Google::Apis::SecuritycenterV1beta2::IpRules::Representation
|
|
@@ -2802,6 +2932,22 @@ module Google
|
|
|
2802
2932
|
end
|
|
2803
2933
|
end
|
|
2804
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
|
+
|
|
2805
2951
|
class GoogleCloudSecuritycenterV1MuteConfig
|
|
2806
2952
|
# @private
|
|
2807
2953
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3118,6 +3264,25 @@ module Google
|
|
|
3118
3264
|
end
|
|
3119
3265
|
end
|
|
3120
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
|
+
|
|
3121
3286
|
class GoogleCloudSecuritycenterV2AgentDataAccessEvent
|
|
3122
3287
|
# @private
|
|
3123
3288
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3128,6 +3293,13 @@ module Google
|
|
|
3128
3293
|
end
|
|
3129
3294
|
end
|
|
3130
3295
|
|
|
3296
|
+
class GoogleCloudSecuritycenterV2AgentSession
|
|
3297
|
+
# @private
|
|
3298
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3299
|
+
property :session_id, as: 'sessionId'
|
|
3300
|
+
end
|
|
3301
|
+
end
|
|
3302
|
+
|
|
3131
3303
|
class GoogleCloudSecuritycenterV2AiModel
|
|
3132
3304
|
# @private
|
|
3133
3305
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3570,6 +3742,17 @@ module Google
|
|
|
3570
3742
|
end
|
|
3571
3743
|
end
|
|
3572
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
|
+
|
|
3573
3756
|
class GoogleCloudSecuritycenterV2DiscoveredWorkload
|
|
3574
3757
|
# @private
|
|
3575
3758
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3648,6 +3831,7 @@ module Google
|
|
|
3648
3831
|
property :load_balancer_firewall_policy, as: 'loadBalancerFirewallPolicy'
|
|
3649
3832
|
property :network_endpoint_group, as: 'networkEndpointGroup'
|
|
3650
3833
|
property :network_ingress_firewall_policy, as: 'networkIngressFirewallPolicy'
|
|
3834
|
+
property :network_path_insights_generation_time, as: 'networkPathInsightsGenerationTime'
|
|
3651
3835
|
property :private_ip_address, as: 'privateIpAddress'
|
|
3652
3836
|
property :private_port, as: 'privatePort'
|
|
3653
3837
|
property :psc_network_attachment, as: 'pscNetworkAttachment'
|
|
@@ -3707,8 +3891,14 @@ module Google
|
|
|
3707
3891
|
|
|
3708
3892
|
property :affected_resources, as: 'affectedResources', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AffectedResources, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AffectedResources::Representation
|
|
3709
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
|
+
|
|
3710
3898
|
collection :agent_data_access_events, as: 'agentDataAccessEvents', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AgentDataAccessEvent, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AgentDataAccessEvent::Representation
|
|
3711
3899
|
|
|
3900
|
+
collection :agent_sessions, as: 'agentSessions', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AgentSession, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AgentSession::Representation
|
|
3901
|
+
|
|
3712
3902
|
property :ai_model, as: 'aiModel', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AiModel, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AiModel::Representation
|
|
3713
3903
|
|
|
3714
3904
|
property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Application, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Application::Representation
|
|
@@ -3769,6 +3959,8 @@ module Google
|
|
|
3769
3959
|
|
|
3770
3960
|
collection :iam_bindings, as: 'iamBindings', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IamBinding, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IamBinding::Representation
|
|
3771
3961
|
|
|
3962
|
+
property :iam_details, as: 'iamDetails', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IamDetails, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IamDetails::Representation
|
|
3963
|
+
|
|
3772
3964
|
property :indicator, as: 'indicator', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Indicator, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Indicator::Representation
|
|
3773
3965
|
|
|
3774
3966
|
property :ip_rules, as: 'ipRules', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IpRules, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IpRules::Representation
|
|
@@ -3876,6 +4068,22 @@ module Google
|
|
|
3876
4068
|
end
|
|
3877
4069
|
end
|
|
3878
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
|
+
|
|
3879
4087
|
class GoogleCloudSecuritycenterV2Indicator
|
|
3880
4088
|
# @private
|
|
3881
4089
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3897,6 +4105,13 @@ module Google
|
|
|
3897
4105
|
end
|
|
3898
4106
|
end
|
|
3899
4107
|
|
|
4108
|
+
class GoogleCloudSecuritycenterV2InvocationReference
|
|
4109
|
+
# @private
|
|
4110
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4111
|
+
property :invocation_id, as: 'invocationId'
|
|
4112
|
+
end
|
|
4113
|
+
end
|
|
4114
|
+
|
|
3900
4115
|
class GoogleCloudSecuritycenterV2IpRule
|
|
3901
4116
|
# @private
|
|
3902
4117
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -4769,6 +4984,13 @@ module Google
|
|
|
4769
4984
|
end
|
|
4770
4985
|
end
|
|
4771
4986
|
|
|
4987
|
+
class InvocationReference
|
|
4988
|
+
# @private
|
|
4989
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4990
|
+
property :invocation_id, as: 'invocationId'
|
|
4991
|
+
end
|
|
4992
|
+
end
|
|
4993
|
+
|
|
4772
4994
|
class IpRule
|
|
4773
4995
|
# @private
|
|
4774
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:
|