google-apis-securitycenter_v1 0.105.0 → 0.107.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: 378bf3143074253128f483c1d2638aaada30340b7655dca6bb54ad2fa999aa49
|
4
|
+
data.tar.gz: c951e7efaa9ab340eda2a6379a891e671251cc92809352fb4ff4b1472d2047a2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6b91f85adaa6cba557c01ef7e79905ff8265b95e66784c27f46f0d9d681f655bfbb7df596d97489fb6e81b43f2d91e3518b83fcb8d199302bfc9de9b8fca43d2
|
7
|
+
data.tar.gz: b0eff6939a59e81844fdff6558b8749c95b8add0a5c5e8ca2162e8b89a81857241b2fc5ad35e29b9072a1391b4fc4d04145c424a0fcce15a08752805ea1c9a7b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-securitycenter_v1
|
2
2
|
|
3
|
+
### v0.107.0 (2025-08-24)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250815
|
6
|
+
|
7
|
+
### v0.106.0 (2025-08-17)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250808
|
10
|
+
|
3
11
|
### v0.105.0 (2025-07-27)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250721
|
@@ -1163,7 +1163,7 @@ module Google
|
|
1163
1163
|
end
|
1164
1164
|
end
|
1165
1165
|
|
1166
|
-
# The destination
|
1166
|
+
# The destination BigQuery dataset to export findings to.
|
1167
1167
|
class BigQueryDestination
|
1168
1168
|
include Google::Apis::Core::Hashable
|
1169
1169
|
|
@@ -2657,7 +2657,7 @@ module Google
|
|
2657
2657
|
class ExportFindingsMetadata
|
2658
2658
|
include Google::Apis::Core::Hashable
|
2659
2659
|
|
2660
|
-
# The destination
|
2660
|
+
# The destination BigQuery dataset to export findings to.
|
2661
2661
|
# Corresponds to the JSON property `bigQueryDestination`
|
2662
2662
|
# @return [Google::Apis::SecuritycenterV1::BigQueryDestination]
|
2663
2663
|
attr_accessor :big_query_destination
|
@@ -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.107.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 = "20250815"
|
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.107.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.107.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:
|