google-apis-securitycenter_v1beta2 0.82.0 → 0.83.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: 0d6ec61e0cba422dbc57e0f084d10080ac098e5566b8e20eb1ce28e74cd6b3b3
4
- data.tar.gz: d703617ae21f6df50a8d84c31894369ab6d25f46dc671876817a87682bc103dc
3
+ metadata.gz: 0aef32e70dce399defaf479275cd8ee83d644946a84a70385c7c4da0ec653b23
4
+ data.tar.gz: 1876d7f39e0ec685fcfe3b68bca639cd61bf0b712e6ec01732a0ad0e3a8e94d2
5
5
  SHA512:
6
- metadata.gz: cbd580595e8c53a81c43edffcbe81dff1ac8c13e415533c174a7bc675ac9c1a8b42f803094911bd0b69d702ee98b809bf91f677aa405775ff81f80a8155376f7
7
- data.tar.gz: d4579c5c4ba3ec05b0be41067bc22b0d76d425a481d5842a57e0a327188758e7a366163fdb82ea23ebe63e94037af2ee5c36473397cb282e582d2e68a14ba6c9
6
+ metadata.gz: 5dab2a345018628aece3e3052b05a4960669e43b73e2763eb33d7c7b321d32f73a939bdde21402c0cacfc77a15602d362bc450d2812849b7ba144f764f202576
7
+ data.tar.gz: dc9df10fbaf208b43e69fe3169daa6afc61b4e4b2298cf80f322e6c58900a9ead389230691dcca8afb30a0bbe737ba0b7bbe31d26c4dfd5a04ebfbef24193bdf
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-securitycenter_v1beta2
2
2
 
3
+ ### v0.83.0 (2025-06-15)
4
+
5
+ * Regenerated from discovery document revision 20250609
6
+ * Regenerated using generator version 0.18.0
7
+
3
8
  ### v0.82.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
@@ -1548,6 +1603,39 @@ module Google
1548
1603
  end
1549
1604
  end
1550
1605
 
1606
+ # Vertex AI dataset associated with the finding.
1607
+ class Dataset
1608
+ include Google::Apis::Core::Hashable
1609
+
1610
+ # The user defined display name of dataset, e.g. plants-dataset
1611
+ # Corresponds to the JSON property `displayName`
1612
+ # @return [String]
1613
+ attr_accessor :display_name
1614
+
1615
+ # Resource name of dataset, e.g. projects/`project`/locations/`location`/
1616
+ # datasets/2094040236064505856
1617
+ # Corresponds to the JSON property `name`
1618
+ # @return [String]
1619
+ attr_accessor :name
1620
+
1621
+ # Data source, such as BigQuery source URI, e.g. bq://scc-nexus-test.AIPPtest.
1622
+ # gsod
1623
+ # Corresponds to the JSON property `source`
1624
+ # @return [String]
1625
+ attr_accessor :source
1626
+
1627
+ def initialize(**args)
1628
+ update!(**args)
1629
+ end
1630
+
1631
+ # Update properties of this object
1632
+ def update!(**args)
1633
+ @display_name = args[:display_name] if args.key?(:display_name)
1634
+ @name = args[:name] if args.key?(:name)
1635
+ @source = args[:source] if args.key?(:source)
1636
+ end
1637
+ end
1638
+
1551
1639
  # Denied IP rule.
1552
1640
  class Denied
1553
1641
  include Google::Apis::Core::Hashable
@@ -1987,6 +2075,11 @@ module Google
1987
2075
  # @return [Google::Apis::SecuritycenterV1beta2::AffectedResources]
1988
2076
  attr_accessor :affected_resources
1989
2077
 
2078
+ # Contains information about the AI model associated with the finding.
2079
+ # Corresponds to the JSON property `aiModel`
2080
+ # @return [Google::Apis::SecuritycenterV1beta2::AiModel]
2081
+ attr_accessor :ai_model
2082
+
1990
2083
  # Represents an application associated with a finding.
1991
2084
  # Corresponds to the JSON property `application`
1992
2085
  # @return [Google::Apis::SecuritycenterV1beta2::Application]
@@ -2341,6 +2434,11 @@ module Google
2341
2434
  # @return [Google::Apis::SecuritycenterV1beta2::ToxicCombination]
2342
2435
  attr_accessor :toxic_combination
2343
2436
 
2437
+ # Vertex AI-related information associated with the finding.
2438
+ # Corresponds to the JSON property `vertexAi`
2439
+ # @return [Google::Apis::SecuritycenterV1beta2::VertexAi]
2440
+ attr_accessor :vertex_ai
2441
+
2344
2442
  # Refers to common vulnerability fields e.g. cve, cvss, cwe etc.
2345
2443
  # Corresponds to the JSON property `vulnerability`
2346
2444
  # @return [Google::Apis::SecuritycenterV1beta2::Vulnerability]
@@ -2354,6 +2452,7 @@ module Google
2354
2452
  def update!(**args)
2355
2453
  @access = args[:access] if args.key?(:access)
2356
2454
  @affected_resources = args[:affected_resources] if args.key?(:affected_resources)
2455
+ @ai_model = args[:ai_model] if args.key?(:ai_model)
2357
2456
  @application = args[:application] if args.key?(:application)
2358
2457
  @attack_exposure = args[:attack_exposure] if args.key?(:attack_exposure)
2359
2458
  @backup_disaster_recovery = args[:backup_disaster_recovery] if args.key?(:backup_disaster_recovery)
@@ -2410,6 +2509,7 @@ module Google
2410
2509
  @source_properties = args[:source_properties] if args.key?(:source_properties)
2411
2510
  @state = args[:state] if args.key?(:state)
2412
2511
  @toxic_combination = args[:toxic_combination] if args.key?(:toxic_combination)
2512
+ @vertex_ai = args[:vertex_ai] if args.key?(:vertex_ai)
2413
2513
  @vulnerability = args[:vulnerability] if args.key?(:vulnerability)
2414
2514
  end
2415
2515
  end
@@ -3954,6 +4054,61 @@ module Google
3954
4054
  end
3955
4055
  end
3956
4056
 
4057
+ # Contains information about the AI model associated with the finding.
4058
+ class GoogleCloudSecuritycenterV2AiModel
4059
+ include Google::Apis::Core::Hashable
4060
+
4061
+ # The platform on which the model is deployed.
4062
+ # Corresponds to the JSON property `deploymentPlatform`
4063
+ # @return [String]
4064
+ attr_accessor :deployment_platform
4065
+
4066
+ # The user defined display name of model. Ex. baseline-classification-model
4067
+ # Corresponds to the JSON property `displayName`
4068
+ # @return [String]
4069
+ attr_accessor :display_name
4070
+
4071
+ # The domain of the model, for example, “image-classification”.
4072
+ # Corresponds to the JSON property `domain`
4073
+ # @return [String]
4074
+ attr_accessor :domain
4075
+
4076
+ # The name of the model library, for example, “transformers”.
4077
+ # Corresponds to the JSON property `library`
4078
+ # @return [String]
4079
+ attr_accessor :library
4080
+
4081
+ # The region in which the model is used, for example, “us-central1”.
4082
+ # Corresponds to the JSON property `location`
4083
+ # @return [String]
4084
+ attr_accessor :location
4085
+
4086
+ # The name of the AI model, for example, "gemini:1.0.0".
4087
+ # Corresponds to the JSON property `name`
4088
+ # @return [String]
4089
+ attr_accessor :name
4090
+
4091
+ # The publisher of the model, for example, “google” or “nvidia”.
4092
+ # Corresponds to the JSON property `publisher`
4093
+ # @return [String]
4094
+ attr_accessor :publisher
4095
+
4096
+ def initialize(**args)
4097
+ update!(**args)
4098
+ end
4099
+
4100
+ # Update properties of this object
4101
+ def update!(**args)
4102
+ @deployment_platform = args[:deployment_platform] if args.key?(:deployment_platform)
4103
+ @display_name = args[:display_name] if args.key?(:display_name)
4104
+ @domain = args[:domain] if args.key?(:domain)
4105
+ @library = args[:library] if args.key?(:library)
4106
+ @location = args[:location] if args.key?(:location)
4107
+ @name = args[:name] if args.key?(:name)
4108
+ @publisher = args[:publisher] if args.key?(:publisher)
4109
+ end
4110
+ end
4111
+
3957
4112
  # Allowed IP rule.
3958
4113
  class GoogleCloudSecuritycenterV2Allowed
3959
4114
  include Google::Apis::Core::Hashable
@@ -5329,6 +5484,39 @@ module Google
5329
5484
  end
5330
5485
  end
5331
5486
 
5487
+ # Vertex AI dataset associated with the finding.
5488
+ class GoogleCloudSecuritycenterV2Dataset
5489
+ include Google::Apis::Core::Hashable
5490
+
5491
+ # The user defined display name of dataset, e.g. plants-dataset
5492
+ # Corresponds to the JSON property `displayName`
5493
+ # @return [String]
5494
+ attr_accessor :display_name
5495
+
5496
+ # Resource name of dataset, e.g. projects/`project`/locations/`location`/
5497
+ # datasets/2094040236064505856
5498
+ # Corresponds to the JSON property `name`
5499
+ # @return [String]
5500
+ attr_accessor :name
5501
+
5502
+ # Data source, such as BigQuery source URI, e.g. bq://scc-nexus-test.AIPPtest.
5503
+ # gsod
5504
+ # Corresponds to the JSON property `source`
5505
+ # @return [String]
5506
+ attr_accessor :source
5507
+
5508
+ def initialize(**args)
5509
+ update!(**args)
5510
+ end
5511
+
5512
+ # Update properties of this object
5513
+ def update!(**args)
5514
+ @display_name = args[:display_name] if args.key?(:display_name)
5515
+ @name = args[:name] if args.key?(:name)
5516
+ @source = args[:source] if args.key?(:source)
5517
+ end
5518
+ end
5519
+
5332
5520
  # Denied IP rule.
5333
5521
  class GoogleCloudSecuritycenterV2Denied
5334
5522
  include Google::Apis::Core::Hashable
@@ -5730,6 +5918,11 @@ module Google
5730
5918
  # @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AffectedResources]
5731
5919
  attr_accessor :affected_resources
5732
5920
 
5921
+ # Contains information about the AI model associated with the finding.
5922
+ # Corresponds to the JSON property `aiModel`
5923
+ # @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AiModel]
5924
+ attr_accessor :ai_model
5925
+
5733
5926
  # Represents an application associated with a finding.
5734
5927
  # Corresponds to the JSON property `application`
5735
5928
  # @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Application]
@@ -5988,7 +6181,7 @@ module Google
5988
6181
  # @return [String]
5989
6182
  attr_accessor :mute_update_time
5990
6183
 
5991
- # The [relative resource name](https://cloud.google.com/apis/design/
6184
+ # Identifier. The [relative resource name](https://cloud.google.com/apis/design/
5992
6185
  # resource_names#relative_resource_name) of the finding. The following list
5993
6186
  # shows some examples: + `organizations/`organization_id`/sources/`source_id`/
5994
6187
  # findings/`finding_id`` + `organizations/`organization_id`/sources/`source_id`/
@@ -6098,6 +6291,11 @@ module Google
6098
6291
  # @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ToxicCombination]
6099
6292
  attr_accessor :toxic_combination
6100
6293
 
6294
+ # Vertex AI-related information associated with the finding.
6295
+ # Corresponds to the JSON property `vertexAi`
6296
+ # @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2VertexAi]
6297
+ attr_accessor :vertex_ai
6298
+
6101
6299
  # Refers to common vulnerability fields e.g. cve, cvss, cwe etc.
6102
6300
  # Corresponds to the JSON property `vulnerability`
6103
6301
  # @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Vulnerability]
@@ -6111,6 +6309,7 @@ module Google
6111
6309
  def update!(**args)
6112
6310
  @access = args[:access] if args.key?(:access)
6113
6311
  @affected_resources = args[:affected_resources] if args.key?(:affected_resources)
6312
+ @ai_model = args[:ai_model] if args.key?(:ai_model)
6114
6313
  @application = args[:application] if args.key?(:application)
6115
6314
  @attack_exposure = args[:attack_exposure] if args.key?(:attack_exposure)
6116
6315
  @backup_disaster_recovery = args[:backup_disaster_recovery] if args.key?(:backup_disaster_recovery)
@@ -6167,6 +6366,7 @@ module Google
6167
6366
  @source_properties = args[:source_properties] if args.key?(:source_properties)
6168
6367
  @state = args[:state] if args.key?(:state)
6169
6368
  @toxic_combination = args[:toxic_combination] if args.key?(:toxic_combination)
6369
+ @vertex_ai = args[:vertex_ai] if args.key?(:vertex_ai)
6170
6370
  @vulnerability = args[:vulnerability] if args.key?(:vulnerability)
6171
6371
  end
6172
6372
  end
@@ -7562,6 +7762,32 @@ module Google
7562
7762
  end
7563
7763
  end
7564
7764
 
7765
+ # Vertex AI training pipeline associated with the finding.
7766
+ class GoogleCloudSecuritycenterV2Pipeline
7767
+ include Google::Apis::Core::Hashable
7768
+
7769
+ # The user defined display name of pipeline, e.g. plants-classification
7770
+ # Corresponds to the JSON property `displayName`
7771
+ # @return [String]
7772
+ attr_accessor :display_name
7773
+
7774
+ # Resource name of pipeline, e.g. projects/`project`/locations/`location`/
7775
+ # trainingPipelines/5253428229225578496
7776
+ # Corresponds to the JSON property `name`
7777
+ # @return [String]
7778
+ attr_accessor :name
7779
+
7780
+ def initialize(**args)
7781
+ update!(**args)
7782
+ end
7783
+
7784
+ # Update properties of this object
7785
+ def update!(**args)
7786
+ @display_name = args[:display_name] if args.key?(:display_name)
7787
+ @name = args[:name] if args.key?(:name)
7788
+ end
7789
+ end
7790
+
7565
7791
  # A Kubernetes Pod.
7566
7792
  class GoogleCloudSecuritycenterV2Pod
7567
7793
  include Google::Apis::Core::Hashable
@@ -8494,6 +8720,31 @@ module Google
8494
8720
  end
8495
8721
  end
8496
8722
 
8723
+ # Vertex AI-related information associated with the finding.
8724
+ class GoogleCloudSecuritycenterV2VertexAi
8725
+ include Google::Apis::Core::Hashable
8726
+
8727
+ # Datasets associated with the finding.
8728
+ # Corresponds to the JSON property `datasets`
8729
+ # @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Dataset>]
8730
+ attr_accessor :datasets
8731
+
8732
+ # Pipelines associated with the finding.
8733
+ # Corresponds to the JSON property `pipelines`
8734
+ # @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Pipeline>]
8735
+ attr_accessor :pipelines
8736
+
8737
+ def initialize(**args)
8738
+ update!(**args)
8739
+ end
8740
+
8741
+ # Update properties of this object
8742
+ def update!(**args)
8743
+ @datasets = args[:datasets] if args.key?(:datasets)
8744
+ @pipelines = args[:pipelines] if args.key?(:pipelines)
8745
+ end
8746
+ end
8747
+
8497
8748
  # Refers to common vulnerability fields e.g. cve, cvss, cwe etc.
8498
8749
  class GoogleCloudSecuritycenterV2Vulnerability
8499
8750
  include Google::Apis::Core::Hashable
@@ -9322,6 +9573,32 @@ module Google
9322
9573
  end
9323
9574
  end
9324
9575
 
9576
+ # Vertex AI training pipeline associated with the finding.
9577
+ class Pipeline
9578
+ include Google::Apis::Core::Hashable
9579
+
9580
+ # The user defined display name of pipeline, e.g. plants-classification
9581
+ # Corresponds to the JSON property `displayName`
9582
+ # @return [String]
9583
+ attr_accessor :display_name
9584
+
9585
+ # Resource name of pipeline, e.g. projects/`project`/locations/`location`/
9586
+ # trainingPipelines/5253428229225578496
9587
+ # Corresponds to the JSON property `name`
9588
+ # @return [String]
9589
+ attr_accessor :name
9590
+
9591
+ def initialize(**args)
9592
+ update!(**args)
9593
+ end
9594
+
9595
+ # Update properties of this object
9596
+ def update!(**args)
9597
+ @display_name = args[:display_name] if args.key?(:display_name)
9598
+ @name = args[:name] if args.key?(:name)
9599
+ end
9600
+ end
9601
+
9325
9602
  # A Kubernetes Pod.
9326
9603
  class Pod
9327
9604
  include Google::Apis::Core::Hashable
@@ -10202,6 +10479,31 @@ module Google
10202
10479
  end
10203
10480
  end
10204
10481
 
10482
+ # Vertex AI-related information associated with the finding.
10483
+ class VertexAi
10484
+ include Google::Apis::Core::Hashable
10485
+
10486
+ # Datasets associated with the finding.
10487
+ # Corresponds to the JSON property `datasets`
10488
+ # @return [Array<Google::Apis::SecuritycenterV1beta2::Dataset>]
10489
+ attr_accessor :datasets
10490
+
10491
+ # Pipelines associated with the finding.
10492
+ # Corresponds to the JSON property `pipelines`
10493
+ # @return [Array<Google::Apis::SecuritycenterV1beta2::Pipeline>]
10494
+ attr_accessor :pipelines
10495
+
10496
+ def initialize(**args)
10497
+ update!(**args)
10498
+ end
10499
+
10500
+ # Update properties of this object
10501
+ def update!(**args)
10502
+ @datasets = args[:datasets] if args.key?(:datasets)
10503
+ @pipelines = args[:pipelines] if args.key?(:pipelines)
10504
+ end
10505
+ end
10506
+
10205
10507
  # Resource capturing the settings for the Virtual Machine Threat Detection
10206
10508
  # service.
10207
10509
  class VirtualMachineThreatDetectionSettings
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module SecuritycenterV1beta2
18
18
  # Version of the google-apis-securitycenter_v1beta2 gem
19
- GEM_VERSION = "0.82.0"
19
+ GEM_VERSION = "0.83.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
 
@@ -244,6 +250,12 @@ module Google
244
250
  include Google::Apis::Core::JsonObjectSupport
245
251
  end
246
252
 
253
+ class Dataset
254
+ class Representation < Google::Apis::Core::JsonRepresentation; end
255
+
256
+ include Google::Apis::Core::JsonObjectSupport
257
+ end
258
+
247
259
  class Denied
248
260
  class Representation < Google::Apis::Core::JsonRepresentation; end
249
261
 
@@ -508,6 +520,12 @@ module Google
508
520
  include Google::Apis::Core::JsonObjectSupport
509
521
  end
510
522
 
523
+ class GoogleCloudSecuritycenterV2AiModel
524
+ class Representation < Google::Apis::Core::JsonRepresentation; end
525
+
526
+ include Google::Apis::Core::JsonObjectSupport
527
+ end
528
+
511
529
  class GoogleCloudSecuritycenterV2Allowed
512
530
  class Representation < Google::Apis::Core::JsonRepresentation; end
513
531
 
@@ -712,6 +730,12 @@ module Google
712
730
  include Google::Apis::Core::JsonObjectSupport
713
731
  end
714
732
 
733
+ class GoogleCloudSecuritycenterV2Dataset
734
+ class Representation < Google::Apis::Core::JsonRepresentation; end
735
+
736
+ include Google::Apis::Core::JsonObjectSupport
737
+ end
738
+
715
739
  class GoogleCloudSecuritycenterV2Denied
716
740
  class Representation < Google::Apis::Core::JsonRepresentation; end
717
741
 
@@ -1024,6 +1048,12 @@ module Google
1024
1048
  include Google::Apis::Core::JsonObjectSupport
1025
1049
  end
1026
1050
 
1051
+ class GoogleCloudSecuritycenterV2Pipeline
1052
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1053
+
1054
+ include Google::Apis::Core::JsonObjectSupport
1055
+ end
1056
+
1027
1057
  class GoogleCloudSecuritycenterV2Pod
1028
1058
  class Representation < Google::Apis::Core::JsonRepresentation; end
1029
1059
 
@@ -1156,6 +1186,12 @@ module Google
1156
1186
  include Google::Apis::Core::JsonObjectSupport
1157
1187
  end
1158
1188
 
1189
+ class GoogleCloudSecuritycenterV2VertexAi
1190
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1191
+
1192
+ include Google::Apis::Core::JsonObjectSupport
1193
+ end
1194
+
1159
1195
  class GoogleCloudSecuritycenterV2Vulnerability
1160
1196
  class Representation < Google::Apis::Core::JsonRepresentation; end
1161
1197
 
@@ -1294,6 +1330,12 @@ module Google
1294
1330
  include Google::Apis::Core::JsonObjectSupport
1295
1331
  end
1296
1332
 
1333
+ class Pipeline
1334
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1335
+
1336
+ include Google::Apis::Core::JsonObjectSupport
1337
+ end
1338
+
1297
1339
  class Pod
1298
1340
  class Representation < Google::Apis::Core::JsonRepresentation; end
1299
1341
 
@@ -1432,6 +1474,12 @@ module Google
1432
1474
  include Google::Apis::Core::JsonObjectSupport
1433
1475
  end
1434
1476
 
1477
+ class VertexAi
1478
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1479
+
1480
+ include Google::Apis::Core::JsonObjectSupport
1481
+ end
1482
+
1435
1483
  class VirtualMachineThreatDetectionSettings
1436
1484
  class Representation < Google::Apis::Core::JsonRepresentation; end
1437
1485
 
@@ -1514,6 +1562,19 @@ module Google
1514
1562
  end
1515
1563
  end
1516
1564
 
1565
+ class AiModel
1566
+ # @private
1567
+ class Representation < Google::Apis::Core::JsonRepresentation
1568
+ property :deployment_platform, as: 'deploymentPlatform'
1569
+ property :display_name, as: 'displayName'
1570
+ property :domain, as: 'domain'
1571
+ property :library, as: 'library'
1572
+ property :location, as: 'location'
1573
+ property :name, as: 'name'
1574
+ property :publisher, as: 'publisher'
1575
+ end
1576
+ end
1577
+
1517
1578
  class Allowed
1518
1579
  # @private
1519
1580
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1854,6 +1915,15 @@ module Google
1854
1915
  end
1855
1916
  end
1856
1917
 
1918
+ class Dataset
1919
+ # @private
1920
+ class Representation < Google::Apis::Core::JsonRepresentation
1921
+ property :display_name, as: 'displayName'
1922
+ property :name, as: 'name'
1923
+ property :source, as: 'source'
1924
+ end
1925
+ end
1926
+
1857
1927
  class Denied
1858
1928
  # @private
1859
1929
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1980,6 +2050,8 @@ module Google
1980
2050
 
1981
2051
  property :affected_resources, as: 'affectedResources', class: Google::Apis::SecuritycenterV1beta2::AffectedResources, decorator: Google::Apis::SecuritycenterV1beta2::AffectedResources::Representation
1982
2052
 
2053
+ property :ai_model, as: 'aiModel', class: Google::Apis::SecuritycenterV1beta2::AiModel, decorator: Google::Apis::SecuritycenterV1beta2::AiModel::Representation
2054
+
1983
2055
  property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta2::Application, decorator: Google::Apis::SecuritycenterV1beta2::Application::Representation
1984
2056
 
1985
2057
  property :attack_exposure, as: 'attackExposure', class: Google::Apis::SecuritycenterV1beta2::AttackExposure, decorator: Google::Apis::SecuritycenterV1beta2::AttackExposure::Representation
@@ -2073,6 +2145,8 @@ module Google
2073
2145
  property :state, as: 'state'
2074
2146
  property :toxic_combination, as: 'toxicCombination', class: Google::Apis::SecuritycenterV1beta2::ToxicCombination, decorator: Google::Apis::SecuritycenterV1beta2::ToxicCombination::Representation
2075
2147
 
2148
+ property :vertex_ai, as: 'vertexAi', class: Google::Apis::SecuritycenterV1beta2::VertexAi, decorator: Google::Apis::SecuritycenterV1beta2::VertexAi::Representation
2149
+
2076
2150
  property :vulnerability, as: 'vulnerability', class: Google::Apis::SecuritycenterV1beta2::Vulnerability, decorator: Google::Apis::SecuritycenterV1beta2::Vulnerability::Representation
2077
2151
 
2078
2152
  end
@@ -2430,6 +2504,19 @@ module Google
2430
2504
  end
2431
2505
  end
2432
2506
 
2507
+ class GoogleCloudSecuritycenterV2AiModel
2508
+ # @private
2509
+ class Representation < Google::Apis::Core::JsonRepresentation
2510
+ property :deployment_platform, as: 'deploymentPlatform'
2511
+ property :display_name, as: 'displayName'
2512
+ property :domain, as: 'domain'
2513
+ property :library, as: 'library'
2514
+ property :location, as: 'location'
2515
+ property :name, as: 'name'
2516
+ property :publisher, as: 'publisher'
2517
+ end
2518
+ end
2519
+
2433
2520
  class GoogleCloudSecuritycenterV2Allowed
2434
2521
  # @private
2435
2522
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2782,6 +2869,15 @@ module Google
2782
2869
  end
2783
2870
  end
2784
2871
 
2872
+ class GoogleCloudSecuritycenterV2Dataset
2873
+ # @private
2874
+ class Representation < Google::Apis::Core::JsonRepresentation
2875
+ property :display_name, as: 'displayName'
2876
+ property :name, as: 'name'
2877
+ property :source, as: 'source'
2878
+ end
2879
+ end
2880
+
2785
2881
  class GoogleCloudSecuritycenterV2Denied
2786
2882
  # @private
2787
2883
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2896,6 +2992,8 @@ module Google
2896
2992
 
2897
2993
  property :affected_resources, as: 'affectedResources', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AffectedResources, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AffectedResources::Representation
2898
2994
 
2995
+ property :ai_model, as: 'aiModel', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AiModel, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AiModel::Representation
2996
+
2899
2997
  property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Application, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Application::Representation
2900
2998
 
2901
2999
  property :attack_exposure, as: 'attackExposure', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AttackExposure, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AttackExposure::Representation
@@ -2989,6 +3087,8 @@ module Google
2989
3087
  property :state, as: 'state'
2990
3088
  property :toxic_combination, as: 'toxicCombination', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ToxicCombination, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ToxicCombination::Representation
2991
3089
 
3090
+ property :vertex_ai, as: 'vertexAi', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2VertexAi, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2VertexAi::Representation
3091
+
2992
3092
  property :vulnerability, as: 'vulnerability', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Vulnerability, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Vulnerability::Representation
2993
3093
 
2994
3094
  end
@@ -3397,6 +3497,14 @@ module Google
3397
3497
  end
3398
3498
  end
3399
3499
 
3500
+ class GoogleCloudSecuritycenterV2Pipeline
3501
+ # @private
3502
+ class Representation < Google::Apis::Core::JsonRepresentation
3503
+ property :display_name, as: 'displayName'
3504
+ property :name, as: 'name'
3505
+ end
3506
+ end
3507
+
3400
3508
  class GoogleCloudSecuritycenterV2Pod
3401
3509
  # @private
3402
3510
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3635,6 +3743,16 @@ module Google
3635
3743
  end
3636
3744
  end
3637
3745
 
3746
+ class GoogleCloudSecuritycenterV2VertexAi
3747
+ # @private
3748
+ class Representation < Google::Apis::Core::JsonRepresentation
3749
+ collection :datasets, as: 'datasets', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Dataset, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Dataset::Representation
3750
+
3751
+ collection :pipelines, as: 'pipelines', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Pipeline, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Pipeline::Representation
3752
+
3753
+ end
3754
+ end
3755
+
3638
3756
  class GoogleCloudSecuritycenterV2Vulnerability
3639
3757
  # @private
3640
3758
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3871,6 +3989,14 @@ module Google
3871
3989
  end
3872
3990
  end
3873
3991
 
3992
+ class Pipeline
3993
+ # @private
3994
+ class Representation < Google::Apis::Core::JsonRepresentation
3995
+ property :display_name, as: 'displayName'
3996
+ property :name, as: 'name'
3997
+ end
3998
+ end
3999
+
3874
4000
  class Pod
3875
4001
  # @private
3876
4002
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4105,6 +4231,16 @@ module Google
4105
4231
  end
4106
4232
  end
4107
4233
 
4234
+ class VertexAi
4235
+ # @private
4236
+ class Representation < Google::Apis::Core::JsonRepresentation
4237
+ collection :datasets, as: 'datasets', class: Google::Apis::SecuritycenterV1beta2::Dataset, decorator: Google::Apis::SecuritycenterV1beta2::Dataset::Representation
4238
+
4239
+ collection :pipelines, as: 'pipelines', class: Google::Apis::SecuritycenterV1beta2::Pipeline, decorator: Google::Apis::SecuritycenterV1beta2::Pipeline::Representation
4240
+
4241
+ end
4242
+ end
4243
+
4108
4244
  class VirtualMachineThreatDetectionSettings
4109
4245
  # @private
4110
4246
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-securitycenter_v1beta2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.82.0
4
+ version: 0.83.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_v1beta2/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.82.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.83.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta2
62
62
  rdoc_options: []
63
63
  require_paths: