google-apis-securitycenter_v1beta2 0.97.0 → 0.99.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: 2b6e41c7e4b03f9a74de0090baf022328cf745f631425e11e27d15a622cab626
4
- data.tar.gz: fb83154a5aecca2f2d39dd5b0173e8dc685b2bc60ccf9a48756777f28ae910d9
3
+ metadata.gz: 9a87782dc6de45146e554233c09df522bb9f67724b98a061601d46576ffff411
4
+ data.tar.gz: e6fcdf8d68c414c411209deabbff6e5e599d69d42edc44492623a78aaf23513c
5
5
  SHA512:
6
- metadata.gz: 0acf7b0aa3033bbf42ddfda768e83e2686eca401f4ac40593ec451f4b3ab2fe0ba0c8c36c919141067517beaf87134c562ca2bf4f0d24e4f2976b46266a40543
7
- data.tar.gz: c3a5f833eefbfe832ede8ec717345b989c87891008cef7e8062b1d206c552ae918e57de7b734cbd56c8c36d7149c7ea4018c3cf4d5e127f2f31c37da35c82e1d
6
+ metadata.gz: cac7c8ea0eb2abd6fcef91c29526947fc7c22a5d7b8df2707458c3171c5560054ce4a0eee765b59628c0d3112d25784dca3e466158597616d28e1fa5099ae5e1
7
+ data.tar.gz: 364add035419caf494104c737714322a99b439f619b54aff43085b5634b33832dd7137f56a8d3c3bccd66398f0362481aca582fbfd5a5738910ed7a7cb42f175
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-securitycenter_v1beta2
2
2
 
3
+ ### v0.99.0 (2026-05-03)
4
+
5
+ * Regenerated from discovery document revision 20260424
6
+
7
+ ### v0.98.0 (2026-04-19)
8
+
9
+ * Regenerated from discovery document revision 20260330
10
+
3
11
  ### v0.97.0 (2026-03-08)
4
12
 
5
13
  * Regenerated from discovery document revision 20260223
@@ -298,6 +298,44 @@ module Google
298
298
  end
299
299
  end
300
300
 
301
+ # Details about a data access attempt made by an agent principal not authorized
302
+ # under applicable data security policy.
303
+ class AgentDataAccessEvent
304
+ include Google::Apis::Core::Hashable
305
+
306
+ # Unique identifier for data access event.
307
+ # Corresponds to the JSON property `eventId`
308
+ # @return [String]
309
+ attr_accessor :event_id
310
+
311
+ # Timestamp of data access event.
312
+ # Corresponds to the JSON property `eventTime`
313
+ # @return [String]
314
+ attr_accessor :event_time
315
+
316
+ # The operation performed by the principal to access the data.
317
+ # Corresponds to the JSON property `operation`
318
+ # @return [String]
319
+ attr_accessor :operation
320
+
321
+ # The agent principal that accessed the data.
322
+ # Corresponds to the JSON property `principalSubject`
323
+ # @return [String]
324
+ attr_accessor :principal_subject
325
+
326
+ def initialize(**args)
327
+ update!(**args)
328
+ end
329
+
330
+ # Update properties of this object
331
+ def update!(**args)
332
+ @event_id = args[:event_id] if args.key?(:event_id)
333
+ @event_time = args[:event_time] if args.key?(:event_time)
334
+ @operation = args[:operation] if args.key?(:operation)
335
+ @principal_subject = args[:principal_subject] if args.key?(:principal_subject)
336
+ end
337
+ end
338
+
301
339
  # Contains information about the AI model associated with the finding.
302
340
  class AiModel
303
341
  include Google::Apis::Core::Hashable
@@ -1972,6 +2010,56 @@ module Google
1972
2010
  end
1973
2011
  end
1974
2012
 
2013
+ # Represents discovered, customer managed workload that is not registered with
2014
+ # the respective GCP service.
2015
+ class DiscoveredWorkload
2016
+ include Google::Apis::Core::Hashable
2017
+
2018
+ # The confidence in detection of this workload.
2019
+ # Corresponds to the JSON property `confidence`
2020
+ # @return [String]
2021
+ attr_accessor :confidence
2022
+
2023
+ # A boolean flag set to true if associated hardware strongly predicts the
2024
+ # workload type.
2025
+ # Corresponds to the JSON property `detectedRelevantHardware`
2026
+ # @return [Boolean]
2027
+ attr_accessor :detected_relevant_hardware
2028
+ alias_method :detected_relevant_hardware?, :detected_relevant_hardware
2029
+
2030
+ # A boolean flag set to true if associated keywords strongly predict the
2031
+ # workload type.
2032
+ # Corresponds to the JSON property `detectedRelevantKeywords`
2033
+ # @return [Boolean]
2034
+ attr_accessor :detected_relevant_keywords
2035
+ alias_method :detected_relevant_keywords?, :detected_relevant_keywords
2036
+
2037
+ # A boolean flag set to true if installed packages strongly predict the workload
2038
+ # type.
2039
+ # Corresponds to the JSON property `detectedRelevantPackages`
2040
+ # @return [Boolean]
2041
+ attr_accessor :detected_relevant_packages
2042
+ alias_method :detected_relevant_packages?, :detected_relevant_packages
2043
+
2044
+ # The type of workload.
2045
+ # Corresponds to the JSON property `workloadType`
2046
+ # @return [String]
2047
+ attr_accessor :workload_type
2048
+
2049
+ def initialize(**args)
2050
+ update!(**args)
2051
+ end
2052
+
2053
+ # Update properties of this object
2054
+ def update!(**args)
2055
+ @confidence = args[:confidence] if args.key?(:confidence)
2056
+ @detected_relevant_hardware = args[:detected_relevant_hardware] if args.key?(:detected_relevant_hardware)
2057
+ @detected_relevant_keywords = args[:detected_relevant_keywords] if args.key?(:detected_relevant_keywords)
2058
+ @detected_relevant_packages = args[:detected_relevant_packages] if args.key?(:detected_relevant_packages)
2059
+ @workload_type = args[:workload_type] if args.key?(:workload_type)
2060
+ end
2061
+ end
2062
+
1975
2063
  # Contains information about the disk associated with the finding.
1976
2064
  class Disk
1977
2065
  include Google::Apis::Core::Hashable
@@ -2276,12 +2364,24 @@ module Google
2276
2364
  class ExternalExposure
2277
2365
  include Google::Apis::Core::Hashable
2278
2366
 
2367
+ # The full resource name of the load balancer backend bucket, for example, "//
2368
+ # compute.googleapis.com/projects/`project-id`/global/backendBuckets/`name`"
2369
+ # Corresponds to the JSON property `backendBucket`
2370
+ # @return [String]
2371
+ attr_accessor :backend_bucket
2372
+
2279
2373
  # The full resource name of load balancer backend service, for example, "//
2280
2374
  # compute.googleapis.com/projects/`project-id`/global/backendServices/`name`".
2281
2375
  # Corresponds to the JSON property `backendService`
2282
2376
  # @return [String]
2283
2377
  attr_accessor :backend_service
2284
2378
 
2379
+ # The name and version of the exposed web application, for example, "Jenkins 2.
2380
+ # 184".
2381
+ # Corresponds to the JSON property `exposedApplication`
2382
+ # @return [String]
2383
+ attr_accessor :exposed_application
2384
+
2285
2385
  # The resource which is running the exposed service, for example, "//compute.
2286
2386
  # googleapis.com/projects/`project-id`/zones/`zone`/instances/`instance`.”
2287
2387
  # Corresponds to the JSON property `exposedEndpoint`
@@ -2300,12 +2400,29 @@ module Google
2300
2400
  # @return [String]
2301
2401
  attr_accessor :forwarding_rule
2302
2402
 
2403
+ # Hostname of the exposed application, for example, "https://test-app.a.run.app/"
2404
+ # Corresponds to the JSON property `hostnameUri`
2405
+ # @return [String]
2406
+ attr_accessor :hostname_uri
2407
+
2408
+ # The http response returned by the web application.
2409
+ # Corresponds to the JSON property `httpResponse`
2410
+ # @return [Array<Google::Apis::SecuritycenterV1beta2::HttpResponse>]
2411
+ attr_accessor :http_response
2412
+
2303
2413
  # The full resource name of the instance group, for example, "//compute.
2304
2414
  # googleapis.com/projects/`project-id`/global/instanceGroups/`name`".
2305
2415
  # Corresponds to the JSON property `instanceGroup`
2306
2416
  # @return [String]
2307
2417
  attr_accessor :instance_group
2308
2418
 
2419
+ # The full resource name of load balancer backend service in the internal
2420
+ # project having resource exposed via PSC, for example, "//compute.googleapis.
2421
+ # com/projects/`project-id`/global/backendServices/`name`".
2422
+ # Corresponds to the JSON property `internalBackendService`
2423
+ # @return [String]
2424
+ attr_accessor :internal_backend_service
2425
+
2309
2426
  # The full resource name of the load balancer firewall policy, for example, "//
2310
2427
  # compute.googleapis.com/projects/`project-id`/global/firewallPolicies/`policy-
2311
2428
  # name`".
@@ -2319,6 +2436,12 @@ module Google
2319
2436
  # @return [String]
2320
2437
  attr_accessor :network_endpoint_group
2321
2438
 
2439
+ # The full resource name of the network ingress firewall policy, for example, "//
2440
+ # compute.googleapis.com/projects/`project-id`/global/firewallPolicies/`name`".
2441
+ # Corresponds to the JSON property `networkIngressFirewallPolicy`
2442
+ # @return [String]
2443
+ attr_accessor :network_ingress_firewall_policy
2444
+
2322
2445
  # Private IP address of the exposed endpoint.
2323
2446
  # Corresponds to the JSON property `privateIpAddress`
2324
2447
  # @return [String]
@@ -2329,6 +2452,22 @@ module Google
2329
2452
  # @return [String]
2330
2453
  attr_accessor :private_port
2331
2454
 
2455
+ # The full resource name of the PSC (Private Service Connect) network attachment
2456
+ # that network interface controller is attached to, for example, "//compute.
2457
+ # googleapis.com/projects/`project-id`/regions/`region`/networkAttachments/`name`
2458
+ # "
2459
+ # Corresponds to the JSON property `pscNetworkAttachment`
2460
+ # @return [String]
2461
+ attr_accessor :psc_network_attachment
2462
+
2463
+ # The full resource name of the PSC (Private Service Connect) service attachment
2464
+ # that the load balancer network endpoint group targets, for example, "//compute.
2465
+ # googleapis.com/projects/`project-id`/regions/`region`/serviceAttachments/`name`
2466
+ # "
2467
+ # Corresponds to the JSON property `pscServiceAttachment`
2468
+ # @return [String]
2469
+ attr_accessor :psc_service_attachment
2470
+
2332
2471
  # Public IP address of the exposed endpoint.
2333
2472
  # Corresponds to the JSON property `publicIpAddress`
2334
2473
  # @return [String]
@@ -2352,15 +2491,23 @@ module Google
2352
2491
 
2353
2492
  # Update properties of this object
2354
2493
  def update!(**args)
2494
+ @backend_bucket = args[:backend_bucket] if args.key?(:backend_bucket)
2355
2495
  @backend_service = args[:backend_service] if args.key?(:backend_service)
2496
+ @exposed_application = args[:exposed_application] if args.key?(:exposed_application)
2356
2497
  @exposed_endpoint = args[:exposed_endpoint] if args.key?(:exposed_endpoint)
2357
2498
  @exposed_service = args[:exposed_service] if args.key?(:exposed_service)
2358
2499
  @forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule)
2500
+ @hostname_uri = args[:hostname_uri] if args.key?(:hostname_uri)
2501
+ @http_response = args[:http_response] if args.key?(:http_response)
2359
2502
  @instance_group = args[:instance_group] if args.key?(:instance_group)
2503
+ @internal_backend_service = args[:internal_backend_service] if args.key?(:internal_backend_service)
2360
2504
  @load_balancer_firewall_policy = args[:load_balancer_firewall_policy] if args.key?(:load_balancer_firewall_policy)
2361
2505
  @network_endpoint_group = args[:network_endpoint_group] if args.key?(:network_endpoint_group)
2506
+ @network_ingress_firewall_policy = args[:network_ingress_firewall_policy] if args.key?(:network_ingress_firewall_policy)
2362
2507
  @private_ip_address = args[:private_ip_address] if args.key?(:private_ip_address)
2363
2508
  @private_port = args[:private_port] if args.key?(:private_port)
2509
+ @psc_network_attachment = args[:psc_network_attachment] if args.key?(:psc_network_attachment)
2510
+ @psc_service_attachment = args[:psc_service_attachment] if args.key?(:psc_service_attachment)
2364
2511
  @public_ip_address = args[:public_ip_address] if args.key?(:public_ip_address)
2365
2512
  @public_port = args[:public_port] if args.key?(:public_port)
2366
2513
  @service_firewall_policy = args[:service_firewall_policy] if args.key?(:service_firewall_policy)
@@ -2475,6 +2622,11 @@ module Google
2475
2622
  # @return [Google::Apis::SecuritycenterV1beta2::AffectedResources]
2476
2623
  attr_accessor :affected_resources
2477
2624
 
2625
+ # Agent data access events associated with the finding.
2626
+ # Corresponds to the JSON property `agentDataAccessEvents`
2627
+ # @return [Array<Google::Apis::SecuritycenterV1beta2::AgentDataAccessEvent>]
2628
+ attr_accessor :agent_data_access_events
2629
+
2478
2630
  # Contains information about the AI model associated with the finding.
2479
2631
  # Corresponds to the JSON property `aiModel`
2480
2632
  # @return [Google::Apis::SecuritycenterV1beta2::AiModel]
@@ -2609,6 +2761,12 @@ module Google
2609
2761
  # @return [String]
2610
2762
  attr_accessor :description
2611
2763
 
2764
+ # Represents discovered, customer managed workload that is not registered with
2765
+ # the respective GCP service.
2766
+ # Corresponds to the JSON property `discoveredWorkload`
2767
+ # @return [Google::Apis::SecuritycenterV1beta2::DiscoveredWorkload]
2768
+ attr_accessor :discovered_workload
2769
+
2612
2770
  # Contains information about the disk associated with the finding.
2613
2771
  # Corresponds to the JSON property `disk`
2614
2772
  # @return [Google::Apis::SecuritycenterV1beta2::Disk]
@@ -2793,6 +2951,16 @@ module Google
2793
2951
  # @return [String]
2794
2952
  attr_accessor :parent_display_name
2795
2953
 
2954
+ # Metadata summarizing policy violations of child resources of the affected
2955
+ # resource. `finding_category` and `resource` determine the exact semantics of
2956
+ # the counts. For example, when category=
2957
+ # DATA_SECURITY_POSTURE_OBJECT_PUBLIC_ACCESS_VIOLATION and resource='storage.
2958
+ # googleapis.com/buckets/my-bucket-name' then this counts the number of Cloud
2959
+ # Storage objects in my-bucket-name which violate a Public Access control.
2960
+ # Corresponds to the JSON property `policyViolationSummary`
2961
+ # @return [Google::Apis::SecuritycenterV1beta2::PolicyViolationSummary]
2962
+ attr_accessor :policy_violation_summary
2963
+
2796
2964
  # Represents operating system processes associated with the Finding.
2797
2965
  # Corresponds to the JSON property `processes`
2798
2966
  # @return [Array<Google::Apis::SecuritycenterV1beta2::Process>]
@@ -2872,6 +3040,7 @@ module Google
2872
3040
  def update!(**args)
2873
3041
  @access = args[:access] if args.key?(:access)
2874
3042
  @affected_resources = args[:affected_resources] if args.key?(:affected_resources)
3043
+ @agent_data_access_events = args[:agent_data_access_events] if args.key?(:agent_data_access_events)
2875
3044
  @ai_model = args[:ai_model] if args.key?(:ai_model)
2876
3045
  @application = args[:application] if args.key?(:application)
2877
3046
  @artifact_guard_policies = args[:artifact_guard_policies] if args.key?(:artifact_guard_policies)
@@ -2894,6 +3063,7 @@ module Google
2894
3063
  @data_retention_deletion_events = args[:data_retention_deletion_events] if args.key?(:data_retention_deletion_events)
2895
3064
  @database = args[:database] if args.key?(:database)
2896
3065
  @description = args[:description] if args.key?(:description)
3066
+ @discovered_workload = args[:discovered_workload] if args.key?(:discovered_workload)
2897
3067
  @disk = args[:disk] if args.key?(:disk)
2898
3068
  @event_time = args[:event_time] if args.key?(:event_time)
2899
3069
  @exfiltration = args[:exfiltration] if args.key?(:exfiltration)
@@ -2924,6 +3094,7 @@ module Google
2924
3094
  @org_policies = args[:org_policies] if args.key?(:org_policies)
2925
3095
  @parent = args[:parent] if args.key?(:parent)
2926
3096
  @parent_display_name = args[:parent_display_name] if args.key?(:parent_display_name)
3097
+ @policy_violation_summary = args[:policy_violation_summary] if args.key?(:policy_violation_summary)
2927
3098
  @processes = args[:processes] if args.key?(:processes)
2928
3099
  @resource_name = args[:resource_name] if args.key?(:resource_name)
2929
3100
  @secret = args[:secret] if args.key?(:secret)
@@ -4744,6 +4915,44 @@ module Google
4744
4915
  end
4745
4916
  end
4746
4917
 
4918
+ # Details about a data access attempt made by an agent principal not authorized
4919
+ # under applicable data security policy.
4920
+ class GoogleCloudSecuritycenterV2AgentDataAccessEvent
4921
+ include Google::Apis::Core::Hashable
4922
+
4923
+ # Unique identifier for data access event.
4924
+ # Corresponds to the JSON property `eventId`
4925
+ # @return [String]
4926
+ attr_accessor :event_id
4927
+
4928
+ # Timestamp of data access event.
4929
+ # Corresponds to the JSON property `eventTime`
4930
+ # @return [String]
4931
+ attr_accessor :event_time
4932
+
4933
+ # The operation performed by the principal to access the data.
4934
+ # Corresponds to the JSON property `operation`
4935
+ # @return [String]
4936
+ attr_accessor :operation
4937
+
4938
+ # The agent principal that accessed the data.
4939
+ # Corresponds to the JSON property `principalSubject`
4940
+ # @return [String]
4941
+ attr_accessor :principal_subject
4942
+
4943
+ def initialize(**args)
4944
+ update!(**args)
4945
+ end
4946
+
4947
+ # Update properties of this object
4948
+ def update!(**args)
4949
+ @event_id = args[:event_id] if args.key?(:event_id)
4950
+ @event_time = args[:event_time] if args.key?(:event_time)
4951
+ @operation = args[:operation] if args.key?(:operation)
4952
+ @principal_subject = args[:principal_subject] if args.key?(:principal_subject)
4953
+ end
4954
+ end
4955
+
4747
4956
  # Contains information about the AI model associated with the finding.
4748
4957
  class GoogleCloudSecuritycenterV2AiModel
4749
4958
  include Google::Apis::Core::Hashable
@@ -6432,6 +6641,56 @@ module Google
6432
6641
  end
6433
6642
  end
6434
6643
 
6644
+ # Represents discovered, customer managed workload that is not registered with
6645
+ # the respective GCP service.
6646
+ class GoogleCloudSecuritycenterV2DiscoveredWorkload
6647
+ include Google::Apis::Core::Hashable
6648
+
6649
+ # The confidence in detection of this workload.
6650
+ # Corresponds to the JSON property `confidence`
6651
+ # @return [String]
6652
+ attr_accessor :confidence
6653
+
6654
+ # A boolean flag set to true if associated hardware strongly predicts the
6655
+ # workload type.
6656
+ # Corresponds to the JSON property `detectedRelevantHardware`
6657
+ # @return [Boolean]
6658
+ attr_accessor :detected_relevant_hardware
6659
+ alias_method :detected_relevant_hardware?, :detected_relevant_hardware
6660
+
6661
+ # A boolean flag set to true if associated keywords strongly predict the
6662
+ # workload type.
6663
+ # Corresponds to the JSON property `detectedRelevantKeywords`
6664
+ # @return [Boolean]
6665
+ attr_accessor :detected_relevant_keywords
6666
+ alias_method :detected_relevant_keywords?, :detected_relevant_keywords
6667
+
6668
+ # A boolean flag set to true if installed packages strongly predict the workload
6669
+ # type.
6670
+ # Corresponds to the JSON property `detectedRelevantPackages`
6671
+ # @return [Boolean]
6672
+ attr_accessor :detected_relevant_packages
6673
+ alias_method :detected_relevant_packages?, :detected_relevant_packages
6674
+
6675
+ # The type of workload.
6676
+ # Corresponds to the JSON property `workloadType`
6677
+ # @return [String]
6678
+ attr_accessor :workload_type
6679
+
6680
+ def initialize(**args)
6681
+ update!(**args)
6682
+ end
6683
+
6684
+ # Update properties of this object
6685
+ def update!(**args)
6686
+ @confidence = args[:confidence] if args.key?(:confidence)
6687
+ @detected_relevant_hardware = args[:detected_relevant_hardware] if args.key?(:detected_relevant_hardware)
6688
+ @detected_relevant_keywords = args[:detected_relevant_keywords] if args.key?(:detected_relevant_keywords)
6689
+ @detected_relevant_packages = args[:detected_relevant_packages] if args.key?(:detected_relevant_packages)
6690
+ @workload_type = args[:workload_type] if args.key?(:workload_type)
6691
+ end
6692
+ end
6693
+
6435
6694
  # Contains information about the disk associated with the finding.
6436
6695
  class GoogleCloudSecuritycenterV2Disk
6437
6696
  include Google::Apis::Core::Hashable
@@ -6602,12 +6861,24 @@ module Google
6602
6861
  class GoogleCloudSecuritycenterV2ExternalExposure
6603
6862
  include Google::Apis::Core::Hashable
6604
6863
 
6864
+ # The full resource name of the load balancer backend bucket, for example, "//
6865
+ # compute.googleapis.com/projects/`project-id`/global/backendBuckets/`name`"
6866
+ # Corresponds to the JSON property `backendBucket`
6867
+ # @return [String]
6868
+ attr_accessor :backend_bucket
6869
+
6605
6870
  # The full resource name of load balancer backend service, for example, "//
6606
6871
  # compute.googleapis.com/projects/`project-id`/global/backendServices/`name`".
6607
6872
  # Corresponds to the JSON property `backendService`
6608
6873
  # @return [String]
6609
6874
  attr_accessor :backend_service
6610
6875
 
6876
+ # The name and version of the exposed web application, for example, "Jenkins 2.
6877
+ # 184".
6878
+ # Corresponds to the JSON property `exposedApplication`
6879
+ # @return [String]
6880
+ attr_accessor :exposed_application
6881
+
6611
6882
  # The resource which is running the exposed service, for example, "//compute.
6612
6883
  # googleapis.com/projects/`project-id`/zones/`zone`/instances/`instance`.”
6613
6884
  # Corresponds to the JSON property `exposedEndpoint`
@@ -6626,12 +6897,29 @@ module Google
6626
6897
  # @return [String]
6627
6898
  attr_accessor :forwarding_rule
6628
6899
 
6900
+ # Hostname of the exposed application, for example, "https://test-app.a.run.app/"
6901
+ # Corresponds to the JSON property `hostnameUri`
6902
+ # @return [String]
6903
+ attr_accessor :hostname_uri
6904
+
6905
+ # The http response returned by the web application.
6906
+ # Corresponds to the JSON property `httpResponse`
6907
+ # @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2HttpResponse>]
6908
+ attr_accessor :http_response
6909
+
6629
6910
  # The full resource name of the instance group, for example, "//compute.
6630
6911
  # googleapis.com/projects/`project-id`/global/instanceGroups/`name`".
6631
6912
  # Corresponds to the JSON property `instanceGroup`
6632
6913
  # @return [String]
6633
6914
  attr_accessor :instance_group
6634
6915
 
6916
+ # The full resource name of load balancer backend service in the internal
6917
+ # project having resource exposed via PSC, for example, "//compute.googleapis.
6918
+ # com/projects/`project-id`/global/backendServices/`name`".
6919
+ # Corresponds to the JSON property `internalBackendService`
6920
+ # @return [String]
6921
+ attr_accessor :internal_backend_service
6922
+
6635
6923
  # The full resource name of the load balancer firewall policy, for example, "//
6636
6924
  # compute.googleapis.com/projects/`project-id`/global/firewallPolicies/`policy-
6637
6925
  # name`".
@@ -6645,6 +6933,12 @@ module Google
6645
6933
  # @return [String]
6646
6934
  attr_accessor :network_endpoint_group
6647
6935
 
6936
+ # The full resource name of the network ingress firewall policy, for example, "//
6937
+ # compute.googleapis.com/projects/`project-id`/global/firewallPolicies/`name`".
6938
+ # Corresponds to the JSON property `networkIngressFirewallPolicy`
6939
+ # @return [String]
6940
+ attr_accessor :network_ingress_firewall_policy
6941
+
6648
6942
  # Private IP address of the exposed endpoint.
6649
6943
  # Corresponds to the JSON property `privateIpAddress`
6650
6944
  # @return [String]
@@ -6655,6 +6949,22 @@ module Google
6655
6949
  # @return [String]
6656
6950
  attr_accessor :private_port
6657
6951
 
6952
+ # The full resource name of the PSC (Private Service Connect) network attachment
6953
+ # that network interface controller is attached to, for example, "//compute.
6954
+ # googleapis.com/projects/`project-id`/regions/`region`/networkAttachments/`name`
6955
+ # "
6956
+ # Corresponds to the JSON property `pscNetworkAttachment`
6957
+ # @return [String]
6958
+ attr_accessor :psc_network_attachment
6959
+
6960
+ # The full resource name of the PSC (Private Service Connect) service attachment
6961
+ # that the load balancer network endpoint group targets, for example, "//compute.
6962
+ # googleapis.com/projects/`project-id`/regions/`region`/serviceAttachments/`name`
6963
+ # "
6964
+ # Corresponds to the JSON property `pscServiceAttachment`
6965
+ # @return [String]
6966
+ attr_accessor :psc_service_attachment
6967
+
6658
6968
  # Public IP address of the exposed endpoint.
6659
6969
  # Corresponds to the JSON property `publicIpAddress`
6660
6970
  # @return [String]
@@ -6678,15 +6988,23 @@ module Google
6678
6988
 
6679
6989
  # Update properties of this object
6680
6990
  def update!(**args)
6991
+ @backend_bucket = args[:backend_bucket] if args.key?(:backend_bucket)
6681
6992
  @backend_service = args[:backend_service] if args.key?(:backend_service)
6993
+ @exposed_application = args[:exposed_application] if args.key?(:exposed_application)
6682
6994
  @exposed_endpoint = args[:exposed_endpoint] if args.key?(:exposed_endpoint)
6683
6995
  @exposed_service = args[:exposed_service] if args.key?(:exposed_service)
6684
6996
  @forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule)
6997
+ @hostname_uri = args[:hostname_uri] if args.key?(:hostname_uri)
6998
+ @http_response = args[:http_response] if args.key?(:http_response)
6685
6999
  @instance_group = args[:instance_group] if args.key?(:instance_group)
7000
+ @internal_backend_service = args[:internal_backend_service] if args.key?(:internal_backend_service)
6686
7001
  @load_balancer_firewall_policy = args[:load_balancer_firewall_policy] if args.key?(:load_balancer_firewall_policy)
6687
7002
  @network_endpoint_group = args[:network_endpoint_group] if args.key?(:network_endpoint_group)
7003
+ @network_ingress_firewall_policy = args[:network_ingress_firewall_policy] if args.key?(:network_ingress_firewall_policy)
6688
7004
  @private_ip_address = args[:private_ip_address] if args.key?(:private_ip_address)
6689
7005
  @private_port = args[:private_port] if args.key?(:private_port)
7006
+ @psc_network_attachment = args[:psc_network_attachment] if args.key?(:psc_network_attachment)
7007
+ @psc_service_attachment = args[:psc_service_attachment] if args.key?(:psc_service_attachment)
6690
7008
  @public_ip_address = args[:public_ip_address] if args.key?(:public_ip_address)
6691
7009
  @public_port = args[:public_port] if args.key?(:public_port)
6692
7010
  @service_firewall_policy = args[:service_firewall_policy] if args.key?(:service_firewall_policy)
@@ -6890,6 +7208,11 @@ module Google
6890
7208
  # @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AffectedResources]
6891
7209
  attr_accessor :affected_resources
6892
7210
 
7211
+ # Agent data access events associated with the finding.
7212
+ # Corresponds to the JSON property `agentDataAccessEvents`
7213
+ # @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AgentDataAccessEvent>]
7214
+ attr_accessor :agent_data_access_events
7215
+
6893
7216
  # Contains information about the AI model associated with the finding.
6894
7217
  # Corresponds to the JSON property `aiModel`
6895
7218
  # @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AiModel]
@@ -7032,6 +7355,12 @@ module Google
7032
7355
  # @return [String]
7033
7356
  attr_accessor :description
7034
7357
 
7358
+ # Represents discovered, customer managed workload that is not registered with
7359
+ # the respective GCP service.
7360
+ # Corresponds to the JSON property `discoveredWorkload`
7361
+ # @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2DiscoveredWorkload]
7362
+ attr_accessor :discovered_workload
7363
+
7035
7364
  # Contains information about the disk associated with the finding.
7036
7365
  # Corresponds to the JSON property `disk`
7037
7366
  # @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Disk]
@@ -7225,6 +7554,16 @@ module Google
7225
7554
  # @return [String]
7226
7555
  attr_accessor :parent_display_name
7227
7556
 
7557
+ # Metadata summarizing policy violations of child resources of the affected
7558
+ # resource. `finding_category` and `resource` determine the exact semantics of
7559
+ # the counts. For example, when category=
7560
+ # DATA_SECURITY_POSTURE_OBJECT_PUBLIC_ACCESS_VIOLATION and resource='storage.
7561
+ # googleapis.com/buckets/my-bucket-name' then this counts the number of Cloud
7562
+ # Storage objects in my-bucket-name which violate a Public Access control.
7563
+ # Corresponds to the JSON property `policyViolationSummary`
7564
+ # @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2PolicyViolationSummary]
7565
+ attr_accessor :policy_violation_summary
7566
+
7228
7567
  # Represents operating system processes associated with the Finding.
7229
7568
  # Corresponds to the JSON property `processes`
7230
7569
  # @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Process>]
@@ -7304,6 +7643,7 @@ module Google
7304
7643
  def update!(**args)
7305
7644
  @access = args[:access] if args.key?(:access)
7306
7645
  @affected_resources = args[:affected_resources] if args.key?(:affected_resources)
7646
+ @agent_data_access_events = args[:agent_data_access_events] if args.key?(:agent_data_access_events)
7307
7647
  @ai_model = args[:ai_model] if args.key?(:ai_model)
7308
7648
  @application = args[:application] if args.key?(:application)
7309
7649
  @artifact_guard_policies = args[:artifact_guard_policies] if args.key?(:artifact_guard_policies)
@@ -7327,6 +7667,7 @@ module Google
7327
7667
  @data_retention_deletion_events = args[:data_retention_deletion_events] if args.key?(:data_retention_deletion_events)
7328
7668
  @database = args[:database] if args.key?(:database)
7329
7669
  @description = args[:description] if args.key?(:description)
7670
+ @discovered_workload = args[:discovered_workload] if args.key?(:discovered_workload)
7330
7671
  @disk = args[:disk] if args.key?(:disk)
7331
7672
  @event_time = args[:event_time] if args.key?(:event_time)
7332
7673
  @exfiltration = args[:exfiltration] if args.key?(:exfiltration)
@@ -7357,6 +7698,7 @@ module Google
7357
7698
  @org_policies = args[:org_policies] if args.key?(:org_policies)
7358
7699
  @parent = args[:parent] if args.key?(:parent)
7359
7700
  @parent_display_name = args[:parent_display_name] if args.key?(:parent_display_name)
7701
+ @policy_violation_summary = args[:policy_violation_summary] if args.key?(:policy_violation_summary)
7360
7702
  @processes = args[:processes] if args.key?(:processes)
7361
7703
  @resource_name = args[:resource_name] if args.key?(:resource_name)
7362
7704
  @secret = args[:secret] if args.key?(:secret)
@@ -7490,6 +7832,32 @@ module Google
7490
7832
  end
7491
7833
  end
7492
7834
 
7835
+ # The http response returned by the web application.
7836
+ class GoogleCloudSecuritycenterV2HttpResponse
7837
+ include Google::Apis::Core::Hashable
7838
+
7839
+ # The http path for which response code was returned by web application, for
7840
+ # example, "https://test-app.a.run.app/test".
7841
+ # Corresponds to the JSON property `path`
7842
+ # @return [String]
7843
+ attr_accessor :path
7844
+
7845
+ # The http response code returned by the web application, for example, 200.
7846
+ # Corresponds to the JSON property `statusCode`
7847
+ # @return [String]
7848
+ attr_accessor :status_code
7849
+
7850
+ def initialize(**args)
7851
+ update!(**args)
7852
+ end
7853
+
7854
+ # Update properties of this object
7855
+ def update!(**args)
7856
+ @path = args[:path] if args.key?(:path)
7857
+ @status_code = args[:status_code] if args.key?(:status_code)
7858
+ end
7859
+ end
7860
+
7493
7861
  # Represents a particular IAM binding, which captures a member's role addition,
7494
7862
  # removal, or state.
7495
7863
  class GoogleCloudSecuritycenterV2IamBinding
@@ -9170,6 +9538,49 @@ module Google
9170
9538
  end
9171
9539
  end
9172
9540
 
9541
+ # Metadata summarizing policy violations of child resources of the affected
9542
+ # resource. `finding_category` and `resource` determine the exact semantics of
9543
+ # the counts. For example, when category=
9544
+ # DATA_SECURITY_POSTURE_OBJECT_PUBLIC_ACCESS_VIOLATION and resource='storage.
9545
+ # googleapis.com/buckets/my-bucket-name' then this counts the number of Cloud
9546
+ # Storage objects in my-bucket-name which violate a Public Access control.
9547
+ class GoogleCloudSecuritycenterV2PolicyViolationSummary
9548
+ include Google::Apis::Core::Hashable
9549
+
9550
+ # Total number of child resources that conform to the policy.
9551
+ # Corresponds to the JSON property `conformantResourcesCount`
9552
+ # @return [Fixnum]
9553
+ attr_accessor :conformant_resources_count
9554
+
9555
+ # Number of child resources for which errors during evaluation occurred. The
9556
+ # evaluation result for these child resources is effectively "unknown".
9557
+ # Corresponds to the JSON property `evaluationErrorsCount`
9558
+ # @return [Fixnum]
9559
+ attr_accessor :evaluation_errors_count
9560
+
9561
+ # Total count of child resources which were not in scope for evaluation.
9562
+ # Corresponds to the JSON property `outOfScopeResourcesCount`
9563
+ # @return [Fixnum]
9564
+ attr_accessor :out_of_scope_resources_count
9565
+
9566
+ # Count of child resources in violation of the policy.
9567
+ # Corresponds to the JSON property `policyViolationsCount`
9568
+ # @return [Fixnum]
9569
+ attr_accessor :policy_violations_count
9570
+
9571
+ def initialize(**args)
9572
+ update!(**args)
9573
+ end
9574
+
9575
+ # Update properties of this object
9576
+ def update!(**args)
9577
+ @conformant_resources_count = args[:conformant_resources_count] if args.key?(:conformant_resources_count)
9578
+ @evaluation_errors_count = args[:evaluation_errors_count] if args.key?(:evaluation_errors_count)
9579
+ @out_of_scope_resources_count = args[:out_of_scope_resources_count] if args.key?(:out_of_scope_resources_count)
9580
+ @policy_violations_count = args[:policy_violations_count] if args.key?(:policy_violations_count)
9581
+ end
9582
+ end
9583
+
9173
9584
  # A port range which is inclusive of the min and max values. Values are between
9174
9585
  # 0 and 2^16-1. The max can be equal / must be not smaller than the min value.
9175
9586
  # If min and max are equal this indicates that it is a single port.
@@ -10440,6 +10851,32 @@ module Google
10440
10851
  end
10441
10852
  end
10442
10853
 
10854
+ # The http response returned by the web application.
10855
+ class HttpResponse
10856
+ include Google::Apis::Core::Hashable
10857
+
10858
+ # The http path for which response code was returned by web application, for
10859
+ # example, "https://test-app.a.run.app/test".
10860
+ # Corresponds to the JSON property `path`
10861
+ # @return [String]
10862
+ attr_accessor :path
10863
+
10864
+ # The http response code returned by the web application, for example, 200.
10865
+ # Corresponds to the JSON property `statusCode`
10866
+ # @return [String]
10867
+ attr_accessor :status_code
10868
+
10869
+ def initialize(**args)
10870
+ update!(**args)
10871
+ end
10872
+
10873
+ # Update properties of this object
10874
+ def update!(**args)
10875
+ @path = args[:path] if args.key?(:path)
10876
+ @status_code = args[:status_code] if args.key?(:status_code)
10877
+ end
10878
+ end
10879
+
10443
10880
  # Represents a particular IAM binding, which captures a member's role addition,
10444
10881
  # removal, or state.
10445
10882
  class IamBinding
@@ -11296,6 +11733,49 @@ module Google
11296
11733
  end
11297
11734
  end
11298
11735
 
11736
+ # Metadata summarizing policy violations of child resources of the affected
11737
+ # resource. `finding_category` and `resource` determine the exact semantics of
11738
+ # the counts. For example, when category=
11739
+ # DATA_SECURITY_POSTURE_OBJECT_PUBLIC_ACCESS_VIOLATION and resource='storage.
11740
+ # googleapis.com/buckets/my-bucket-name' then this counts the number of Cloud
11741
+ # Storage objects in my-bucket-name which violate a Public Access control.
11742
+ class PolicyViolationSummary
11743
+ include Google::Apis::Core::Hashable
11744
+
11745
+ # Total number of child resources that conform to the policy.
11746
+ # Corresponds to the JSON property `conformantResourcesCount`
11747
+ # @return [Fixnum]
11748
+ attr_accessor :conformant_resources_count
11749
+
11750
+ # Number of child resources for which errors during evaluation occurred. The
11751
+ # evaluation result for these child resources is effectively "unknown".
11752
+ # Corresponds to the JSON property `evaluationErrorsCount`
11753
+ # @return [Fixnum]
11754
+ attr_accessor :evaluation_errors_count
11755
+
11756
+ # Total count of child resources which were not in scope for evaluation.
11757
+ # Corresponds to the JSON property `outOfScopeResourcesCount`
11758
+ # @return [Fixnum]
11759
+ attr_accessor :out_of_scope_resources_count
11760
+
11761
+ # Count of child resources in violation of the policy.
11762
+ # Corresponds to the JSON property `policyViolationsCount`
11763
+ # @return [Fixnum]
11764
+ attr_accessor :policy_violations_count
11765
+
11766
+ def initialize(**args)
11767
+ update!(**args)
11768
+ end
11769
+
11770
+ # Update properties of this object
11771
+ def update!(**args)
11772
+ @conformant_resources_count = args[:conformant_resources_count] if args.key?(:conformant_resources_count)
11773
+ @evaluation_errors_count = args[:evaluation_errors_count] if args.key?(:evaluation_errors_count)
11774
+ @out_of_scope_resources_count = args[:out_of_scope_resources_count] if args.key?(:out_of_scope_resources_count)
11775
+ @policy_violations_count = args[:policy_violations_count] if args.key?(:policy_violations_count)
11776
+ end
11777
+ end
11778
+
11299
11779
  # A port range which is inclusive of the min and max values. Values are between
11300
11780
  # 0 and 2^16-1. The max can be equal / must be not smaller than the min value.
11301
11781
  # If min and max are equal this indicates that it is a single port.
@@ -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.97.0"
19
+ GEM_VERSION = "0.99.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260223"
25
+ REVISION = "20260424"
26
26
  end
27
27
  end
28
28
  end
@@ -64,6 +64,12 @@ module Google
64
64
  include Google::Apis::Core::JsonObjectSupport
65
65
  end
66
66
 
67
+ class AgentDataAccessEvent
68
+ class Representation < Google::Apis::Core::JsonRepresentation; end
69
+
70
+ include Google::Apis::Core::JsonObjectSupport
71
+ end
72
+
67
73
  class AiModel
68
74
  class Representation < Google::Apis::Core::JsonRepresentation; end
69
75
 
@@ -328,6 +334,12 @@ module Google
328
334
  include Google::Apis::Core::JsonObjectSupport
329
335
  end
330
336
 
337
+ class DiscoveredWorkload
338
+ class Representation < Google::Apis::Core::JsonRepresentation; end
339
+
340
+ include Google::Apis::Core::JsonObjectSupport
341
+ end
342
+
331
343
  class Disk
332
344
  class Representation < Google::Apis::Core::JsonRepresentation; end
333
345
 
@@ -646,6 +658,12 @@ module Google
646
658
  include Google::Apis::Core::JsonObjectSupport
647
659
  end
648
660
 
661
+ class GoogleCloudSecuritycenterV2AgentDataAccessEvent
662
+ class Representation < Google::Apis::Core::JsonRepresentation; end
663
+
664
+ include Google::Apis::Core::JsonObjectSupport
665
+ end
666
+
649
667
  class GoogleCloudSecuritycenterV2AiModel
650
668
  class Representation < Google::Apis::Core::JsonRepresentation; end
651
669
 
@@ -904,6 +922,12 @@ module Google
904
922
  include Google::Apis::Core::JsonObjectSupport
905
923
  end
906
924
 
925
+ class GoogleCloudSecuritycenterV2DiscoveredWorkload
926
+ class Representation < Google::Apis::Core::JsonRepresentation; end
927
+
928
+ include Google::Apis::Core::JsonObjectSupport
929
+ end
930
+
907
931
  class GoogleCloudSecuritycenterV2Disk
908
932
  class Representation < Google::Apis::Core::JsonRepresentation; end
909
933
 
@@ -994,6 +1018,12 @@ module Google
994
1018
  include Google::Apis::Core::JsonObjectSupport
995
1019
  end
996
1020
 
1021
+ class GoogleCloudSecuritycenterV2HttpResponse
1022
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1023
+
1024
+ include Google::Apis::Core::JsonObjectSupport
1025
+ end
1026
+
997
1027
  class GoogleCloudSecuritycenterV2IamBinding
998
1028
  class Representation < Google::Apis::Core::JsonRepresentation; end
999
1029
 
@@ -1288,6 +1318,12 @@ module Google
1288
1318
  include Google::Apis::Core::JsonObjectSupport
1289
1319
  end
1290
1320
 
1321
+ class GoogleCloudSecuritycenterV2PolicyViolationSummary
1322
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1323
+
1324
+ include Google::Apis::Core::JsonObjectSupport
1325
+ end
1326
+
1291
1327
  class GoogleCloudSecuritycenterV2PortRange
1292
1328
  class Representation < Google::Apis::Core::JsonRepresentation; end
1293
1329
 
@@ -1492,6 +1528,12 @@ module Google
1492
1528
  include Google::Apis::Core::JsonObjectSupport
1493
1529
  end
1494
1530
 
1531
+ class HttpResponse
1532
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1533
+
1534
+ include Google::Apis::Core::JsonObjectSupport
1535
+ end
1536
+
1495
1537
  class IamBinding
1496
1538
  class Representation < Google::Apis::Core::JsonRepresentation; end
1497
1539
 
@@ -1636,6 +1678,12 @@ module Google
1636
1678
  include Google::Apis::Core::JsonObjectSupport
1637
1679
  end
1638
1680
 
1681
+ class PolicyViolationSummary
1682
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1683
+
1684
+ include Google::Apis::Core::JsonObjectSupport
1685
+ end
1686
+
1639
1687
  class PortRange
1640
1688
  class Representation < Google::Apis::Core::JsonRepresentation; end
1641
1689
 
@@ -1903,6 +1951,16 @@ module Google
1903
1951
  end
1904
1952
  end
1905
1953
 
1954
+ class AgentDataAccessEvent
1955
+ # @private
1956
+ class Representation < Google::Apis::Core::JsonRepresentation
1957
+ property :event_id, as: 'eventId'
1958
+ property :event_time, as: 'eventTime'
1959
+ property :operation, as: 'operation'
1960
+ property :principal_subject, as: 'principalSubject'
1961
+ end
1962
+ end
1963
+
1906
1964
  class AiModel
1907
1965
  # @private
1908
1966
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2348,6 +2406,17 @@ module Google
2348
2406
  end
2349
2407
  end
2350
2408
 
2409
+ class DiscoveredWorkload
2410
+ # @private
2411
+ class Representation < Google::Apis::Core::JsonRepresentation
2412
+ property :confidence, as: 'confidence'
2413
+ property :detected_relevant_hardware, as: 'detectedRelevantHardware'
2414
+ property :detected_relevant_keywords, as: 'detectedRelevantKeywords'
2415
+ property :detected_relevant_packages, as: 'detectedRelevantPackages'
2416
+ property :workload_type, as: 'workloadType'
2417
+ end
2418
+ end
2419
+
2351
2420
  class Disk
2352
2421
  # @private
2353
2422
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2437,15 +2506,24 @@ module Google
2437
2506
  class ExternalExposure
2438
2507
  # @private
2439
2508
  class Representation < Google::Apis::Core::JsonRepresentation
2509
+ property :backend_bucket, as: 'backendBucket'
2440
2510
  property :backend_service, as: 'backendService'
2511
+ property :exposed_application, as: 'exposedApplication'
2441
2512
  property :exposed_endpoint, as: 'exposedEndpoint'
2442
2513
  property :exposed_service, as: 'exposedService'
2443
2514
  property :forwarding_rule, as: 'forwardingRule'
2515
+ property :hostname_uri, as: 'hostnameUri'
2516
+ collection :http_response, as: 'httpResponse', class: Google::Apis::SecuritycenterV1beta2::HttpResponse, decorator: Google::Apis::SecuritycenterV1beta2::HttpResponse::Representation
2517
+
2444
2518
  property :instance_group, as: 'instanceGroup'
2519
+ property :internal_backend_service, as: 'internalBackendService'
2445
2520
  property :load_balancer_firewall_policy, as: 'loadBalancerFirewallPolicy'
2446
2521
  property :network_endpoint_group, as: 'networkEndpointGroup'
2522
+ property :network_ingress_firewall_policy, as: 'networkIngressFirewallPolicy'
2447
2523
  property :private_ip_address, as: 'privateIpAddress'
2448
2524
  property :private_port, as: 'privatePort'
2525
+ property :psc_network_attachment, as: 'pscNetworkAttachment'
2526
+ property :psc_service_attachment, as: 'pscServiceAttachment'
2449
2527
  property :public_ip_address, as: 'publicIpAddress'
2450
2528
  property :public_port, as: 'publicPort'
2451
2529
  property :service_firewall_policy, as: 'serviceFirewallPolicy'
@@ -2483,6 +2561,8 @@ module Google
2483
2561
 
2484
2562
  property :affected_resources, as: 'affectedResources', class: Google::Apis::SecuritycenterV1beta2::AffectedResources, decorator: Google::Apis::SecuritycenterV1beta2::AffectedResources::Representation
2485
2563
 
2564
+ collection :agent_data_access_events, as: 'agentDataAccessEvents', class: Google::Apis::SecuritycenterV1beta2::AgentDataAccessEvent, decorator: Google::Apis::SecuritycenterV1beta2::AgentDataAccessEvent::Representation
2565
+
2486
2566
  property :ai_model, as: 'aiModel', class: Google::Apis::SecuritycenterV1beta2::AiModel, decorator: Google::Apis::SecuritycenterV1beta2::AiModel::Representation
2487
2567
 
2488
2568
  property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta2::Application, decorator: Google::Apis::SecuritycenterV1beta2::Application::Representation
@@ -2523,6 +2603,8 @@ module Google
2523
2603
  property :database, as: 'database', class: Google::Apis::SecuritycenterV1beta2::Database, decorator: Google::Apis::SecuritycenterV1beta2::Database::Representation
2524
2604
 
2525
2605
  property :description, as: 'description'
2606
+ property :discovered_workload, as: 'discoveredWorkload', class: Google::Apis::SecuritycenterV1beta2::DiscoveredWorkload, decorator: Google::Apis::SecuritycenterV1beta2::DiscoveredWorkload::Representation
2607
+
2526
2608
  property :disk, as: 'disk', class: Google::Apis::SecuritycenterV1beta2::Disk, decorator: Google::Apis::SecuritycenterV1beta2::Disk::Representation
2527
2609
 
2528
2610
  property :event_time, as: 'eventTime'
@@ -2572,6 +2654,8 @@ module Google
2572
2654
 
2573
2655
  property :parent, as: 'parent'
2574
2656
  property :parent_display_name, as: 'parentDisplayName'
2657
+ property :policy_violation_summary, as: 'policyViolationSummary', class: Google::Apis::SecuritycenterV1beta2::PolicyViolationSummary, decorator: Google::Apis::SecuritycenterV1beta2::PolicyViolationSummary::Representation
2658
+
2575
2659
  collection :processes, as: 'processes', class: Google::Apis::SecuritycenterV1beta2::Process, decorator: Google::Apis::SecuritycenterV1beta2::Process::Representation
2576
2660
 
2577
2661
  property :resource_name, as: 'resourceName'
@@ -3034,6 +3118,16 @@ module Google
3034
3118
  end
3035
3119
  end
3036
3120
 
3121
+ class GoogleCloudSecuritycenterV2AgentDataAccessEvent
3122
+ # @private
3123
+ class Representation < Google::Apis::Core::JsonRepresentation
3124
+ property :event_id, as: 'eventId'
3125
+ property :event_time, as: 'eventTime'
3126
+ property :operation, as: 'operation'
3127
+ property :principal_subject, as: 'principalSubject'
3128
+ end
3129
+ end
3130
+
3037
3131
  class GoogleCloudSecuritycenterV2AiModel
3038
3132
  # @private
3039
3133
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3476,6 +3570,17 @@ module Google
3476
3570
  end
3477
3571
  end
3478
3572
 
3573
+ class GoogleCloudSecuritycenterV2DiscoveredWorkload
3574
+ # @private
3575
+ class Representation < Google::Apis::Core::JsonRepresentation
3576
+ property :confidence, as: 'confidence'
3577
+ property :detected_relevant_hardware, as: 'detectedRelevantHardware'
3578
+ property :detected_relevant_keywords, as: 'detectedRelevantKeywords'
3579
+ property :detected_relevant_packages, as: 'detectedRelevantPackages'
3580
+ property :workload_type, as: 'workloadType'
3581
+ end
3582
+ end
3583
+
3479
3584
  class GoogleCloudSecuritycenterV2Disk
3480
3585
  # @private
3481
3586
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3529,15 +3634,24 @@ module Google
3529
3634
  class GoogleCloudSecuritycenterV2ExternalExposure
3530
3635
  # @private
3531
3636
  class Representation < Google::Apis::Core::JsonRepresentation
3637
+ property :backend_bucket, as: 'backendBucket'
3532
3638
  property :backend_service, as: 'backendService'
3639
+ property :exposed_application, as: 'exposedApplication'
3533
3640
  property :exposed_endpoint, as: 'exposedEndpoint'
3534
3641
  property :exposed_service, as: 'exposedService'
3535
3642
  property :forwarding_rule, as: 'forwardingRule'
3643
+ property :hostname_uri, as: 'hostnameUri'
3644
+ collection :http_response, as: 'httpResponse', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2HttpResponse, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2HttpResponse::Representation
3645
+
3536
3646
  property :instance_group, as: 'instanceGroup'
3647
+ property :internal_backend_service, as: 'internalBackendService'
3537
3648
  property :load_balancer_firewall_policy, as: 'loadBalancerFirewallPolicy'
3538
3649
  property :network_endpoint_group, as: 'networkEndpointGroup'
3650
+ property :network_ingress_firewall_policy, as: 'networkIngressFirewallPolicy'
3539
3651
  property :private_ip_address, as: 'privateIpAddress'
3540
3652
  property :private_port, as: 'privatePort'
3653
+ property :psc_network_attachment, as: 'pscNetworkAttachment'
3654
+ property :psc_service_attachment, as: 'pscServiceAttachment'
3541
3655
  property :public_ip_address, as: 'publicIpAddress'
3542
3656
  property :public_port, as: 'publicPort'
3543
3657
  property :service_firewall_policy, as: 'serviceFirewallPolicy'
@@ -3593,6 +3707,8 @@ module Google
3593
3707
 
3594
3708
  property :affected_resources, as: 'affectedResources', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AffectedResources, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AffectedResources::Representation
3595
3709
 
3710
+ collection :agent_data_access_events, as: 'agentDataAccessEvents', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AgentDataAccessEvent, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AgentDataAccessEvent::Representation
3711
+
3596
3712
  property :ai_model, as: 'aiModel', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AiModel, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AiModel::Representation
3597
3713
 
3598
3714
  property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Application, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Application::Representation
@@ -3634,6 +3750,8 @@ module Google
3634
3750
  property :database, as: 'database', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Database, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Database::Representation
3635
3751
 
3636
3752
  property :description, as: 'description'
3753
+ property :discovered_workload, as: 'discoveredWorkload', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2DiscoveredWorkload, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2DiscoveredWorkload::Representation
3754
+
3637
3755
  property :disk, as: 'disk', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Disk, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Disk::Representation
3638
3756
 
3639
3757
  property :event_time, as: 'eventTime'
@@ -3683,6 +3801,8 @@ module Google
3683
3801
 
3684
3802
  property :parent, as: 'parent'
3685
3803
  property :parent_display_name, as: 'parentDisplayName'
3804
+ property :policy_violation_summary, as: 'policyViolationSummary', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2PolicyViolationSummary, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2PolicyViolationSummary::Representation
3805
+
3686
3806
  collection :processes, as: 'processes', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Process, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Process::Representation
3687
3807
 
3688
3808
  property :resource_name, as: 'resourceName'
@@ -3739,6 +3859,14 @@ module Google
3739
3859
  end
3740
3860
  end
3741
3861
 
3862
+ class GoogleCloudSecuritycenterV2HttpResponse
3863
+ # @private
3864
+ class Representation < Google::Apis::Core::JsonRepresentation
3865
+ property :path, as: 'path'
3866
+ property :status_code, as: 'statusCode'
3867
+ end
3868
+ end
3869
+
3742
3870
  class GoogleCloudSecuritycenterV2IamBinding
3743
3871
  # @private
3744
3872
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4236,6 +4364,16 @@ module Google
4236
4364
  end
4237
4365
  end
4238
4366
 
4367
+ class GoogleCloudSecuritycenterV2PolicyViolationSummary
4368
+ # @private
4369
+ class Representation < Google::Apis::Core::JsonRepresentation
4370
+ property :conformant_resources_count, :numeric_string => true, as: 'conformantResourcesCount'
4371
+ property :evaluation_errors_count, :numeric_string => true, as: 'evaluationErrorsCount'
4372
+ property :out_of_scope_resources_count, :numeric_string => true, as: 'outOfScopeResourcesCount'
4373
+ property :policy_violations_count, :numeric_string => true, as: 'policyViolationsCount'
4374
+ end
4375
+ end
4376
+
4239
4377
  class GoogleCloudSecuritycenterV2PortRange
4240
4378
  # @private
4241
4379
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4593,6 +4731,14 @@ module Google
4593
4731
  end
4594
4732
  end
4595
4733
 
4734
+ class HttpResponse
4735
+ # @private
4736
+ class Representation < Google::Apis::Core::JsonRepresentation
4737
+ property :path, as: 'path'
4738
+ property :status_code, as: 'statusCode'
4739
+ end
4740
+ end
4741
+
4596
4742
  class IamBinding
4597
4743
  # @private
4598
4744
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4835,6 +4981,16 @@ module Google
4835
4981
  end
4836
4982
  end
4837
4983
 
4984
+ class PolicyViolationSummary
4985
+ # @private
4986
+ class Representation < Google::Apis::Core::JsonRepresentation
4987
+ property :conformant_resources_count, :numeric_string => true, as: 'conformantResourcesCount'
4988
+ property :evaluation_errors_count, :numeric_string => true, as: 'evaluationErrorsCount'
4989
+ property :out_of_scope_resources_count, :numeric_string => true, as: 'outOfScopeResourcesCount'
4990
+ property :policy_violations_count, :numeric_string => true, as: 'policyViolationsCount'
4991
+ end
4992
+ end
4993
+
4838
4994
  class PortRange
4839
4995
  # @private
4840
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.97.0
4
+ version: 0.99.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.97.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.99.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: