google-apis-securitycenter_v1beta1 0.90.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: 153d6232dfa0d962dfda52a36ac8576da9a0773b629aa1b71b69dbc2027301ea
4
- data.tar.gz: dc83b2346a418024d26b22fbf71143eb4eb8b473012442e6ebc86a29e0426b10
3
+ metadata.gz: 7a1b54a02b39aceef8e18ee57e54d4b3ac2a308b5426e1b6aa5e7df0868530ed
4
+ data.tar.gz: b0cbf52c4042e8889911e3b7e8739e98087dd78db4cb3892061b72f2f391c7fe
5
5
  SHA512:
6
- metadata.gz: 276feed495af15ae40524c8b19931794d201d9708b28e9283e3811e0ae8c99140c893fa2e09c64d54ebc8a3f4abc1dca235fb6939dd85e4447b55178530d0676
7
- data.tar.gz: 15caf0c51dcde26ce37b53a2397130a1db64e25c6ee6cd4741e55d9bd9e6219f85034e62858921fb5ec8d3e8b1e0dde454edf55829ef9922057c19d2a12b3d0d
6
+ metadata.gz: d6ea815fde4e7299c08796239152357e47a660cdfeb5a37ee45f623543dce2a5da5dbf5243300db0f648801ea1540638ae94171fa060e469ba88764c0625e4a2
7
+ data.tar.gz: 4a12968056c53f96685cc3f4222d0025a9c93daf97e596235d0c28b5922061534f6d475b54a080c20ed34b4fadb6d2ae488ceb4ed80ecd386c9d4192f1b86452
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
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
+
3
8
  ### v0.90.0 (2025-05-21)
4
9
 
5
10
  * Regenerated from discovery document revision 20250519
@@ -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
@@ -2123,6 +2211,11 @@ module Google
2123
2211
  # @return [Google::Apis::SecuritycenterV1beta1::AffectedResources]
2124
2212
  attr_accessor :affected_resources
2125
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
+
2126
2219
  # Represents an application associated with a finding.
2127
2220
  # Corresponds to the JSON property `application`
2128
2221
  # @return [Google::Apis::SecuritycenterV1beta1::Application]
@@ -2477,6 +2570,11 @@ module Google
2477
2570
  # @return [Google::Apis::SecuritycenterV1beta1::ToxicCombination]
2478
2571
  attr_accessor :toxic_combination
2479
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
+
2480
2578
  # Refers to common vulnerability fields e.g. cve, cvss, cwe etc.
2481
2579
  # Corresponds to the JSON property `vulnerability`
2482
2580
  # @return [Google::Apis::SecuritycenterV1beta1::Vulnerability]
@@ -2490,6 +2588,7 @@ module Google
2490
2588
  def update!(**args)
2491
2589
  @access = args[:access] if args.key?(:access)
2492
2590
  @affected_resources = args[:affected_resources] if args.key?(:affected_resources)
2591
+ @ai_model = args[:ai_model] if args.key?(:ai_model)
2493
2592
  @application = args[:application] if args.key?(:application)
2494
2593
  @attack_exposure = args[:attack_exposure] if args.key?(:attack_exposure)
2495
2594
  @backup_disaster_recovery = args[:backup_disaster_recovery] if args.key?(:backup_disaster_recovery)
@@ -2546,6 +2645,7 @@ module Google
2546
2645
  @source_properties = args[:source_properties] if args.key?(:source_properties)
2547
2646
  @state = args[:state] if args.key?(:state)
2548
2647
  @toxic_combination = args[:toxic_combination] if args.key?(:toxic_combination)
2648
+ @vertex_ai = args[:vertex_ai] if args.key?(:vertex_ai)
2549
2649
  @vulnerability = args[:vulnerability] if args.key?(:vulnerability)
2550
2650
  end
2551
2651
  end
@@ -4270,6 +4370,61 @@ module Google
4270
4370
  end
4271
4371
  end
4272
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
+
4273
4428
  # Allowed IP rule.
4274
4429
  class GoogleCloudSecuritycenterV2Allowed
4275
4430
  include Google::Apis::Core::Hashable
@@ -5645,6 +5800,39 @@ module Google
5645
5800
  end
5646
5801
  end
5647
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
+
5648
5836
  # Denied IP rule.
5649
5837
  class GoogleCloudSecuritycenterV2Denied
5650
5838
  include Google::Apis::Core::Hashable
@@ -6046,6 +6234,11 @@ module Google
6046
6234
  # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AffectedResources]
6047
6235
  attr_accessor :affected_resources
6048
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
+
6049
6242
  # Represents an application associated with a finding.
6050
6243
  # Corresponds to the JSON property `application`
6051
6244
  # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Application]
@@ -6304,7 +6497,7 @@ module Google
6304
6497
  # @return [String]
6305
6498
  attr_accessor :mute_update_time
6306
6499
 
6307
- # The [relative resource name](https://cloud.google.com/apis/design/
6500
+ # Identifier. The [relative resource name](https://cloud.google.com/apis/design/
6308
6501
  # resource_names#relative_resource_name) of the finding. The following list
6309
6502
  # shows some examples: + `organizations/`organization_id`/sources/`source_id`/
6310
6503
  # findings/`finding_id`` + `organizations/`organization_id`/sources/`source_id`/
@@ -6414,6 +6607,11 @@ module Google
6414
6607
  # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ToxicCombination]
6415
6608
  attr_accessor :toxic_combination
6416
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
+
6417
6615
  # Refers to common vulnerability fields e.g. cve, cvss, cwe etc.
6418
6616
  # Corresponds to the JSON property `vulnerability`
6419
6617
  # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Vulnerability]
@@ -6427,6 +6625,7 @@ module Google
6427
6625
  def update!(**args)
6428
6626
  @access = args[:access] if args.key?(:access)
6429
6627
  @affected_resources = args[:affected_resources] if args.key?(:affected_resources)
6628
+ @ai_model = args[:ai_model] if args.key?(:ai_model)
6430
6629
  @application = args[:application] if args.key?(:application)
6431
6630
  @attack_exposure = args[:attack_exposure] if args.key?(:attack_exposure)
6432
6631
  @backup_disaster_recovery = args[:backup_disaster_recovery] if args.key?(:backup_disaster_recovery)
@@ -6483,6 +6682,7 @@ module Google
6483
6682
  @source_properties = args[:source_properties] if args.key?(:source_properties)
6484
6683
  @state = args[:state] if args.key?(:state)
6485
6684
  @toxic_combination = args[:toxic_combination] if args.key?(:toxic_combination)
6685
+ @vertex_ai = args[:vertex_ai] if args.key?(:vertex_ai)
6486
6686
  @vulnerability = args[:vulnerability] if args.key?(:vulnerability)
6487
6687
  end
6488
6688
  end
@@ -7878,6 +8078,32 @@ module Google
7878
8078
  end
7879
8079
  end
7880
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
+
7881
8107
  # A Kubernetes Pod.
7882
8108
  class GoogleCloudSecuritycenterV2Pod
7883
8109
  include Google::Apis::Core::Hashable
@@ -8810,6 +9036,31 @@ module Google
8810
9036
  end
8811
9037
  end
8812
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
+
8813
9064
  # Refers to common vulnerability fields e.g. cve, cvss, cwe etc.
8814
9065
  class GoogleCloudSecuritycenterV2Vulnerability
8815
9066
  include Google::Apis::Core::Hashable
@@ -10132,6 +10383,32 @@ module Google
10132
10383
  end
10133
10384
  end
10134
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
+
10135
10412
  # A Kubernetes Pod.
10136
10413
  class Pod
10137
10414
  include Google::Apis::Core::Hashable
@@ -11201,6 +11478,31 @@ module Google
11201
11478
  end
11202
11479
  end
11203
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
+
11204
11506
  # Refers to common vulnerability fields e.g. cve, cvss, cwe etc.
11205
11507
  class Vulnerability
11206
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.90.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 = "20250519"
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
 
@@ -550,6 +562,12 @@ module Google
550
562
  include Google::Apis::Core::JsonObjectSupport
551
563
  end
552
564
 
565
+ class GoogleCloudSecuritycenterV2AiModel
566
+ class Representation < Google::Apis::Core::JsonRepresentation; end
567
+
568
+ include Google::Apis::Core::JsonObjectSupport
569
+ end
570
+
553
571
  class GoogleCloudSecuritycenterV2Allowed
554
572
  class Representation < Google::Apis::Core::JsonRepresentation; end
555
573
 
@@ -754,6 +772,12 @@ module Google
754
772
  include Google::Apis::Core::JsonObjectSupport
755
773
  end
756
774
 
775
+ class GoogleCloudSecuritycenterV2Dataset
776
+ class Representation < Google::Apis::Core::JsonRepresentation; end
777
+
778
+ include Google::Apis::Core::JsonObjectSupport
779
+ end
780
+
757
781
  class GoogleCloudSecuritycenterV2Denied
758
782
  class Representation < Google::Apis::Core::JsonRepresentation; end
759
783
 
@@ -1066,6 +1090,12 @@ module Google
1066
1090
  include Google::Apis::Core::JsonObjectSupport
1067
1091
  end
1068
1092
 
1093
+ class GoogleCloudSecuritycenterV2Pipeline
1094
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1095
+
1096
+ include Google::Apis::Core::JsonObjectSupport
1097
+ end
1098
+
1069
1099
  class GoogleCloudSecuritycenterV2Pod
1070
1100
  class Representation < Google::Apis::Core::JsonRepresentation; end
1071
1101
 
@@ -1198,6 +1228,12 @@ module Google
1198
1228
  include Google::Apis::Core::JsonObjectSupport
1199
1229
  end
1200
1230
 
1231
+ class GoogleCloudSecuritycenterV2VertexAi
1232
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1233
+
1234
+ include Google::Apis::Core::JsonObjectSupport
1235
+ end
1236
+
1201
1237
  class GoogleCloudSecuritycenterV2Vulnerability
1202
1238
  class Representation < Google::Apis::Core::JsonRepresentation; end
1203
1239
 
@@ -1408,6 +1444,12 @@ module Google
1408
1444
  include Google::Apis::Core::JsonObjectSupport
1409
1445
  end
1410
1446
 
1447
+ class Pipeline
1448
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1449
+
1450
+ include Google::Apis::Core::JsonObjectSupport
1451
+ end
1452
+
1411
1453
  class Pod
1412
1454
  class Representation < Google::Apis::Core::JsonRepresentation; end
1413
1455
 
@@ -1576,6 +1618,12 @@ module Google
1576
1618
  include Google::Apis::Core::JsonObjectSupport
1577
1619
  end
1578
1620
 
1621
+ class VertexAi
1622
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1623
+
1624
+ include Google::Apis::Core::JsonObjectSupport
1625
+ end
1626
+
1579
1627
  class Vulnerability
1580
1628
  class Representation < Google::Apis::Core::JsonRepresentation; end
1581
1629
 
@@ -1646,6 +1694,19 @@ module Google
1646
1694
  end
1647
1695
  end
1648
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
+
1649
1710
  class Allowed
1650
1711
  # @private
1651
1712
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2021,6 +2082,15 @@ module Google
2021
2082
  end
2022
2083
  end
2023
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
+
2024
2094
  class Denied
2025
2095
  # @private
2026
2096
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2133,6 +2203,8 @@ module Google
2133
2203
 
2134
2204
  property :affected_resources, as: 'affectedResources', class: Google::Apis::SecuritycenterV1beta1::AffectedResources, decorator: Google::Apis::SecuritycenterV1beta1::AffectedResources::Representation
2135
2205
 
2206
+ property :ai_model, as: 'aiModel', class: Google::Apis::SecuritycenterV1beta1::AiModel, decorator: Google::Apis::SecuritycenterV1beta1::AiModel::Representation
2207
+
2136
2208
  property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta1::Application, decorator: Google::Apis::SecuritycenterV1beta1::Application::Representation
2137
2209
 
2138
2210
  property :attack_exposure, as: 'attackExposure', class: Google::Apis::SecuritycenterV1beta1::AttackExposure, decorator: Google::Apis::SecuritycenterV1beta1::AttackExposure::Representation
@@ -2226,6 +2298,8 @@ module Google
2226
2298
  property :state, as: 'state'
2227
2299
  property :toxic_combination, as: 'toxicCombination', class: Google::Apis::SecuritycenterV1beta1::ToxicCombination, decorator: Google::Apis::SecuritycenterV1beta1::ToxicCombination::Representation
2228
2300
 
2301
+ property :vertex_ai, as: 'vertexAi', class: Google::Apis::SecuritycenterV1beta1::VertexAi, decorator: Google::Apis::SecuritycenterV1beta1::VertexAi::Representation
2302
+
2229
2303
  property :vulnerability, as: 'vulnerability', class: Google::Apis::SecuritycenterV1beta1::Vulnerability, decorator: Google::Apis::SecuritycenterV1beta1::Vulnerability::Representation
2230
2304
 
2231
2305
  end
@@ -2623,6 +2697,19 @@ module Google
2623
2697
  end
2624
2698
  end
2625
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
+
2626
2713
  class GoogleCloudSecuritycenterV2Allowed
2627
2714
  # @private
2628
2715
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2975,6 +3062,15 @@ module Google
2975
3062
  end
2976
3063
  end
2977
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
+
2978
3074
  class GoogleCloudSecuritycenterV2Denied
2979
3075
  # @private
2980
3076
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3089,6 +3185,8 @@ module Google
3089
3185
 
3090
3186
  property :affected_resources, as: 'affectedResources', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AffectedResources, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AffectedResources::Representation
3091
3187
 
3188
+ property :ai_model, as: 'aiModel', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AiModel, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AiModel::Representation
3189
+
3092
3190
  property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Application, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Application::Representation
3093
3191
 
3094
3192
  property :attack_exposure, as: 'attackExposure', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AttackExposure, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AttackExposure::Representation
@@ -3182,6 +3280,8 @@ module Google
3182
3280
  property :state, as: 'state'
3183
3281
  property :toxic_combination, as: 'toxicCombination', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ToxicCombination, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ToxicCombination::Representation
3184
3282
 
3283
+ property :vertex_ai, as: 'vertexAi', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2VertexAi, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2VertexAi::Representation
3284
+
3185
3285
  property :vulnerability, as: 'vulnerability', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Vulnerability, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Vulnerability::Representation
3186
3286
 
3187
3287
  end
@@ -3590,6 +3690,14 @@ module Google
3590
3690
  end
3591
3691
  end
3592
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
+
3593
3701
  class GoogleCloudSecuritycenterV2Pod
3594
3702
  # @private
3595
3703
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3828,6 +3936,16 @@ module Google
3828
3936
  end
3829
3937
  end
3830
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
+
3831
3949
  class GoogleCloudSecuritycenterV2Vulnerability
3832
3950
  # @private
3833
3951
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4186,6 +4304,14 @@ module Google
4186
4304
  end
4187
4305
  end
4188
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
+
4189
4315
  class Pod
4190
4316
  # @private
4191
4317
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4455,6 +4581,16 @@ module Google
4455
4581
  end
4456
4582
  end
4457
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
+
4458
4594
  class Vulnerability
4459
4595
  # @private
4460
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.90.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.90.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: