google-apis-securitycenter_v1beta1 0.85.0 → 0.86.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: 6e2bae01f1bcdbde8f40672207520e77f948f97e5abb0a81f086bd1fcdac5222
4
- data.tar.gz: 80e14b19e24f2c8be915c189fb725b3164a314177a5f4e449e0e832e02861bd0
3
+ metadata.gz: 6e0a77ff47d58634a344a4d5899edb53ceac68cfcbdc81c145b536f060e22fc6
4
+ data.tar.gz: a624db05cbcdc755e1b01ebee362a580f81e1c710eb0bc2ead8243deaaf7f004
5
5
  SHA512:
6
- metadata.gz: f19343830e8b06e02053d06353ead4f818b4f4af921a45319841b3ab63fb7420ebcdd800e43114c4d2d6fd8c72a6ac2375bd9c75274f94cbddbcde66869efc29
7
- data.tar.gz: ea1cf1fb4e894a6e7315b8a293af871c66c25ce37ee067614858e6012d85659738db8a576b956aa0bb9270d5c0167d743b4bac605fd000f6224856bdfbbc27e0
6
+ metadata.gz: b19ba3ff872a0b32402181ea3f08a1bc67b121a619f5ee199912faa061c7fcc0678fea864e4c09308ffb15c9f10e7591e260fdcee0f6dbc4d507c5a2d7717828
7
+ data.tar.gz: f0e3e4ffa9902eb878510a891f7aca5837c38e3eab37d327eefd95e5d721c7ae84aab63d2bde1d6080be56ee1335981352ef4f2b86d53265d25a76bb382de8e4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-securitycenter_v1beta1
2
2
 
3
+ ### v0.86.0 (2025-03-23)
4
+
5
+ * Regenerated from discovery document revision 20250315
6
+
3
7
  ### v0.85.0 (2025-03-16)
4
8
 
5
9
  * Regenerated from discovery document revision 20250308
@@ -989,6 +989,30 @@ module Google
989
989
  end
990
990
  end
991
991
 
992
+ # Contains details about a chokepoint, which is a resource or resource group
993
+ # where high-risk attack paths converge, based on [attack path simulations] (
994
+ # https://cloud.google.com/security-command-center/docs/attack-exposure-learn#
995
+ # attack_path_simulations).
996
+ class Chokepoint
997
+ include Google::Apis::Core::Hashable
998
+
999
+ # List of resource names of findings associated with this chokepoint. For
1000
+ # example, organizations/123/sources/456/findings/789. This list will have at
1001
+ # most 100 findings.
1002
+ # Corresponds to the JSON property `relatedFindings`
1003
+ # @return [Array<String>]
1004
+ attr_accessor :related_findings
1005
+
1006
+ def initialize(**args)
1007
+ update!(**args)
1008
+ end
1009
+
1010
+ # Update properties of this object
1011
+ def update!(**args)
1012
+ @related_findings = args[:related_findings] if args.key?(:related_findings)
1013
+ end
1014
+ end
1015
+
992
1016
  # Fields related to Google Cloud Armor findings.
993
1017
  class CloudArmor
994
1018
  include Google::Apis::Core::Hashable
@@ -2141,6 +2165,14 @@ module Google
2141
2165
  # @return [String]
2142
2166
  attr_accessor :category
2143
2167
 
2168
+ # Contains details about a chokepoint, which is a resource or resource group
2169
+ # where high-risk attack paths converge, based on [attack path simulations] (
2170
+ # https://cloud.google.com/security-command-center/docs/attack-exposure-learn#
2171
+ # attack_path_simulations).
2172
+ # Corresponds to the JSON property `chokepoint`
2173
+ # @return [Google::Apis::SecuritycenterV1beta1::Chokepoint]
2174
+ attr_accessor :chokepoint
2175
+
2144
2176
  # Fields related to Google Cloud Armor findings.
2145
2177
  # Corresponds to the JSON property `cloudArmor`
2146
2178
  # @return [Google::Apis::SecuritycenterV1beta1::CloudArmor]
@@ -2474,6 +2506,7 @@ module Google
2474
2506
  @backup_disaster_recovery = args[:backup_disaster_recovery] if args.key?(:backup_disaster_recovery)
2475
2507
  @canonical_name = args[:canonical_name] if args.key?(:canonical_name)
2476
2508
  @category = args[:category] if args.key?(:category)
2509
+ @chokepoint = args[:chokepoint] if args.key?(:chokepoint)
2477
2510
  @cloud_armor = args[:cloud_armor] if args.key?(:cloud_armor)
2478
2511
  @cloud_dlp_data_profile = args[:cloud_dlp_data_profile] if args.key?(:cloud_dlp_data_profile)
2479
2512
  @cloud_dlp_inspection = args[:cloud_dlp_inspection] if args.key?(:cloud_dlp_inspection)
@@ -4871,6 +4904,30 @@ module Google
4871
4904
  end
4872
4905
  end
4873
4906
 
4907
+ # Contains details about a chokepoint, which is a resource or resource group
4908
+ # where high-risk attack paths converge, based on [attack path simulations] (
4909
+ # https://cloud.google.com/security-command-center/docs/attack-exposure-learn#
4910
+ # attack_path_simulations).
4911
+ class GoogleCloudSecuritycenterV2Chokepoint
4912
+ include Google::Apis::Core::Hashable
4913
+
4914
+ # List of resource names of findings associated with this chokepoint. For
4915
+ # example, organizations/123/sources/456/findings/789. This list will have at
4916
+ # most 100 findings.
4917
+ # Corresponds to the JSON property `relatedFindings`
4918
+ # @return [Array<String>]
4919
+ attr_accessor :related_findings
4920
+
4921
+ def initialize(**args)
4922
+ update!(**args)
4923
+ end
4924
+
4925
+ # Update properties of this object
4926
+ def update!(**args)
4927
+ @related_findings = args[:related_findings] if args.key?(:related_findings)
4928
+ end
4929
+ end
4930
+
4874
4931
  # Fields related to Google Cloud Armor findings.
4875
4932
  class GoogleCloudSecuritycenterV2CloudArmor
4876
4933
  include Google::Apis::Core::Hashable
@@ -5985,6 +6042,14 @@ module Google
5985
6042
  # @return [String]
5986
6043
  attr_accessor :category
5987
6044
 
6045
+ # Contains details about a chokepoint, which is a resource or resource group
6046
+ # where high-risk attack paths converge, based on [attack path simulations] (
6047
+ # https://cloud.google.com/security-command-center/docs/attack-exposure-learn#
6048
+ # attack_path_simulations).
6049
+ # Corresponds to the JSON property `chokepoint`
6050
+ # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Chokepoint]
6051
+ attr_accessor :chokepoint
6052
+
5988
6053
  # Fields related to Google Cloud Armor findings.
5989
6054
  # Corresponds to the JSON property `cloudArmor`
5990
6055
  # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2CloudArmor]
@@ -6328,6 +6393,7 @@ module Google
6328
6393
  @backup_disaster_recovery = args[:backup_disaster_recovery] if args.key?(:backup_disaster_recovery)
6329
6394
  @canonical_name = args[:canonical_name] if args.key?(:canonical_name)
6330
6395
  @category = args[:category] if args.key?(:category)
6396
+ @chokepoint = args[:chokepoint] if args.key?(:chokepoint)
6331
6397
  @cloud_armor = args[:cloud_armor] if args.key?(:cloud_armor)
6332
6398
  @cloud_dlp_data_profile = args[:cloud_dlp_data_profile] if args.key?(:cloud_dlp_data_profile)
6333
6399
  @cloud_dlp_inspection = args[:cloud_dlp_inspection] if args.key?(:cloud_dlp_inspection)
@@ -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.85.0"
19
+ GEM_VERSION = "0.86.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 = "20250308"
25
+ REVISION = "20250315"
26
26
  end
27
27
  end
28
28
  end
@@ -160,6 +160,12 @@ module Google
160
160
  include Google::Apis::Core::JsonObjectSupport
161
161
  end
162
162
 
163
+ class Chokepoint
164
+ class Representation < Google::Apis::Core::JsonRepresentation; end
165
+
166
+ include Google::Apis::Core::JsonObjectSupport
167
+ end
168
+
163
169
  class CloudArmor
164
170
  class Representation < Google::Apis::Core::JsonRepresentation; end
165
171
 
@@ -634,6 +640,12 @@ module Google
634
640
  include Google::Apis::Core::JsonObjectSupport
635
641
  end
636
642
 
643
+ class GoogleCloudSecuritycenterV2Chokepoint
644
+ class Representation < Google::Apis::Core::JsonRepresentation; end
645
+
646
+ include Google::Apis::Core::JsonObjectSupport
647
+ end
648
+
637
649
  class GoogleCloudSecuritycenterV2CloudArmor
638
650
  class Representation < Google::Apis::Core::JsonRepresentation; end
639
651
 
@@ -1801,6 +1813,13 @@ module Google
1801
1813
  end
1802
1814
  end
1803
1815
 
1816
+ class Chokepoint
1817
+ # @private
1818
+ class Representation < Google::Apis::Core::JsonRepresentation
1819
+ collection :related_findings, as: 'relatedFindings'
1820
+ end
1821
+ end
1822
+
1804
1823
  class CloudArmor
1805
1824
  # @private
1806
1825
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2100,6 +2119,8 @@ module Google
2100
2119
 
2101
2120
  property :canonical_name, as: 'canonicalName'
2102
2121
  property :category, as: 'category'
2122
+ property :chokepoint, as: 'chokepoint', class: Google::Apis::SecuritycenterV1beta1::Chokepoint, decorator: Google::Apis::SecuritycenterV1beta1::Chokepoint::Representation
2123
+
2103
2124
  property :cloud_armor, as: 'cloudArmor', class: Google::Apis::SecuritycenterV1beta1::CloudArmor, decorator: Google::Apis::SecuritycenterV1beta1::CloudArmor::Representation
2104
2125
 
2105
2126
  property :cloud_dlp_data_profile, as: 'cloudDlpDataProfile', class: Google::Apis::SecuritycenterV1beta1::CloudDlpDataProfile, decorator: Google::Apis::SecuritycenterV1beta1::CloudDlpDataProfile::Representation
@@ -2742,6 +2763,13 @@ module Google
2742
2763
  end
2743
2764
  end
2744
2765
 
2766
+ class GoogleCloudSecuritycenterV2Chokepoint
2767
+ # @private
2768
+ class Representation < Google::Apis::Core::JsonRepresentation
2769
+ collection :related_findings, as: 'relatedFindings'
2770
+ end
2771
+ end
2772
+
2745
2773
  class GoogleCloudSecuritycenterV2CloudArmor
2746
2774
  # @private
2747
2775
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3029,6 +3057,8 @@ module Google
3029
3057
 
3030
3058
  property :canonical_name, as: 'canonicalName'
3031
3059
  property :category, as: 'category'
3060
+ property :chokepoint, as: 'chokepoint', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Chokepoint, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Chokepoint::Representation
3061
+
3032
3062
  property :cloud_armor, as: 'cloudArmor', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2CloudArmor, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2CloudArmor::Representation
3033
3063
 
3034
3064
  property :cloud_dlp_data_profile, as: 'cloudDlpDataProfile', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2CloudDlpDataProfile, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2CloudDlpDataProfile::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.85.0
4
+ version: 0.86.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-16 00:00:00.000000000 Z
10
+ date: 2025-03-23 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.85.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.86.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: