google-apis-securitycenter_v1beta1 0.89.0 → 0.90.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: 153d6232dfa0d962dfda52a36ac8576da9a0773b629aa1b71b69dbc2027301ea
|
4
|
+
data.tar.gz: dc83b2346a418024d26b22fbf71143eb4eb8b473012442e6ebc86a29e0426b10
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 276feed495af15ae40524c8b19931794d201d9708b28e9283e3811e0ae8c99140c893fa2e09c64d54ebc8a3f4abc1dca235fb6939dd85e4447b55178530d0676
|
7
|
+
data.tar.gz: 15caf0c51dcde26ce37b53a2397130a1db64e25c6ee6cd4741e55d9bd9e6219f85034e62858921fb5ec8d3e8b1e0dde454edf55829ef9922057c19d2a12b3d0d
|
data/CHANGELOG.md
CHANGED
@@ -2042,6 +2042,11 @@ module Google
|
|
2042
2042
|
# @return [Fixnum]
|
2043
2043
|
attr_accessor :hashed_size
|
2044
2044
|
|
2045
|
+
# Operation(s) performed on a file.
|
2046
|
+
# Corresponds to the JSON property `operations`
|
2047
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::FileOperation>]
|
2048
|
+
attr_accessor :operations
|
2049
|
+
|
2045
2050
|
# True when the hash covers only a prefix of the file.
|
2046
2051
|
# Corresponds to the JSON property `partiallyHashed`
|
2047
2052
|
# @return [Boolean]
|
@@ -2073,6 +2078,7 @@ module Google
|
|
2073
2078
|
@contents = args[:contents] if args.key?(:contents)
|
2074
2079
|
@disk_path = args[:disk_path] if args.key?(:disk_path)
|
2075
2080
|
@hashed_size = args[:hashed_size] if args.key?(:hashed_size)
|
2081
|
+
@operations = args[:operations] if args.key?(:operations)
|
2076
2082
|
@partially_hashed = args[:partially_hashed] if args.key?(:partially_hashed)
|
2077
2083
|
@path = args[:path] if args.key?(:path)
|
2078
2084
|
@sha256 = args[:sha256] if args.key?(:sha256)
|
@@ -2080,6 +2086,25 @@ module Google
|
|
2080
2086
|
end
|
2081
2087
|
end
|
2082
2088
|
|
2089
|
+
# Operation(s) performed on a file.
|
2090
|
+
class FileOperation
|
2091
|
+
include Google::Apis::Core::Hashable
|
2092
|
+
|
2093
|
+
# The type of the operation
|
2094
|
+
# Corresponds to the JSON property `type`
|
2095
|
+
# @return [String]
|
2096
|
+
attr_accessor :type
|
2097
|
+
|
2098
|
+
def initialize(**args)
|
2099
|
+
update!(**args)
|
2100
|
+
end
|
2101
|
+
|
2102
|
+
# Update properties of this object
|
2103
|
+
def update!(**args)
|
2104
|
+
@type = args[:type] if args.key?(:type)
|
2105
|
+
end
|
2106
|
+
end
|
2107
|
+
|
2083
2108
|
# Security Command Center finding. A finding is a record of assessment data like
|
2084
2109
|
# security, risk, health, or privacy, that is ingested into Security Command
|
2085
2110
|
# Center for presentation, notification, analysis, policy testing, and
|
@@ -5940,6 +5965,11 @@ module Google
|
|
5940
5965
|
# @return [Fixnum]
|
5941
5966
|
attr_accessor :hashed_size
|
5942
5967
|
|
5968
|
+
# Operation(s) performed on a file.
|
5969
|
+
# Corresponds to the JSON property `operations`
|
5970
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2FileOperation>]
|
5971
|
+
attr_accessor :operations
|
5972
|
+
|
5943
5973
|
# True when the hash covers only a prefix of the file.
|
5944
5974
|
# Corresponds to the JSON property `partiallyHashed`
|
5945
5975
|
# @return [Boolean]
|
@@ -5971,6 +6001,7 @@ module Google
|
|
5971
6001
|
@contents = args[:contents] if args.key?(:contents)
|
5972
6002
|
@disk_path = args[:disk_path] if args.key?(:disk_path)
|
5973
6003
|
@hashed_size = args[:hashed_size] if args.key?(:hashed_size)
|
6004
|
+
@operations = args[:operations] if args.key?(:operations)
|
5974
6005
|
@partially_hashed = args[:partially_hashed] if args.key?(:partially_hashed)
|
5975
6006
|
@path = args[:path] if args.key?(:path)
|
5976
6007
|
@sha256 = args[:sha256] if args.key?(:sha256)
|
@@ -5978,6 +6009,25 @@ module Google
|
|
5978
6009
|
end
|
5979
6010
|
end
|
5980
6011
|
|
6012
|
+
# Operation(s) performed on a file.
|
6013
|
+
class GoogleCloudSecuritycenterV2FileOperation
|
6014
|
+
include Google::Apis::Core::Hashable
|
6015
|
+
|
6016
|
+
# The type of the operation
|
6017
|
+
# Corresponds to the JSON property `type`
|
6018
|
+
# @return [String]
|
6019
|
+
attr_accessor :type
|
6020
|
+
|
6021
|
+
def initialize(**args)
|
6022
|
+
update!(**args)
|
6023
|
+
end
|
6024
|
+
|
6025
|
+
# Update properties of this object
|
6026
|
+
def update!(**args)
|
6027
|
+
@type = args[:type] if args.key?(:type)
|
6028
|
+
end
|
6029
|
+
end
|
6030
|
+
|
5981
6031
|
# Security Command Center finding. A finding is a record of assessment data like
|
5982
6032
|
# security, risk, health, or privacy, that is ingested into Security Command
|
5983
6033
|
# Center for presentation, notification, analysis, policy testing, and
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.90.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.17.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250519"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -334,6 +334,12 @@ module Google
|
|
334
334
|
include Google::Apis::Core::JsonObjectSupport
|
335
335
|
end
|
336
336
|
|
337
|
+
class FileOperation
|
338
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
|
+
|
340
|
+
include Google::Apis::Core::JsonObjectSupport
|
341
|
+
end
|
342
|
+
|
337
343
|
class Finding
|
338
344
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
345
|
|
@@ -808,6 +814,12 @@ module Google
|
|
808
814
|
include Google::Apis::Core::JsonObjectSupport
|
809
815
|
end
|
810
816
|
|
817
|
+
class GoogleCloudSecuritycenterV2FileOperation
|
818
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
819
|
+
|
820
|
+
include Google::Apis::Core::JsonObjectSupport
|
821
|
+
end
|
822
|
+
|
811
823
|
class GoogleCloudSecuritycenterV2Finding
|
812
824
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
813
825
|
|
@@ -2098,6 +2110,8 @@ module Google
|
|
2098
2110
|
property :disk_path, as: 'diskPath', class: Google::Apis::SecuritycenterV1beta1::DiskPath, decorator: Google::Apis::SecuritycenterV1beta1::DiskPath::Representation
|
2099
2111
|
|
2100
2112
|
property :hashed_size, :numeric_string => true, as: 'hashedSize'
|
2113
|
+
collection :operations, as: 'operations', class: Google::Apis::SecuritycenterV1beta1::FileOperation, decorator: Google::Apis::SecuritycenterV1beta1::FileOperation::Representation
|
2114
|
+
|
2101
2115
|
property :partially_hashed, as: 'partiallyHashed'
|
2102
2116
|
property :path, as: 'path'
|
2103
2117
|
property :sha256, as: 'sha256'
|
@@ -2105,6 +2119,13 @@ module Google
|
|
2105
2119
|
end
|
2106
2120
|
end
|
2107
2121
|
|
2122
|
+
class FileOperation
|
2123
|
+
# @private
|
2124
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2125
|
+
property :type, as: 'type'
|
2126
|
+
end
|
2127
|
+
end
|
2128
|
+
|
2108
2129
|
class Finding
|
2109
2130
|
# @private
|
2110
2131
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3045,6 +3066,8 @@ module Google
|
|
3045
3066
|
property :disk_path, as: 'diskPath', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2DiskPath, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2DiskPath::Representation
|
3046
3067
|
|
3047
3068
|
property :hashed_size, :numeric_string => true, as: 'hashedSize'
|
3069
|
+
collection :operations, as: 'operations', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2FileOperation, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2FileOperation::Representation
|
3070
|
+
|
3048
3071
|
property :partially_hashed, as: 'partiallyHashed'
|
3049
3072
|
property :path, as: 'path'
|
3050
3073
|
property :sha256, as: 'sha256'
|
@@ -3052,6 +3075,13 @@ module Google
|
|
3052
3075
|
end
|
3053
3076
|
end
|
3054
3077
|
|
3078
|
+
class GoogleCloudSecuritycenterV2FileOperation
|
3079
|
+
# @private
|
3080
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3081
|
+
property :type, as: 'type'
|
3082
|
+
end
|
3083
|
+
end
|
3084
|
+
|
3055
3085
|
class GoogleCloudSecuritycenterV2Finding
|
3056
3086
|
# @private
|
3057
3087
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-securitycenter_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.90.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -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_v1beta1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.90.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.9
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Security Command Center API V1beta1
|
79
79
|
test_files: []
|