google-apis-securitycenter_v1 0.95.0 → 0.96.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: e34a6386ddd9bb16b19aa79205b96bad28bf389f9712902af36e3f88d8b89fa6
4
- data.tar.gz: 55d91f65b4b0cba18c0c12a9d4f27b4ac91c28cf3119a71a46dd867014d64136
3
+ metadata.gz: da72dcc39c9ade7e7d521496264419ba5ddf3eae35a2ba8234eca3f7ea9d1b0d
4
+ data.tar.gz: 1288ed21df8264628b23c6da64f24a7ee694fa0e921ce6b55e387096dc953811
5
5
  SHA512:
6
- metadata.gz: efa991cc32c846318f453eb13bac349aaca1a7729a4ca3324a394e5dc4caf683096a38f42814c39d3051150c0417bbca8df8574e9ed5d0bb4808cdc237bb8423
7
- data.tar.gz: 2b84b8e95e58f55617fddba8a7e6cab3314e2517c37950d5a8f22b67c1e862ab362a0730092ea333a7f34f91fe463cc5e46ebf9c31762e884f4abd85764d0557
6
+ metadata.gz: 0c7ab6241f6e9f5290b1cb4077d63dace77a8b9aea089e1a3200a33a5bb2a349d97915c37761eede742cd8d92df6e146bb1abc3b595b24d2169b52049e356766
7
+ data.tar.gz: 8754a4f0492ba7fbd79078b1342ae2ab114e6a04224c50e00b1e921ef95b9f35615c7d3479b9fc540220377f831649f3bf0e8b365d0c2db855149e5e25664242
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-securitycenter_v1
2
2
 
3
+ ### v0.96.0 (2025-03-23)
4
+
5
+ * Regenerated from discovery document revision 20250315
6
+
3
7
  ### v0.95.0 (2025-03-16)
4
8
 
5
9
  * Regenerated from discovery document revision 20250308
@@ -1234,6 +1234,30 @@ module Google
1234
1234
  end
1235
1235
  end
1236
1236
 
1237
+ # Contains details about a chokepoint, which is a resource or resource group
1238
+ # where high-risk attack paths converge, based on [attack path simulations] (
1239
+ # https://cloud.google.com/security-command-center/docs/attack-exposure-learn#
1240
+ # attack_path_simulations).
1241
+ class Chokepoint
1242
+ include Google::Apis::Core::Hashable
1243
+
1244
+ # List of resource names of findings associated with this chokepoint. For
1245
+ # example, organizations/123/sources/456/findings/789. This list will have at
1246
+ # most 100 findings.
1247
+ # Corresponds to the JSON property `relatedFindings`
1248
+ # @return [Array<String>]
1249
+ attr_accessor :related_findings
1250
+
1251
+ def initialize(**args)
1252
+ update!(**args)
1253
+ end
1254
+
1255
+ # Update properties of this object
1256
+ def update!(**args)
1257
+ @related_findings = args[:related_findings] if args.key?(:related_findings)
1258
+ end
1259
+ end
1260
+
1237
1261
  # Fields related to Google Cloud Armor findings.
1238
1262
  class CloudArmor
1239
1263
  include Google::Apis::Core::Hashable
@@ -2624,6 +2648,14 @@ module Google
2624
2648
  # @return [String]
2625
2649
  attr_accessor :category
2626
2650
 
2651
+ # Contains details about a chokepoint, which is a resource or resource group
2652
+ # where high-risk attack paths converge, based on [attack path simulations] (
2653
+ # https://cloud.google.com/security-command-center/docs/attack-exposure-learn#
2654
+ # attack_path_simulations).
2655
+ # Corresponds to the JSON property `chokepoint`
2656
+ # @return [Google::Apis::SecuritycenterV1::Chokepoint]
2657
+ attr_accessor :chokepoint
2658
+
2627
2659
  # Fields related to Google Cloud Armor findings.
2628
2660
  # Corresponds to the JSON property `cloudArmor`
2629
2661
  # @return [Google::Apis::SecuritycenterV1::CloudArmor]
@@ -2957,6 +2989,7 @@ module Google
2957
2989
  @backup_disaster_recovery = args[:backup_disaster_recovery] if args.key?(:backup_disaster_recovery)
2958
2990
  @canonical_name = args[:canonical_name] if args.key?(:canonical_name)
2959
2991
  @category = args[:category] if args.key?(:category)
2992
+ @chokepoint = args[:chokepoint] if args.key?(:chokepoint)
2960
2993
  @cloud_armor = args[:cloud_armor] if args.key?(:cloud_armor)
2961
2994
  @cloud_dlp_data_profile = args[:cloud_dlp_data_profile] if args.key?(:cloud_dlp_data_profile)
2962
2995
  @cloud_dlp_inspection = args[:cloud_dlp_inspection] if args.key?(:cloud_dlp_inspection)
@@ -5221,6 +5254,30 @@ module Google
5221
5254
  end
5222
5255
  end
5223
5256
 
5257
+ # Contains details about a chokepoint, which is a resource or resource group
5258
+ # where high-risk attack paths converge, based on [attack path simulations] (
5259
+ # https://cloud.google.com/security-command-center/docs/attack-exposure-learn#
5260
+ # attack_path_simulations).
5261
+ class GoogleCloudSecuritycenterV2Chokepoint
5262
+ include Google::Apis::Core::Hashable
5263
+
5264
+ # List of resource names of findings associated with this chokepoint. For
5265
+ # example, organizations/123/sources/456/findings/789. This list will have at
5266
+ # most 100 findings.
5267
+ # Corresponds to the JSON property `relatedFindings`
5268
+ # @return [Array<String>]
5269
+ attr_accessor :related_findings
5270
+
5271
+ def initialize(**args)
5272
+ update!(**args)
5273
+ end
5274
+
5275
+ # Update properties of this object
5276
+ def update!(**args)
5277
+ @related_findings = args[:related_findings] if args.key?(:related_findings)
5278
+ end
5279
+ end
5280
+
5224
5281
  # Fields related to Google Cloud Armor findings.
5225
5282
  class GoogleCloudSecuritycenterV2CloudArmor
5226
5283
  include Google::Apis::Core::Hashable
@@ -6335,6 +6392,14 @@ module Google
6335
6392
  # @return [String]
6336
6393
  attr_accessor :category
6337
6394
 
6395
+ # Contains details about a chokepoint, which is a resource or resource group
6396
+ # where high-risk attack paths converge, based on [attack path simulations] (
6397
+ # https://cloud.google.com/security-command-center/docs/attack-exposure-learn#
6398
+ # attack_path_simulations).
6399
+ # Corresponds to the JSON property `chokepoint`
6400
+ # @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Chokepoint]
6401
+ attr_accessor :chokepoint
6402
+
6338
6403
  # Fields related to Google Cloud Armor findings.
6339
6404
  # Corresponds to the JSON property `cloudArmor`
6340
6405
  # @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2CloudArmor]
@@ -6678,6 +6743,7 @@ module Google
6678
6743
  @backup_disaster_recovery = args[:backup_disaster_recovery] if args.key?(:backup_disaster_recovery)
6679
6744
  @canonical_name = args[:canonical_name] if args.key?(:canonical_name)
6680
6745
  @category = args[:category] if args.key?(:category)
6746
+ @chokepoint = args[:chokepoint] if args.key?(:chokepoint)
6681
6747
  @cloud_armor = args[:cloud_armor] if args.key?(:cloud_armor)
6682
6748
  @cloud_dlp_data_profile = args[:cloud_dlp_data_profile] if args.key?(:cloud_dlp_data_profile)
6683
6749
  @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 SecuritycenterV1
18
18
  # Version of the google-apis-securitycenter_v1 gem
19
- GEM_VERSION = "0.95.0"
19
+ GEM_VERSION = "0.96.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
@@ -196,6 +196,12 @@ module Google
196
196
  include Google::Apis::Core::JsonObjectSupport
197
197
  end
198
198
 
199
+ class Chokepoint
200
+ class Representation < Google::Apis::Core::JsonRepresentation; end
201
+
202
+ include Google::Apis::Core::JsonObjectSupport
203
+ end
204
+
199
205
  class CloudArmor
200
206
  class Representation < Google::Apis::Core::JsonRepresentation; end
201
207
 
@@ -688,6 +694,12 @@ module Google
688
694
  include Google::Apis::Core::JsonObjectSupport
689
695
  end
690
696
 
697
+ class GoogleCloudSecuritycenterV2Chokepoint
698
+ class Representation < Google::Apis::Core::JsonRepresentation; end
699
+
700
+ include Google::Apis::Core::JsonObjectSupport
701
+ end
702
+
691
703
  class GoogleCloudSecuritycenterV2CloudArmor
692
704
  class Representation < Google::Apis::Core::JsonRepresentation; end
693
705
 
@@ -2096,6 +2108,13 @@ module Google
2096
2108
  end
2097
2109
  end
2098
2110
 
2111
+ class Chokepoint
2112
+ # @private
2113
+ class Representation < Google::Apis::Core::JsonRepresentation
2114
+ collection :related_findings, as: 'relatedFindings'
2115
+ end
2116
+ end
2117
+
2099
2118
  class CloudArmor
2100
2119
  # @private
2101
2120
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2453,6 +2472,8 @@ module Google
2453
2472
 
2454
2473
  property :canonical_name, as: 'canonicalName'
2455
2474
  property :category, as: 'category'
2475
+ property :chokepoint, as: 'chokepoint', class: Google::Apis::SecuritycenterV1::Chokepoint, decorator: Google::Apis::SecuritycenterV1::Chokepoint::Representation
2476
+
2456
2477
  property :cloud_armor, as: 'cloudArmor', class: Google::Apis::SecuritycenterV1::CloudArmor, decorator: Google::Apis::SecuritycenterV1::CloudArmor::Representation
2457
2478
 
2458
2479
  property :cloud_dlp_data_profile, as: 'cloudDlpDataProfile', class: Google::Apis::SecuritycenterV1::CloudDlpDataProfile, decorator: Google::Apis::SecuritycenterV1::CloudDlpDataProfile::Representation
@@ -3070,6 +3091,13 @@ module Google
3070
3091
  end
3071
3092
  end
3072
3093
 
3094
+ class GoogleCloudSecuritycenterV2Chokepoint
3095
+ # @private
3096
+ class Representation < Google::Apis::Core::JsonRepresentation
3097
+ collection :related_findings, as: 'relatedFindings'
3098
+ end
3099
+ end
3100
+
3073
3101
  class GoogleCloudSecuritycenterV2CloudArmor
3074
3102
  # @private
3075
3103
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3357,6 +3385,8 @@ module Google
3357
3385
 
3358
3386
  property :canonical_name, as: 'canonicalName'
3359
3387
  property :category, as: 'category'
3388
+ property :chokepoint, as: 'chokepoint', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Chokepoint, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Chokepoint::Representation
3389
+
3360
3390
  property :cloud_armor, as: 'cloudArmor', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2CloudArmor, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2CloudArmor::Representation
3361
3391
 
3362
3392
  property :cloud_dlp_data_profile, as: 'cloudDlpDataProfile', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2CloudDlpDataProfile, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2CloudDlpDataProfile::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.95.0
4
+ version: 0.96.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_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.95.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.96.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: