google-apis-securitycenter_v1 0.74.0 → 0.75.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: 4c9ffd3c4a7766f6b57e7acf3b9cca99a8771b138018a43fe40b98bab7cce058
|
4
|
+
data.tar.gz: b7e87d7ebc376a491cda95fdeaf092cf56c97f6b00fabde6c36f70ed8c3516a5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8e9af0c4e9c6170fcc8522ac5756416dffc10e2a0008d5df7d258bdbfa7af016c47c2f58c47f8c09460fb8832b0c0806ab4d0feda380e9ad26c32cb86875c8f2
|
7
|
+
data.tar.gz: fb765b1494bdf4339c95aede496cc75184e09b324119285cc49755b505084ceac7c638328c1eb40b3a1f3ae9d2f0cce5ad8c1190a0b1a2e37ca052c7e0a134f4
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-securitycenter_v1
|
2
2
|
|
3
|
+
### v0.75.0 (2024-02-04)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240130
|
6
|
+
* Regenerated using generator version 0.13.1
|
7
|
+
|
3
8
|
### v0.74.0 (2024-01-23)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20240119
|
@@ -1238,8 +1238,9 @@ module Google
|
|
1238
1238
|
end
|
1239
1239
|
end
|
1240
1240
|
|
1241
|
-
# CVE stands for Common Vulnerabilities and Exposures.
|
1242
|
-
# cve.
|
1241
|
+
# CVE stands for Common Vulnerabilities and Exposures. Information from the [CVE
|
1242
|
+
# record](https://www.cve.org/ResourcesSupport/Glossary) that describes this
|
1243
|
+
# vulnerability.
|
1243
1244
|
class Cve
|
1244
1245
|
include Google::Apis::Core::Hashable
|
1245
1246
|
|
@@ -2912,6 +2913,13 @@ module Google
|
|
2912
2913
|
# @return [String]
|
2913
2914
|
attr_accessor :scope
|
2914
2915
|
|
2916
|
+
# Resource value mapping for Sensitive Data Protection findings. If any of these
|
2917
|
+
# mappings have a resource value that is not unspecified, the resource_value
|
2918
|
+
# field will be ignored when reading this configuration.
|
2919
|
+
# Corresponds to the JSON property `sensitiveDataProtectionMapping`
|
2920
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1SensitiveDataProtectionMapping]
|
2921
|
+
attr_accessor :sensitive_data_protection_mapping
|
2922
|
+
|
2915
2923
|
# Required. Tag values combined with AND to check against. Values in the form "
|
2916
2924
|
# tagValues/123" E.g. [ "tagValues/123", "tagValues/456", "tagValues/789" ]
|
2917
2925
|
# https://cloud.google.com/resource-manager/docs/tags/tags-creating-and-managing
|
@@ -2937,6 +2945,7 @@ module Google
|
|
2937
2945
|
@resource_type = args[:resource_type] if args.key?(:resource_type)
|
2938
2946
|
@resource_value = args[:resource_value] if args.key?(:resource_value)
|
2939
2947
|
@scope = args[:scope] if args.key?(:scope)
|
2948
|
+
@sensitive_data_protection_mapping = args[:sensitive_data_protection_mapping] if args.key?(:sensitive_data_protection_mapping)
|
2940
2949
|
@tag_values = args[:tag_values] if args.key?(:tag_values)
|
2941
2950
|
@update_time = args[:update_time] if args.key?(:update_time)
|
2942
2951
|
end
|
@@ -3041,6 +3050,34 @@ module Google
|
|
3041
3050
|
end
|
3042
3051
|
end
|
3043
3052
|
|
3053
|
+
# Resource value mapping for Sensitive Data Protection findings. If any of these
|
3054
|
+
# mappings have a resource value that is not unspecified, the resource_value
|
3055
|
+
# field will be ignored when reading this configuration.
|
3056
|
+
class GoogleCloudSecuritycenterV1SensitiveDataProtectionMapping
|
3057
|
+
include Google::Apis::Core::Hashable
|
3058
|
+
|
3059
|
+
# Resource value mapping for high-sensitivity Sensitive Data Protection findings
|
3060
|
+
# Corresponds to the JSON property `highSensitivityMapping`
|
3061
|
+
# @return [String]
|
3062
|
+
attr_accessor :high_sensitivity_mapping
|
3063
|
+
|
3064
|
+
# Resource value mapping for medium-sensitivity Sensitive Data Protection
|
3065
|
+
# findings
|
3066
|
+
# Corresponds to the JSON property `mediumSensitivityMapping`
|
3067
|
+
# @return [String]
|
3068
|
+
attr_accessor :medium_sensitivity_mapping
|
3069
|
+
|
3070
|
+
def initialize(**args)
|
3071
|
+
update!(**args)
|
3072
|
+
end
|
3073
|
+
|
3074
|
+
# Update properties of this object
|
3075
|
+
def update!(**args)
|
3076
|
+
@high_sensitivity_mapping = args[:high_sensitivity_mapping] if args.key?(:high_sensitivity_mapping)
|
3077
|
+
@medium_sensitivity_mapping = args[:medium_sensitivity_mapping] if args.key?(:medium_sensitivity_mapping)
|
3078
|
+
end
|
3079
|
+
end
|
3080
|
+
|
3044
3081
|
# Response of asset discovery run
|
3045
3082
|
class GoogleCloudSecuritycenterV1beta1RunAssetDiscoveryResponse
|
3046
3083
|
include Google::Apis::Core::Hashable
|
@@ -6255,8 +6292,9 @@ module Google
|
|
6255
6292
|
class Vulnerability
|
6256
6293
|
include Google::Apis::Core::Hashable
|
6257
6294
|
|
6258
|
-
# CVE stands for Common Vulnerabilities and Exposures.
|
6259
|
-
# cve.
|
6295
|
+
# CVE stands for Common Vulnerabilities and Exposures. Information from the [CVE
|
6296
|
+
# record](https://www.cve.org/ResourcesSupport/Glossary) that describes this
|
6297
|
+
# vulnerability.
|
6260
6298
|
# Corresponds to the JSON property `cve`
|
6261
6299
|
# @return [Google::Apis::SecuritycenterV1::Cve]
|
6262
6300
|
attr_accessor :cve
|
@@ -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.75.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.13.
|
22
|
+
GENERATOR_VERSION = "0.13.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240130"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -388,6 +388,12 @@ module Google
|
|
388
388
|
include Google::Apis::Core::JsonObjectSupport
|
389
389
|
end
|
390
390
|
|
391
|
+
class GoogleCloudSecuritycenterV1SensitiveDataProtectionMapping
|
392
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
393
|
+
|
394
|
+
include Google::Apis::Core::JsonObjectSupport
|
395
|
+
end
|
396
|
+
|
391
397
|
class GoogleCloudSecuritycenterV1beta1RunAssetDiscoveryResponse
|
392
398
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
393
399
|
|
@@ -1585,6 +1591,8 @@ module Google
|
|
1585
1591
|
property :resource_type, as: 'resourceType'
|
1586
1592
|
property :resource_value, as: 'resourceValue'
|
1587
1593
|
property :scope, as: 'scope'
|
1594
|
+
property :sensitive_data_protection_mapping, as: 'sensitiveDataProtectionMapping', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1SensitiveDataProtectionMapping, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1SensitiveDataProtectionMapping::Representation
|
1595
|
+
|
1588
1596
|
collection :tag_values, as: 'tagValues'
|
1589
1597
|
property :update_time, as: 'updateTime'
|
1590
1598
|
end
|
@@ -1612,6 +1620,14 @@ module Google
|
|
1612
1620
|
end
|
1613
1621
|
end
|
1614
1622
|
|
1623
|
+
class GoogleCloudSecuritycenterV1SensitiveDataProtectionMapping
|
1624
|
+
# @private
|
1625
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1626
|
+
property :high_sensitivity_mapping, as: 'highSensitivityMapping'
|
1627
|
+
property :medium_sensitivity_mapping, as: 'mediumSensitivityMapping'
|
1628
|
+
end
|
1629
|
+
end
|
1630
|
+
|
1615
1631
|
class GoogleCloudSecuritycenterV1beta1RunAssetDiscoveryResponse
|
1616
1632
|
# @private
|
1617
1633
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.75.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-
|
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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.75.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|