google-apis-securitycenter_v1beta2 0.79.0 → 0.81.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: d0d07eba44f1e4b5c23e648d7b5b1217d115a0d8a06dd79edfbcaf3ef1b08226
|
4
|
+
data.tar.gz: a75754e9c478f03c6db0654b1615d1cc4bceb2ee996d4952624413d8ed0c9d0c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 22872c781bc473ddf848a90e6c90141fb5ca29f5f5888bbbc6acf4583417390875b7cb4f001d1028c9f8fd215ae68eda95e39df0ed90790b003f040edab45732
|
7
|
+
data.tar.gz: 27c3424f5ef48d1965c2cc9c7fafa03c1dfbb7e62e52b662e5708e12fe9fc98c5b0f7c9bda77c54c2931ab8c35055a484c88ea04bbb3646f82b9a51bbac7d87e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-securitycenter_v1beta2
|
2
2
|
|
3
|
+
### v0.81.0 (2025-05-04)
|
4
|
+
|
5
|
+
* Regenerated using generator version 0.17.0
|
6
|
+
|
7
|
+
### v0.80.0 (2025-04-20)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250411
|
10
|
+
|
3
11
|
### v0.79.0 (2025-03-30)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250326
|
data/OVERVIEW.md
CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/security-command-center) ma
|
|
83
83
|
|
84
84
|
## Supported Ruby versions
|
85
85
|
|
86
|
-
This library is supported on Ruby
|
86
|
+
This library is supported on Ruby 3.1+.
|
87
87
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
89
89
|
|
@@ -959,67 +959,6 @@ module Google
|
|
959
959
|
end
|
960
960
|
end
|
961
961
|
|
962
|
-
# Result containing the properties and count of a ComplianceSnapshot request.
|
963
|
-
class ComplianceSnapshot
|
964
|
-
include Google::Apis::Core::Hashable
|
965
|
-
|
966
|
-
# The category of Findings matching.
|
967
|
-
# Corresponds to the JSON property `category`
|
968
|
-
# @return [String]
|
969
|
-
attr_accessor :category
|
970
|
-
|
971
|
-
# The cloud provider for the compliance snapshot.
|
972
|
-
# Corresponds to the JSON property `cloudProvider`
|
973
|
-
# @return [String]
|
974
|
-
attr_accessor :cloud_provider
|
975
|
-
|
976
|
-
# The compliance standard (ie CIS).
|
977
|
-
# Corresponds to the JSON property `complianceStandard`
|
978
|
-
# @return [String]
|
979
|
-
attr_accessor :compliance_standard
|
980
|
-
|
981
|
-
# The compliance version (ie 1.3) in CIS 1.3.
|
982
|
-
# Corresponds to the JSON property `complianceVersion`
|
983
|
-
# @return [String]
|
984
|
-
attr_accessor :compliance_version
|
985
|
-
|
986
|
-
# Total count of findings for the given properties.
|
987
|
-
# Corresponds to the JSON property `count`
|
988
|
-
# @return [Fixnum]
|
989
|
-
attr_accessor :count
|
990
|
-
|
991
|
-
# The leaf container resource name that is closest to the snapshot.
|
992
|
-
# Corresponds to the JSON property `leafContainerResource`
|
993
|
-
# @return [String]
|
994
|
-
attr_accessor :leaf_container_resource
|
995
|
-
|
996
|
-
# The compliance snapshot name. Format: //sources//complianceSnapshots/
|
997
|
-
# Corresponds to the JSON property `name`
|
998
|
-
# @return [String]
|
999
|
-
attr_accessor :name
|
1000
|
-
|
1001
|
-
# The snapshot time of the snapshot.
|
1002
|
-
# Corresponds to the JSON property `snapshotTime`
|
1003
|
-
# @return [String]
|
1004
|
-
attr_accessor :snapshot_time
|
1005
|
-
|
1006
|
-
def initialize(**args)
|
1007
|
-
update!(**args)
|
1008
|
-
end
|
1009
|
-
|
1010
|
-
# Update properties of this object
|
1011
|
-
def update!(**args)
|
1012
|
-
@category = args[:category] if args.key?(:category)
|
1013
|
-
@cloud_provider = args[:cloud_provider] if args.key?(:cloud_provider)
|
1014
|
-
@compliance_standard = args[:compliance_standard] if args.key?(:compliance_standard)
|
1015
|
-
@compliance_version = args[:compliance_version] if args.key?(:compliance_version)
|
1016
|
-
@count = args[:count] if args.key?(:count)
|
1017
|
-
@leaf_container_resource = args[:leaf_container_resource] if args.key?(:leaf_container_resource)
|
1018
|
-
@name = args[:name] if args.key?(:name)
|
1019
|
-
@snapshot_time = args[:snapshot_time] if args.key?(:snapshot_time)
|
1020
|
-
end
|
1021
|
-
end
|
1022
|
-
|
1023
962
|
# Configuration of a module.
|
1024
963
|
class Config
|
1025
964
|
include Google::Apis::Core::Hashable
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.81.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.17.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250411"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -166,12 +166,6 @@ module Google
|
|
166
166
|
include Google::Apis::Core::JsonObjectSupport
|
167
167
|
end
|
168
168
|
|
169
|
-
class ComplianceSnapshot
|
170
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
171
|
-
|
172
|
-
include Google::Apis::Core::JsonObjectSupport
|
173
|
-
end
|
174
|
-
|
175
169
|
class Config
|
176
170
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
171
|
|
@@ -1705,20 +1699,6 @@ module Google
|
|
1705
1699
|
end
|
1706
1700
|
end
|
1707
1701
|
|
1708
|
-
class ComplianceSnapshot
|
1709
|
-
# @private
|
1710
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1711
|
-
property :category, as: 'category'
|
1712
|
-
property :cloud_provider, as: 'cloudProvider'
|
1713
|
-
property :compliance_standard, as: 'complianceStandard'
|
1714
|
-
property :compliance_version, as: 'complianceVersion'
|
1715
|
-
property :count, :numeric_string => true, as: 'count'
|
1716
|
-
property :leaf_container_resource, as: 'leafContainerResource'
|
1717
|
-
property :name, as: 'name'
|
1718
|
-
property :snapshot_time, as: 'snapshotTime'
|
1719
|
-
end
|
1720
|
-
end
|
1721
|
-
|
1722
1702
|
class Config
|
1723
1703
|
# @private
|
1724
1704
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-securitycenter_v1beta2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.81.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -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_v1beta2/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.81.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta2
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
@@ -66,14 +66,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
66
66
|
requirements:
|
67
67
|
- - ">="
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version: '
|
69
|
+
version: '3.1'
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
71
71
|
requirements:
|
72
72
|
- - ">="
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.8
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Security Command Center API V1beta2
|
79
79
|
test_files: []
|