google-apis-securitycenter_v1 0.115.0 → 0.117.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: cb34b1909d01ee70d6f26f00f2139c0e48c930a8fbe57eeee746f6a9813a4430
4
- data.tar.gz: 48e15006d540c969dd397fb34b6b848ffa165862f66f7b1e4398cfb6cd98a67d
3
+ metadata.gz: ee8c88e53624acf0a93c102718fa974eea51fab647cf01b68de255b3ce5f5d0a
4
+ data.tar.gz: 9218c5a6e8c1488c2731a2635aceb5ec747f6384aa6021ca8241713be40ca046
5
5
  SHA512:
6
- metadata.gz: ea80b9fea0ca588d961caabed376999a74179df12199586ff250e8217f3dadaacce58baad7b9a13ce37d964a76ab1b7bc77087f311601a1d9723ed069551b513
7
- data.tar.gz: 6755730f3686ce2e339a9a5cebf6ab8c64e7ddcdda4533389bd04ebb91b557bfc8174807fb99404d5aa7d1f8c8b8a1414c538fd8121eff0ba60c723536b1d761
6
+ metadata.gz: '05527916febee2a6d77ad58ecbe38b0730d53f6fa13c279d4cb80302e7e3079e0cdda40fe205ec72da6d8e0b8d88bc1487dd032c54eca92382f880bd95354eaa'
7
+ data.tar.gz: 717ea6baf4da3619a99b1493b13ab951638f4a6bf054cd98bdec29dec039276ccee745a4943dc2454efa655f40dc6d9c0e982942cf0aca6ee72e535699fffa4c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-securitycenter_v1
2
2
 
3
+ ### v0.117.0 (2026-05-03)
4
+
5
+ * Regenerated from discovery document revision 20260424
6
+
7
+ ### v0.116.0 (2026-04-19)
8
+
9
+ * Regenerated from discovery document revision 20260330
10
+
3
11
  ### v0.115.0 (2026-03-15)
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
@@ -2464,6 +2502,56 @@ module Google
2464
2502
  end
2465
2503
  end
2466
2504
 
2505
+ # Represents discovered, customer managed workload that is not registered with
2506
+ # the respective GCP service.
2507
+ class DiscoveredWorkload
2508
+ include Google::Apis::Core::Hashable
2509
+
2510
+ # The confidence in detection of this workload.
2511
+ # Corresponds to the JSON property `confidence`
2512
+ # @return [String]
2513
+ attr_accessor :confidence
2514
+
2515
+ # A boolean flag set to true if associated hardware strongly predicts the
2516
+ # workload type.
2517
+ # Corresponds to the JSON property `detectedRelevantHardware`
2518
+ # @return [Boolean]
2519
+ attr_accessor :detected_relevant_hardware
2520
+ alias_method :detected_relevant_hardware?, :detected_relevant_hardware
2521
+
2522
+ # A boolean flag set to true if associated keywords strongly predict the
2523
+ # workload type.
2524
+ # Corresponds to the JSON property `detectedRelevantKeywords`
2525
+ # @return [Boolean]
2526
+ attr_accessor :detected_relevant_keywords
2527
+ alias_method :detected_relevant_keywords?, :detected_relevant_keywords
2528
+
2529
+ # A boolean flag set to true if installed packages strongly predict the workload
2530
+ # type.
2531
+ # Corresponds to the JSON property `detectedRelevantPackages`
2532
+ # @return [Boolean]
2533
+ attr_accessor :detected_relevant_packages
2534
+ alias_method :detected_relevant_packages?, :detected_relevant_packages
2535
+
2536
+ # The type of workload.
2537
+ # Corresponds to the JSON property `workloadType`
2538
+ # @return [String]
2539
+ attr_accessor :workload_type
2540
+
2541
+ def initialize(**args)
2542
+ update!(**args)
2543
+ end
2544
+
2545
+ # Update properties of this object
2546
+ def update!(**args)
2547
+ @confidence = args[:confidence] if args.key?(:confidence)
2548
+ @detected_relevant_hardware = args[:detected_relevant_hardware] if args.key?(:detected_relevant_hardware)
2549
+ @detected_relevant_keywords = args[:detected_relevant_keywords] if args.key?(:detected_relevant_keywords)
2550
+ @detected_relevant_packages = args[:detected_relevant_packages] if args.key?(:detected_relevant_packages)
2551
+ @workload_type = args[:workload_type] if args.key?(:workload_type)
2552
+ end
2553
+ end
2554
+
2467
2555
  # Contains information about the disk associated with the finding.
2468
2556
  class Disk
2469
2557
  include Google::Apis::Core::Hashable
@@ -2895,12 +2983,24 @@ module Google
2895
2983
  class ExternalExposure
2896
2984
  include Google::Apis::Core::Hashable
2897
2985
 
2986
+ # The full resource name of the load balancer backend bucket, for example, "//
2987
+ # compute.googleapis.com/projects/`project-id`/global/backendBuckets/`name`"
2988
+ # Corresponds to the JSON property `backendBucket`
2989
+ # @return [String]
2990
+ attr_accessor :backend_bucket
2991
+
2898
2992
  # The full resource name of load balancer backend service, for example, "//
2899
2993
  # compute.googleapis.com/projects/`project-id`/global/backendServices/`name`".
2900
2994
  # Corresponds to the JSON property `backendService`
2901
2995
  # @return [String]
2902
2996
  attr_accessor :backend_service
2903
2997
 
2998
+ # The name and version of the exposed web application, for example, "Jenkins 2.
2999
+ # 184".
3000
+ # Corresponds to the JSON property `exposedApplication`
3001
+ # @return [String]
3002
+ attr_accessor :exposed_application
3003
+
2904
3004
  # The resource which is running the exposed service, for example, "//compute.
2905
3005
  # googleapis.com/projects/`project-id`/zones/`zone`/instances/`instance`.”
2906
3006
  # Corresponds to the JSON property `exposedEndpoint`
@@ -2919,12 +3019,29 @@ module Google
2919
3019
  # @return [String]
2920
3020
  attr_accessor :forwarding_rule
2921
3021
 
3022
+ # Hostname of the exposed application, for example, "https://test-app.a.run.app/"
3023
+ # Corresponds to the JSON property `hostnameUri`
3024
+ # @return [String]
3025
+ attr_accessor :hostname_uri
3026
+
3027
+ # The http response returned by the web application.
3028
+ # Corresponds to the JSON property `httpResponse`
3029
+ # @return [Array<Google::Apis::SecuritycenterV1::HttpResponse>]
3030
+ attr_accessor :http_response
3031
+
2922
3032
  # The full resource name of the instance group, for example, "//compute.
2923
3033
  # googleapis.com/projects/`project-id`/global/instanceGroups/`name`".
2924
3034
  # Corresponds to the JSON property `instanceGroup`
2925
3035
  # @return [String]
2926
3036
  attr_accessor :instance_group
2927
3037
 
3038
+ # The full resource name of load balancer backend service in the internal
3039
+ # project having resource exposed via PSC, for example, "//compute.googleapis.
3040
+ # com/projects/`project-id`/global/backendServices/`name`".
3041
+ # Corresponds to the JSON property `internalBackendService`
3042
+ # @return [String]
3043
+ attr_accessor :internal_backend_service
3044
+
2928
3045
  # The full resource name of the load balancer firewall policy, for example, "//
2929
3046
  # compute.googleapis.com/projects/`project-id`/global/firewallPolicies/`policy-
2930
3047
  # name`".
@@ -2938,6 +3055,12 @@ module Google
2938
3055
  # @return [String]
2939
3056
  attr_accessor :network_endpoint_group
2940
3057
 
3058
+ # The full resource name of the network ingress firewall policy, for example, "//
3059
+ # compute.googleapis.com/projects/`project-id`/global/firewallPolicies/`name`".
3060
+ # Corresponds to the JSON property `networkIngressFirewallPolicy`
3061
+ # @return [String]
3062
+ attr_accessor :network_ingress_firewall_policy
3063
+
2941
3064
  # Private IP address of the exposed endpoint.
2942
3065
  # Corresponds to the JSON property `privateIpAddress`
2943
3066
  # @return [String]
@@ -2948,6 +3071,22 @@ module Google
2948
3071
  # @return [String]
2949
3072
  attr_accessor :private_port
2950
3073
 
3074
+ # The full resource name of the PSC (Private Service Connect) network attachment
3075
+ # that network interface controller is attached to, for example, "//compute.
3076
+ # googleapis.com/projects/`project-id`/regions/`region`/networkAttachments/`name`
3077
+ # "
3078
+ # Corresponds to the JSON property `pscNetworkAttachment`
3079
+ # @return [String]
3080
+ attr_accessor :psc_network_attachment
3081
+
3082
+ # The full resource name of the PSC (Private Service Connect) service attachment
3083
+ # that the load balancer network endpoint group targets, for example, "//compute.
3084
+ # googleapis.com/projects/`project-id`/regions/`region`/serviceAttachments/`name`
3085
+ # "
3086
+ # Corresponds to the JSON property `pscServiceAttachment`
3087
+ # @return [String]
3088
+ attr_accessor :psc_service_attachment
3089
+
2951
3090
  # Public IP address of the exposed endpoint.
2952
3091
  # Corresponds to the JSON property `publicIpAddress`
2953
3092
  # @return [String]
@@ -2971,15 +3110,23 @@ module Google
2971
3110
 
2972
3111
  # Update properties of this object
2973
3112
  def update!(**args)
3113
+ @backend_bucket = args[:backend_bucket] if args.key?(:backend_bucket)
2974
3114
  @backend_service = args[:backend_service] if args.key?(:backend_service)
3115
+ @exposed_application = args[:exposed_application] if args.key?(:exposed_application)
2975
3116
  @exposed_endpoint = args[:exposed_endpoint] if args.key?(:exposed_endpoint)
2976
3117
  @exposed_service = args[:exposed_service] if args.key?(:exposed_service)
2977
3118
  @forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule)
3119
+ @hostname_uri = args[:hostname_uri] if args.key?(:hostname_uri)
3120
+ @http_response = args[:http_response] if args.key?(:http_response)
2978
3121
  @instance_group = args[:instance_group] if args.key?(:instance_group)
3122
+ @internal_backend_service = args[:internal_backend_service] if args.key?(:internal_backend_service)
2979
3123
  @load_balancer_firewall_policy = args[:load_balancer_firewall_policy] if args.key?(:load_balancer_firewall_policy)
2980
3124
  @network_endpoint_group = args[:network_endpoint_group] if args.key?(:network_endpoint_group)
3125
+ @network_ingress_firewall_policy = args[:network_ingress_firewall_policy] if args.key?(:network_ingress_firewall_policy)
2981
3126
  @private_ip_address = args[:private_ip_address] if args.key?(:private_ip_address)
2982
3127
  @private_port = args[:private_port] if args.key?(:private_port)
3128
+ @psc_network_attachment = args[:psc_network_attachment] if args.key?(:psc_network_attachment)
3129
+ @psc_service_attachment = args[:psc_service_attachment] if args.key?(:psc_service_attachment)
2983
3130
  @public_ip_address = args[:public_ip_address] if args.key?(:public_ip_address)
2984
3131
  @public_port = args[:public_port] if args.key?(:public_port)
2985
3132
  @service_firewall_policy = args[:service_firewall_policy] if args.key?(:service_firewall_policy)
@@ -3094,6 +3241,11 @@ module Google
3094
3241
  # @return [Google::Apis::SecuritycenterV1::AffectedResources]
3095
3242
  attr_accessor :affected_resources
3096
3243
 
3244
+ # Agent data access events associated with the finding.
3245
+ # Corresponds to the JSON property `agentDataAccessEvents`
3246
+ # @return [Array<Google::Apis::SecuritycenterV1::AgentDataAccessEvent>]
3247
+ attr_accessor :agent_data_access_events
3248
+
3097
3249
  # Contains information about the AI model associated with the finding.
3098
3250
  # Corresponds to the JSON property `aiModel`
3099
3251
  # @return [Google::Apis::SecuritycenterV1::AiModel]
@@ -3228,6 +3380,12 @@ module Google
3228
3380
  # @return [String]
3229
3381
  attr_accessor :description
3230
3382
 
3383
+ # Represents discovered, customer managed workload that is not registered with
3384
+ # the respective GCP service.
3385
+ # Corresponds to the JSON property `discoveredWorkload`
3386
+ # @return [Google::Apis::SecuritycenterV1::DiscoveredWorkload]
3387
+ attr_accessor :discovered_workload
3388
+
3231
3389
  # Contains information about the disk associated with the finding.
3232
3390
  # Corresponds to the JSON property `disk`
3233
3391
  # @return [Google::Apis::SecuritycenterV1::Disk]
@@ -3412,6 +3570,16 @@ module Google
3412
3570
  # @return [String]
3413
3571
  attr_accessor :parent_display_name
3414
3572
 
3573
+ # Metadata summarizing policy violations of child resources of the affected
3574
+ # resource. `finding_category` and `resource` determine the exact semantics of
3575
+ # the counts. For example, when category=
3576
+ # DATA_SECURITY_POSTURE_OBJECT_PUBLIC_ACCESS_VIOLATION and resource='storage.
3577
+ # googleapis.com/buckets/my-bucket-name' then this counts the number of Cloud
3578
+ # Storage objects in my-bucket-name which violate a Public Access control.
3579
+ # Corresponds to the JSON property `policyViolationSummary`
3580
+ # @return [Google::Apis::SecuritycenterV1::PolicyViolationSummary]
3581
+ attr_accessor :policy_violation_summary
3582
+
3415
3583
  # Represents operating system processes associated with the Finding.
3416
3584
  # Corresponds to the JSON property `processes`
3417
3585
  # @return [Array<Google::Apis::SecuritycenterV1::Process>]
@@ -3491,6 +3659,7 @@ module Google
3491
3659
  def update!(**args)
3492
3660
  @access = args[:access] if args.key?(:access)
3493
3661
  @affected_resources = args[:affected_resources] if args.key?(:affected_resources)
3662
+ @agent_data_access_events = args[:agent_data_access_events] if args.key?(:agent_data_access_events)
3494
3663
  @ai_model = args[:ai_model] if args.key?(:ai_model)
3495
3664
  @application = args[:application] if args.key?(:application)
3496
3665
  @artifact_guard_policies = args[:artifact_guard_policies] if args.key?(:artifact_guard_policies)
@@ -3513,6 +3682,7 @@ module Google
3513
3682
  @data_retention_deletion_events = args[:data_retention_deletion_events] if args.key?(:data_retention_deletion_events)
3514
3683
  @database = args[:database] if args.key?(:database)
3515
3684
  @description = args[:description] if args.key?(:description)
3685
+ @discovered_workload = args[:discovered_workload] if args.key?(:discovered_workload)
3516
3686
  @disk = args[:disk] if args.key?(:disk)
3517
3687
  @event_time = args[:event_time] if args.key?(:event_time)
3518
3688
  @exfiltration = args[:exfiltration] if args.key?(:exfiltration)
@@ -3543,6 +3713,7 @@ module Google
3543
3713
  @org_policies = args[:org_policies] if args.key?(:org_policies)
3544
3714
  @parent = args[:parent] if args.key?(:parent)
3545
3715
  @parent_display_name = args[:parent_display_name] if args.key?(:parent_display_name)
3716
+ @policy_violation_summary = args[:policy_violation_summary] if args.key?(:policy_violation_summary)
3546
3717
  @processes = args[:processes] if args.key?(:processes)
3547
3718
  @resource_name = args[:resource_name] if args.key?(:resource_name)
3548
3719
  @secret = args[:secret] if args.key?(:secret)
@@ -5410,6 +5581,44 @@ module Google
5410
5581
  end
5411
5582
  end
5412
5583
 
5584
+ # Details about a data access attempt made by an agent principal not authorized
5585
+ # under applicable data security policy.
5586
+ class GoogleCloudSecuritycenterV2AgentDataAccessEvent
5587
+ include Google::Apis::Core::Hashable
5588
+
5589
+ # Unique identifier for data access event.
5590
+ # Corresponds to the JSON property `eventId`
5591
+ # @return [String]
5592
+ attr_accessor :event_id
5593
+
5594
+ # Timestamp of data access event.
5595
+ # Corresponds to the JSON property `eventTime`
5596
+ # @return [String]
5597
+ attr_accessor :event_time
5598
+
5599
+ # The operation performed by the principal to access the data.
5600
+ # Corresponds to the JSON property `operation`
5601
+ # @return [String]
5602
+ attr_accessor :operation
5603
+
5604
+ # The agent principal that accessed the data.
5605
+ # Corresponds to the JSON property `principalSubject`
5606
+ # @return [String]
5607
+ attr_accessor :principal_subject
5608
+
5609
+ def initialize(**args)
5610
+ update!(**args)
5611
+ end
5612
+
5613
+ # Update properties of this object
5614
+ def update!(**args)
5615
+ @event_id = args[:event_id] if args.key?(:event_id)
5616
+ @event_time = args[:event_time] if args.key?(:event_time)
5617
+ @operation = args[:operation] if args.key?(:operation)
5618
+ @principal_subject = args[:principal_subject] if args.key?(:principal_subject)
5619
+ end
5620
+ end
5621
+
5413
5622
  # Contains information about the AI model associated with the finding.
5414
5623
  class GoogleCloudSecuritycenterV2AiModel
5415
5624
  include Google::Apis::Core::Hashable
@@ -7098,6 +7307,56 @@ module Google
7098
7307
  end
7099
7308
  end
7100
7309
 
7310
+ # Represents discovered, customer managed workload that is not registered with
7311
+ # the respective GCP service.
7312
+ class GoogleCloudSecuritycenterV2DiscoveredWorkload
7313
+ include Google::Apis::Core::Hashable
7314
+
7315
+ # The confidence in detection of this workload.
7316
+ # Corresponds to the JSON property `confidence`
7317
+ # @return [String]
7318
+ attr_accessor :confidence
7319
+
7320
+ # A boolean flag set to true if associated hardware strongly predicts the
7321
+ # workload type.
7322
+ # Corresponds to the JSON property `detectedRelevantHardware`
7323
+ # @return [Boolean]
7324
+ attr_accessor :detected_relevant_hardware
7325
+ alias_method :detected_relevant_hardware?, :detected_relevant_hardware
7326
+
7327
+ # A boolean flag set to true if associated keywords strongly predict the
7328
+ # workload type.
7329
+ # Corresponds to the JSON property `detectedRelevantKeywords`
7330
+ # @return [Boolean]
7331
+ attr_accessor :detected_relevant_keywords
7332
+ alias_method :detected_relevant_keywords?, :detected_relevant_keywords
7333
+
7334
+ # A boolean flag set to true if installed packages strongly predict the workload
7335
+ # type.
7336
+ # Corresponds to the JSON property `detectedRelevantPackages`
7337
+ # @return [Boolean]
7338
+ attr_accessor :detected_relevant_packages
7339
+ alias_method :detected_relevant_packages?, :detected_relevant_packages
7340
+
7341
+ # The type of workload.
7342
+ # Corresponds to the JSON property `workloadType`
7343
+ # @return [String]
7344
+ attr_accessor :workload_type
7345
+
7346
+ def initialize(**args)
7347
+ update!(**args)
7348
+ end
7349
+
7350
+ # Update properties of this object
7351
+ def update!(**args)
7352
+ @confidence = args[:confidence] if args.key?(:confidence)
7353
+ @detected_relevant_hardware = args[:detected_relevant_hardware] if args.key?(:detected_relevant_hardware)
7354
+ @detected_relevant_keywords = args[:detected_relevant_keywords] if args.key?(:detected_relevant_keywords)
7355
+ @detected_relevant_packages = args[:detected_relevant_packages] if args.key?(:detected_relevant_packages)
7356
+ @workload_type = args[:workload_type] if args.key?(:workload_type)
7357
+ end
7358
+ end
7359
+
7101
7360
  # Contains information about the disk associated with the finding.
7102
7361
  class GoogleCloudSecuritycenterV2Disk
7103
7362
  include Google::Apis::Core::Hashable
@@ -7268,12 +7527,24 @@ module Google
7268
7527
  class GoogleCloudSecuritycenterV2ExternalExposure
7269
7528
  include Google::Apis::Core::Hashable
7270
7529
 
7530
+ # The full resource name of the load balancer backend bucket, for example, "//
7531
+ # compute.googleapis.com/projects/`project-id`/global/backendBuckets/`name`"
7532
+ # Corresponds to the JSON property `backendBucket`
7533
+ # @return [String]
7534
+ attr_accessor :backend_bucket
7535
+
7271
7536
  # The full resource name of load balancer backend service, for example, "//
7272
7537
  # compute.googleapis.com/projects/`project-id`/global/backendServices/`name`".
7273
7538
  # Corresponds to the JSON property `backendService`
7274
7539
  # @return [String]
7275
7540
  attr_accessor :backend_service
7276
7541
 
7542
+ # The name and version of the exposed web application, for example, "Jenkins 2.
7543
+ # 184".
7544
+ # Corresponds to the JSON property `exposedApplication`
7545
+ # @return [String]
7546
+ attr_accessor :exposed_application
7547
+
7277
7548
  # The resource which is running the exposed service, for example, "//compute.
7278
7549
  # googleapis.com/projects/`project-id`/zones/`zone`/instances/`instance`.”
7279
7550
  # Corresponds to the JSON property `exposedEndpoint`
@@ -7292,12 +7563,29 @@ module Google
7292
7563
  # @return [String]
7293
7564
  attr_accessor :forwarding_rule
7294
7565
 
7566
+ # Hostname of the exposed application, for example, "https://test-app.a.run.app/"
7567
+ # Corresponds to the JSON property `hostnameUri`
7568
+ # @return [String]
7569
+ attr_accessor :hostname_uri
7570
+
7571
+ # The http response returned by the web application.
7572
+ # Corresponds to the JSON property `httpResponse`
7573
+ # @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2HttpResponse>]
7574
+ attr_accessor :http_response
7575
+
7295
7576
  # The full resource name of the instance group, for example, "//compute.
7296
7577
  # googleapis.com/projects/`project-id`/global/instanceGroups/`name`".
7297
7578
  # Corresponds to the JSON property `instanceGroup`
7298
7579
  # @return [String]
7299
7580
  attr_accessor :instance_group
7300
7581
 
7582
+ # The full resource name of load balancer backend service in the internal
7583
+ # project having resource exposed via PSC, for example, "//compute.googleapis.
7584
+ # com/projects/`project-id`/global/backendServices/`name`".
7585
+ # Corresponds to the JSON property `internalBackendService`
7586
+ # @return [String]
7587
+ attr_accessor :internal_backend_service
7588
+
7301
7589
  # The full resource name of the load balancer firewall policy, for example, "//
7302
7590
  # compute.googleapis.com/projects/`project-id`/global/firewallPolicies/`policy-
7303
7591
  # name`".
@@ -7311,6 +7599,12 @@ module Google
7311
7599
  # @return [String]
7312
7600
  attr_accessor :network_endpoint_group
7313
7601
 
7602
+ # The full resource name of the network ingress firewall policy, for example, "//
7603
+ # compute.googleapis.com/projects/`project-id`/global/firewallPolicies/`name`".
7604
+ # Corresponds to the JSON property `networkIngressFirewallPolicy`
7605
+ # @return [String]
7606
+ attr_accessor :network_ingress_firewall_policy
7607
+
7314
7608
  # Private IP address of the exposed endpoint.
7315
7609
  # Corresponds to the JSON property `privateIpAddress`
7316
7610
  # @return [String]
@@ -7321,6 +7615,22 @@ module Google
7321
7615
  # @return [String]
7322
7616
  attr_accessor :private_port
7323
7617
 
7618
+ # The full resource name of the PSC (Private Service Connect) network attachment
7619
+ # that network interface controller is attached to, for example, "//compute.
7620
+ # googleapis.com/projects/`project-id`/regions/`region`/networkAttachments/`name`
7621
+ # "
7622
+ # Corresponds to the JSON property `pscNetworkAttachment`
7623
+ # @return [String]
7624
+ attr_accessor :psc_network_attachment
7625
+
7626
+ # The full resource name of the PSC (Private Service Connect) service attachment
7627
+ # that the load balancer network endpoint group targets, for example, "//compute.
7628
+ # googleapis.com/projects/`project-id`/regions/`region`/serviceAttachments/`name`
7629
+ # "
7630
+ # Corresponds to the JSON property `pscServiceAttachment`
7631
+ # @return [String]
7632
+ attr_accessor :psc_service_attachment
7633
+
7324
7634
  # Public IP address of the exposed endpoint.
7325
7635
  # Corresponds to the JSON property `publicIpAddress`
7326
7636
  # @return [String]
@@ -7344,15 +7654,23 @@ module Google
7344
7654
 
7345
7655
  # Update properties of this object
7346
7656
  def update!(**args)
7657
+ @backend_bucket = args[:backend_bucket] if args.key?(:backend_bucket)
7347
7658
  @backend_service = args[:backend_service] if args.key?(:backend_service)
7659
+ @exposed_application = args[:exposed_application] if args.key?(:exposed_application)
7348
7660
  @exposed_endpoint = args[:exposed_endpoint] if args.key?(:exposed_endpoint)
7349
7661
  @exposed_service = args[:exposed_service] if args.key?(:exposed_service)
7350
7662
  @forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule)
7663
+ @hostname_uri = args[:hostname_uri] if args.key?(:hostname_uri)
7664
+ @http_response = args[:http_response] if args.key?(:http_response)
7351
7665
  @instance_group = args[:instance_group] if args.key?(:instance_group)
7666
+ @internal_backend_service = args[:internal_backend_service] if args.key?(:internal_backend_service)
7352
7667
  @load_balancer_firewall_policy = args[:load_balancer_firewall_policy] if args.key?(:load_balancer_firewall_policy)
7353
7668
  @network_endpoint_group = args[:network_endpoint_group] if args.key?(:network_endpoint_group)
7669
+ @network_ingress_firewall_policy = args[:network_ingress_firewall_policy] if args.key?(:network_ingress_firewall_policy)
7354
7670
  @private_ip_address = args[:private_ip_address] if args.key?(:private_ip_address)
7355
7671
  @private_port = args[:private_port] if args.key?(:private_port)
7672
+ @psc_network_attachment = args[:psc_network_attachment] if args.key?(:psc_network_attachment)
7673
+ @psc_service_attachment = args[:psc_service_attachment] if args.key?(:psc_service_attachment)
7356
7674
  @public_ip_address = args[:public_ip_address] if args.key?(:public_ip_address)
7357
7675
  @public_port = args[:public_port] if args.key?(:public_port)
7358
7676
  @service_firewall_policy = args[:service_firewall_policy] if args.key?(:service_firewall_policy)
@@ -7556,6 +7874,11 @@ module Google
7556
7874
  # @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AffectedResources]
7557
7875
  attr_accessor :affected_resources
7558
7876
 
7877
+ # Agent data access events associated with the finding.
7878
+ # Corresponds to the JSON property `agentDataAccessEvents`
7879
+ # @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AgentDataAccessEvent>]
7880
+ attr_accessor :agent_data_access_events
7881
+
7559
7882
  # Contains information about the AI model associated with the finding.
7560
7883
  # Corresponds to the JSON property `aiModel`
7561
7884
  # @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AiModel]
@@ -7698,6 +8021,12 @@ module Google
7698
8021
  # @return [String]
7699
8022
  attr_accessor :description
7700
8023
 
8024
+ # Represents discovered, customer managed workload that is not registered with
8025
+ # the respective GCP service.
8026
+ # Corresponds to the JSON property `discoveredWorkload`
8027
+ # @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2DiscoveredWorkload]
8028
+ attr_accessor :discovered_workload
8029
+
7701
8030
  # Contains information about the disk associated with the finding.
7702
8031
  # Corresponds to the JSON property `disk`
7703
8032
  # @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Disk]
@@ -7891,6 +8220,16 @@ module Google
7891
8220
  # @return [String]
7892
8221
  attr_accessor :parent_display_name
7893
8222
 
8223
+ # Metadata summarizing policy violations of child resources of the affected
8224
+ # resource. `finding_category` and `resource` determine the exact semantics of
8225
+ # the counts. For example, when category=
8226
+ # DATA_SECURITY_POSTURE_OBJECT_PUBLIC_ACCESS_VIOLATION and resource='storage.
8227
+ # googleapis.com/buckets/my-bucket-name' then this counts the number of Cloud
8228
+ # Storage objects in my-bucket-name which violate a Public Access control.
8229
+ # Corresponds to the JSON property `policyViolationSummary`
8230
+ # @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2PolicyViolationSummary]
8231
+ attr_accessor :policy_violation_summary
8232
+
7894
8233
  # Represents operating system processes associated with the Finding.
7895
8234
  # Corresponds to the JSON property `processes`
7896
8235
  # @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Process>]
@@ -7970,6 +8309,7 @@ module Google
7970
8309
  def update!(**args)
7971
8310
  @access = args[:access] if args.key?(:access)
7972
8311
  @affected_resources = args[:affected_resources] if args.key?(:affected_resources)
8312
+ @agent_data_access_events = args[:agent_data_access_events] if args.key?(:agent_data_access_events)
7973
8313
  @ai_model = args[:ai_model] if args.key?(:ai_model)
7974
8314
  @application = args[:application] if args.key?(:application)
7975
8315
  @artifact_guard_policies = args[:artifact_guard_policies] if args.key?(:artifact_guard_policies)
@@ -7993,6 +8333,7 @@ module Google
7993
8333
  @data_retention_deletion_events = args[:data_retention_deletion_events] if args.key?(:data_retention_deletion_events)
7994
8334
  @database = args[:database] if args.key?(:database)
7995
8335
  @description = args[:description] if args.key?(:description)
8336
+ @discovered_workload = args[:discovered_workload] if args.key?(:discovered_workload)
7996
8337
  @disk = args[:disk] if args.key?(:disk)
7997
8338
  @event_time = args[:event_time] if args.key?(:event_time)
7998
8339
  @exfiltration = args[:exfiltration] if args.key?(:exfiltration)
@@ -8023,6 +8364,7 @@ module Google
8023
8364
  @org_policies = args[:org_policies] if args.key?(:org_policies)
8024
8365
  @parent = args[:parent] if args.key?(:parent)
8025
8366
  @parent_display_name = args[:parent_display_name] if args.key?(:parent_display_name)
8367
+ @policy_violation_summary = args[:policy_violation_summary] if args.key?(:policy_violation_summary)
8026
8368
  @processes = args[:processes] if args.key?(:processes)
8027
8369
  @resource_name = args[:resource_name] if args.key?(:resource_name)
8028
8370
  @secret = args[:secret] if args.key?(:secret)
@@ -8156,6 +8498,32 @@ module Google
8156
8498
  end
8157
8499
  end
8158
8500
 
8501
+ # The http response returned by the web application.
8502
+ class GoogleCloudSecuritycenterV2HttpResponse
8503
+ include Google::Apis::Core::Hashable
8504
+
8505
+ # The http path for which response code was returned by web application, for
8506
+ # example, "https://test-app.a.run.app/test".
8507
+ # Corresponds to the JSON property `path`
8508
+ # @return [String]
8509
+ attr_accessor :path
8510
+
8511
+ # The http response code returned by the web application, for example, 200.
8512
+ # Corresponds to the JSON property `statusCode`
8513
+ # @return [String]
8514
+ attr_accessor :status_code
8515
+
8516
+ def initialize(**args)
8517
+ update!(**args)
8518
+ end
8519
+
8520
+ # Update properties of this object
8521
+ def update!(**args)
8522
+ @path = args[:path] if args.key?(:path)
8523
+ @status_code = args[:status_code] if args.key?(:status_code)
8524
+ end
8525
+ end
8526
+
8159
8527
  # Represents a particular IAM binding, which captures a member's role addition,
8160
8528
  # removal, or state.
8161
8529
  class GoogleCloudSecuritycenterV2IamBinding
@@ -9836,6 +10204,49 @@ module Google
9836
10204
  end
9837
10205
  end
9838
10206
 
10207
+ # Metadata summarizing policy violations of child resources of the affected
10208
+ # resource. `finding_category` and `resource` determine the exact semantics of
10209
+ # the counts. For example, when category=
10210
+ # DATA_SECURITY_POSTURE_OBJECT_PUBLIC_ACCESS_VIOLATION and resource='storage.
10211
+ # googleapis.com/buckets/my-bucket-name' then this counts the number of Cloud
10212
+ # Storage objects in my-bucket-name which violate a Public Access control.
10213
+ class GoogleCloudSecuritycenterV2PolicyViolationSummary
10214
+ include Google::Apis::Core::Hashable
10215
+
10216
+ # Total number of child resources that conform to the policy.
10217
+ # Corresponds to the JSON property `conformantResourcesCount`
10218
+ # @return [Fixnum]
10219
+ attr_accessor :conformant_resources_count
10220
+
10221
+ # Number of child resources for which errors during evaluation occurred. The
10222
+ # evaluation result for these child resources is effectively "unknown".
10223
+ # Corresponds to the JSON property `evaluationErrorsCount`
10224
+ # @return [Fixnum]
10225
+ attr_accessor :evaluation_errors_count
10226
+
10227
+ # Total count of child resources which were not in scope for evaluation.
10228
+ # Corresponds to the JSON property `outOfScopeResourcesCount`
10229
+ # @return [Fixnum]
10230
+ attr_accessor :out_of_scope_resources_count
10231
+
10232
+ # Count of child resources in violation of the policy.
10233
+ # Corresponds to the JSON property `policyViolationsCount`
10234
+ # @return [Fixnum]
10235
+ attr_accessor :policy_violations_count
10236
+
10237
+ def initialize(**args)
10238
+ update!(**args)
10239
+ end
10240
+
10241
+ # Update properties of this object
10242
+ def update!(**args)
10243
+ @conformant_resources_count = args[:conformant_resources_count] if args.key?(:conformant_resources_count)
10244
+ @evaluation_errors_count = args[:evaluation_errors_count] if args.key?(:evaluation_errors_count)
10245
+ @out_of_scope_resources_count = args[:out_of_scope_resources_count] if args.key?(:out_of_scope_resources_count)
10246
+ @policy_violations_count = args[:policy_violations_count] if args.key?(:policy_violations_count)
10247
+ end
10248
+ end
10249
+
9839
10250
  # A port range which is inclusive of the min and max values. Values are between
9840
10251
  # 0 and 2^16-1. The max can be equal / must be not smaller than the min value.
9841
10252
  # If min and max are equal this indicates that it is a single port.
@@ -11421,6 +11832,32 @@ module Google
11421
11832
  end
11422
11833
  end
11423
11834
 
11835
+ # The http response returned by the web application.
11836
+ class HttpResponse
11837
+ include Google::Apis::Core::Hashable
11838
+
11839
+ # The http path for which response code was returned by web application, for
11840
+ # example, "https://test-app.a.run.app/test".
11841
+ # Corresponds to the JSON property `path`
11842
+ # @return [String]
11843
+ attr_accessor :path
11844
+
11845
+ # The http response code returned by the web application, for example, 200.
11846
+ # Corresponds to the JSON property `statusCode`
11847
+ # @return [String]
11848
+ attr_accessor :status_code
11849
+
11850
+ def initialize(**args)
11851
+ update!(**args)
11852
+ end
11853
+
11854
+ # Update properties of this object
11855
+ def update!(**args)
11856
+ @path = args[:path] if args.key?(:path)
11857
+ @status_code = args[:status_code] if args.key?(:status_code)
11858
+ end
11859
+ end
11860
+
11424
11861
  # Represents a particular IAM binding, which captures a member's role addition,
11425
11862
  # removal, or state.
11426
11863
  class IamBinding
@@ -13098,6 +13535,49 @@ module Google
13098
13535
  end
13099
13536
  end
13100
13537
 
13538
+ # Metadata summarizing policy violations of child resources of the affected
13539
+ # resource. `finding_category` and `resource` determine the exact semantics of
13540
+ # the counts. For example, when category=
13541
+ # DATA_SECURITY_POSTURE_OBJECT_PUBLIC_ACCESS_VIOLATION and resource='storage.
13542
+ # googleapis.com/buckets/my-bucket-name' then this counts the number of Cloud
13543
+ # Storage objects in my-bucket-name which violate a Public Access control.
13544
+ class PolicyViolationSummary
13545
+ include Google::Apis::Core::Hashable
13546
+
13547
+ # Total number of child resources that conform to the policy.
13548
+ # Corresponds to the JSON property `conformantResourcesCount`
13549
+ # @return [Fixnum]
13550
+ attr_accessor :conformant_resources_count
13551
+
13552
+ # Number of child resources for which errors during evaluation occurred. The
13553
+ # evaluation result for these child resources is effectively "unknown".
13554
+ # Corresponds to the JSON property `evaluationErrorsCount`
13555
+ # @return [Fixnum]
13556
+ attr_accessor :evaluation_errors_count
13557
+
13558
+ # Total count of child resources which were not in scope for evaluation.
13559
+ # Corresponds to the JSON property `outOfScopeResourcesCount`
13560
+ # @return [Fixnum]
13561
+ attr_accessor :out_of_scope_resources_count
13562
+
13563
+ # Count of child resources in violation of the policy.
13564
+ # Corresponds to the JSON property `policyViolationsCount`
13565
+ # @return [Fixnum]
13566
+ attr_accessor :policy_violations_count
13567
+
13568
+ def initialize(**args)
13569
+ update!(**args)
13570
+ end
13571
+
13572
+ # Update properties of this object
13573
+ def update!(**args)
13574
+ @conformant_resources_count = args[:conformant_resources_count] if args.key?(:conformant_resources_count)
13575
+ @evaluation_errors_count = args[:evaluation_errors_count] if args.key?(:evaluation_errors_count)
13576
+ @out_of_scope_resources_count = args[:out_of_scope_resources_count] if args.key?(:out_of_scope_resources_count)
13577
+ @policy_violations_count = args[:policy_violations_count] if args.key?(:policy_violations_count)
13578
+ end
13579
+ end
13580
+
13101
13581
  # A port range which is inclusive of the min and max values. Values are between
13102
13582
  # 0 and 2^16-1. The max can be equal / must be not smaller than the min value.
13103
13583
  # 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 SecuritycenterV1
18
18
  # Version of the google-apis-securitycenter_v1 gem
19
- GEM_VERSION = "0.115.0"
19
+ GEM_VERSION = "0.117.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
 
@@ -400,6 +406,12 @@ module Google
400
406
  include Google::Apis::Core::JsonObjectSupport
401
407
  end
402
408
 
409
+ class DiscoveredWorkload
410
+ class Representation < Google::Apis::Core::JsonRepresentation; end
411
+
412
+ include Google::Apis::Core::JsonObjectSupport
413
+ end
414
+
403
415
  class Disk
404
416
  class Representation < Google::Apis::Core::JsonRepresentation; end
405
417
 
@@ -742,6 +754,12 @@ module Google
742
754
  include Google::Apis::Core::JsonObjectSupport
743
755
  end
744
756
 
757
+ class GoogleCloudSecuritycenterV2AgentDataAccessEvent
758
+ class Representation < Google::Apis::Core::JsonRepresentation; end
759
+
760
+ include Google::Apis::Core::JsonObjectSupport
761
+ end
762
+
745
763
  class GoogleCloudSecuritycenterV2AiModel
746
764
  class Representation < Google::Apis::Core::JsonRepresentation; end
747
765
 
@@ -1000,6 +1018,12 @@ module Google
1000
1018
  include Google::Apis::Core::JsonObjectSupport
1001
1019
  end
1002
1020
 
1021
+ class GoogleCloudSecuritycenterV2DiscoveredWorkload
1022
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1023
+
1024
+ include Google::Apis::Core::JsonObjectSupport
1025
+ end
1026
+
1003
1027
  class GoogleCloudSecuritycenterV2Disk
1004
1028
  class Representation < Google::Apis::Core::JsonRepresentation; end
1005
1029
 
@@ -1090,6 +1114,12 @@ module Google
1090
1114
  include Google::Apis::Core::JsonObjectSupport
1091
1115
  end
1092
1116
 
1117
+ class GoogleCloudSecuritycenterV2HttpResponse
1118
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1119
+
1120
+ include Google::Apis::Core::JsonObjectSupport
1121
+ end
1122
+
1093
1123
  class GoogleCloudSecuritycenterV2IamBinding
1094
1124
  class Representation < Google::Apis::Core::JsonRepresentation; end
1095
1125
 
@@ -1384,6 +1414,12 @@ module Google
1384
1414
  include Google::Apis::Core::JsonObjectSupport
1385
1415
  end
1386
1416
 
1417
+ class GoogleCloudSecuritycenterV2PolicyViolationSummary
1418
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1419
+
1420
+ include Google::Apis::Core::JsonObjectSupport
1421
+ end
1422
+
1387
1423
  class GoogleCloudSecuritycenterV2PortRange
1388
1424
  class Representation < Google::Apis::Core::JsonRepresentation; end
1389
1425
 
@@ -1618,6 +1654,12 @@ module Google
1618
1654
  include Google::Apis::Core::JsonObjectSupport
1619
1655
  end
1620
1656
 
1657
+ class HttpResponse
1658
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1659
+
1660
+ include Google::Apis::Core::JsonObjectSupport
1661
+ end
1662
+
1621
1663
  class IamBinding
1622
1664
  class Representation < Google::Apis::Core::JsonRepresentation; end
1623
1665
 
@@ -1906,6 +1948,12 @@ module Google
1906
1948
  include Google::Apis::Core::JsonObjectSupport
1907
1949
  end
1908
1950
 
1951
+ class PolicyViolationSummary
1952
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1953
+
1954
+ include Google::Apis::Core::JsonObjectSupport
1955
+ end
1956
+
1909
1957
  class PortRange
1910
1958
  class Representation < Google::Apis::Core::JsonRepresentation; end
1911
1959
 
@@ -2263,6 +2311,16 @@ module Google
2263
2311
  end
2264
2312
  end
2265
2313
 
2314
+ class AgentDataAccessEvent
2315
+ # @private
2316
+ class Representation < Google::Apis::Core::JsonRepresentation
2317
+ property :event_id, as: 'eventId'
2318
+ property :event_time, as: 'eventTime'
2319
+ property :operation, as: 'operation'
2320
+ property :principal_subject, as: 'principalSubject'
2321
+ end
2322
+ end
2323
+
2266
2324
  class AiModel
2267
2325
  # @private
2268
2326
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2830,6 +2888,17 @@ module Google
2830
2888
  end
2831
2889
  end
2832
2890
 
2891
+ class DiscoveredWorkload
2892
+ # @private
2893
+ class Representation < Google::Apis::Core::JsonRepresentation
2894
+ property :confidence, as: 'confidence'
2895
+ property :detected_relevant_hardware, as: 'detectedRelevantHardware'
2896
+ property :detected_relevant_keywords, as: 'detectedRelevantKeywords'
2897
+ property :detected_relevant_packages, as: 'detectedRelevantPackages'
2898
+ property :workload_type, as: 'workloadType'
2899
+ end
2900
+ end
2901
+
2833
2902
  class Disk
2834
2903
  # @private
2835
2904
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2943,15 +3012,24 @@ module Google
2943
3012
  class ExternalExposure
2944
3013
  # @private
2945
3014
  class Representation < Google::Apis::Core::JsonRepresentation
3015
+ property :backend_bucket, as: 'backendBucket'
2946
3016
  property :backend_service, as: 'backendService'
3017
+ property :exposed_application, as: 'exposedApplication'
2947
3018
  property :exposed_endpoint, as: 'exposedEndpoint'
2948
3019
  property :exposed_service, as: 'exposedService'
2949
3020
  property :forwarding_rule, as: 'forwardingRule'
3021
+ property :hostname_uri, as: 'hostnameUri'
3022
+ collection :http_response, as: 'httpResponse', class: Google::Apis::SecuritycenterV1::HttpResponse, decorator: Google::Apis::SecuritycenterV1::HttpResponse::Representation
3023
+
2950
3024
  property :instance_group, as: 'instanceGroup'
3025
+ property :internal_backend_service, as: 'internalBackendService'
2951
3026
  property :load_balancer_firewall_policy, as: 'loadBalancerFirewallPolicy'
2952
3027
  property :network_endpoint_group, as: 'networkEndpointGroup'
3028
+ property :network_ingress_firewall_policy, as: 'networkIngressFirewallPolicy'
2953
3029
  property :private_ip_address, as: 'privateIpAddress'
2954
3030
  property :private_port, as: 'privatePort'
3031
+ property :psc_network_attachment, as: 'pscNetworkAttachment'
3032
+ property :psc_service_attachment, as: 'pscServiceAttachment'
2955
3033
  property :public_ip_address, as: 'publicIpAddress'
2956
3034
  property :public_port, as: 'publicPort'
2957
3035
  property :service_firewall_policy, as: 'serviceFirewallPolicy'
@@ -2989,6 +3067,8 @@ module Google
2989
3067
 
2990
3068
  property :affected_resources, as: 'affectedResources', class: Google::Apis::SecuritycenterV1::AffectedResources, decorator: Google::Apis::SecuritycenterV1::AffectedResources::Representation
2991
3069
 
3070
+ collection :agent_data_access_events, as: 'agentDataAccessEvents', class: Google::Apis::SecuritycenterV1::AgentDataAccessEvent, decorator: Google::Apis::SecuritycenterV1::AgentDataAccessEvent::Representation
3071
+
2992
3072
  property :ai_model, as: 'aiModel', class: Google::Apis::SecuritycenterV1::AiModel, decorator: Google::Apis::SecuritycenterV1::AiModel::Representation
2993
3073
 
2994
3074
  property :application, as: 'application', class: Google::Apis::SecuritycenterV1::Application, decorator: Google::Apis::SecuritycenterV1::Application::Representation
@@ -3029,6 +3109,8 @@ module Google
3029
3109
  property :database, as: 'database', class: Google::Apis::SecuritycenterV1::Database, decorator: Google::Apis::SecuritycenterV1::Database::Representation
3030
3110
 
3031
3111
  property :description, as: 'description'
3112
+ property :discovered_workload, as: 'discoveredWorkload', class: Google::Apis::SecuritycenterV1::DiscoveredWorkload, decorator: Google::Apis::SecuritycenterV1::DiscoveredWorkload::Representation
3113
+
3032
3114
  property :disk, as: 'disk', class: Google::Apis::SecuritycenterV1::Disk, decorator: Google::Apis::SecuritycenterV1::Disk::Representation
3033
3115
 
3034
3116
  property :event_time, as: 'eventTime'
@@ -3078,6 +3160,8 @@ module Google
3078
3160
 
3079
3161
  property :parent, as: 'parent'
3080
3162
  property :parent_display_name, as: 'parentDisplayName'
3163
+ property :policy_violation_summary, as: 'policyViolationSummary', class: Google::Apis::SecuritycenterV1::PolicyViolationSummary, decorator: Google::Apis::SecuritycenterV1::PolicyViolationSummary::Representation
3164
+
3081
3165
  collection :processes, as: 'processes', class: Google::Apis::SecuritycenterV1::Process, decorator: Google::Apis::SecuritycenterV1::Process::Representation
3082
3166
 
3083
3167
  property :resource_name, as: 'resourceName'
@@ -3555,6 +3639,16 @@ module Google
3555
3639
  end
3556
3640
  end
3557
3641
 
3642
+ class GoogleCloudSecuritycenterV2AgentDataAccessEvent
3643
+ # @private
3644
+ class Representation < Google::Apis::Core::JsonRepresentation
3645
+ property :event_id, as: 'eventId'
3646
+ property :event_time, as: 'eventTime'
3647
+ property :operation, as: 'operation'
3648
+ property :principal_subject, as: 'principalSubject'
3649
+ end
3650
+ end
3651
+
3558
3652
  class GoogleCloudSecuritycenterV2AiModel
3559
3653
  # @private
3560
3654
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3997,6 +4091,17 @@ module Google
3997
4091
  end
3998
4092
  end
3999
4093
 
4094
+ class GoogleCloudSecuritycenterV2DiscoveredWorkload
4095
+ # @private
4096
+ class Representation < Google::Apis::Core::JsonRepresentation
4097
+ property :confidence, as: 'confidence'
4098
+ property :detected_relevant_hardware, as: 'detectedRelevantHardware'
4099
+ property :detected_relevant_keywords, as: 'detectedRelevantKeywords'
4100
+ property :detected_relevant_packages, as: 'detectedRelevantPackages'
4101
+ property :workload_type, as: 'workloadType'
4102
+ end
4103
+ end
4104
+
4000
4105
  class GoogleCloudSecuritycenterV2Disk
4001
4106
  # @private
4002
4107
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4050,15 +4155,24 @@ module Google
4050
4155
  class GoogleCloudSecuritycenterV2ExternalExposure
4051
4156
  # @private
4052
4157
  class Representation < Google::Apis::Core::JsonRepresentation
4158
+ property :backend_bucket, as: 'backendBucket'
4053
4159
  property :backend_service, as: 'backendService'
4160
+ property :exposed_application, as: 'exposedApplication'
4054
4161
  property :exposed_endpoint, as: 'exposedEndpoint'
4055
4162
  property :exposed_service, as: 'exposedService'
4056
4163
  property :forwarding_rule, as: 'forwardingRule'
4164
+ property :hostname_uri, as: 'hostnameUri'
4165
+ collection :http_response, as: 'httpResponse', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2HttpResponse, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2HttpResponse::Representation
4166
+
4057
4167
  property :instance_group, as: 'instanceGroup'
4168
+ property :internal_backend_service, as: 'internalBackendService'
4058
4169
  property :load_balancer_firewall_policy, as: 'loadBalancerFirewallPolicy'
4059
4170
  property :network_endpoint_group, as: 'networkEndpointGroup'
4171
+ property :network_ingress_firewall_policy, as: 'networkIngressFirewallPolicy'
4060
4172
  property :private_ip_address, as: 'privateIpAddress'
4061
4173
  property :private_port, as: 'privatePort'
4174
+ property :psc_network_attachment, as: 'pscNetworkAttachment'
4175
+ property :psc_service_attachment, as: 'pscServiceAttachment'
4062
4176
  property :public_ip_address, as: 'publicIpAddress'
4063
4177
  property :public_port, as: 'publicPort'
4064
4178
  property :service_firewall_policy, as: 'serviceFirewallPolicy'
@@ -4114,6 +4228,8 @@ module Google
4114
4228
 
4115
4229
  property :affected_resources, as: 'affectedResources', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AffectedResources, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AffectedResources::Representation
4116
4230
 
4231
+ collection :agent_data_access_events, as: 'agentDataAccessEvents', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AgentDataAccessEvent, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AgentDataAccessEvent::Representation
4232
+
4117
4233
  property :ai_model, as: 'aiModel', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AiModel, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AiModel::Representation
4118
4234
 
4119
4235
  property :application, as: 'application', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Application, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Application::Representation
@@ -4155,6 +4271,8 @@ module Google
4155
4271
  property :database, as: 'database', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Database, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Database::Representation
4156
4272
 
4157
4273
  property :description, as: 'description'
4274
+ property :discovered_workload, as: 'discoveredWorkload', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2DiscoveredWorkload, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2DiscoveredWorkload::Representation
4275
+
4158
4276
  property :disk, as: 'disk', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Disk, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Disk::Representation
4159
4277
 
4160
4278
  property :event_time, as: 'eventTime'
@@ -4204,6 +4322,8 @@ module Google
4204
4322
 
4205
4323
  property :parent, as: 'parent'
4206
4324
  property :parent_display_name, as: 'parentDisplayName'
4325
+ property :policy_violation_summary, as: 'policyViolationSummary', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2PolicyViolationSummary, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2PolicyViolationSummary::Representation
4326
+
4207
4327
  collection :processes, as: 'processes', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Process, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Process::Representation
4208
4328
 
4209
4329
  property :resource_name, as: 'resourceName'
@@ -4260,6 +4380,14 @@ module Google
4260
4380
  end
4261
4381
  end
4262
4382
 
4383
+ class GoogleCloudSecuritycenterV2HttpResponse
4384
+ # @private
4385
+ class Representation < Google::Apis::Core::JsonRepresentation
4386
+ property :path, as: 'path'
4387
+ property :status_code, as: 'statusCode'
4388
+ end
4389
+ end
4390
+
4263
4391
  class GoogleCloudSecuritycenterV2IamBinding
4264
4392
  # @private
4265
4393
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4757,6 +4885,16 @@ module Google
4757
4885
  end
4758
4886
  end
4759
4887
 
4888
+ class GoogleCloudSecuritycenterV2PolicyViolationSummary
4889
+ # @private
4890
+ class Representation < Google::Apis::Core::JsonRepresentation
4891
+ property :conformant_resources_count, :numeric_string => true, as: 'conformantResourcesCount'
4892
+ property :evaluation_errors_count, :numeric_string => true, as: 'evaluationErrorsCount'
4893
+ property :out_of_scope_resources_count, :numeric_string => true, as: 'outOfScopeResourcesCount'
4894
+ property :policy_violations_count, :numeric_string => true, as: 'policyViolationsCount'
4895
+ end
4896
+ end
4897
+
4760
4898
  class GoogleCloudSecuritycenterV2PortRange
4761
4899
  # @private
4762
4900
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5168,6 +5306,14 @@ module Google
5168
5306
  end
5169
5307
  end
5170
5308
 
5309
+ class HttpResponse
5310
+ # @private
5311
+ class Representation < Google::Apis::Core::JsonRepresentation
5312
+ property :path, as: 'path'
5313
+ property :status_code, as: 'statusCode'
5314
+ end
5315
+ end
5316
+
5171
5317
  class IamBinding
5172
5318
  # @private
5173
5319
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5642,6 +5788,16 @@ module Google
5642
5788
  end
5643
5789
  end
5644
5790
 
5791
+ class PolicyViolationSummary
5792
+ # @private
5793
+ class Representation < Google::Apis::Core::JsonRepresentation
5794
+ property :conformant_resources_count, :numeric_string => true, as: 'conformantResourcesCount'
5795
+ property :evaluation_errors_count, :numeric_string => true, as: 'evaluationErrorsCount'
5796
+ property :out_of_scope_resources_count, :numeric_string => true, as: 'outOfScopeResourcesCount'
5797
+ property :policy_violations_count, :numeric_string => true, as: 'policyViolationsCount'
5798
+ end
5799
+ end
5800
+
5645
5801
  class PortRange
5646
5802
  # @private
5647
5803
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-securitycenter_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.115.0
4
+ version: 0.117.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.115.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.117.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1
62
62
  rdoc_options: []
63
63
  require_paths: