google-apis-securitycenter_v1beta2 0.79.0 → 0.80.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: be9ac77a9ac73510f4c9cca25ad2791617d675d3a46632e7182360217989abf7
|
4
|
+
data.tar.gz: 37c3e365146c2502f47d53a8288b01dc789bb3b726a2767c414ea96574dd68c0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d4f0febf9c99fe1496dac24e43b5f6a8dd177fd30bcbe324d9ca2d2a71209956563feeb338ddd9df57f82252ec32a0fbec36428b91a12db30aa9992e03c0df5f
|
7
|
+
data.tar.gz: 2844a996082155e4b9e5f3729c3594d64162ec8f5d4ecebee9fddac737e39e789af47136427b74942146a1c049bc87f769ccb32a098982b18ca8da51f57d3780
|
data/CHANGELOG.md
CHANGED
@@ -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.80.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.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.80.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-04-20 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.80.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:
|