google-apis-securitycenter_v1 0.98.0 → 0.100.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: ff402525a681a57f7543a1b9ab2c890fd6079e40f9ae64b117e598af276ebe4b
|
4
|
+
data.tar.gz: 7dcf3b0e5ca00f373ae7c8454820cec99fe22a34c6349904c37b3f9adcec64eb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 938cb0966c825091193f3341b712bbda5d211f8222a39df3dfe6af781b315e5b6e4c123f16fcfe06a2813c6de2243dadb7b53919e7e82d653f03e0ba76b8da65
|
7
|
+
data.tar.gz: e2dafd1f28cd2808a13be96f8bf99d43242e938ba33d8045a45e5ead4cd4a5d7abfa3b7937cd680138111f7e35c82ccf98bb08b000dbf19399e3e9c823caec1d
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-securitycenter_v1
|
2
2
|
|
3
|
+
### v0.100.0 (2025-05-21)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250519
|
6
|
+
|
7
|
+
### v0.99.0 (2025-05-18)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250509
|
10
|
+
* Regenerated using generator version 0.17.0
|
11
|
+
|
3
12
|
### v0.98.0 (2025-04-20)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20250411
|
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
|
|
@@ -1672,7 +1672,7 @@ module Google
|
|
1672
1672
|
class CustomModuleValidationErrors
|
1673
1673
|
include Google::Apis::Core::Hashable
|
1674
1674
|
|
1675
|
-
#
|
1675
|
+
# The list of errors.
|
1676
1676
|
# Corresponds to the JSON property `errors`
|
1677
1677
|
# @return [Array<Google::Apis::SecuritycenterV1::CustomModuleValidationError>]
|
1678
1678
|
attr_accessor :errors
|
@@ -2525,6 +2525,11 @@ module Google
|
|
2525
2525
|
# @return [Fixnum]
|
2526
2526
|
attr_accessor :hashed_size
|
2527
2527
|
|
2528
|
+
# Operation(s) performed on a file.
|
2529
|
+
# Corresponds to the JSON property `operations`
|
2530
|
+
# @return [Array<Google::Apis::SecuritycenterV1::FileOperation>]
|
2531
|
+
attr_accessor :operations
|
2532
|
+
|
2528
2533
|
# True when the hash covers only a prefix of the file.
|
2529
2534
|
# Corresponds to the JSON property `partiallyHashed`
|
2530
2535
|
# @return [Boolean]
|
@@ -2556,6 +2561,7 @@ module Google
|
|
2556
2561
|
@contents = args[:contents] if args.key?(:contents)
|
2557
2562
|
@disk_path = args[:disk_path] if args.key?(:disk_path)
|
2558
2563
|
@hashed_size = args[:hashed_size] if args.key?(:hashed_size)
|
2564
|
+
@operations = args[:operations] if args.key?(:operations)
|
2559
2565
|
@partially_hashed = args[:partially_hashed] if args.key?(:partially_hashed)
|
2560
2566
|
@path = args[:path] if args.key?(:path)
|
2561
2567
|
@sha256 = args[:sha256] if args.key?(:sha256)
|
@@ -2563,6 +2569,25 @@ module Google
|
|
2563
2569
|
end
|
2564
2570
|
end
|
2565
2571
|
|
2572
|
+
# Operation(s) performed on a file.
|
2573
|
+
class FileOperation
|
2574
|
+
include Google::Apis::Core::Hashable
|
2575
|
+
|
2576
|
+
# The type of the operation
|
2577
|
+
# Corresponds to the JSON property `type`
|
2578
|
+
# @return [String]
|
2579
|
+
attr_accessor :type
|
2580
|
+
|
2581
|
+
def initialize(**args)
|
2582
|
+
update!(**args)
|
2583
|
+
end
|
2584
|
+
|
2585
|
+
# Update properties of this object
|
2586
|
+
def update!(**args)
|
2587
|
+
@type = args[:type] if args.key?(:type)
|
2588
|
+
end
|
2589
|
+
end
|
2590
|
+
|
2566
2591
|
# Security Command Center finding. A finding is a record of assessment data like
|
2567
2592
|
# security, risk, health, or privacy, that is ingested into Security Command
|
2568
2593
|
# Center for presentation, notification, analysis, policy testing, and
|
@@ -6290,6 +6315,11 @@ module Google
|
|
6290
6315
|
# @return [Fixnum]
|
6291
6316
|
attr_accessor :hashed_size
|
6292
6317
|
|
6318
|
+
# Operation(s) performed on a file.
|
6319
|
+
# Corresponds to the JSON property `operations`
|
6320
|
+
# @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2FileOperation>]
|
6321
|
+
attr_accessor :operations
|
6322
|
+
|
6293
6323
|
# True when the hash covers only a prefix of the file.
|
6294
6324
|
# Corresponds to the JSON property `partiallyHashed`
|
6295
6325
|
# @return [Boolean]
|
@@ -6321,6 +6351,7 @@ module Google
|
|
6321
6351
|
@contents = args[:contents] if args.key?(:contents)
|
6322
6352
|
@disk_path = args[:disk_path] if args.key?(:disk_path)
|
6323
6353
|
@hashed_size = args[:hashed_size] if args.key?(:hashed_size)
|
6354
|
+
@operations = args[:operations] if args.key?(:operations)
|
6324
6355
|
@partially_hashed = args[:partially_hashed] if args.key?(:partially_hashed)
|
6325
6356
|
@path = args[:path] if args.key?(:path)
|
6326
6357
|
@sha256 = args[:sha256] if args.key?(:sha256)
|
@@ -6328,6 +6359,25 @@ module Google
|
|
6328
6359
|
end
|
6329
6360
|
end
|
6330
6361
|
|
6362
|
+
# Operation(s) performed on a file.
|
6363
|
+
class GoogleCloudSecuritycenterV2FileOperation
|
6364
|
+
include Google::Apis::Core::Hashable
|
6365
|
+
|
6366
|
+
# The type of the operation
|
6367
|
+
# Corresponds to the JSON property `type`
|
6368
|
+
# @return [String]
|
6369
|
+
attr_accessor :type
|
6370
|
+
|
6371
|
+
def initialize(**args)
|
6372
|
+
update!(**args)
|
6373
|
+
end
|
6374
|
+
|
6375
|
+
# Update properties of this object
|
6376
|
+
def update!(**args)
|
6377
|
+
@type = args[:type] if args.key?(:type)
|
6378
|
+
end
|
6379
|
+
end
|
6380
|
+
|
6331
6381
|
# Security Command Center finding. A finding is a record of assessment data like
|
6332
6382
|
# security, risk, health, or privacy, that is ingested into Security Command
|
6333
6383
|
# Center for presentation, notification, analysis, policy testing, and
|
@@ -11168,12 +11218,12 @@ module Google
|
|
11168
11218
|
class Position
|
11169
11219
|
include Google::Apis::Core::Hashable
|
11170
11220
|
|
11171
|
-
#
|
11221
|
+
# The column number.
|
11172
11222
|
# Corresponds to the JSON property `columnNumber`
|
11173
11223
|
# @return [Fixnum]
|
11174
11224
|
attr_accessor :column_number
|
11175
11225
|
|
11176
|
-
#
|
11226
|
+
# The line number.
|
11177
11227
|
# Corresponds to the JSON property `lineNumber`
|
11178
11228
|
# @return [Fixnum]
|
11179
11229
|
attr_accessor :line_number
|
@@ -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.100.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 = "20250519"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -400,6 +400,12 @@ module Google
|
|
400
400
|
include Google::Apis::Core::JsonObjectSupport
|
401
401
|
end
|
402
402
|
|
403
|
+
class FileOperation
|
404
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
405
|
+
|
406
|
+
include Google::Apis::Core::JsonObjectSupport
|
407
|
+
end
|
408
|
+
|
403
409
|
class Finding
|
404
410
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
405
411
|
|
@@ -862,6 +868,12 @@ module Google
|
|
862
868
|
include Google::Apis::Core::JsonObjectSupport
|
863
869
|
end
|
864
870
|
|
871
|
+
class GoogleCloudSecuritycenterV2FileOperation
|
872
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
873
|
+
|
874
|
+
include Google::Apis::Core::JsonObjectSupport
|
875
|
+
end
|
876
|
+
|
865
877
|
class GoogleCloudSecuritycenterV2Finding
|
866
878
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
867
879
|
|
@@ -2451,6 +2463,8 @@ module Google
|
|
2451
2463
|
property :disk_path, as: 'diskPath', class: Google::Apis::SecuritycenterV1::DiskPath, decorator: Google::Apis::SecuritycenterV1::DiskPath::Representation
|
2452
2464
|
|
2453
2465
|
property :hashed_size, :numeric_string => true, as: 'hashedSize'
|
2466
|
+
collection :operations, as: 'operations', class: Google::Apis::SecuritycenterV1::FileOperation, decorator: Google::Apis::SecuritycenterV1::FileOperation::Representation
|
2467
|
+
|
2454
2468
|
property :partially_hashed, as: 'partiallyHashed'
|
2455
2469
|
property :path, as: 'path'
|
2456
2470
|
property :sha256, as: 'sha256'
|
@@ -2458,6 +2472,13 @@ module Google
|
|
2458
2472
|
end
|
2459
2473
|
end
|
2460
2474
|
|
2475
|
+
class FileOperation
|
2476
|
+
# @private
|
2477
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2478
|
+
property :type, as: 'type'
|
2479
|
+
end
|
2480
|
+
end
|
2481
|
+
|
2461
2482
|
class Finding
|
2462
2483
|
# @private
|
2463
2484
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3373,6 +3394,8 @@ module Google
|
|
3373
3394
|
property :disk_path, as: 'diskPath', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2DiskPath, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2DiskPath::Representation
|
3374
3395
|
|
3375
3396
|
property :hashed_size, :numeric_string => true, as: 'hashedSize'
|
3397
|
+
collection :operations, as: 'operations', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2FileOperation, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2FileOperation::Representation
|
3398
|
+
|
3376
3399
|
property :partially_hashed, as: 'partiallyHashed'
|
3377
3400
|
property :path, as: 'path'
|
3378
3401
|
property :sha256, as: 'sha256'
|
@@ -3380,6 +3403,13 @@ module Google
|
|
3380
3403
|
end
|
3381
3404
|
end
|
3382
3405
|
|
3406
|
+
class GoogleCloudSecuritycenterV2FileOperation
|
3407
|
+
# @private
|
3408
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3409
|
+
property :type, as: 'type'
|
3410
|
+
end
|
3411
|
+
end
|
3412
|
+
|
3383
3413
|
class GoogleCloudSecuritycenterV2Finding
|
3384
3414
|
# @private
|
3385
3415
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.100.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_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.100.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1
|
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.9
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Security Command Center API V1
|
79
79
|
test_files: []
|