google-apis-securitycenter_v1beta2 0.62.0 → 0.63.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: 9f101f56e076db9a00f2b997549755bdff2a16de24c17920826b3f4383e5fdef
4
- data.tar.gz: 22a9e894bdc4832217a72d3f51a9d1157ecbcd78034d86b07e045c313acbfdf0
3
+ metadata.gz: be7d381325f39a4c589fa805eb843e3633d91d1003334c4c24656420de399b3f
4
+ data.tar.gz: cec6c55ca96aa378bcce8e39b477367ad661136056f59e81683f2533e4f9c05a
5
5
  SHA512:
6
- metadata.gz: d54115ea29c23dec5e3b85d765a9cd3cf4d4c3773a1122ea216fb6f470a2151c4e776a0d9e6a4258c0544b9016f1240a7c3ed0b5702eae5ca43aa6b334e782a8
7
- data.tar.gz: 66aaaddc4a429104ae315858088f9fff6f0de79a1969c9b374426087afc09a75a157d5fbc05af28a9d84351663aa63fff599d0d7d145729338e7907f558cf862
6
+ metadata.gz: 2eb472bb1a894bdb920ade2bf941a33348bc4f50959909028365fdd02030266d338f31bb110ba5cc763686956d1f4d473a95a4b2ac7f4fde2b9051148855a4a7
7
+ data.tar.gz: 96ceb03b04491264857d8e06337a8423fd101b59b8990f07179e842e3960c18ef8bca73c5164a7f584e67347aa2b887294d8e4b9213de3790d9354979ac0bf24
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-securitycenter_v1beta2
2
2
 
3
+ ### v0.63.0 (2024-02-04)
4
+
5
+ * Regenerated from discovery document revision 20240130
6
+ * Regenerated using generator version 0.13.1
7
+
3
8
  ### v0.62.0 (2024-01-22)
4
9
 
5
10
  * Regenerated from discovery document revision 20240117
@@ -723,8 +723,9 @@ module Google
723
723
  end
724
724
  end
725
725
 
726
- # CVE stands for Common Vulnerabilities and Exposures. More information: https://
727
- # cve.mitre.org
726
+ # CVE stands for Common Vulnerabilities and Exposures. Information from the [CVE
727
+ # record](https://www.cve.org/ResourcesSupport/Glossary) that describes this
728
+ # vulnerability.
728
729
  class Cve
729
730
  include Google::Apis::Core::Hashable
730
731
 
@@ -2266,6 +2267,13 @@ module Google
2266
2267
  # @return [String]
2267
2268
  attr_accessor :scope
2268
2269
 
2270
+ # Resource value mapping for Sensitive Data Protection findings. If any of these
2271
+ # mappings have a resource value that is not unspecified, the resource_value
2272
+ # field will be ignored when reading this configuration.
2273
+ # Corresponds to the JSON property `sensitiveDataProtectionMapping`
2274
+ # @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1SensitiveDataProtectionMapping]
2275
+ attr_accessor :sensitive_data_protection_mapping
2276
+
2269
2277
  # Required. Tag values combined with AND to check against. Values in the form "
2270
2278
  # tagValues/123" E.g. [ "tagValues/123", "tagValues/456", "tagValues/789" ]
2271
2279
  # https://cloud.google.com/resource-manager/docs/tags/tags-creating-and-managing
@@ -2291,6 +2299,7 @@ module Google
2291
2299
  @resource_type = args[:resource_type] if args.key?(:resource_type)
2292
2300
  @resource_value = args[:resource_value] if args.key?(:resource_value)
2293
2301
  @scope = args[:scope] if args.key?(:scope)
2302
+ @sensitive_data_protection_mapping = args[:sensitive_data_protection_mapping] if args.key?(:sensitive_data_protection_mapping)
2294
2303
  @tag_values = args[:tag_values] if args.key?(:tag_values)
2295
2304
  @update_time = args[:update_time] if args.key?(:update_time)
2296
2305
  end
@@ -2395,6 +2404,34 @@ module Google
2395
2404
  end
2396
2405
  end
2397
2406
 
2407
+ # Resource value mapping for Sensitive Data Protection findings. If any of these
2408
+ # mappings have a resource value that is not unspecified, the resource_value
2409
+ # field will be ignored when reading this configuration.
2410
+ class GoogleCloudSecuritycenterV1SensitiveDataProtectionMapping
2411
+ include Google::Apis::Core::Hashable
2412
+
2413
+ # Resource value mapping for high-sensitivity Sensitive Data Protection findings
2414
+ # Corresponds to the JSON property `highSensitivityMapping`
2415
+ # @return [String]
2416
+ attr_accessor :high_sensitivity_mapping
2417
+
2418
+ # Resource value mapping for medium-sensitivity Sensitive Data Protection
2419
+ # findings
2420
+ # Corresponds to the JSON property `mediumSensitivityMapping`
2421
+ # @return [String]
2422
+ attr_accessor :medium_sensitivity_mapping
2423
+
2424
+ def initialize(**args)
2425
+ update!(**args)
2426
+ end
2427
+
2428
+ # Update properties of this object
2429
+ def update!(**args)
2430
+ @high_sensitivity_mapping = args[:high_sensitivity_mapping] if args.key?(:high_sensitivity_mapping)
2431
+ @medium_sensitivity_mapping = args[:medium_sensitivity_mapping] if args.key?(:medium_sensitivity_mapping)
2432
+ end
2433
+ end
2434
+
2398
2435
  # Response of asset discovery run
2399
2436
  class GoogleCloudSecuritycenterV1beta1RunAssetDiscoveryResponse
2400
2437
  include Google::Apis::Core::Hashable
@@ -3955,8 +3992,9 @@ module Google
3955
3992
  class Vulnerability
3956
3993
  include Google::Apis::Core::Hashable
3957
3994
 
3958
- # CVE stands for Common Vulnerabilities and Exposures. More information: https://
3959
- # cve.mitre.org
3995
+ # CVE stands for Common Vulnerabilities and Exposures. Information from the [CVE
3996
+ # record](https://www.cve.org/ResourcesSupport/Glossary) that describes this
3997
+ # vulnerability.
3960
3998
  # Corresponds to the JSON property `cve`
3961
3999
  # @return [Google::Apis::SecuritycenterV1beta2::Cve]
3962
4000
  attr_accessor :cve
@@ -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.62.0"
19
+ GEM_VERSION = "0.63.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 = "20240117"
25
+ REVISION = "20240130"
26
26
  end
27
27
  end
28
28
  end
@@ -292,6 +292,12 @@ module Google
292
292
  include Google::Apis::Core::JsonObjectSupport
293
293
  end
294
294
 
295
+ class GoogleCloudSecuritycenterV1SensitiveDataProtectionMapping
296
+ class Representation < Google::Apis::Core::JsonRepresentation; end
297
+
298
+ include Google::Apis::Core::JsonObjectSupport
299
+ end
300
+
295
301
  class GoogleCloudSecuritycenterV1beta1RunAssetDiscoveryResponse
296
302
  class Representation < Google::Apis::Core::JsonRepresentation; end
297
303
 
@@ -1067,6 +1073,8 @@ module Google
1067
1073
  property :resource_type, as: 'resourceType'
1068
1074
  property :resource_value, as: 'resourceValue'
1069
1075
  property :scope, as: 'scope'
1076
+ property :sensitive_data_protection_mapping, as: 'sensitiveDataProtectionMapping', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1SensitiveDataProtectionMapping, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1SensitiveDataProtectionMapping::Representation
1077
+
1070
1078
  collection :tag_values, as: 'tagValues'
1071
1079
  property :update_time, as: 'updateTime'
1072
1080
  end
@@ -1094,6 +1102,14 @@ module Google
1094
1102
  end
1095
1103
  end
1096
1104
 
1105
+ class GoogleCloudSecuritycenterV1SensitiveDataProtectionMapping
1106
+ # @private
1107
+ class Representation < Google::Apis::Core::JsonRepresentation
1108
+ property :high_sensitivity_mapping, as: 'highSensitivityMapping'
1109
+ property :medium_sensitivity_mapping, as: 'mediumSensitivityMapping'
1110
+ end
1111
+ end
1112
+
1097
1113
  class GoogleCloudSecuritycenterV1beta1RunAssetDiscoveryResponse
1098
1114
  # @private
1099
1115
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-securitycenter_v1beta2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.62.0
4
+ version: 0.63.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_v1beta2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.62.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.63.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta2
63
63
  post_install_message:
64
64
  rdoc_options: []