google-apis-securitycenter_v1beta1 0.89.0 → 0.91.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: d5ca0b2929bc2260724cb852da794ca66ddfd3d5786448261a6d72aff73aa17c
4
- data.tar.gz: 1e21d9ec4d19a4b1b2ee057b05443bf4aea3e0b04429897e7351446485b4c9e0
3
+ metadata.gz: 7a1b54a02b39aceef8e18ee57e54d4b3ac2a308b5426e1b6aa5e7df0868530ed
4
+ data.tar.gz: b0cbf52c4042e8889911e3b7e8739e98087dd78db4cb3892061b72f2f391c7fe
5
5
  SHA512:
6
- metadata.gz: 1918a76def9ddb6e266a96298b5243ed362d0e9150579519be30fb668f57aeb7c31c04c08b1a7870db1b4478c419f230cda612295cede4e8949e8fb9caee58f4
7
- data.tar.gz: ed08d238b598c9c8506d0413522be54b696b8e5b2e3510576c89c5eff5782926e17c388aef12010b3ba0a5deb0e0dea88c3b4779bf0a16ea0e503bffb1fb939e
6
+ metadata.gz: d6ea815fde4e7299c08796239152357e47a660cdfeb5a37ee45f623543dce2a5da5dbf5243300db0f648801ea1540638ae94171fa060e469ba88764c0625e4a2
7
+ data.tar.gz: 4a12968056c53f96685cc3f4222d0025a9c93daf97e596235d0c28b5922061534f6d475b54a080c20ed34b4fadb6d2ae488ceb4ed80ecd386c9d4192f1b86452
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-securitycenter_v1beta1
2
2
 
3
+ ### v0.91.0 (2025-06-15)
4
+
5
+ * Regenerated from discovery document revision 20250609
6
+ * Regenerated using generator version 0.18.0
7
+
8
+ ### v0.90.0 (2025-05-21)
9
+
10
+ * Regenerated from discovery document revision 20250519
11
+
3
12
  ### v0.89.0 (2025-05-04)
4
13
 
5
14
  * Regenerated using generator version 0.17.0
@@ -230,6 +230,61 @@ module Google
230
230
  end
231
231
  end
232
232
 
233
+ # Contains information about the AI model associated with the finding.
234
+ class AiModel
235
+ include Google::Apis::Core::Hashable
236
+
237
+ # The platform on which the model is deployed.
238
+ # Corresponds to the JSON property `deploymentPlatform`
239
+ # @return [String]
240
+ attr_accessor :deployment_platform
241
+
242
+ # The user defined display name of model. Ex. baseline-classification-model
243
+ # Corresponds to the JSON property `displayName`
244
+ # @return [String]
245
+ attr_accessor :display_name
246
+
247
+ # The domain of the model, for example, “image-classification”.
248
+ # Corresponds to the JSON property `domain`
249
+ # @return [String]
250
+ attr_accessor :domain
251
+
252
+ # The name of the model library, for example, “transformers”.
253
+ # Corresponds to the JSON property `library`
254
+ # @return [String]
255
+ attr_accessor :library
256
+
257
+ # The region in which the model is used, for example, “us-central1”.
258
+ # Corresponds to the JSON property `location`
259
+ # @return [String]
260
+ attr_accessor :location
261
+
262
+ # The name of the AI model, for example, "gemini:1.0.0".
263
+ # Corresponds to the JSON property `name`
264
+ # @return [String]
265
+ attr_accessor :name
266
+
267
+ # The publisher of the model, for example, “google” or “nvidia”.
268
+ # Corresponds to the JSON property `publisher`
269
+ # @return [String]
270
+ attr_accessor :publisher
271
+
272
+ def initialize(**args)
273
+ update!(**args)
274
+ end
275
+
276
+ # Update properties of this object
277
+ def update!(**args)
278
+ @deployment_platform = args[:deployment_platform] if args.key?(:deployment_platform)
279
+ @display_name = args[:display_name] if args.key?(:display_name)
280
+ @domain = args[:domain] if args.key?(:domain)
281
+ @library = args[:library] if args.key?(:library)
282
+ @location = args[:location] if args.key?(:location)
283
+ @name = args[:name] if args.key?(:name)
284
+ @publisher = args[:publisher] if args.key?(:publisher)
285
+ end
286
+ end
287
+
233
288
  # Allowed IP rule.
234
289
  class Allowed
235
290
  include Google::Apis::Core::Hashable
@@ -1741,6 +1796,39 @@ module Google
1741
1796
  end
1742
1797
  end
1743
1798
 
1799
+ # Vertex AI dataset associated with the finding.
1800
+ class Dataset
1801
+ include Google::Apis::Core::Hashable
1802
+
1803
+ # The user defined display name of dataset, e.g. plants-dataset
1804
+ # Corresponds to the JSON property `displayName`
1805
+ # @return [String]
1806
+ attr_accessor :display_name
1807
+
1808
+ # Resource name of dataset, e.g. projects/`project`/locations/`location`/
1809
+ # datasets/2094040236064505856
1810
+ # Corresponds to the JSON property `name`
1811
+ # @return [String]
1812
+ attr_accessor :name
1813
+
1814
+ # Data source, such as BigQuery source URI, e.g. bq://scc-nexus-test.AIPPtest.
1815
+ # gsod
1816
+ # Corresponds to the JSON property `source`
1817
+ # @return [String]
1818
+ attr_accessor :source
1819
+
1820
+ def initialize(**args)
1821
+ update!(**args)
1822
+ end
1823
+
1824
+ # Update properties of this object
1825
+ def update!(**args)
1826
+ @display_name = args[:display_name] if args.key?(:display_name)
1827
+ @name = args[:name] if args.key?(:name)
1828
+ @source = args[:source] if args.key?(:source)
1829
+ end
1830
+ end
1831
+
1744
1832
  # Denied IP rule.
1745
1833
  class Denied
1746
1834
  include Google::Apis::Core::Hashable
@@ -2042,6 +2130,11 @@ module Google
2042
2130
  # @return [Fixnum]
2043
2131
  attr_accessor :hashed_size
2044
2132
 
2133
+ # Operation(s) performed on a file.
2134
+ # Corresponds to the JSON property `operations`
2135
+ # @return [Array<Google::Apis::SecuritycenterV1beta1::FileOperation>]
2136
+ attr_accessor :operations
2137
+
2045
2138
  # True when the hash covers only a prefix of the file.
2046
2139
  # Corresponds to the JSON property `partiallyHashed`
2047
2140
  # @return [Boolean]
@@ -2073,6 +2166,7 @@ module Google
2073
2166
  @contents = args[:contents] if args.key?(:contents)
2074
2167
  @disk_path = args[:disk_path] if args.key?(:disk_path)
2075
2168
  @hashed_size = args[:hashed_size] if args.key?(:hashed_size)
2169
+ @operations = args[:operations] if args.key?(:operations)
2076
2170
  @partially_hashed = args[:partially_hashed] if args.key?(:partially_hashed)
2077
2171
  @path = args[:path] if args.key?(:path)
2078
2172
  @sha256 = args[:sha256] if args.key?(:sha256)
@@ -2080,6 +2174,25 @@ module Google
2080
2174
  end
2081
2175
  end
2082
2176
 
2177
+ # Operation(s) performed on a file.
2178
+ class FileOperation
2179
+ include Google::Apis::Core::Hashable
2180
+
2181
+ # The type of the operation
2182
+ # Corresponds to the JSON property `type`
2183
+ # @return [String]
2184
+ attr_accessor :type
2185
+
2186
+ def initialize(**args)
2187
+ update!(**args)
2188
+ end
2189
+
2190
+ # Update properties of this object
2191
+ def update!(**args)
2192
+ @type = args[:type] if args.key?(:type)
2193
+ end
2194
+ end
2195
+
2083
2196
  # Security Command Center finding. A finding is a record of assessment data like
2084
2197
  # security, risk, health, or privacy, that is ingested into Security Command
2085
2198
  # Center for presentation, notification, analysis, policy testing, and
@@ -2098,6 +2211,11 @@ module Google
2098
2211
  # @return [Google::Apis::SecuritycenterV1beta1::AffectedResources]
2099
2212
  attr_accessor :affected_resources
2100
2213
 
2214
+ # Contains information about the AI model associated with the finding.
2215
+ # Corresponds to the JSON property `aiModel`
2216
+ # @return [Google::Apis::SecuritycenterV1beta1::AiModel]
2217
+ attr_accessor :ai_model
2218
+
2101
2219
  # Represents an application associated with a finding.
2102
2220
  # Corresponds to the JSON property `application`
2103
2221
  # @return [Google::Apis::SecuritycenterV1beta1::Application]
@@ -2452,6 +2570,11 @@ module Google
2452
2570
  # @return [Google::Apis::SecuritycenterV1beta1::ToxicCombination]
2453
2571
  attr_accessor :toxic_combination
2454
2572
 
2573
+ # Vertex AI-related information associated with the finding.
2574
+ # Corresponds to the JSON property `vertexAi`
2575
+ # @return [Google::Apis::SecuritycenterV1beta1::VertexAi]
2576
+ attr_accessor :vertex_ai
2577
+
2455
2578
  # Refers to common vulnerability fields e.g. cve, cvss, cwe etc.
2456
2579
  # Corresponds to the JSON property `vulnerability`
2457
2580
  # @return [Google::Apis::SecuritycenterV1beta1::Vulnerability]
@@ -2465,6 +2588,7 @@ module Google
2465
2588
  def update!(**args)
2466
2589
  @access = args[:access] if args.key?(:access)
2467
2590
  @affected_resources = args[:affected_resources] if args.key?(:affected_resources)
2591
+ @ai_model = args[:ai_model] if args.key?(:ai_model)
2468
2592
  @application = args[:application] if args.key?(:application)
2469
2593
  @attack_exposure = args[:attack_exposure] if args.key?(:attack_exposure)
2470
2594
  @backup_disaster_recovery = args[:backup_disaster_recovery] if args.key?(:backup_disaster_recovery)
@@ -2521,6 +2645,7 @@ module Google
2521
2645
  @source_properties = args[:source_properties] if args.key?(:source_properties)
2522
2646
  @state = args[:state] if args.key?(:state)
2523
2647
  @toxic_combination = args[:toxic_combination] if args.key?(:toxic_combination)
2648
+ @vertex_ai = args[:vertex_ai] if args.key?(:vertex_ai)
2524
2649
  @vulnerability = args[:vulnerability] if args.key?(:vulnerability)
2525
2650
  end
2526
2651
  end
@@ -4245,6 +4370,61 @@ module Google
4245
4370
  end
4246
4371
  end
4247
4372
 
4373
+ # Contains information about the AI model associated with the finding.
4374
+ class GoogleCloudSecuritycenterV2AiModel
4375
+ include Google::Apis::Core::Hashable
4376
+
4377
+ # The platform on which the model is deployed.
4378
+ # Corresponds to the JSON property `deploymentPlatform`
4379
+ # @return [String]
4380
+ attr_accessor :deployment_platform
4381
+
4382
+ # The user defined display name of model. Ex. baseline-classification-model
4383
+ # Corresponds to the JSON property `displayName`
4384
+ # @return [String]
4385
+ attr_accessor :display_name
4386
+
4387
+ # The domain of the model, for example, “image-classification”.
4388
+ # Corresponds to the JSON property `domain`
4389
+ # @return [String]
4390
+ attr_accessor :domain
4391
+
4392
+ # The name of the model library, for example, “transformers”.
4393
+ # Corresponds to the JSON property `library`
4394
+ # @return [String]
4395
+ attr_accessor :library
4396
+
4397
+ # The region in which the model is used, for example, “us-central1”.
4398
+ # Corresponds to the JSON property `location`
4399
+ # @return [String]
4400
+ attr_accessor :location
4401
+
4402
+ # The name of the AI model, for example, "gemini:1.0.0".
4403
+ # Corresponds to the JSON property `name`
4404
+ # @return [String]
4405
+ attr_accessor :name
4406
+
4407
+ # The publisher of the model, for example, “google” or “nvidia”.
4408
+ # Corresponds to the JSON property `publisher`
4409
+ # @return [String]
4410
+ attr_accessor :publisher
4411
+
4412
+ def initialize(**args)
4413
+ update!(**args)
4414
+ end
4415
+
4416
+ # Update properties of this object
4417
+ def update!(**args)
4418
+ @deployment_platform = args[:deployment_platform] if args.key?(:deployment_platform)
4419
+ @display_name = args[:display_name] if args.key?(:display_name)
4420
+ @domain = args[:domain] if args.key?(:domain)
4421
+ @library = args[:library] if args.key?(:library)
4422
+ @location = args[:location] if args.key?(:location)
4423
+ @name = args[:name] if args.key?(:name)
4424
+ @publisher = args[:publisher] if args.key?(:publisher)
4425
+ end
4426
+ end
4427
+
4248
4428
  # Allowed IP rule.
4249
4429
  class GoogleCloudSecuritycenterV2Allowed
4250
4430
  include Google::Apis::Core::Hashable
@@ -5620,6 +5800,39 @@ module Google
5620
5800
  end
5621
5801
  end
5622
5802
 
5803
+ # Vertex AI dataset associated with the finding.
5804
+ class GoogleCloudSecuritycenterV2Dataset
5805
+ include Google::Apis::Core::Hashable
5806
+
5807
+ # The user defined display name of dataset, e.g. plants-dataset
5808
+ # Corresponds to the JSON property `displayName`
5809
+ # @return [String]
5810
+ attr_accessor :display_name
5811
+
5812
+ # Resource name of dataset, e.g. projects/`project`/locations/`location`/
5813
+ # datasets/2094040236064505856
5814
+ # Corresponds to the JSON property `name`
5815
+ # @return [String]
5816
+ attr_accessor :name
5817
+
5818
+ # Data source, such as BigQuery source URI, e.g. bq://scc-nexus-test.AIPPtest.
5819
+ # gsod
5820
+ # Corresponds to the JSON property `source`
5821
+ # @return [String]
5822
+ attr_accessor :source
5823
+
5824
+ def initialize(**args)
5825
+ update!(**args)
5826
+ end
5827
+
5828
+ # Update properties of this object
5829
+ def update!(**args)
5830
+ @display_name = args[:display_name] if args.key?(:display_name)
5831
+ @name = args[:name] if args.key?(:name)
5832
+ @source = args[:source] if args.key?(:source)
5833
+ end
5834
+ end
5835
+
5623
5836
  # Denied IP rule.
5624
5837
  class GoogleCloudSecuritycenterV2Denied
5625
5838
  include Google::Apis::Core::Hashable
@@ -5940,6 +6153,11 @@ module Google
5940
6153
  # @return [Fixnum]
5941
6154
  attr_accessor :hashed_size
5942
6155
 
6156
+ # Operation(s) performed on a file.
6157
+ # Corresponds to the JSON property `operations`
6158
+ # @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2FileOperation>]
6159
+ attr_accessor :operations
6160
+
5943
6161
  # True when the hash covers only a prefix of the file.
5944
6162
  # Corresponds to the JSON property `partiallyHashed`
5945
6163
  # @return [Boolean]
@@ -5971,6 +6189,7 @@ module Google
5971
6189
  @contents = args[:contents] if args.key?(:contents)
5972
6190
  @disk_path = args[:disk_path] if args.key?(:disk_path)
5973
6191
  @hashed_size = args[:hashed_size] if args.key?(:hashed_size)
6192
+ @operations = args[:operations] if args.key?(:operations)
5974
6193
  @partially_hashed = args[:partially_hashed] if args.key?(:partially_hashed)
5975
6194
  @path = args[:path] if args.key?(:path)
5976
6195
  @sha256 = args[:sha256] if args.key?(:sha256)
@@ -5978,6 +6197,25 @@ module Google
5978
6197
  end
5979
6198
  end
5980
6199
 
6200
+ # Operation(s) performed on a file.
6201
+ class GoogleCloudSecuritycenterV2FileOperation
6202
+ include Google::Apis::Core::Hashable
6203
+
6204
+ # The type of the operation
6205
+ # Corresponds to the JSON property `type`
6206
+ # @return [String]
6207
+ attr_accessor :type
6208
+
6209
+ def initialize(**args)
6210
+ update!(**args)
6211
+ end
6212
+
6213
+ # Update properties of this object
6214
+ def update!(**args)
6215
+ @type = args[:type] if args.key?(:type)
6216
+ end
6217
+ end
6218
+
5981
6219
  # Security Command Center finding. A finding is a record of assessment data like
5982
6220
  # security, risk, health, or privacy, that is ingested into Security Command
5983
6221
  # Center for presentation, notification, analysis, policy testing, and
@@ -5996,6 +6234,11 @@ module Google
5996
6234
  # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AffectedResources]
5997
6235
  attr_accessor :affected_resources
5998
6236
 
6237
+ # Contains information about the AI model associated with the finding.
6238
+ # Corresponds to the JSON property `aiModel`
6239
+ # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AiModel]
6240
+ attr_accessor :ai_model
6241
+
5999
6242
  # Represents an application associated with a finding.
6000
6243
  # Corresponds to the JSON property `application`
6001
6244
  # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Application]
@@ -6254,7 +6497,7 @@ module Google
6254
6497
  # @return [String]
6255
6498
  attr_accessor :mute_update_time
6256
6499
 
6257
- # The [relative resource name](https://cloud.google.com/apis/design/
6500
+ # Identifier. The [relative resource name](https://cloud.google.com/apis/design/
6258
6501
  # resource_names#relative_resource_name) of the finding. The following list
6259
6502
  # shows some examples: + `organizations/`organization_id`/sources/`source_id`/
6260
6503
  # findings/`finding_id`` + `organizations/`organization_id`/sources/`source_id`/
@@ -6364,6 +6607,11 @@ module Google
6364
6607
  # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ToxicCombination]
6365
6608
  attr_accessor :toxic_combination
6366
6609
 
6610
+ # Vertex AI-related information associated with the finding.
6611
+ # Corresponds to the JSON property `vertexAi`
6612
+ # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2VertexAi]
6613
+ attr_accessor :vertex_ai
6614
+
6367
6615
  # Refers to common vulnerability fields e.g. cve, cvss, cwe etc.
6368
6616
  # Corresponds to the JSON property `vulnerability`
6369
6617
  # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Vulnerability]
@@ -6377,6 +6625,7 @@ module Google
6377
6625
  def update!(**args)
6378
6626
  @access = args[:access] if args.key?(:access)
6379
6627
  @affected_resources = args[:affected_resources] if args.key?(:affected_resources)
6628
+ @ai_model = args[:ai_model] if args.key?(:ai_model)
6380
6629
  @application = args[:application] if args.key?(:application)
6381
6630
  @attack_exposure = args[:attack_exposure] if args.key?(:attack_exposure)
6382
6631
  @backup_disaster_recovery = args[:backup_disaster_recovery] if args.key?(:backup_disaster_recovery)
@@ -6433,6 +6682,7 @@ module Google
6433
6682
  @source_properties = args[:source_properties] if args.key?(:source_properties)
6434
6683
  @state = args[:state] if args.key?(:state)
6435
6684
  @toxic_combination = args[:toxic_combination] if args.key?(:toxic_combination)
6685
+ @vertex_ai = args[:vertex_ai] if args.key?(:vertex_ai)
6436
6686
  @vulnerability = args[:vulnerability] if args.key?(:vulnerability)
6437
6687
  end
6438
6688
  end
@@ -7828,6 +8078,32 @@ module Google
7828
8078
  end
7829
8079
  end
7830
8080
 
8081
+ # Vertex AI training pipeline associated with the finding.
8082
+ class GoogleCloudSecuritycenterV2Pipeline
8083
+ include Google::Apis::Core::Hashable
8084
+
8085
+ # The user defined display name of pipeline, e.g. plants-classification
8086
+ # Corresponds to the JSON property `displayName`
8087
+ # @return [String]
8088
+ attr_accessor :display_name
8089
+
8090
+ # Resource name of pipeline, e.g. projects/`project`/locations/`location`/
8091
+ # trainingPipelines/5253428229225578496
8092
+ # Corresponds to the JSON property `name`
8093
+ # @return [String]
8094
+ attr_accessor :name
8095
+
8096
+ def initialize(**args)
8097
+ update!(**args)
8098
+ end
8099
+
8100
+ # Update properties of this object
8101
+ def update!(**args)
8102
+ @display_name = args[:display_name] if args.key?(:display_name)
8103
+ @name = args[:name] if args.key?(:name)
8104
+ end
8105
+ end
8106
+
7831
8107
  # A Kubernetes Pod.
7832
8108
  class GoogleCloudSecuritycenterV2Pod
7833
8109
  include Google::Apis::Core::Hashable
@@ -8760,6 +9036,31 @@ module Google
8760
9036
  end
8761
9037
  end
8762
9038
 
9039
+ # Vertex AI-related information associated with the finding.
9040
+ class GoogleCloudSecuritycenterV2VertexAi
9041
+ include Google::Apis::Core::Hashable
9042
+
9043
+ # Datasets associated with the finding.
9044
+ # Corresponds to the JSON property `datasets`
9045
+ # @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Dataset>]
9046
+ attr_accessor :datasets
9047
+
9048
+ # Pipelines associated with the finding.
9049
+ # Corresponds to the JSON property `pipelines`
9050
+ # @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Pipeline>]
9051
+ attr_accessor :pipelines
9052
+
9053
+ def initialize(**args)
9054
+ update!(**args)
9055
+ end
9056
+
9057
+ # Update properties of this object
9058
+ def update!(**args)
9059
+ @datasets = args[:datasets] if args.key?(:datasets)
9060
+ @pipelines = args[:pipelines] if args.key?(:pipelines)
9061
+ end
9062
+ end
9063
+
8763
9064
  # Refers to common vulnerability fields e.g. cve, cvss, cwe etc.
8764
9065
  class GoogleCloudSecuritycenterV2Vulnerability
8765
9066
  include Google::Apis::Core::Hashable
@@ -10082,6 +10383,32 @@ module Google
10082
10383
  end
10083
10384
  end
10084
10385
 
10386
+ # Vertex AI training pipeline associated with the finding.
10387
+ class Pipeline
10388
+ include Google::Apis::Core::Hashable
10389
+
10390
+ # The user defined display name of pipeline, e.g. plants-classification
10391
+ # Corresponds to the JSON property `displayName`
10392
+ # @return [String]
10393
+ attr_accessor :display_name
10394
+
10395
+ # Resource name of pipeline, e.g. projects/`project`/locations/`location`/
10396
+ # trainingPipelines/5253428229225578496
10397
+ # Corresponds to the JSON property `name`
10398
+ # @return [String]
10399
+ attr_accessor :name
10400
+
10401
+ def initialize(**args)
10402
+ update!(**args)
10403
+ end
10404
+
10405
+ # Update properties of this object
10406
+ def update!(**args)
10407
+ @display_name = args[:display_name] if args.key?(:display_name)
10408
+ @name = args[:name] if args.key?(:name)
10409
+ end
10410
+ end
10411
+
10085
10412
  # A Kubernetes Pod.
10086
10413
  class Pod
10087
10414
  include Google::Apis::Core::Hashable
@@ -11151,6 +11478,31 @@ module Google
11151
11478
  end
11152
11479
  end
11153
11480
 
11481
+ # Vertex AI-related information associated with the finding.
11482
+ class VertexAi
11483
+ include Google::Apis::Core::Hashable
11484
+
11485
+ # Datasets associated with the finding.
11486
+ # Corresponds to the JSON property `datasets`
11487
+ # @return [Array<Google::Apis::SecuritycenterV1beta1::Dataset>]
11488
+ attr_accessor :datasets
11489
+
11490
+ # Pipelines associated with the finding.
11491
+ # Corresponds to the JSON property `pipelines`
11492
+ # @return [Array<Google::Apis::SecuritycenterV1beta1::Pipeline>]
11493
+ attr_accessor :pipelines
11494
+
11495
+ def initialize(**args)
11496
+ update!(**args)
11497
+ end
11498
+
11499
+ # Update properties of this object
11500
+ def update!(**args)
11501
+ @datasets = args[:datasets] if args.key?(:datasets)
11502
+ @pipelines = args[:pipelines] if args.key?(:pipelines)
11503
+ end
11504
+ end
11505
+
11154
11506
  # Refers to common vulnerability fields e.g. cve, cvss, cwe etc.
11155
11507
  class Vulnerability
11156
11508
  include Google::Apis::Core::Hashable
@@ -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.89.0"
19
+ GEM_VERSION = "0.91.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.17.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250411"
25
+ REVISION = "20250609"
26
26
  end
27
27
  end
28
28
  end
@@ -46,6 +46,12 @@ module Google
46
46
  include Google::Apis::Core::JsonObjectSupport
47
47
  end
48
48
 
49
+ class AiModel
50
+ class Representation < Google::Apis::Core::JsonRepresentation; end
51
+
52
+ include Google::Apis::Core::JsonObjectSupport
53
+ end
54
+
49
55
  class Allowed
50
56
  class Representation < Google::Apis::Core::JsonRepresentation; end
51
57
 
@@ -268,6 +274,12 @@ module Google
268
274
  include Google::Apis::Core::JsonObjectSupport
269
275
  end
270
276
 
277
+ class Dataset
278
+ class Representation < Google::Apis::Core::JsonRepresentation; end
279
+
280
+ include Google::Apis::Core::JsonObjectSupport
281
+ end
282
+
271
283
  class Denied
272
284
  class Representation < Google::Apis::Core::JsonRepresentation; end
273
285
 
@@ -334,6 +346,12 @@ module Google
334
346
  include Google::Apis::Core::JsonObjectSupport
335
347
  end
336
348
 
349
+ class FileOperation
350
+ class Representation < Google::Apis::Core::JsonRepresentation; end
351
+
352
+ include Google::Apis::Core::JsonObjectSupport
353
+ end
354
+
337
355
  class Finding
338
356
  class Representation < Google::Apis::Core::JsonRepresentation; end
339
357
 
@@ -544,6 +562,12 @@ module Google
544
562
  include Google::Apis::Core::JsonObjectSupport
545
563
  end
546
564
 
565
+ class GoogleCloudSecuritycenterV2AiModel
566
+ class Representation < Google::Apis::Core::JsonRepresentation; end
567
+
568
+ include Google::Apis::Core::JsonObjectSupport
569
+ end
570
+
547
571
  class GoogleCloudSecuritycenterV2Allowed
548
572
  class Representation < Google::Apis::Core::JsonRepresentation; end
549
573
 
@@ -748,6 +772,12 @@ module Google
748
772
  include Google::Apis::Core::JsonObjectSupport
749
773
  end
750
774
 
775
+ class GoogleCloudSecuritycenterV2Dataset
776
+ class Representation < Google::Apis::Core::JsonRepresentation; end
777
+
778
+ include Google::Apis::Core::JsonObjectSupport
779
+ end
780
+
751
781
  class GoogleCloudSecuritycenterV2Denied
752
782
  class Representation < Google::Apis::Core::JsonRepresentation; end
753
783
 
@@ -808,6 +838,12 @@ module Google
808
838
  include Google::Apis::Core::JsonObjectSupport
809
839
  end
810
840
 
841
+ class GoogleCloudSecuritycenterV2FileOperation
842
+ class Representation < Google::Apis::Core::JsonRepresentation; end
843
+
844
+ include Google::Apis::Core::JsonObjectSupport
845
+ end
846
+
811
847
  class GoogleCloudSecuritycenterV2Finding
812
848
  class Representation < Google::Apis::Core::JsonRepresentation; end
813
849
 
@@ -1054,6 +1090,12 @@ module Google
1054
1090
  include Google::Apis::Core::JsonObjectSupport
1055
1091
  end
1056
1092
 
1093
+ class GoogleCloudSecuritycenterV2Pipeline
1094
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1095
+
1096
+ include Google::Apis::Core::JsonObjectSupport
1097
+ end
1098
+
1057
1099
  class GoogleCloudSecuritycenterV2Pod
1058
1100
  class Representation < Google::Apis::Core::JsonRepresentation; end
1059
1101
 
@@ -1186,6 +1228,12 @@ module Google
1186
1228
  include Google::Apis::Core::JsonObjectSupport
1187
1229
  end
1188
1230
 
1231
+ class GoogleCloudSecuritycenterV2VertexAi
1232
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1233
+
1234
+ include Google::Apis::Core::JsonObjectSupport
1235
+ end
1236
+
1189
1237
  class GoogleCloudSecuritycenterV2Vulnerability
1190
1238
  class Representation < Google::Apis::Core::JsonRepresentation; end
1191
1239
 
@@ -1396,6 +1444,12 @@ module Google
1396
1444
  include Google::Apis::Core::JsonObjectSupport
1397
1445
  end
1398
1446
 
1447
+ class Pipeline
1448
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1449
+
1450
+ include Google::Apis::Core::JsonObjectSupport
1451
+ end
1452
+
1399
1453
  class Pod
1400
1454
  class Representation < Google::Apis::Core::JsonRepresentation; end
1401
1455
 
@@ -1564,6 +1618,12 @@ module Google
1564
1618
  include Google::Apis::Core::JsonObjectSupport
1565
1619
  end
1566
1620
 
1621
+ class VertexAi
1622
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1623
+
1624
+ include Google::Apis::Core::JsonObjectSupport
1625
+ end
1626
+
1567
1627
  class Vulnerability
1568
1628
  class Representation < Google::Apis::Core::JsonRepresentation; end
1569
1629
 
@@ -1634,6 +1694,19 @@ module Google
1634
1694
  end
1635
1695
  end
1636
1696
 
1697
+ class AiModel
1698
+ # @private
1699
+ class Representation < Google::Apis::Core::JsonRepresentation
1700
+ property :deployment_platform, as: 'deploymentPlatform'
1701
+ property :display_name, as: 'displayName'
1702
+ property :domain, as: 'domain'
1703
+ property :library, as: 'library'
1704
+ property :location, as: 'location'
1705
+ property :name, as: 'name'
1706
+ property :publisher, as: 'publisher'
1707
+ end
1708
+ end
1709
+
1637
1710
  class Allowed
1638
1711
  # @private
1639
1712
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2009,6 +2082,15 @@ module Google
2009
2082
  end
2010
2083
  end
2011
2084
 
2085
+ class Dataset
2086
+ # @private
2087
+ class Representation < Google::Apis::Core::JsonRepresentation
2088
+ property :display_name, as: 'displayName'
2089
+ property :name, as: 'name'
2090
+ property :source, as: 'source'
2091
+ end
2092
+ end
2093
+
2012
2094
  class Denied
2013
2095
  # @private
2014
2096
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2098,6 +2180,8 @@ module Google
2098
2180
  property :disk_path, as: 'diskPath', class: Google::Apis::SecuritycenterV1beta1::DiskPath, decorator: Google::Apis::SecuritycenterV1beta1::DiskPath::Representation
2099
2181
 
2100
2182
  property :hashed_size, :numeric_string => true, as: 'hashedSize'
2183
+ collection :operations, as: 'operations', class: Google::Apis::SecuritycenterV1beta1::FileOperation, decorator: Google::Apis::SecuritycenterV1beta1::FileOperation::Representation
2184
+
2101
2185
  property :partially_hashed, as: 'partiallyHashed'
2102
2186
  property :path, as: 'path'
2103
2187
  property :sha256, as: 'sha256'
@@ -2105,6 +2189,13 @@ module Google
2105
2189
  end
2106
2190
  end
2107
2191
 
2192
+ class FileOperation
2193
+ # @private
2194
+ class Representation < Google::Apis::Core::JsonRepresentation
2195
+ property :type, as: 'type'
2196
+ end
2197
+ end
2198
+
2108
2199
  class Finding
2109
2200
  # @private
2110
2201
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2112,6 +2203,8 @@ module Google
2112
2203
 
2113
2204
  property :affected_resources, as: 'affectedResources', class: Google::Apis::SecuritycenterV1beta1::AffectedResources, decorator: Google::Apis::SecuritycenterV1beta1::AffectedResources::Representation
2114
2205
 
2206
+ property :ai_model, as: 'aiModel', class: Google::Apis::SecuritycenterV1beta1::AiModel, decorator: Google::Apis::SecuritycenterV1beta1::AiModel::Representation
2207
+
2115
2208
  property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta1::Application, decorator: Google::Apis::SecuritycenterV1beta1::Application::Representation
2116
2209
 
2117
2210
  property :attack_exposure, as: 'attackExposure', class: Google::Apis::SecuritycenterV1beta1::AttackExposure, decorator: Google::Apis::SecuritycenterV1beta1::AttackExposure::Representation
@@ -2205,6 +2298,8 @@ module Google
2205
2298
  property :state, as: 'state'
2206
2299
  property :toxic_combination, as: 'toxicCombination', class: Google::Apis::SecuritycenterV1beta1::ToxicCombination, decorator: Google::Apis::SecuritycenterV1beta1::ToxicCombination::Representation
2207
2300
 
2301
+ property :vertex_ai, as: 'vertexAi', class: Google::Apis::SecuritycenterV1beta1::VertexAi, decorator: Google::Apis::SecuritycenterV1beta1::VertexAi::Representation
2302
+
2208
2303
  property :vulnerability, as: 'vulnerability', class: Google::Apis::SecuritycenterV1beta1::Vulnerability, decorator: Google::Apis::SecuritycenterV1beta1::Vulnerability::Representation
2209
2304
 
2210
2305
  end
@@ -2602,6 +2697,19 @@ module Google
2602
2697
  end
2603
2698
  end
2604
2699
 
2700
+ class GoogleCloudSecuritycenterV2AiModel
2701
+ # @private
2702
+ class Representation < Google::Apis::Core::JsonRepresentation
2703
+ property :deployment_platform, as: 'deploymentPlatform'
2704
+ property :display_name, as: 'displayName'
2705
+ property :domain, as: 'domain'
2706
+ property :library, as: 'library'
2707
+ property :location, as: 'location'
2708
+ property :name, as: 'name'
2709
+ property :publisher, as: 'publisher'
2710
+ end
2711
+ end
2712
+
2605
2713
  class GoogleCloudSecuritycenterV2Allowed
2606
2714
  # @private
2607
2715
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2954,6 +3062,15 @@ module Google
2954
3062
  end
2955
3063
  end
2956
3064
 
3065
+ class GoogleCloudSecuritycenterV2Dataset
3066
+ # @private
3067
+ class Representation < Google::Apis::Core::JsonRepresentation
3068
+ property :display_name, as: 'displayName'
3069
+ property :name, as: 'name'
3070
+ property :source, as: 'source'
3071
+ end
3072
+ end
3073
+
2957
3074
  class GoogleCloudSecuritycenterV2Denied
2958
3075
  # @private
2959
3076
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3045,6 +3162,8 @@ module Google
3045
3162
  property :disk_path, as: 'diskPath', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2DiskPath, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2DiskPath::Representation
3046
3163
 
3047
3164
  property :hashed_size, :numeric_string => true, as: 'hashedSize'
3165
+ collection :operations, as: 'operations', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2FileOperation, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2FileOperation::Representation
3166
+
3048
3167
  property :partially_hashed, as: 'partiallyHashed'
3049
3168
  property :path, as: 'path'
3050
3169
  property :sha256, as: 'sha256'
@@ -3052,6 +3171,13 @@ module Google
3052
3171
  end
3053
3172
  end
3054
3173
 
3174
+ class GoogleCloudSecuritycenterV2FileOperation
3175
+ # @private
3176
+ class Representation < Google::Apis::Core::JsonRepresentation
3177
+ property :type, as: 'type'
3178
+ end
3179
+ end
3180
+
3055
3181
  class GoogleCloudSecuritycenterV2Finding
3056
3182
  # @private
3057
3183
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3059,6 +3185,8 @@ module Google
3059
3185
 
3060
3186
  property :affected_resources, as: 'affectedResources', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AffectedResources, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AffectedResources::Representation
3061
3187
 
3188
+ property :ai_model, as: 'aiModel', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AiModel, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AiModel::Representation
3189
+
3062
3190
  property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Application, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Application::Representation
3063
3191
 
3064
3192
  property :attack_exposure, as: 'attackExposure', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AttackExposure, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AttackExposure::Representation
@@ -3152,6 +3280,8 @@ module Google
3152
3280
  property :state, as: 'state'
3153
3281
  property :toxic_combination, as: 'toxicCombination', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ToxicCombination, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ToxicCombination::Representation
3154
3282
 
3283
+ property :vertex_ai, as: 'vertexAi', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2VertexAi, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2VertexAi::Representation
3284
+
3155
3285
  property :vulnerability, as: 'vulnerability', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Vulnerability, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Vulnerability::Representation
3156
3286
 
3157
3287
  end
@@ -3560,6 +3690,14 @@ module Google
3560
3690
  end
3561
3691
  end
3562
3692
 
3693
+ class GoogleCloudSecuritycenterV2Pipeline
3694
+ # @private
3695
+ class Representation < Google::Apis::Core::JsonRepresentation
3696
+ property :display_name, as: 'displayName'
3697
+ property :name, as: 'name'
3698
+ end
3699
+ end
3700
+
3563
3701
  class GoogleCloudSecuritycenterV2Pod
3564
3702
  # @private
3565
3703
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3798,6 +3936,16 @@ module Google
3798
3936
  end
3799
3937
  end
3800
3938
 
3939
+ class GoogleCloudSecuritycenterV2VertexAi
3940
+ # @private
3941
+ class Representation < Google::Apis::Core::JsonRepresentation
3942
+ collection :datasets, as: 'datasets', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Dataset, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Dataset::Representation
3943
+
3944
+ collection :pipelines, as: 'pipelines', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Pipeline, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Pipeline::Representation
3945
+
3946
+ end
3947
+ end
3948
+
3801
3949
  class GoogleCloudSecuritycenterV2Vulnerability
3802
3950
  # @private
3803
3951
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4156,6 +4304,14 @@ module Google
4156
4304
  end
4157
4305
  end
4158
4306
 
4307
+ class Pipeline
4308
+ # @private
4309
+ class Representation < Google::Apis::Core::JsonRepresentation
4310
+ property :display_name, as: 'displayName'
4311
+ property :name, as: 'name'
4312
+ end
4313
+ end
4314
+
4159
4315
  class Pod
4160
4316
  # @private
4161
4317
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4425,6 +4581,16 @@ module Google
4425
4581
  end
4426
4582
  end
4427
4583
 
4584
+ class VertexAi
4585
+ # @private
4586
+ class Representation < Google::Apis::Core::JsonRepresentation
4587
+ collection :datasets, as: 'datasets', class: Google::Apis::SecuritycenterV1beta1::Dataset, decorator: Google::Apis::SecuritycenterV1beta1::Dataset::Representation
4588
+
4589
+ collection :pipelines, as: 'pipelines', class: Google::Apis::SecuritycenterV1beta1::Pipeline, decorator: Google::Apis::SecuritycenterV1beta1::Pipeline::Representation
4590
+
4591
+ end
4592
+ end
4593
+
4428
4594
  class Vulnerability
4429
4595
  # @private
4430
4596
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-securitycenter_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.89.0
4
+ version: 0.91.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -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.89.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.91.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:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.8
76
+ rubygems_version: 3.6.9
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Security Command Center API V1beta1
79
79
  test_files: []