google-apis-securitycenter_v1beta2 0.87.0 → 0.88.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d96d74747984b349440729db600b61e167919f4794a2b67ee4e5bac385f876bb
|
4
|
+
data.tar.gz: bfd98300b718e49452a362eb37ba96130ad3a183d8fc762302c75645e723bf0b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3f3669893d190ae5de84b149c44204895950a213c3aeef3a2fa10b0845f70c2cb870fffbf4fa28c74417aa9f9859625420dfd3ccade3c05473428c4d2ae629c8
|
7
|
+
data.tar.gz: 9b1e2a288eb9191a31532bdd4796ece2c8fb9a8d7cb797ff91b3e430f0c92b89dbce3f4e52f55c09739ed8a338dd7d8510ee2fb184c85a2ff5c724e5221daaa9
|
data/CHANGELOG.md
CHANGED
@@ -4833,6 +4833,13 @@ module Google
|
|
4833
4833
|
# @return [String]
|
4834
4834
|
attr_accessor :create_time
|
4835
4835
|
|
4836
|
+
# Output only. The resource name of the Cloud KMS `CryptoKey` used to protect
|
4837
|
+
# this configuration's data, if configured during Security Command Center
|
4838
|
+
# activation.
|
4839
|
+
# Corresponds to the JSON property `cryptoKeyName`
|
4840
|
+
# @return [String]
|
4841
|
+
attr_accessor :crypto_key_name
|
4842
|
+
|
4836
4843
|
# The dataset to write findings' updates to. Its format is "projects/[project_id]
|
4837
4844
|
# /datasets/[bigquery_dataset_id]". BigQuery dataset unique ID must contain only
|
4838
4845
|
# letters (a-z, A-Z), numbers (0-9), or underscores (_).
|
@@ -4897,6 +4904,7 @@ module Google
|
|
4897
4904
|
# Update properties of this object
|
4898
4905
|
def update!(**args)
|
4899
4906
|
@create_time = args[:create_time] if args.key?(:create_time)
|
4907
|
+
@crypto_key_name = args[:crypto_key_name] if args.key?(:crypto_key_name)
|
4900
4908
|
@dataset = args[:dataset] if args.key?(:dataset)
|
4901
4909
|
@description = args[:description] if args.key?(:description)
|
4902
4910
|
@filter = args[:filter] if args.key?(:filter)
|
@@ -6323,6 +6331,12 @@ module Google
|
|
6323
6331
|
# @return [String]
|
6324
6332
|
attr_accessor :create_time
|
6325
6333
|
|
6334
|
+
# Output only. The name of the Cloud KMS key used to encrypt this finding, if
|
6335
|
+
# any.
|
6336
|
+
# Corresponds to the JSON property `cryptoKeyName`
|
6337
|
+
# @return [String]
|
6338
|
+
attr_accessor :crypto_key_name
|
6339
|
+
|
6326
6340
|
# Data access events associated with the finding.
|
6327
6341
|
# Corresponds to the JSON property `dataAccessEvents`
|
6328
6342
|
# @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2DataAccessEvent>]
|
@@ -6632,6 +6646,7 @@ module Google
|
|
6632
6646
|
@contacts = args[:contacts] if args.key?(:contacts)
|
6633
6647
|
@containers = args[:containers] if args.key?(:containers)
|
6634
6648
|
@create_time = args[:create_time] if args.key?(:create_time)
|
6649
|
+
@crypto_key_name = args[:crypto_key_name] if args.key?(:crypto_key_name)
|
6635
6650
|
@data_access_events = args[:data_access_events] if args.key?(:data_access_events)
|
6636
6651
|
@data_flow_events = args[:data_flow_events] if args.key?(:data_flow_events)
|
6637
6652
|
@data_retention_deletion_events = args[:data_retention_deletion_events] if args.key?(:data_retention_deletion_events)
|
@@ -7774,6 +7789,13 @@ module Google
|
|
7774
7789
|
# @return [String]
|
7775
7790
|
attr_accessor :create_time
|
7776
7791
|
|
7792
|
+
# Output only. The resource name of the Cloud KMS `CryptoKey` used to encrypt
|
7793
|
+
# this configuration data, if CMEK was enabled during Security Command Center
|
7794
|
+
# activation.
|
7795
|
+
# Corresponds to the JSON property `cryptoKeyName`
|
7796
|
+
# @return [String]
|
7797
|
+
attr_accessor :crypto_key_name
|
7798
|
+
|
7777
7799
|
# A description of the mute config.
|
7778
7800
|
# Corresponds to the JSON property `description`
|
7779
7801
|
# @return [String]
|
@@ -7837,6 +7859,7 @@ module Google
|
|
7837
7859
|
# Update properties of this object
|
7838
7860
|
def update!(**args)
|
7839
7861
|
@create_time = args[:create_time] if args.key?(:create_time)
|
7862
|
+
@crypto_key_name = args[:crypto_key_name] if args.key?(:crypto_key_name)
|
7840
7863
|
@description = args[:description] if args.key?(:description)
|
7841
7864
|
@expiry_time = args[:expiry_time] if args.key?(:expiry_time)
|
7842
7865
|
@filter = args[:filter] if args.key?(:filter)
|
@@ -10405,6 +10428,12 @@ module Google
|
|
10405
10428
|
class SecurityCenterSettings
|
10406
10429
|
include Google::Apis::Core::Hashable
|
10407
10430
|
|
10431
|
+
# The KMS key name used for CMEK encryption. Format: projects/`project`/
|
10432
|
+
# locations/`location`/keyRings/`key_ring`/cryptoKeys/`key_name`
|
10433
|
+
# Corresponds to the JSON property `cryptoKeyName`
|
10434
|
+
# @return [String]
|
10435
|
+
attr_accessor :crypto_key_name
|
10436
|
+
|
10408
10437
|
# The resource name of the project to send logs to. This project must be part of
|
10409
10438
|
# the organization this resource resides in. The format is `projects/`project_id`
|
10410
10439
|
# `. An empty value disables logging. This value is only referenced by services
|
@@ -10439,6 +10468,7 @@ module Google
|
|
10439
10468
|
|
10440
10469
|
# Update properties of this object
|
10441
10470
|
def update!(**args)
|
10471
|
+
@crypto_key_name = args[:crypto_key_name] if args.key?(:crypto_key_name)
|
10442
10472
|
@log_sink_project = args[:log_sink_project] if args.key?(:log_sink_project)
|
10443
10473
|
@name = args[:name] if args.key?(:name)
|
10444
10474
|
@onboarding_time = args[:onboarding_time] if args.key?(:onboarding_time)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module SecuritycenterV1beta2
|
18
18
|
# Version of the google-apis-securitycenter_v1beta2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.88.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 = "
|
25
|
+
REVISION = "20250808"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2789,6 +2789,7 @@ module Google
|
|
2789
2789
|
# @private
|
2790
2790
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2791
2791
|
property :create_time, as: 'createTime'
|
2792
|
+
property :crypto_key_name, as: 'cryptoKeyName'
|
2792
2793
|
property :dataset, as: 'dataset'
|
2793
2794
|
property :description, as: 'description'
|
2794
2795
|
property :filter, as: 'filter'
|
@@ -3181,6 +3182,7 @@ module Google
|
|
3181
3182
|
collection :containers, as: 'containers', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Container, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Container::Representation
|
3182
3183
|
|
3183
3184
|
property :create_time, as: 'createTime'
|
3185
|
+
property :crypto_key_name, as: 'cryptoKeyName'
|
3184
3186
|
collection :data_access_events, as: 'dataAccessEvents', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2DataAccessEvent, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2DataAccessEvent::Representation
|
3185
3187
|
|
3186
3188
|
collection :data_flow_events, as: 'dataFlowEvents', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2DataFlowEvent, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2DataFlowEvent::Representation
|
@@ -3578,6 +3580,7 @@ module Google
|
|
3578
3580
|
# @private
|
3579
3581
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3580
3582
|
property :create_time, as: 'createTime'
|
3583
|
+
property :crypto_key_name, as: 'cryptoKeyName'
|
3581
3584
|
property :description, as: 'description'
|
3582
3585
|
property :expiry_time, as: 'expiryTime'
|
3583
3586
|
property :filter, as: 'filter'
|
@@ -4300,6 +4303,7 @@ module Google
|
|
4300
4303
|
class SecurityCenterSettings
|
4301
4304
|
# @private
|
4302
4305
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4306
|
+
property :crypto_key_name, as: 'cryptoKeyName'
|
4303
4307
|
property :log_sink_project, as: 'logSinkProject'
|
4304
4308
|
property :name, as: 'name'
|
4305
4309
|
property :onboarding_time, as: 'onboardingTime'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-securitycenter_v1beta2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.88.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta2/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.88.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:
|