google-apis-securitycenter_v1beta1 0.70.0 → 0.71.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: 48d1303ca0dde17783c6f5a2592eb889e49b29dc4fa2a7da3d86840774dc2d05
4
- data.tar.gz: 313bf9aa79823e1484238ea22f265903e2bba50f37ee92edc08bd85ff6bdc2a5
3
+ metadata.gz: f040b221375a5548bbe43d62716df613f665cfd2b1456f00c5ee46aba95aabec
4
+ data.tar.gz: dc56a90e963cd497650f5636eee866cf060e5f2003902c6284867f2a866c6787
5
5
  SHA512:
6
- metadata.gz: 47e4bb5cfd3712489890445e6501660b1bac76807d650eff269b04c299378f563d63e9ee1a49de1a3b1283e827d49eea41e081227bc8e0782a9388338475b749
7
- data.tar.gz: 854f51f4ac56f8129aaaccb7976e71eec60d887023253adfcc9520badae64d67b5908dde05b271a494c6f17475bd37751f2de778e2a46c7f82b9759dea7d7699
6
+ metadata.gz: 92a3b25a162aab62c34c9daeeef7191acc25550e98e2b07dc6c54bd659d50dddc7eb446249e97826053bf150a27c80a07e245ac039fcf336a1981a62e271ca47
7
+ data.tar.gz: 59bb03c0d7e2520e719139fd9b51b5e11150faed5e8c0deed04de490696a486553abf2f52f9f9576fcfe8cf43d39b0f98be73deff922c8e7125261ff9101cb5a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-securitycenter_v1beta1
2
2
 
3
+ ### v0.71.0 (2024-02-04)
4
+
5
+ * Regenerated from discovery document revision 20240130
6
+ * Regenerated using generator version 0.13.1
7
+
3
8
  ### v0.70.0 (2024-01-23)
4
9
 
5
10
  * Regenerated from discovery document revision 20240119
@@ -916,8 +916,9 @@ module Google
916
916
  end
917
917
  end
918
918
 
919
- # CVE stands for Common Vulnerabilities and Exposures. More information: https://
920
- # cve.mitre.org
919
+ # CVE stands for Common Vulnerabilities and Exposures. Information from the [CVE
920
+ # record](https://www.cve.org/ResourcesSupport/Glossary) that describes this
921
+ # vulnerability.
921
922
  class Cve
922
923
  include Google::Apis::Core::Hashable
923
924
 
@@ -2449,6 +2450,13 @@ module Google
2449
2450
  # @return [String]
2450
2451
  attr_accessor :scope
2451
2452
 
2453
+ # Resource value mapping for Sensitive Data Protection findings. If any of these
2454
+ # mappings have a resource value that is not unspecified, the resource_value
2455
+ # field will be ignored when reading this configuration.
2456
+ # Corresponds to the JSON property `sensitiveDataProtectionMapping`
2457
+ # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1SensitiveDataProtectionMapping]
2458
+ attr_accessor :sensitive_data_protection_mapping
2459
+
2452
2460
  # Required. Tag values combined with AND to check against. Values in the form "
2453
2461
  # tagValues/123" E.g. [ "tagValues/123", "tagValues/456", "tagValues/789" ]
2454
2462
  # https://cloud.google.com/resource-manager/docs/tags/tags-creating-and-managing
@@ -2474,6 +2482,7 @@ module Google
2474
2482
  @resource_type = args[:resource_type] if args.key?(:resource_type)
2475
2483
  @resource_value = args[:resource_value] if args.key?(:resource_value)
2476
2484
  @scope = args[:scope] if args.key?(:scope)
2485
+ @sensitive_data_protection_mapping = args[:sensitive_data_protection_mapping] if args.key?(:sensitive_data_protection_mapping)
2477
2486
  @tag_values = args[:tag_values] if args.key?(:tag_values)
2478
2487
  @update_time = args[:update_time] if args.key?(:update_time)
2479
2488
  end
@@ -2578,6 +2587,34 @@ module Google
2578
2587
  end
2579
2588
  end
2580
2589
 
2590
+ # Resource value mapping for Sensitive Data Protection findings. If any of these
2591
+ # mappings have a resource value that is not unspecified, the resource_value
2592
+ # field will be ignored when reading this configuration.
2593
+ class GoogleCloudSecuritycenterV1SensitiveDataProtectionMapping
2594
+ include Google::Apis::Core::Hashable
2595
+
2596
+ # Resource value mapping for high-sensitivity Sensitive Data Protection findings
2597
+ # Corresponds to the JSON property `highSensitivityMapping`
2598
+ # @return [String]
2599
+ attr_accessor :high_sensitivity_mapping
2600
+
2601
+ # Resource value mapping for medium-sensitivity Sensitive Data Protection
2602
+ # findings
2603
+ # Corresponds to the JSON property `mediumSensitivityMapping`
2604
+ # @return [String]
2605
+ attr_accessor :medium_sensitivity_mapping
2606
+
2607
+ def initialize(**args)
2608
+ update!(**args)
2609
+ end
2610
+
2611
+ # Update properties of this object
2612
+ def update!(**args)
2613
+ @high_sensitivity_mapping = args[:high_sensitivity_mapping] if args.key?(:high_sensitivity_mapping)
2614
+ @medium_sensitivity_mapping = args[:medium_sensitivity_mapping] if args.key?(:medium_sensitivity_mapping)
2615
+ end
2616
+ end
2617
+
2581
2618
  # Security Command Center finding. A finding is a record of assessment data (
2582
2619
  # security, risk, health or privacy) ingested into Security Command Center for
2583
2620
  # presentation, notification, analysis, policy testing, and enforcement. For
@@ -4902,8 +4939,9 @@ module Google
4902
4939
  class Vulnerability
4903
4940
  include Google::Apis::Core::Hashable
4904
4941
 
4905
- # CVE stands for Common Vulnerabilities and Exposures. More information: https://
4906
- # cve.mitre.org
4942
+ # CVE stands for Common Vulnerabilities and Exposures. Information from the [CVE
4943
+ # record](https://www.cve.org/ResourcesSupport/Glossary) that describes this
4944
+ # vulnerability.
4907
4945
  # Corresponds to the JSON property `cve`
4908
4946
  # @return [Google::Apis::SecuritycenterV1beta1::Cve]
4909
4947
  attr_accessor :cve
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module SecuritycenterV1beta1
18
18
  # Version of the google-apis-securitycenter_v1beta1 gem
19
- GEM_VERSION = "0.70.0"
19
+ GEM_VERSION = "0.71.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.13.0"
22
+ GENERATOR_VERSION = "0.13.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240119"
25
+ REVISION = "20240130"
26
26
  end
27
27
  end
28
28
  end
@@ -322,6 +322,12 @@ module Google
322
322
  include Google::Apis::Core::JsonObjectSupport
323
323
  end
324
324
 
325
+ class GoogleCloudSecuritycenterV1SensitiveDataProtectionMapping
326
+ class Representation < Google::Apis::Core::JsonRepresentation; end
327
+
328
+ include Google::Apis::Core::JsonObjectSupport
329
+ end
330
+
325
331
  class GoogleCloudSecuritycenterV1beta1Finding
326
332
  class Representation < Google::Apis::Core::JsonRepresentation; end
327
333
 
@@ -1235,6 +1241,8 @@ module Google
1235
1241
  property :resource_type, as: 'resourceType'
1236
1242
  property :resource_value, as: 'resourceValue'
1237
1243
  property :scope, as: 'scope'
1244
+ property :sensitive_data_protection_mapping, as: 'sensitiveDataProtectionMapping', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1SensitiveDataProtectionMapping, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1SensitiveDataProtectionMapping::Representation
1245
+
1238
1246
  collection :tag_values, as: 'tagValues'
1239
1247
  property :update_time, as: 'updateTime'
1240
1248
  end
@@ -1262,6 +1270,14 @@ module Google
1262
1270
  end
1263
1271
  end
1264
1272
 
1273
+ class GoogleCloudSecuritycenterV1SensitiveDataProtectionMapping
1274
+ # @private
1275
+ class Representation < Google::Apis::Core::JsonRepresentation
1276
+ property :high_sensitivity_mapping, as: 'highSensitivityMapping'
1277
+ property :medium_sensitivity_mapping, as: 'mediumSensitivityMapping'
1278
+ end
1279
+ end
1280
+
1265
1281
  class GoogleCloudSecuritycenterV1beta1Finding
1266
1282
  # @private
1267
1283
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-securitycenter_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.70.0
4
+ version: 0.71.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-23 00:00:00.000000000 Z
11
+ date: 2024-02-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.70.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.71.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []