google-apis-securitycenter_v1beta1 0.86.0 → 0.87.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: 1301015027643a073924c00adfb1c87a37aa2b2e3b7f1f21d810a26363a2733f
|
4
|
+
data.tar.gz: adc217cc6a64a2221df12948f5fe0fea2616395eebbbbcbb059b5a0c316c935c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d4b0a07574ebc083a91e5484cd58aad7062e21cd5faa0a1df1b35629a9281a53a0cf3f0b6dbddece09653c99be6c990236a1c5c7f8286de5e74c8191b8a7ad20
|
7
|
+
data.tar.gz: 2d500a2b4db9b438fe957e8bc7a677cb1d698872e6e0e552d2258595fcfadbacb1366a2e3391bcc5a58348bf4c84eb29789eb4765f06f89cc65c0611dd67c16b
|
data/CHANGELOG.md
CHANGED
@@ -211,6 +211,25 @@ module Google
|
|
211
211
|
end
|
212
212
|
end
|
213
213
|
|
214
|
+
# Details about resources affected by this finding.
|
215
|
+
class AffectedResources
|
216
|
+
include Google::Apis::Core::Hashable
|
217
|
+
|
218
|
+
# The count of resources affected by the finding.
|
219
|
+
# Corresponds to the JSON property `count`
|
220
|
+
# @return [Fixnum]
|
221
|
+
attr_accessor :count
|
222
|
+
|
223
|
+
def initialize(**args)
|
224
|
+
update!(**args)
|
225
|
+
end
|
226
|
+
|
227
|
+
# Update properties of this object
|
228
|
+
def update!(**args)
|
229
|
+
@count = args[:count] if args.key?(:count)
|
230
|
+
end
|
231
|
+
end
|
232
|
+
|
214
233
|
# Allowed IP rule.
|
215
234
|
class Allowed
|
216
235
|
include Google::Apis::Core::Hashable
|
@@ -2135,6 +2154,11 @@ module Google
|
|
2135
2154
|
# @return [Google::Apis::SecuritycenterV1beta1::Access]
|
2136
2155
|
attr_accessor :access
|
2137
2156
|
|
2157
|
+
# Details about resources affected by this finding.
|
2158
|
+
# Corresponds to the JSON property `affectedResources`
|
2159
|
+
# @return [Google::Apis::SecuritycenterV1beta1::AffectedResources]
|
2160
|
+
attr_accessor :affected_resources
|
2161
|
+
|
2138
2162
|
# Represents an application associated with a finding.
|
2139
2163
|
# Corresponds to the JSON property `application`
|
2140
2164
|
# @return [Google::Apis::SecuritycenterV1beta1::Application]
|
@@ -2501,6 +2525,7 @@ module Google
|
|
2501
2525
|
# Update properties of this object
|
2502
2526
|
def update!(**args)
|
2503
2527
|
@access = args[:access] if args.key?(:access)
|
2528
|
+
@affected_resources = args[:affected_resources] if args.key?(:affected_resources)
|
2504
2529
|
@application = args[:application] if args.key?(:application)
|
2505
2530
|
@attack_exposure = args[:attack_exposure] if args.key?(:attack_exposure)
|
2506
2531
|
@backup_disaster_recovery = args[:backup_disaster_recovery] if args.key?(:backup_disaster_recovery)
|
@@ -4262,6 +4287,25 @@ module Google
|
|
4262
4287
|
end
|
4263
4288
|
end
|
4264
4289
|
|
4290
|
+
# Details about resources affected by this finding.
|
4291
|
+
class GoogleCloudSecuritycenterV2AffectedResources
|
4292
|
+
include Google::Apis::Core::Hashable
|
4293
|
+
|
4294
|
+
# The count of resources affected by the finding.
|
4295
|
+
# Corresponds to the JSON property `count`
|
4296
|
+
# @return [Fixnum]
|
4297
|
+
attr_accessor :count
|
4298
|
+
|
4299
|
+
def initialize(**args)
|
4300
|
+
update!(**args)
|
4301
|
+
end
|
4302
|
+
|
4303
|
+
# Update properties of this object
|
4304
|
+
def update!(**args)
|
4305
|
+
@count = args[:count] if args.key?(:count)
|
4306
|
+
end
|
4307
|
+
end
|
4308
|
+
|
4265
4309
|
# Allowed IP rule.
|
4266
4310
|
class GoogleCloudSecuritycenterV2Allowed
|
4267
4311
|
include Google::Apis::Core::Hashable
|
@@ -6008,6 +6052,11 @@ module Google
|
|
6008
6052
|
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Access]
|
6009
6053
|
attr_accessor :access
|
6010
6054
|
|
6055
|
+
# Details about resources affected by this finding.
|
6056
|
+
# Corresponds to the JSON property `affectedResources`
|
6057
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AffectedResources]
|
6058
|
+
attr_accessor :affected_resources
|
6059
|
+
|
6011
6060
|
# Represents an application associated with a finding.
|
6012
6061
|
# Corresponds to the JSON property `application`
|
6013
6062
|
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Application]
|
@@ -6388,6 +6437,7 @@ module Google
|
|
6388
6437
|
# Update properties of this object
|
6389
6438
|
def update!(**args)
|
6390
6439
|
@access = args[:access] if args.key?(:access)
|
6440
|
+
@affected_resources = args[:affected_resources] if args.key?(:affected_resources)
|
6391
6441
|
@application = args[:application] if args.key?(:application)
|
6392
6442
|
@attack_exposure = args[:attack_exposure] if args.key?(:attack_exposure)
|
6393
6443
|
@backup_disaster_recovery = args[:backup_disaster_recovery] if args.key?(:backup_disaster_recovery)
|
@@ -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.87.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 = "20250326"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -40,6 +40,12 @@ module Google
|
|
40
40
|
include Google::Apis::Core::JsonObjectSupport
|
41
41
|
end
|
42
42
|
|
43
|
+
class AffectedResources
|
44
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
|
+
|
46
|
+
include Google::Apis::Core::JsonObjectSupport
|
47
|
+
end
|
48
|
+
|
43
49
|
class Allowed
|
44
50
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
51
|
|
@@ -538,6 +544,12 @@ module Google
|
|
538
544
|
include Google::Apis::Core::JsonObjectSupport
|
539
545
|
end
|
540
546
|
|
547
|
+
class GoogleCloudSecuritycenterV2AffectedResources
|
548
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
549
|
+
|
550
|
+
include Google::Apis::Core::JsonObjectSupport
|
551
|
+
end
|
552
|
+
|
541
553
|
class GoogleCloudSecuritycenterV2Allowed
|
542
554
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
543
555
|
|
@@ -1621,6 +1633,13 @@ module Google
|
|
1621
1633
|
end
|
1622
1634
|
end
|
1623
1635
|
|
1636
|
+
class AffectedResources
|
1637
|
+
# @private
|
1638
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1639
|
+
property :count, :numeric_string => true, as: 'count'
|
1640
|
+
end
|
1641
|
+
end
|
1642
|
+
|
1624
1643
|
class Allowed
|
1625
1644
|
# @private
|
1626
1645
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2111,6 +2130,8 @@ module Google
|
|
2111
2130
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2112
2131
|
property :access, as: 'access', class: Google::Apis::SecuritycenterV1beta1::Access, decorator: Google::Apis::SecuritycenterV1beta1::Access::Representation
|
2113
2132
|
|
2133
|
+
property :affected_resources, as: 'affectedResources', class: Google::Apis::SecuritycenterV1beta1::AffectedResources, decorator: Google::Apis::SecuritycenterV1beta1::AffectedResources::Representation
|
2134
|
+
|
2114
2135
|
property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta1::Application, decorator: Google::Apis::SecuritycenterV1beta1::Application::Representation
|
2115
2136
|
|
2116
2137
|
property :attack_exposure, as: 'attackExposure', class: Google::Apis::SecuritycenterV1beta1::AttackExposure, decorator: Google::Apis::SecuritycenterV1beta1::AttackExposure::Representation
|
@@ -2594,6 +2615,13 @@ module Google
|
|
2594
2615
|
end
|
2595
2616
|
end
|
2596
2617
|
|
2618
|
+
class GoogleCloudSecuritycenterV2AffectedResources
|
2619
|
+
# @private
|
2620
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2621
|
+
property :count, :numeric_string => true, as: 'count'
|
2622
|
+
end
|
2623
|
+
end
|
2624
|
+
|
2597
2625
|
class GoogleCloudSecuritycenterV2Allowed
|
2598
2626
|
# @private
|
2599
2627
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3049,6 +3077,8 @@ module Google
|
|
3049
3077
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3050
3078
|
property :access, as: 'access', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Access, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Access::Representation
|
3051
3079
|
|
3080
|
+
property :affected_resources, as: 'affectedResources', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AffectedResources, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AffectedResources::Representation
|
3081
|
+
|
3052
3082
|
property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Application, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Application::Representation
|
3053
3083
|
|
3054
3084
|
property :attack_exposure, as: 'attackExposure', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AttackExposure, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AttackExposure::Representation
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.87.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-30 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_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.87.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:
|