google-apis-securitycenter_v1 0.100.0 → 0.101.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: ff402525a681a57f7543a1b9ab2c890fd6079e40f9ae64b117e598af276ebe4b
4
- data.tar.gz: 7dcf3b0e5ca00f373ae7c8454820cec99fe22a34c6349904c37b3f9adcec64eb
3
+ metadata.gz: 82d1ed35c8fce71e219a2621bcf1cff2580f27bba6dfd3b2d0b2947ebf08212a
4
+ data.tar.gz: 15bae746032020f8b2683f5c012a27281b46f5fd44d2629fd839013b4fd0141a
5
5
  SHA512:
6
- metadata.gz: 938cb0966c825091193f3341b712bbda5d211f8222a39df3dfe6af781b315e5b6e4c123f16fcfe06a2813c6de2243dadb7b53919e7e82d653f03e0ba76b8da65
7
- data.tar.gz: e2dafd1f28cd2808a13be96f8bf99d43242e938ba33d8045a45e5ead4cd4a5d7abfa3b7937cd680138111f7e35c82ccf98bb08b000dbf19399e3e9c823caec1d
6
+ metadata.gz: 8ffae427ecd5a720b0cca80aa2c22c49b6f4b05ed54c81be6f08c412ba8c6bb80df3325ac2804bdddd8a0067914d696d92237001a797463f949718f0992918c3
7
+ data.tar.gz: dd5df505d6cdd18ac9fc876c67153e1f7c67173b9d85ef85ed844fc6753d5997450279a4b16251993df1ecd53933e7a3e97789aff0a2041bcdcb21f056a8d5a4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-securitycenter_v1
2
2
 
3
+ ### v0.101.0 (2025-06-15)
4
+
5
+ * Regenerated from discovery document revision 20250609
6
+ * Regenerated using generator version 0.18.0
7
+
3
8
  ### v0.100.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
@@ -2071,6 +2126,39 @@ module Google
2071
2126
  end
2072
2127
  end
2073
2128
 
2129
+ # Vertex AI dataset associated with the finding.
2130
+ class Dataset
2131
+ include Google::Apis::Core::Hashable
2132
+
2133
+ # The user defined display name of dataset, e.g. plants-dataset
2134
+ # Corresponds to the JSON property `displayName`
2135
+ # @return [String]
2136
+ attr_accessor :display_name
2137
+
2138
+ # Resource name of dataset, e.g. projects/`project`/locations/`location`/
2139
+ # datasets/2094040236064505856
2140
+ # Corresponds to the JSON property `name`
2141
+ # @return [String]
2142
+ attr_accessor :name
2143
+
2144
+ # Data source, such as BigQuery source URI, e.g. bq://scc-nexus-test.AIPPtest.
2145
+ # gsod
2146
+ # Corresponds to the JSON property `source`
2147
+ # @return [String]
2148
+ attr_accessor :source
2149
+
2150
+ def initialize(**args)
2151
+ update!(**args)
2152
+ end
2153
+
2154
+ # Update properties of this object
2155
+ def update!(**args)
2156
+ @display_name = args[:display_name] if args.key?(:display_name)
2157
+ @name = args[:name] if args.key?(:name)
2158
+ @source = args[:source] if args.key?(:source)
2159
+ end
2160
+ end
2161
+
2074
2162
  # Denied IP rule.
2075
2163
  class Denied
2076
2164
  include Google::Apis::Core::Hashable
@@ -2606,6 +2694,11 @@ module Google
2606
2694
  # @return [Google::Apis::SecuritycenterV1::AffectedResources]
2607
2695
  attr_accessor :affected_resources
2608
2696
 
2697
+ # Contains information about the AI model associated with the finding.
2698
+ # Corresponds to the JSON property `aiModel`
2699
+ # @return [Google::Apis::SecuritycenterV1::AiModel]
2700
+ attr_accessor :ai_model
2701
+
2609
2702
  # Represents an application associated with a finding.
2610
2703
  # Corresponds to the JSON property `application`
2611
2704
  # @return [Google::Apis::SecuritycenterV1::Application]
@@ -2960,6 +3053,11 @@ module Google
2960
3053
  # @return [Google::Apis::SecuritycenterV1::ToxicCombination]
2961
3054
  attr_accessor :toxic_combination
2962
3055
 
3056
+ # Vertex AI-related information associated with the finding.
3057
+ # Corresponds to the JSON property `vertexAi`
3058
+ # @return [Google::Apis::SecuritycenterV1::VertexAi]
3059
+ attr_accessor :vertex_ai
3060
+
2963
3061
  # Refers to common vulnerability fields e.g. cve, cvss, cwe etc.
2964
3062
  # Corresponds to the JSON property `vulnerability`
2965
3063
  # @return [Google::Apis::SecuritycenterV1::Vulnerability]
@@ -2973,6 +3071,7 @@ module Google
2973
3071
  def update!(**args)
2974
3072
  @access = args[:access] if args.key?(:access)
2975
3073
  @affected_resources = args[:affected_resources] if args.key?(:affected_resources)
3074
+ @ai_model = args[:ai_model] if args.key?(:ai_model)
2976
3075
  @application = args[:application] if args.key?(:application)
2977
3076
  @attack_exposure = args[:attack_exposure] if args.key?(:attack_exposure)
2978
3077
  @backup_disaster_recovery = args[:backup_disaster_recovery] if args.key?(:backup_disaster_recovery)
@@ -3029,6 +3128,7 @@ module Google
3029
3128
  @source_properties = args[:source_properties] if args.key?(:source_properties)
3030
3129
  @state = args[:state] if args.key?(:state)
3031
3130
  @toxic_combination = args[:toxic_combination] if args.key?(:toxic_combination)
3131
+ @vertex_ai = args[:vertex_ai] if args.key?(:vertex_ai)
3032
3132
  @vulnerability = args[:vulnerability] if args.key?(:vulnerability)
3033
3133
  end
3034
3134
  end
@@ -4620,6 +4720,61 @@ module Google
4620
4720
  end
4621
4721
  end
4622
4722
 
4723
+ # Contains information about the AI model associated with the finding.
4724
+ class GoogleCloudSecuritycenterV2AiModel
4725
+ include Google::Apis::Core::Hashable
4726
+
4727
+ # The platform on which the model is deployed.
4728
+ # Corresponds to the JSON property `deploymentPlatform`
4729
+ # @return [String]
4730
+ attr_accessor :deployment_platform
4731
+
4732
+ # The user defined display name of model. Ex. baseline-classification-model
4733
+ # Corresponds to the JSON property `displayName`
4734
+ # @return [String]
4735
+ attr_accessor :display_name
4736
+
4737
+ # The domain of the model, for example, “image-classification”.
4738
+ # Corresponds to the JSON property `domain`
4739
+ # @return [String]
4740
+ attr_accessor :domain
4741
+
4742
+ # The name of the model library, for example, “transformers”.
4743
+ # Corresponds to the JSON property `library`
4744
+ # @return [String]
4745
+ attr_accessor :library
4746
+
4747
+ # The region in which the model is used, for example, “us-central1”.
4748
+ # Corresponds to the JSON property `location`
4749
+ # @return [String]
4750
+ attr_accessor :location
4751
+
4752
+ # The name of the AI model, for example, "gemini:1.0.0".
4753
+ # Corresponds to the JSON property `name`
4754
+ # @return [String]
4755
+ attr_accessor :name
4756
+
4757
+ # The publisher of the model, for example, “google” or “nvidia”.
4758
+ # Corresponds to the JSON property `publisher`
4759
+ # @return [String]
4760
+ attr_accessor :publisher
4761
+
4762
+ def initialize(**args)
4763
+ update!(**args)
4764
+ end
4765
+
4766
+ # Update properties of this object
4767
+ def update!(**args)
4768
+ @deployment_platform = args[:deployment_platform] if args.key?(:deployment_platform)
4769
+ @display_name = args[:display_name] if args.key?(:display_name)
4770
+ @domain = args[:domain] if args.key?(:domain)
4771
+ @library = args[:library] if args.key?(:library)
4772
+ @location = args[:location] if args.key?(:location)
4773
+ @name = args[:name] if args.key?(:name)
4774
+ @publisher = args[:publisher] if args.key?(:publisher)
4775
+ end
4776
+ end
4777
+
4623
4778
  # Allowed IP rule.
4624
4779
  class GoogleCloudSecuritycenterV2Allowed
4625
4780
  include Google::Apis::Core::Hashable
@@ -5995,6 +6150,39 @@ module Google
5995
6150
  end
5996
6151
  end
5997
6152
 
6153
+ # Vertex AI dataset associated with the finding.
6154
+ class GoogleCloudSecuritycenterV2Dataset
6155
+ include Google::Apis::Core::Hashable
6156
+
6157
+ # The user defined display name of dataset, e.g. plants-dataset
6158
+ # Corresponds to the JSON property `displayName`
6159
+ # @return [String]
6160
+ attr_accessor :display_name
6161
+
6162
+ # Resource name of dataset, e.g. projects/`project`/locations/`location`/
6163
+ # datasets/2094040236064505856
6164
+ # Corresponds to the JSON property `name`
6165
+ # @return [String]
6166
+ attr_accessor :name
6167
+
6168
+ # Data source, such as BigQuery source URI, e.g. bq://scc-nexus-test.AIPPtest.
6169
+ # gsod
6170
+ # Corresponds to the JSON property `source`
6171
+ # @return [String]
6172
+ attr_accessor :source
6173
+
6174
+ def initialize(**args)
6175
+ update!(**args)
6176
+ end
6177
+
6178
+ # Update properties of this object
6179
+ def update!(**args)
6180
+ @display_name = args[:display_name] if args.key?(:display_name)
6181
+ @name = args[:name] if args.key?(:name)
6182
+ @source = args[:source] if args.key?(:source)
6183
+ end
6184
+ end
6185
+
5998
6186
  # Denied IP rule.
5999
6187
  class GoogleCloudSecuritycenterV2Denied
6000
6188
  include Google::Apis::Core::Hashable
@@ -6396,6 +6584,11 @@ module Google
6396
6584
  # @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AffectedResources]
6397
6585
  attr_accessor :affected_resources
6398
6586
 
6587
+ # Contains information about the AI model associated with the finding.
6588
+ # Corresponds to the JSON property `aiModel`
6589
+ # @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AiModel]
6590
+ attr_accessor :ai_model
6591
+
6399
6592
  # Represents an application associated with a finding.
6400
6593
  # Corresponds to the JSON property `application`
6401
6594
  # @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Application]
@@ -6654,7 +6847,7 @@ module Google
6654
6847
  # @return [String]
6655
6848
  attr_accessor :mute_update_time
6656
6849
 
6657
- # The [relative resource name](https://cloud.google.com/apis/design/
6850
+ # Identifier. The [relative resource name](https://cloud.google.com/apis/design/
6658
6851
  # resource_names#relative_resource_name) of the finding. The following list
6659
6852
  # shows some examples: + `organizations/`organization_id`/sources/`source_id`/
6660
6853
  # findings/`finding_id`` + `organizations/`organization_id`/sources/`source_id`/
@@ -6764,6 +6957,11 @@ module Google
6764
6957
  # @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ToxicCombination]
6765
6958
  attr_accessor :toxic_combination
6766
6959
 
6960
+ # Vertex AI-related information associated with the finding.
6961
+ # Corresponds to the JSON property `vertexAi`
6962
+ # @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2VertexAi]
6963
+ attr_accessor :vertex_ai
6964
+
6767
6965
  # Refers to common vulnerability fields e.g. cve, cvss, cwe etc.
6768
6966
  # Corresponds to the JSON property `vulnerability`
6769
6967
  # @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Vulnerability]
@@ -6777,6 +6975,7 @@ module Google
6777
6975
  def update!(**args)
6778
6976
  @access = args[:access] if args.key?(:access)
6779
6977
  @affected_resources = args[:affected_resources] if args.key?(:affected_resources)
6978
+ @ai_model = args[:ai_model] if args.key?(:ai_model)
6780
6979
  @application = args[:application] if args.key?(:application)
6781
6980
  @attack_exposure = args[:attack_exposure] if args.key?(:attack_exposure)
6782
6981
  @backup_disaster_recovery = args[:backup_disaster_recovery] if args.key?(:backup_disaster_recovery)
@@ -6833,6 +7032,7 @@ module Google
6833
7032
  @source_properties = args[:source_properties] if args.key?(:source_properties)
6834
7033
  @state = args[:state] if args.key?(:state)
6835
7034
  @toxic_combination = args[:toxic_combination] if args.key?(:toxic_combination)
7035
+ @vertex_ai = args[:vertex_ai] if args.key?(:vertex_ai)
6836
7036
  @vulnerability = args[:vulnerability] if args.key?(:vulnerability)
6837
7037
  end
6838
7038
  end
@@ -8228,6 +8428,32 @@ module Google
8228
8428
  end
8229
8429
  end
8230
8430
 
8431
+ # Vertex AI training pipeline associated with the finding.
8432
+ class GoogleCloudSecuritycenterV2Pipeline
8433
+ include Google::Apis::Core::Hashable
8434
+
8435
+ # The user defined display name of pipeline, e.g. plants-classification
8436
+ # Corresponds to the JSON property `displayName`
8437
+ # @return [String]
8438
+ attr_accessor :display_name
8439
+
8440
+ # Resource name of pipeline, e.g. projects/`project`/locations/`location`/
8441
+ # trainingPipelines/5253428229225578496
8442
+ # Corresponds to the JSON property `name`
8443
+ # @return [String]
8444
+ attr_accessor :name
8445
+
8446
+ def initialize(**args)
8447
+ update!(**args)
8448
+ end
8449
+
8450
+ # Update properties of this object
8451
+ def update!(**args)
8452
+ @display_name = args[:display_name] if args.key?(:display_name)
8453
+ @name = args[:name] if args.key?(:name)
8454
+ end
8455
+ end
8456
+
8231
8457
  # A Kubernetes Pod.
8232
8458
  class GoogleCloudSecuritycenterV2Pod
8233
8459
  include Google::Apis::Core::Hashable
@@ -9160,6 +9386,31 @@ module Google
9160
9386
  end
9161
9387
  end
9162
9388
 
9389
+ # Vertex AI-related information associated with the finding.
9390
+ class GoogleCloudSecuritycenterV2VertexAi
9391
+ include Google::Apis::Core::Hashable
9392
+
9393
+ # Datasets associated with the finding.
9394
+ # Corresponds to the JSON property `datasets`
9395
+ # @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Dataset>]
9396
+ attr_accessor :datasets
9397
+
9398
+ # Pipelines associated with the finding.
9399
+ # Corresponds to the JSON property `pipelines`
9400
+ # @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Pipeline>]
9401
+ attr_accessor :pipelines
9402
+
9403
+ def initialize(**args)
9404
+ update!(**args)
9405
+ end
9406
+
9407
+ # Update properties of this object
9408
+ def update!(**args)
9409
+ @datasets = args[:datasets] if args.key?(:datasets)
9410
+ @pipelines = args[:pipelines] if args.key?(:pipelines)
9411
+ end
9412
+ end
9413
+
9163
9414
  # Refers to common vulnerability fields e.g. cve, cvss, cwe etc.
9164
9415
  class GoogleCloudSecuritycenterV2Vulnerability
9165
9416
  include Google::Apis::Core::Hashable
@@ -11020,6 +11271,32 @@ module Google
11020
11271
  end
11021
11272
  end
11022
11273
 
11274
+ # Vertex AI training pipeline associated with the finding.
11275
+ class Pipeline
11276
+ include Google::Apis::Core::Hashable
11277
+
11278
+ # The user defined display name of pipeline, e.g. plants-classification
11279
+ # Corresponds to the JSON property `displayName`
11280
+ # @return [String]
11281
+ attr_accessor :display_name
11282
+
11283
+ # Resource name of pipeline, e.g. projects/`project`/locations/`location`/
11284
+ # trainingPipelines/5253428229225578496
11285
+ # Corresponds to the JSON property `name`
11286
+ # @return [String]
11287
+ attr_accessor :name
11288
+
11289
+ def initialize(**args)
11290
+ update!(**args)
11291
+ end
11292
+
11293
+ # Update properties of this object
11294
+ def update!(**args)
11295
+ @display_name = args[:display_name] if args.key?(:display_name)
11296
+ @name = args[:name] if args.key?(:name)
11297
+ end
11298
+ end
11299
+
11023
11300
  # A Kubernetes Pod.
11024
11301
  class Pod
11025
11302
  include Google::Apis::Core::Hashable
@@ -12636,6 +12913,31 @@ module Google
12636
12913
  end
12637
12914
  end
12638
12915
 
12916
+ # Vertex AI-related information associated with the finding.
12917
+ class VertexAi
12918
+ include Google::Apis::Core::Hashable
12919
+
12920
+ # Datasets associated with the finding.
12921
+ # Corresponds to the JSON property `datasets`
12922
+ # @return [Array<Google::Apis::SecuritycenterV1::Dataset>]
12923
+ attr_accessor :datasets
12924
+
12925
+ # Pipelines associated with the finding.
12926
+ # Corresponds to the JSON property `pipelines`
12927
+ # @return [Array<Google::Apis::SecuritycenterV1::Pipeline>]
12928
+ attr_accessor :pipelines
12929
+
12930
+ def initialize(**args)
12931
+ update!(**args)
12932
+ end
12933
+
12934
+ # Update properties of this object
12935
+ def update!(**args)
12936
+ @datasets = args[:datasets] if args.key?(:datasets)
12937
+ @pipelines = args[:pipelines] if args.key?(:pipelines)
12938
+ end
12939
+ end
12940
+
12639
12941
  # Refers to common vulnerability fields e.g. cve, cvss, cwe etc.
12640
12942
  class Vulnerability
12641
12943
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module SecuritycenterV1
18
18
  # Version of the google-apis-securitycenter_v1 gem
19
- GEM_VERSION = "0.100.0"
19
+ GEM_VERSION = "0.101.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
 
@@ -322,6 +328,12 @@ module Google
322
328
  include Google::Apis::Core::JsonObjectSupport
323
329
  end
324
330
 
331
+ class Dataset
332
+ class Representation < Google::Apis::Core::JsonRepresentation; end
333
+
334
+ include Google::Apis::Core::JsonObjectSupport
335
+ end
336
+
325
337
  class Denied
326
338
  class Representation < Google::Apis::Core::JsonRepresentation; end
327
339
 
@@ -604,6 +616,12 @@ module Google
604
616
  include Google::Apis::Core::JsonObjectSupport
605
617
  end
606
618
 
619
+ class GoogleCloudSecuritycenterV2AiModel
620
+ class Representation < Google::Apis::Core::JsonRepresentation; end
621
+
622
+ include Google::Apis::Core::JsonObjectSupport
623
+ end
624
+
607
625
  class GoogleCloudSecuritycenterV2Allowed
608
626
  class Representation < Google::Apis::Core::JsonRepresentation; end
609
627
 
@@ -808,6 +826,12 @@ module Google
808
826
  include Google::Apis::Core::JsonObjectSupport
809
827
  end
810
828
 
829
+ class GoogleCloudSecuritycenterV2Dataset
830
+ class Representation < Google::Apis::Core::JsonRepresentation; end
831
+
832
+ include Google::Apis::Core::JsonObjectSupport
833
+ end
834
+
811
835
  class GoogleCloudSecuritycenterV2Denied
812
836
  class Representation < Google::Apis::Core::JsonRepresentation; end
813
837
 
@@ -1120,6 +1144,12 @@ module Google
1120
1144
  include Google::Apis::Core::JsonObjectSupport
1121
1145
  end
1122
1146
 
1147
+ class GoogleCloudSecuritycenterV2Pipeline
1148
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1149
+
1150
+ include Google::Apis::Core::JsonObjectSupport
1151
+ end
1152
+
1123
1153
  class GoogleCloudSecuritycenterV2Pod
1124
1154
  class Representation < Google::Apis::Core::JsonRepresentation; end
1125
1155
 
@@ -1252,6 +1282,12 @@ module Google
1252
1282
  include Google::Apis::Core::JsonObjectSupport
1253
1283
  end
1254
1284
 
1285
+ class GoogleCloudSecuritycenterV2VertexAi
1286
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1287
+
1288
+ include Google::Apis::Core::JsonObjectSupport
1289
+ end
1290
+
1255
1291
  class GoogleCloudSecuritycenterV2Vulnerability
1256
1292
  class Representation < Google::Apis::Core::JsonRepresentation; end
1257
1293
 
@@ -1558,6 +1594,12 @@ module Google
1558
1594
  include Google::Apis::Core::JsonObjectSupport
1559
1595
  end
1560
1596
 
1597
+ class Pipeline
1598
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1599
+
1600
+ include Google::Apis::Core::JsonObjectSupport
1601
+ end
1602
+
1561
1603
  class Pod
1562
1604
  class Representation < Google::Apis::Core::JsonRepresentation; end
1563
1605
 
@@ -1804,6 +1846,12 @@ module Google
1804
1846
  include Google::Apis::Core::JsonObjectSupport
1805
1847
  end
1806
1848
 
1849
+ class VertexAi
1850
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1851
+
1852
+ include Google::Apis::Core::JsonObjectSupport
1853
+ end
1854
+
1807
1855
  class Vulnerability
1808
1856
  class Representation < Google::Apis::Core::JsonRepresentation; end
1809
1857
 
@@ -1874,6 +1922,19 @@ module Google
1874
1922
  end
1875
1923
  end
1876
1924
 
1925
+ class AiModel
1926
+ # @private
1927
+ class Representation < Google::Apis::Core::JsonRepresentation
1928
+ property :deployment_platform, as: 'deploymentPlatform'
1929
+ property :display_name, as: 'displayName'
1930
+ property :domain, as: 'domain'
1931
+ property :library, as: 'library'
1932
+ property :location, as: 'location'
1933
+ property :name, as: 'name'
1934
+ property :publisher, as: 'publisher'
1935
+ end
1936
+ end
1937
+
1877
1938
  class Allowed
1878
1939
  # @private
1879
1940
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2345,6 +2406,15 @@ module Google
2345
2406
  end
2346
2407
  end
2347
2408
 
2409
+ class Dataset
2410
+ # @private
2411
+ class Representation < Google::Apis::Core::JsonRepresentation
2412
+ property :display_name, as: 'displayName'
2413
+ property :name, as: 'name'
2414
+ property :source, as: 'source'
2415
+ end
2416
+ end
2417
+
2348
2418
  class Denied
2349
2419
  # @private
2350
2420
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2486,6 +2556,8 @@ module Google
2486
2556
 
2487
2557
  property :affected_resources, as: 'affectedResources', class: Google::Apis::SecuritycenterV1::AffectedResources, decorator: Google::Apis::SecuritycenterV1::AffectedResources::Representation
2488
2558
 
2559
+ property :ai_model, as: 'aiModel', class: Google::Apis::SecuritycenterV1::AiModel, decorator: Google::Apis::SecuritycenterV1::AiModel::Representation
2560
+
2489
2561
  property :application, as: 'application', class: Google::Apis::SecuritycenterV1::Application, decorator: Google::Apis::SecuritycenterV1::Application::Representation
2490
2562
 
2491
2563
  property :attack_exposure, as: 'attackExposure', class: Google::Apis::SecuritycenterV1::AttackExposure, decorator: Google::Apis::SecuritycenterV1::AttackExposure::Representation
@@ -2579,6 +2651,8 @@ module Google
2579
2651
  property :state, as: 'state'
2580
2652
  property :toxic_combination, as: 'toxicCombination', class: Google::Apis::SecuritycenterV1::ToxicCombination, decorator: Google::Apis::SecuritycenterV1::ToxicCombination::Representation
2581
2653
 
2654
+ property :vertex_ai, as: 'vertexAi', class: Google::Apis::SecuritycenterV1::VertexAi, decorator: Google::Apis::SecuritycenterV1::VertexAi::Representation
2655
+
2582
2656
  property :vulnerability, as: 'vulnerability', class: Google::Apis::SecuritycenterV1::Vulnerability, decorator: Google::Apis::SecuritycenterV1::Vulnerability::Representation
2583
2657
 
2584
2658
  end
@@ -2951,6 +3025,19 @@ module Google
2951
3025
  end
2952
3026
  end
2953
3027
 
3028
+ class GoogleCloudSecuritycenterV2AiModel
3029
+ # @private
3030
+ class Representation < Google::Apis::Core::JsonRepresentation
3031
+ property :deployment_platform, as: 'deploymentPlatform'
3032
+ property :display_name, as: 'displayName'
3033
+ property :domain, as: 'domain'
3034
+ property :library, as: 'library'
3035
+ property :location, as: 'location'
3036
+ property :name, as: 'name'
3037
+ property :publisher, as: 'publisher'
3038
+ end
3039
+ end
3040
+
2954
3041
  class GoogleCloudSecuritycenterV2Allowed
2955
3042
  # @private
2956
3043
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3303,6 +3390,15 @@ module Google
3303
3390
  end
3304
3391
  end
3305
3392
 
3393
+ class GoogleCloudSecuritycenterV2Dataset
3394
+ # @private
3395
+ class Representation < Google::Apis::Core::JsonRepresentation
3396
+ property :display_name, as: 'displayName'
3397
+ property :name, as: 'name'
3398
+ property :source, as: 'source'
3399
+ end
3400
+ end
3401
+
3306
3402
  class GoogleCloudSecuritycenterV2Denied
3307
3403
  # @private
3308
3404
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3417,6 +3513,8 @@ module Google
3417
3513
 
3418
3514
  property :affected_resources, as: 'affectedResources', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AffectedResources, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AffectedResources::Representation
3419
3515
 
3516
+ property :ai_model, as: 'aiModel', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AiModel, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AiModel::Representation
3517
+
3420
3518
  property :application, as: 'application', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Application, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Application::Representation
3421
3519
 
3422
3520
  property :attack_exposure, as: 'attackExposure', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AttackExposure, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AttackExposure::Representation
@@ -3510,6 +3608,8 @@ module Google
3510
3608
  property :state, as: 'state'
3511
3609
  property :toxic_combination, as: 'toxicCombination', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ToxicCombination, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ToxicCombination::Representation
3512
3610
 
3611
+ property :vertex_ai, as: 'vertexAi', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2VertexAi, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2VertexAi::Representation
3612
+
3513
3613
  property :vulnerability, as: 'vulnerability', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Vulnerability, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Vulnerability::Representation
3514
3614
 
3515
3615
  end
@@ -3918,6 +4018,14 @@ module Google
3918
4018
  end
3919
4019
  end
3920
4020
 
4021
+ class GoogleCloudSecuritycenterV2Pipeline
4022
+ # @private
4023
+ class Representation < Google::Apis::Core::JsonRepresentation
4024
+ property :display_name, as: 'displayName'
4025
+ property :name, as: 'name'
4026
+ end
4027
+ end
4028
+
3921
4029
  class GoogleCloudSecuritycenterV2Pod
3922
4030
  # @private
3923
4031
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4156,6 +4264,16 @@ module Google
4156
4264
  end
4157
4265
  end
4158
4266
 
4267
+ class GoogleCloudSecuritycenterV2VertexAi
4268
+ # @private
4269
+ class Representation < Google::Apis::Core::JsonRepresentation
4270
+ collection :datasets, as: 'datasets', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Dataset, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Dataset::Representation
4271
+
4272
+ collection :pipelines, as: 'pipelines', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Pipeline, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Pipeline::Representation
4273
+
4274
+ end
4275
+ end
4276
+
4159
4277
  class GoogleCloudSecuritycenterV2Vulnerability
4160
4278
  # @private
4161
4279
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4665,6 +4783,14 @@ module Google
4665
4783
  end
4666
4784
  end
4667
4785
 
4786
+ class Pipeline
4787
+ # @private
4788
+ class Representation < Google::Apis::Core::JsonRepresentation
4789
+ property :display_name, as: 'displayName'
4790
+ property :name, as: 'name'
4791
+ end
4792
+ end
4793
+
4668
4794
  class Pod
4669
4795
  # @private
4670
4796
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5076,6 +5202,16 @@ module Google
5076
5202
  end
5077
5203
  end
5078
5204
 
5205
+ class VertexAi
5206
+ # @private
5207
+ class Representation < Google::Apis::Core::JsonRepresentation
5208
+ collection :datasets, as: 'datasets', class: Google::Apis::SecuritycenterV1::Dataset, decorator: Google::Apis::SecuritycenterV1::Dataset::Representation
5209
+
5210
+ collection :pipelines, as: 'pipelines', class: Google::Apis::SecuritycenterV1::Pipeline, decorator: Google::Apis::SecuritycenterV1::Pipeline::Representation
5211
+
5212
+ end
5213
+ end
5214
+
5079
5215
  class Vulnerability
5080
5216
  # @private
5081
5217
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-securitycenter_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.100.0
4
+ version: 0.101.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_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.100.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.101.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1
62
62
  rdoc_options: []
63
63
  require_paths: