google-apis-securitycenter_v1 0.96.0 → 0.97.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: '08209dac15680343c7dd408c65b3f7e813d5e98ca8203a77c19734371d50cb9c'
|
4
|
+
data.tar.gz: a1eb81d27af1aee37232ded5dc203db2d77d3642b1c5dcd7d60cc3b1a8b17323
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 49e11fc049cdc7fe98c37708c0a0d8366f9a68a9248f3f73c47b3ed8cd7d30e7f51f9cf82d2bbceb9ddf60380a3eb97093f4afca084e7db0376d73b62f0d7682
|
7
|
+
data.tar.gz: f4a4dd48e17121eceeb52e089dea55a88c343e5d6849891a5eabfcdc9a2a9d0f941835558bf71b3fb0baa2eaf04fb7be1fdf5250059398a0c5757f72b43036ca
|
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
|
@@ -2618,6 +2637,11 @@ module Google
|
|
2618
2637
|
# @return [Google::Apis::SecuritycenterV1::Access]
|
2619
2638
|
attr_accessor :access
|
2620
2639
|
|
2640
|
+
# Details about resources affected by this finding.
|
2641
|
+
# Corresponds to the JSON property `affectedResources`
|
2642
|
+
# @return [Google::Apis::SecuritycenterV1::AffectedResources]
|
2643
|
+
attr_accessor :affected_resources
|
2644
|
+
|
2621
2645
|
# Represents an application associated with a finding.
|
2622
2646
|
# Corresponds to the JSON property `application`
|
2623
2647
|
# @return [Google::Apis::SecuritycenterV1::Application]
|
@@ -2984,6 +3008,7 @@ module Google
|
|
2984
3008
|
# Update properties of this object
|
2985
3009
|
def update!(**args)
|
2986
3010
|
@access = args[:access] if args.key?(:access)
|
3011
|
+
@affected_resources = args[:affected_resources] if args.key?(:affected_resources)
|
2987
3012
|
@application = args[:application] if args.key?(:application)
|
2988
3013
|
@attack_exposure = args[:attack_exposure] if args.key?(:attack_exposure)
|
2989
3014
|
@backup_disaster_recovery = args[:backup_disaster_recovery] if args.key?(:backup_disaster_recovery)
|
@@ -4612,6 +4637,25 @@ module Google
|
|
4612
4637
|
end
|
4613
4638
|
end
|
4614
4639
|
|
4640
|
+
# Details about resources affected by this finding.
|
4641
|
+
class GoogleCloudSecuritycenterV2AffectedResources
|
4642
|
+
include Google::Apis::Core::Hashable
|
4643
|
+
|
4644
|
+
# The count of resources affected by the finding.
|
4645
|
+
# Corresponds to the JSON property `count`
|
4646
|
+
# @return [Fixnum]
|
4647
|
+
attr_accessor :count
|
4648
|
+
|
4649
|
+
def initialize(**args)
|
4650
|
+
update!(**args)
|
4651
|
+
end
|
4652
|
+
|
4653
|
+
# Update properties of this object
|
4654
|
+
def update!(**args)
|
4655
|
+
@count = args[:count] if args.key?(:count)
|
4656
|
+
end
|
4657
|
+
end
|
4658
|
+
|
4615
4659
|
# Allowed IP rule.
|
4616
4660
|
class GoogleCloudSecuritycenterV2Allowed
|
4617
4661
|
include Google::Apis::Core::Hashable
|
@@ -6358,6 +6402,11 @@ module Google
|
|
6358
6402
|
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Access]
|
6359
6403
|
attr_accessor :access
|
6360
6404
|
|
6405
|
+
# Details about resources affected by this finding.
|
6406
|
+
# Corresponds to the JSON property `affectedResources`
|
6407
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AffectedResources]
|
6408
|
+
attr_accessor :affected_resources
|
6409
|
+
|
6361
6410
|
# Represents an application associated with a finding.
|
6362
6411
|
# Corresponds to the JSON property `application`
|
6363
6412
|
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Application]
|
@@ -6738,6 +6787,7 @@ module Google
|
|
6738
6787
|
# Update properties of this object
|
6739
6788
|
def update!(**args)
|
6740
6789
|
@access = args[:access] if args.key?(:access)
|
6790
|
+
@affected_resources = args[:affected_resources] if args.key?(:affected_resources)
|
6741
6791
|
@application = args[:application] if args.key?(:application)
|
6742
6792
|
@attack_exposure = args[:attack_exposure] if args.key?(:attack_exposure)
|
6743
6793
|
@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 SecuritycenterV1
|
18
18
|
# Version of the google-apis-securitycenter_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.97.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
|
|
@@ -592,6 +598,12 @@ module Google
|
|
592
598
|
include Google::Apis::Core::JsonObjectSupport
|
593
599
|
end
|
594
600
|
|
601
|
+
class GoogleCloudSecuritycenterV2AffectedResources
|
602
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
603
|
+
|
604
|
+
include Google::Apis::Core::JsonObjectSupport
|
605
|
+
end
|
606
|
+
|
595
607
|
class GoogleCloudSecuritycenterV2Allowed
|
596
608
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
597
609
|
|
@@ -1849,6 +1861,13 @@ module Google
|
|
1849
1861
|
end
|
1850
1862
|
end
|
1851
1863
|
|
1864
|
+
class AffectedResources
|
1865
|
+
# @private
|
1866
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1867
|
+
property :count, :numeric_string => true, as: 'count'
|
1868
|
+
end
|
1869
|
+
end
|
1870
|
+
|
1852
1871
|
class Allowed
|
1853
1872
|
# @private
|
1854
1873
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2464,6 +2483,8 @@ module Google
|
|
2464
2483
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2465
2484
|
property :access, as: 'access', class: Google::Apis::SecuritycenterV1::Access, decorator: Google::Apis::SecuritycenterV1::Access::Representation
|
2466
2485
|
|
2486
|
+
property :affected_resources, as: 'affectedResources', class: Google::Apis::SecuritycenterV1::AffectedResources, decorator: Google::Apis::SecuritycenterV1::AffectedResources::Representation
|
2487
|
+
|
2467
2488
|
property :application, as: 'application', class: Google::Apis::SecuritycenterV1::Application, decorator: Google::Apis::SecuritycenterV1::Application::Representation
|
2468
2489
|
|
2469
2490
|
property :attack_exposure, as: 'attackExposure', class: Google::Apis::SecuritycenterV1::AttackExposure, decorator: Google::Apis::SecuritycenterV1::AttackExposure::Representation
|
@@ -2922,6 +2943,13 @@ module Google
|
|
2922
2943
|
end
|
2923
2944
|
end
|
2924
2945
|
|
2946
|
+
class GoogleCloudSecuritycenterV2AffectedResources
|
2947
|
+
# @private
|
2948
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2949
|
+
property :count, :numeric_string => true, as: 'count'
|
2950
|
+
end
|
2951
|
+
end
|
2952
|
+
|
2925
2953
|
class GoogleCloudSecuritycenterV2Allowed
|
2926
2954
|
# @private
|
2927
2955
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3377,6 +3405,8 @@ module Google
|
|
3377
3405
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3378
3406
|
property :access, as: 'access', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Access, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Access::Representation
|
3379
3407
|
|
3408
|
+
property :affected_resources, as: 'affectedResources', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AffectedResources, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AffectedResources::Representation
|
3409
|
+
|
3380
3410
|
property :application, as: 'application', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Application, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Application::Representation
|
3381
3411
|
|
3382
3412
|
property :attack_exposure, as: 'attackExposure', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AttackExposure, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AttackExposure::Representation
|
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.97.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_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.97.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:
|