Skip to content

Commit 641a24f

Browse files
feat: Automated regeneration of securitycenter v1beta1 client (googleapis#23978)
Auto-created at 2025-08-17 10:36:52 +0000 using the toys pull request generator.
1 parent 62682a6 commit 641a24f

File tree

5 files changed

+35
-2
lines changed

5 files changed

+35
-2
lines changed

api_names_out.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -334603,6 +334603,7 @@
334603334603
"/securitycenter:v1beta1/GoogleCloudSecuritycenterV2BackupDisasterRecovery/storagePool": storage_pool
334604334604
"/securitycenter:v1beta1/GoogleCloudSecuritycenterV2BigQueryExport": google_cloud_securitycenter_v2_big_query_export
334605334605
"/securitycenter:v1beta1/GoogleCloudSecuritycenterV2BigQueryExport/createTime": create_time
334606+
"/securitycenter:v1beta1/GoogleCloudSecuritycenterV2BigQueryExport/cryptoKeyName": crypto_key_name
334606334607
"/securitycenter:v1beta1/GoogleCloudSecuritycenterV2BigQueryExport/dataset": dataset
334607334608
"/securitycenter:v1beta1/GoogleCloudSecuritycenterV2BigQueryExport/description": description
334608334609
"/securitycenter:v1beta1/GoogleCloudSecuritycenterV2BigQueryExport/filter": filter
@@ -334806,6 +334807,7 @@
334806334807
"/securitycenter:v1beta1/GoogleCloudSecuritycenterV2Finding/containers": containers
334807334808
"/securitycenter:v1beta1/GoogleCloudSecuritycenterV2Finding/containers/container": container
334808334809
"/securitycenter:v1beta1/GoogleCloudSecuritycenterV2Finding/createTime": create_time
334810+
"/securitycenter:v1beta1/GoogleCloudSecuritycenterV2Finding/cryptoKeyName": crypto_key_name
334809334811
"/securitycenter:v1beta1/GoogleCloudSecuritycenterV2Finding/dataAccessEvents": data_access_events
334810334812
"/securitycenter:v1beta1/GoogleCloudSecuritycenterV2Finding/dataAccessEvents/data_access_event": data_access_event
334811334813
"/securitycenter:v1beta1/GoogleCloudSecuritycenterV2Finding/dataFlowEvents": data_flow_events
@@ -335026,6 +335028,7 @@
335026335028
"/securitycenter:v1beta1/GoogleCloudSecuritycenterV2MitreAttack/version": version
335027335029
"/securitycenter:v1beta1/GoogleCloudSecuritycenterV2MuteConfig": google_cloud_securitycenter_v2_mute_config
335028335030
"/securitycenter:v1beta1/GoogleCloudSecuritycenterV2MuteConfig/createTime": create_time
335031+
"/securitycenter:v1beta1/GoogleCloudSecuritycenterV2MuteConfig/cryptoKeyName": crypto_key_name
335029335032
"/securitycenter:v1beta1/GoogleCloudSecuritycenterV2MuteConfig/description": description
335030335033
"/securitycenter:v1beta1/GoogleCloudSecuritycenterV2MuteConfig/expiryTime": expiry_time
335031335034
"/securitycenter:v1beta1/GoogleCloudSecuritycenterV2MuteConfig/filter": filter

generated/google-apis-securitycenter_v1beta1/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-securitycenter_v1beta1
22

3+
### v0.96.0 (2025-08-17)
4+
5+
* Regenerated from discovery document revision 20250808
6+
37
### v0.95.0 (2025-07-27)
48

59
* Regenerated from discovery document revision 20250721

generated/google-apis-securitycenter_v1beta1/lib/google/apis/securitycenter_v1beta1/classes.rb

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5149,6 +5149,13 @@ class GoogleCloudSecuritycenterV2BigQueryExport
51495149
# @return [String]
51505150
attr_accessor :create_time
51515151

5152+
# Output only. The resource name of the Cloud KMS `CryptoKey` used to protect
5153+
# this configuration's data, if configured during Security Command Center
5154+
# activation.
5155+
# Corresponds to the JSON property `cryptoKeyName`
5156+
# @return [String]
5157+
attr_accessor :crypto_key_name
5158+
51525159
# The dataset to write findings' updates to. Its format is "projects/[project_id]
51535160
# /datasets/[bigquery_dataset_id]". BigQuery dataset unique ID must contain only
51545161
# letters (a-z, A-Z), numbers (0-9), or underscores (_).
@@ -5213,6 +5220,7 @@ def initialize(**args)
52135220
# Update properties of this object
52145221
def update!(**args)
52155222
@create_time = args[:create_time] if args.key?(:create_time)
5223+
@crypto_key_name = args[:crypto_key_name] if args.key?(:crypto_key_name)
52165224
@dataset = args[:dataset] if args.key?(:dataset)
52175225
@description = args[:description] if args.key?(:description)
52185226
@filter = args[:filter] if args.key?(:filter)
@@ -6639,6 +6647,12 @@ class GoogleCloudSecuritycenterV2Finding
66396647
# @return [String]
66406648
attr_accessor :create_time
66416649

6650+
# Output only. The name of the Cloud KMS key used to encrypt this finding, if
6651+
# any.
6652+
# Corresponds to the JSON property `cryptoKeyName`
6653+
# @return [String]
6654+
attr_accessor :crypto_key_name
6655+
66426656
# Data access events associated with the finding.
66436657
# Corresponds to the JSON property `dataAccessEvents`
66446658
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2DataAccessEvent>]
@@ -6948,6 +6962,7 @@ def update!(**args)
69486962
@contacts = args[:contacts] if args.key?(:contacts)
69496963
@containers = args[:containers] if args.key?(:containers)
69506964
@create_time = args[:create_time] if args.key?(:create_time)
6965+
@crypto_key_name = args[:crypto_key_name] if args.key?(:crypto_key_name)
69516966
@data_access_events = args[:data_access_events] if args.key?(:data_access_events)
69526967
@data_flow_events = args[:data_flow_events] if args.key?(:data_flow_events)
69536968
@data_retention_deletion_events = args[:data_retention_deletion_events] if args.key?(:data_retention_deletion_events)
@@ -8090,6 +8105,13 @@ class GoogleCloudSecuritycenterV2MuteConfig
80908105
# @return [String]
80918106
attr_accessor :create_time
80928107

8108+
# Output only. The resource name of the Cloud KMS `CryptoKey` used to encrypt
8109+
# this configuration data, if CMEK was enabled during Security Command Center
8110+
# activation.
8111+
# Corresponds to the JSON property `cryptoKeyName`
8112+
# @return [String]
8113+
attr_accessor :crypto_key_name
8114+
80938115
# A description of the mute config.
80948116
# Corresponds to the JSON property `description`
80958117
# @return [String]
@@ -8153,6 +8175,7 @@ def initialize(**args)
81538175
# Update properties of this object
81548176
def update!(**args)
81558177
@create_time = args[:create_time] if args.key?(:create_time)
8178+
@crypto_key_name = args[:crypto_key_name] if args.key?(:crypto_key_name)
81568179
@description = args[:description] if args.key?(:description)
81578180
@expiry_time = args[:expiry_time] if args.key?(:expiry_time)
81588181
@filter = args[:filter] if args.key?(:filter)

generated/google-apis-securitycenter_v1beta1/lib/google/apis/securitycenter_v1beta1/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module SecuritycenterV1beta1
1818
# Version of the google-apis-securitycenter_v1beta1 gem
19-
GEM_VERSION = "0.95.0"
19+
GEM_VERSION = "0.96.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.18.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20250721"
25+
REVISION = "20250808"
2626
end
2727
end
2828
end

generated/google-apis-securitycenter_v1beta1/lib/google/apis/securitycenter_v1beta1/representations.rb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2982,6 +2982,7 @@ class GoogleCloudSecuritycenterV2BigQueryExport
29822982
# @private
29832983
class Representation < Google::Apis::Core::JsonRepresentation
29842984
property :create_time, as: 'createTime'
2985+
property :crypto_key_name, as: 'cryptoKeyName'
29852986
property :dataset, as: 'dataset'
29862987
property :description, as: 'description'
29872988
property :filter, as: 'filter'
@@ -3374,6 +3375,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
33743375
collection :containers, as: 'containers', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Container, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Container::Representation
33753376

33763377
property :create_time, as: 'createTime'
3378+
property :crypto_key_name, as: 'cryptoKeyName'
33773379
collection :data_access_events, as: 'dataAccessEvents', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2DataAccessEvent, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2DataAccessEvent::Representation
33783380

33793381
collection :data_flow_events, as: 'dataFlowEvents', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2DataFlowEvent, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2DataFlowEvent::Representation
@@ -3771,6 +3773,7 @@ class GoogleCloudSecuritycenterV2MuteConfig
37713773
# @private
37723774
class Representation < Google::Apis::Core::JsonRepresentation
37733775
property :create_time, as: 'createTime'
3776+
property :crypto_key_name, as: 'cryptoKeyName'
37743777
property :description, as: 'description'
37753778
property :expiry_time, as: 'expiryTime'
37763779
property :filter, as: 'filter'

0 commit comments

Comments
 (0)