google-apis-securitycenter_v1 0.105.0 → 0.106.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: 76cd025a6d45f53960b789b0cbc7c951b59f9eceb91f01c59a7042e77691aa3a
|
4
|
+
data.tar.gz: 6198caafd169266bed7bc42cd836be78345d23eb4369438cc8a1b107dd0b2f31
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 64ceae8a50523aef7bcd7f983f58e40c65970edb53deeb1d362efe19f6ded4bf3801772596d1aefe54e2e403bb9b13f7610878466a3717411f7dc4b438d3f50d
|
7
|
+
data.tar.gz: d7ee71ee7d6b8bace5323d71dfd542500eda4ace37a12fed9c39170b0a3f2e047c796b2ddc5065eb50356691927030ceeb28569b7afdfd412194e9e0f048b0c9
|
data/CHANGELOG.md
CHANGED
@@ -5499,6 +5499,13 @@ module Google
|
|
5499
5499
|
# @return [String]
|
5500
5500
|
attr_accessor :create_time
|
5501
5501
|
|
5502
|
+
# Output only. The resource name of the Cloud KMS `CryptoKey` used to protect
|
5503
|
+
# this configuration's data, if configured during Security Command Center
|
5504
|
+
# activation.
|
5505
|
+
# Corresponds to the JSON property `cryptoKeyName`
|
5506
|
+
# @return [String]
|
5507
|
+
attr_accessor :crypto_key_name
|
5508
|
+
|
5502
5509
|
# The dataset to write findings' updates to. Its format is "projects/[project_id]
|
5503
5510
|
# /datasets/[bigquery_dataset_id]". BigQuery dataset unique ID must contain only
|
5504
5511
|
# letters (a-z, A-Z), numbers (0-9), or underscores (_).
|
@@ -5563,6 +5570,7 @@ module Google
|
|
5563
5570
|
# Update properties of this object
|
5564
5571
|
def update!(**args)
|
5565
5572
|
@create_time = args[:create_time] if args.key?(:create_time)
|
5573
|
+
@crypto_key_name = args[:crypto_key_name] if args.key?(:crypto_key_name)
|
5566
5574
|
@dataset = args[:dataset] if args.key?(:dataset)
|
5567
5575
|
@description = args[:description] if args.key?(:description)
|
5568
5576
|
@filter = args[:filter] if args.key?(:filter)
|
@@ -6989,6 +6997,12 @@ module Google
|
|
6989
6997
|
# @return [String]
|
6990
6998
|
attr_accessor :create_time
|
6991
6999
|
|
7000
|
+
# Output only. The name of the Cloud KMS key used to encrypt this finding, if
|
7001
|
+
# any.
|
7002
|
+
# Corresponds to the JSON property `cryptoKeyName`
|
7003
|
+
# @return [String]
|
7004
|
+
attr_accessor :crypto_key_name
|
7005
|
+
|
6992
7006
|
# Data access events associated with the finding.
|
6993
7007
|
# Corresponds to the JSON property `dataAccessEvents`
|
6994
7008
|
# @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2DataAccessEvent>]
|
@@ -7298,6 +7312,7 @@ module Google
|
|
7298
7312
|
@contacts = args[:contacts] if args.key?(:contacts)
|
7299
7313
|
@containers = args[:containers] if args.key?(:containers)
|
7300
7314
|
@create_time = args[:create_time] if args.key?(:create_time)
|
7315
|
+
@crypto_key_name = args[:crypto_key_name] if args.key?(:crypto_key_name)
|
7301
7316
|
@data_access_events = args[:data_access_events] if args.key?(:data_access_events)
|
7302
7317
|
@data_flow_events = args[:data_flow_events] if args.key?(:data_flow_events)
|
7303
7318
|
@data_retention_deletion_events = args[:data_retention_deletion_events] if args.key?(:data_retention_deletion_events)
|
@@ -8440,6 +8455,13 @@ module Google
|
|
8440
8455
|
# @return [String]
|
8441
8456
|
attr_accessor :create_time
|
8442
8457
|
|
8458
|
+
# Output only. The resource name of the Cloud KMS `CryptoKey` used to encrypt
|
8459
|
+
# this configuration data, if CMEK was enabled during Security Command Center
|
8460
|
+
# activation.
|
8461
|
+
# Corresponds to the JSON property `cryptoKeyName`
|
8462
|
+
# @return [String]
|
8463
|
+
attr_accessor :crypto_key_name
|
8464
|
+
|
8443
8465
|
# A description of the mute config.
|
8444
8466
|
# Corresponds to the JSON property `description`
|
8445
8467
|
# @return [String]
|
@@ -8503,6 +8525,7 @@ module Google
|
|
8503
8525
|
# Update properties of this object
|
8504
8526
|
def update!(**args)
|
8505
8527
|
@create_time = args[:create_time] if args.key?(:create_time)
|
8528
|
+
@crypto_key_name = args[:crypto_key_name] if args.key?(:crypto_key_name)
|
8506
8529
|
@description = args[:description] if args.key?(:description)
|
8507
8530
|
@expiry_time = args[:expiry_time] if args.key?(:expiry_time)
|
8508
8531
|
@filter = args[:filter] if args.key?(:filter)
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.106.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
|
@@ -3310,6 +3310,7 @@ module Google
|
|
3310
3310
|
# @private
|
3311
3311
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3312
3312
|
property :create_time, as: 'createTime'
|
3313
|
+
property :crypto_key_name, as: 'cryptoKeyName'
|
3313
3314
|
property :dataset, as: 'dataset'
|
3314
3315
|
property :description, as: 'description'
|
3315
3316
|
property :filter, as: 'filter'
|
@@ -3702,6 +3703,7 @@ module Google
|
|
3702
3703
|
collection :containers, as: 'containers', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Container, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Container::Representation
|
3703
3704
|
|
3704
3705
|
property :create_time, as: 'createTime'
|
3706
|
+
property :crypto_key_name, as: 'cryptoKeyName'
|
3705
3707
|
collection :data_access_events, as: 'dataAccessEvents', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2DataAccessEvent, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2DataAccessEvent::Representation
|
3706
3708
|
|
3707
3709
|
collection :data_flow_events, as: 'dataFlowEvents', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2DataFlowEvent, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2DataFlowEvent::Representation
|
@@ -4099,6 +4101,7 @@ module Google
|
|
4099
4101
|
# @private
|
4100
4102
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4101
4103
|
property :create_time, as: 'createTime'
|
4104
|
+
property :crypto_key_name, as: 'cryptoKeyName'
|
4102
4105
|
property :description, as: 'description'
|
4103
4106
|
property :expiry_time, as: 'expiryTime'
|
4104
4107
|
property :filter, as: 'filter'
|
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.
|
4
|
+
version: 0.106.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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.106.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:
|