google-apis-securitycenter_v1beta1 0.90.0 → 0.92.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 176460861e7106b4b206a2459d0a3ca7c3aeed4204d7c1748fda19662b1f80ac
|
4
|
+
data.tar.gz: e119fad5a02b58e579ec3774f689a7c59af6db6fbb1dd9dea43984243855130f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2cd75afb4298f5b01bcd4c017ef2220971d94ee8371ab206eb66d939eb6907428fd5254cb2918f2c36ef70e923673370234842fd7d7379b3ccff25ddae4a6d0d
|
7
|
+
data.tar.gz: 70b765e50ae0e57990246d4224bb4e9d0c1921f263e811cca9baba1338be7fc58b344088f3f49277971126f229fa1904bf9f5771af2f73b4fdbc59a07805d2e7
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-securitycenter_v1beta1
|
2
2
|
|
3
|
+
### v0.92.0 (2025-06-22)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250616
|
6
|
+
|
7
|
+
### v0.91.0 (2025-06-15)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250609
|
10
|
+
* Regenerated using generator version 0.18.0
|
11
|
+
|
3
12
|
### v0.90.0 (2025-05-21)
|
4
13
|
|
5
14
|
* 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
|
@@ -894,6 +949,26 @@ module Google
|
|
894
949
|
end
|
895
950
|
end
|
896
951
|
|
952
|
+
# The destination big query dataset to export findings to.
|
953
|
+
class BigQueryDestination
|
954
|
+
include Google::Apis::Core::Hashable
|
955
|
+
|
956
|
+
# Required. The relative resource name of the destination dataset, in the form
|
957
|
+
# projects/`projectId`/datasets/`datasetId`.
|
958
|
+
# Corresponds to the JSON property `dataset`
|
959
|
+
# @return [String]
|
960
|
+
attr_accessor :dataset
|
961
|
+
|
962
|
+
def initialize(**args)
|
963
|
+
update!(**args)
|
964
|
+
end
|
965
|
+
|
966
|
+
# Update properties of this object
|
967
|
+
def update!(**args)
|
968
|
+
@dataset = args[:dataset] if args.key?(:dataset)
|
969
|
+
end
|
970
|
+
end
|
971
|
+
|
897
972
|
# Associates `members`, or principals, with a `role`.
|
898
973
|
class Binding
|
899
974
|
include Google::Apis::Core::Hashable
|
@@ -1741,6 +1816,39 @@ module Google
|
|
1741
1816
|
end
|
1742
1817
|
end
|
1743
1818
|
|
1819
|
+
# Vertex AI dataset associated with the finding.
|
1820
|
+
class Dataset
|
1821
|
+
include Google::Apis::Core::Hashable
|
1822
|
+
|
1823
|
+
# The user defined display name of dataset, e.g. plants-dataset
|
1824
|
+
# Corresponds to the JSON property `displayName`
|
1825
|
+
# @return [String]
|
1826
|
+
attr_accessor :display_name
|
1827
|
+
|
1828
|
+
# Resource name of the dataset, e.g. projects/`project`/locations/`location`/
|
1829
|
+
# datasets/2094040236064505856
|
1830
|
+
# Corresponds to the JSON property `name`
|
1831
|
+
# @return [String]
|
1832
|
+
attr_accessor :name
|
1833
|
+
|
1834
|
+
# Data source, such as BigQuery source URI, e.g. bq://scc-nexus-test.AIPPtest.
|
1835
|
+
# gsod
|
1836
|
+
# Corresponds to the JSON property `source`
|
1837
|
+
# @return [String]
|
1838
|
+
attr_accessor :source
|
1839
|
+
|
1840
|
+
def initialize(**args)
|
1841
|
+
update!(**args)
|
1842
|
+
end
|
1843
|
+
|
1844
|
+
# Update properties of this object
|
1845
|
+
def update!(**args)
|
1846
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
1847
|
+
@name = args[:name] if args.key?(:name)
|
1848
|
+
@source = args[:source] if args.key?(:source)
|
1849
|
+
end
|
1850
|
+
end
|
1851
|
+
|
1744
1852
|
# Denied IP rule.
|
1745
1853
|
class Denied
|
1746
1854
|
include Google::Apis::Core::Hashable
|
@@ -1967,6 +2075,44 @@ module Google
|
|
1967
2075
|
end
|
1968
2076
|
end
|
1969
2077
|
|
2078
|
+
# The LRO metadata for a ExportFindings request.
|
2079
|
+
class ExportFindingsMetadata
|
2080
|
+
include Google::Apis::Core::Hashable
|
2081
|
+
|
2082
|
+
# The destination big query dataset to export findings to.
|
2083
|
+
# Corresponds to the JSON property `bigQueryDestination`
|
2084
|
+
# @return [Google::Apis::SecuritycenterV1beta1::BigQueryDestination]
|
2085
|
+
attr_accessor :big_query_destination
|
2086
|
+
|
2087
|
+
# Optional. Timestamp at which export was started
|
2088
|
+
# Corresponds to the JSON property `exportStartTime`
|
2089
|
+
# @return [String]
|
2090
|
+
attr_accessor :export_start_time
|
2091
|
+
|
2092
|
+
def initialize(**args)
|
2093
|
+
update!(**args)
|
2094
|
+
end
|
2095
|
+
|
2096
|
+
# Update properties of this object
|
2097
|
+
def update!(**args)
|
2098
|
+
@big_query_destination = args[:big_query_destination] if args.key?(:big_query_destination)
|
2099
|
+
@export_start_time = args[:export_start_time] if args.key?(:export_start_time)
|
2100
|
+
end
|
2101
|
+
end
|
2102
|
+
|
2103
|
+
# The response to a ExportFindings request. Contains the LRO information.
|
2104
|
+
class ExportFindingsResponse
|
2105
|
+
include Google::Apis::Core::Hashable
|
2106
|
+
|
2107
|
+
def initialize(**args)
|
2108
|
+
update!(**args)
|
2109
|
+
end
|
2110
|
+
|
2111
|
+
# Update properties of this object
|
2112
|
+
def update!(**args)
|
2113
|
+
end
|
2114
|
+
end
|
2115
|
+
|
1970
2116
|
# Represents a textual expression in the Common Expression Language (CEL) syntax.
|
1971
2117
|
# CEL is a C-like expression language. The syntax and semantics of CEL are
|
1972
2118
|
# documented at https://github.com/google/cel-spec. Example (Comparison): title:
|
@@ -2123,6 +2269,11 @@ module Google
|
|
2123
2269
|
# @return [Google::Apis::SecuritycenterV1beta1::AffectedResources]
|
2124
2270
|
attr_accessor :affected_resources
|
2125
2271
|
|
2272
|
+
# Contains information about the AI model associated with the finding.
|
2273
|
+
# Corresponds to the JSON property `aiModel`
|
2274
|
+
# @return [Google::Apis::SecuritycenterV1beta1::AiModel]
|
2275
|
+
attr_accessor :ai_model
|
2276
|
+
|
2126
2277
|
# Represents an application associated with a finding.
|
2127
2278
|
# Corresponds to the JSON property `application`
|
2128
2279
|
# @return [Google::Apis::SecuritycenterV1beta1::Application]
|
@@ -2477,6 +2628,11 @@ module Google
|
|
2477
2628
|
# @return [Google::Apis::SecuritycenterV1beta1::ToxicCombination]
|
2478
2629
|
attr_accessor :toxic_combination
|
2479
2630
|
|
2631
|
+
# Vertex AI-related information associated with the finding.
|
2632
|
+
# Corresponds to the JSON property `vertexAi`
|
2633
|
+
# @return [Google::Apis::SecuritycenterV1beta1::VertexAi]
|
2634
|
+
attr_accessor :vertex_ai
|
2635
|
+
|
2480
2636
|
# Refers to common vulnerability fields e.g. cve, cvss, cwe etc.
|
2481
2637
|
# Corresponds to the JSON property `vulnerability`
|
2482
2638
|
# @return [Google::Apis::SecuritycenterV1beta1::Vulnerability]
|
@@ -2490,6 +2646,7 @@ module Google
|
|
2490
2646
|
def update!(**args)
|
2491
2647
|
@access = args[:access] if args.key?(:access)
|
2492
2648
|
@affected_resources = args[:affected_resources] if args.key?(:affected_resources)
|
2649
|
+
@ai_model = args[:ai_model] if args.key?(:ai_model)
|
2493
2650
|
@application = args[:application] if args.key?(:application)
|
2494
2651
|
@attack_exposure = args[:attack_exposure] if args.key?(:attack_exposure)
|
2495
2652
|
@backup_disaster_recovery = args[:backup_disaster_recovery] if args.key?(:backup_disaster_recovery)
|
@@ -2546,6 +2703,7 @@ module Google
|
|
2546
2703
|
@source_properties = args[:source_properties] if args.key?(:source_properties)
|
2547
2704
|
@state = args[:state] if args.key?(:state)
|
2548
2705
|
@toxic_combination = args[:toxic_combination] if args.key?(:toxic_combination)
|
2706
|
+
@vertex_ai = args[:vertex_ai] if args.key?(:vertex_ai)
|
2549
2707
|
@vulnerability = args[:vulnerability] if args.key?(:vulnerability)
|
2550
2708
|
end
|
2551
2709
|
end
|
@@ -4270,6 +4428,61 @@ module Google
|
|
4270
4428
|
end
|
4271
4429
|
end
|
4272
4430
|
|
4431
|
+
# Contains information about the AI model associated with the finding.
|
4432
|
+
class GoogleCloudSecuritycenterV2AiModel
|
4433
|
+
include Google::Apis::Core::Hashable
|
4434
|
+
|
4435
|
+
# The platform on which the model is deployed.
|
4436
|
+
# Corresponds to the JSON property `deploymentPlatform`
|
4437
|
+
# @return [String]
|
4438
|
+
attr_accessor :deployment_platform
|
4439
|
+
|
4440
|
+
# The user defined display name of model. Ex. baseline-classification-model
|
4441
|
+
# Corresponds to the JSON property `displayName`
|
4442
|
+
# @return [String]
|
4443
|
+
attr_accessor :display_name
|
4444
|
+
|
4445
|
+
# The domain of the model, for example, “image-classification”.
|
4446
|
+
# Corresponds to the JSON property `domain`
|
4447
|
+
# @return [String]
|
4448
|
+
attr_accessor :domain
|
4449
|
+
|
4450
|
+
# The name of the model library, for example, “transformers”.
|
4451
|
+
# Corresponds to the JSON property `library`
|
4452
|
+
# @return [String]
|
4453
|
+
attr_accessor :library
|
4454
|
+
|
4455
|
+
# The region in which the model is used, for example, “us-central1”.
|
4456
|
+
# Corresponds to the JSON property `location`
|
4457
|
+
# @return [String]
|
4458
|
+
attr_accessor :location
|
4459
|
+
|
4460
|
+
# The name of the AI model, for example, "gemini:1.0.0".
|
4461
|
+
# Corresponds to the JSON property `name`
|
4462
|
+
# @return [String]
|
4463
|
+
attr_accessor :name
|
4464
|
+
|
4465
|
+
# The publisher of the model, for example, “google” or “nvidia”.
|
4466
|
+
# Corresponds to the JSON property `publisher`
|
4467
|
+
# @return [String]
|
4468
|
+
attr_accessor :publisher
|
4469
|
+
|
4470
|
+
def initialize(**args)
|
4471
|
+
update!(**args)
|
4472
|
+
end
|
4473
|
+
|
4474
|
+
# Update properties of this object
|
4475
|
+
def update!(**args)
|
4476
|
+
@deployment_platform = args[:deployment_platform] if args.key?(:deployment_platform)
|
4477
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
4478
|
+
@domain = args[:domain] if args.key?(:domain)
|
4479
|
+
@library = args[:library] if args.key?(:library)
|
4480
|
+
@location = args[:location] if args.key?(:location)
|
4481
|
+
@name = args[:name] if args.key?(:name)
|
4482
|
+
@publisher = args[:publisher] if args.key?(:publisher)
|
4483
|
+
end
|
4484
|
+
end
|
4485
|
+
|
4273
4486
|
# Allowed IP rule.
|
4274
4487
|
class GoogleCloudSecuritycenterV2Allowed
|
4275
4488
|
include Google::Apis::Core::Hashable
|
@@ -5645,6 +5858,39 @@ module Google
|
|
5645
5858
|
end
|
5646
5859
|
end
|
5647
5860
|
|
5861
|
+
# Vertex AI dataset associated with the finding.
|
5862
|
+
class GoogleCloudSecuritycenterV2Dataset
|
5863
|
+
include Google::Apis::Core::Hashable
|
5864
|
+
|
5865
|
+
# The user defined display name of dataset, e.g. plants-dataset
|
5866
|
+
# Corresponds to the JSON property `displayName`
|
5867
|
+
# @return [String]
|
5868
|
+
attr_accessor :display_name
|
5869
|
+
|
5870
|
+
# Resource name of the dataset, e.g. projects/`project`/locations/`location`/
|
5871
|
+
# datasets/2094040236064505856
|
5872
|
+
# Corresponds to the JSON property `name`
|
5873
|
+
# @return [String]
|
5874
|
+
attr_accessor :name
|
5875
|
+
|
5876
|
+
# Data source, such as a BigQuery source URI, e.g. bq://scc-nexus-test.AIPPtest.
|
5877
|
+
# gsod
|
5878
|
+
# Corresponds to the JSON property `source`
|
5879
|
+
# @return [String]
|
5880
|
+
attr_accessor :source
|
5881
|
+
|
5882
|
+
def initialize(**args)
|
5883
|
+
update!(**args)
|
5884
|
+
end
|
5885
|
+
|
5886
|
+
# Update properties of this object
|
5887
|
+
def update!(**args)
|
5888
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
5889
|
+
@name = args[:name] if args.key?(:name)
|
5890
|
+
@source = args[:source] if args.key?(:source)
|
5891
|
+
end
|
5892
|
+
end
|
5893
|
+
|
5648
5894
|
# Denied IP rule.
|
5649
5895
|
class GoogleCloudSecuritycenterV2Denied
|
5650
5896
|
include Google::Apis::Core::Hashable
|
@@ -6046,6 +6292,11 @@ module Google
|
|
6046
6292
|
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AffectedResources]
|
6047
6293
|
attr_accessor :affected_resources
|
6048
6294
|
|
6295
|
+
# Contains information about the AI model associated with the finding.
|
6296
|
+
# Corresponds to the JSON property `aiModel`
|
6297
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AiModel]
|
6298
|
+
attr_accessor :ai_model
|
6299
|
+
|
6049
6300
|
# Represents an application associated with a finding.
|
6050
6301
|
# Corresponds to the JSON property `application`
|
6051
6302
|
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Application]
|
@@ -6304,7 +6555,7 @@ module Google
|
|
6304
6555
|
# @return [String]
|
6305
6556
|
attr_accessor :mute_update_time
|
6306
6557
|
|
6307
|
-
# The [relative resource name](https://cloud.google.com/apis/design/
|
6558
|
+
# Identifier. The [relative resource name](https://cloud.google.com/apis/design/
|
6308
6559
|
# resource_names#relative_resource_name) of the finding. The following list
|
6309
6560
|
# shows some examples: + `organizations/`organization_id`/sources/`source_id`/
|
6310
6561
|
# findings/`finding_id`` + `organizations/`organization_id`/sources/`source_id`/
|
@@ -6414,6 +6665,11 @@ module Google
|
|
6414
6665
|
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ToxicCombination]
|
6415
6666
|
attr_accessor :toxic_combination
|
6416
6667
|
|
6668
|
+
# Vertex AI-related information associated with the finding.
|
6669
|
+
# Corresponds to the JSON property `vertexAi`
|
6670
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2VertexAi]
|
6671
|
+
attr_accessor :vertex_ai
|
6672
|
+
|
6417
6673
|
# Refers to common vulnerability fields e.g. cve, cvss, cwe etc.
|
6418
6674
|
# Corresponds to the JSON property `vulnerability`
|
6419
6675
|
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Vulnerability]
|
@@ -6427,6 +6683,7 @@ module Google
|
|
6427
6683
|
def update!(**args)
|
6428
6684
|
@access = args[:access] if args.key?(:access)
|
6429
6685
|
@affected_resources = args[:affected_resources] if args.key?(:affected_resources)
|
6686
|
+
@ai_model = args[:ai_model] if args.key?(:ai_model)
|
6430
6687
|
@application = args[:application] if args.key?(:application)
|
6431
6688
|
@attack_exposure = args[:attack_exposure] if args.key?(:attack_exposure)
|
6432
6689
|
@backup_disaster_recovery = args[:backup_disaster_recovery] if args.key?(:backup_disaster_recovery)
|
@@ -6483,6 +6740,7 @@ module Google
|
|
6483
6740
|
@source_properties = args[:source_properties] if args.key?(:source_properties)
|
6484
6741
|
@state = args[:state] if args.key?(:state)
|
6485
6742
|
@toxic_combination = args[:toxic_combination] if args.key?(:toxic_combination)
|
6743
|
+
@vertex_ai = args[:vertex_ai] if args.key?(:vertex_ai)
|
6486
6744
|
@vulnerability = args[:vulnerability] if args.key?(:vulnerability)
|
6487
6745
|
end
|
6488
6746
|
end
|
@@ -7878,6 +8136,32 @@ module Google
|
|
7878
8136
|
end
|
7879
8137
|
end
|
7880
8138
|
|
8139
|
+
# Vertex AI training pipeline associated with the finding.
|
8140
|
+
class GoogleCloudSecuritycenterV2Pipeline
|
8141
|
+
include Google::Apis::Core::Hashable
|
8142
|
+
|
8143
|
+
# The user-defined display name of pipeline, e.g. plants-classification
|
8144
|
+
# Corresponds to the JSON property `displayName`
|
8145
|
+
# @return [String]
|
8146
|
+
attr_accessor :display_name
|
8147
|
+
|
8148
|
+
# Resource name of the pipeline, e.g. projects/`project`/locations/`location`/
|
8149
|
+
# trainingPipelines/5253428229225578496
|
8150
|
+
# Corresponds to the JSON property `name`
|
8151
|
+
# @return [String]
|
8152
|
+
attr_accessor :name
|
8153
|
+
|
8154
|
+
def initialize(**args)
|
8155
|
+
update!(**args)
|
8156
|
+
end
|
8157
|
+
|
8158
|
+
# Update properties of this object
|
8159
|
+
def update!(**args)
|
8160
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
8161
|
+
@name = args[:name] if args.key?(:name)
|
8162
|
+
end
|
8163
|
+
end
|
8164
|
+
|
7881
8165
|
# A Kubernetes Pod.
|
7882
8166
|
class GoogleCloudSecuritycenterV2Pod
|
7883
8167
|
include Google::Apis::Core::Hashable
|
@@ -8810,6 +9094,31 @@ module Google
|
|
8810
9094
|
end
|
8811
9095
|
end
|
8812
9096
|
|
9097
|
+
# Vertex AI-related information associated with the finding.
|
9098
|
+
class GoogleCloudSecuritycenterV2VertexAi
|
9099
|
+
include Google::Apis::Core::Hashable
|
9100
|
+
|
9101
|
+
# Datasets associated with the finding.
|
9102
|
+
# Corresponds to the JSON property `datasets`
|
9103
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Dataset>]
|
9104
|
+
attr_accessor :datasets
|
9105
|
+
|
9106
|
+
# Pipelines associated with the finding.
|
9107
|
+
# Corresponds to the JSON property `pipelines`
|
9108
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Pipeline>]
|
9109
|
+
attr_accessor :pipelines
|
9110
|
+
|
9111
|
+
def initialize(**args)
|
9112
|
+
update!(**args)
|
9113
|
+
end
|
9114
|
+
|
9115
|
+
# Update properties of this object
|
9116
|
+
def update!(**args)
|
9117
|
+
@datasets = args[:datasets] if args.key?(:datasets)
|
9118
|
+
@pipelines = args[:pipelines] if args.key?(:pipelines)
|
9119
|
+
end
|
9120
|
+
end
|
9121
|
+
|
8813
9122
|
# Refers to common vulnerability fields e.g. cve, cvss, cwe etc.
|
8814
9123
|
class GoogleCloudSecuritycenterV2Vulnerability
|
8815
9124
|
include Google::Apis::Core::Hashable
|
@@ -10132,6 +10441,32 @@ module Google
|
|
10132
10441
|
end
|
10133
10442
|
end
|
10134
10443
|
|
10444
|
+
# Vertex AI training pipeline associated with the finding.
|
10445
|
+
class Pipeline
|
10446
|
+
include Google::Apis::Core::Hashable
|
10447
|
+
|
10448
|
+
# The user defined display name of pipeline, e.g. plants-classification
|
10449
|
+
# Corresponds to the JSON property `displayName`
|
10450
|
+
# @return [String]
|
10451
|
+
attr_accessor :display_name
|
10452
|
+
|
10453
|
+
# Resource name of the pipeline, e.g. projects/`project`/locations/`location`/
|
10454
|
+
# trainingPipelines/5253428229225578496
|
10455
|
+
# Corresponds to the JSON property `name`
|
10456
|
+
# @return [String]
|
10457
|
+
attr_accessor :name
|
10458
|
+
|
10459
|
+
def initialize(**args)
|
10460
|
+
update!(**args)
|
10461
|
+
end
|
10462
|
+
|
10463
|
+
# Update properties of this object
|
10464
|
+
def update!(**args)
|
10465
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
10466
|
+
@name = args[:name] if args.key?(:name)
|
10467
|
+
end
|
10468
|
+
end
|
10469
|
+
|
10135
10470
|
# A Kubernetes Pod.
|
10136
10471
|
class Pod
|
10137
10472
|
include Google::Apis::Core::Hashable
|
@@ -11201,6 +11536,31 @@ module Google
|
|
11201
11536
|
end
|
11202
11537
|
end
|
11203
11538
|
|
11539
|
+
# Vertex AI-related information associated with the finding.
|
11540
|
+
class VertexAi
|
11541
|
+
include Google::Apis::Core::Hashable
|
11542
|
+
|
11543
|
+
# Datasets associated with the finding.
|
11544
|
+
# Corresponds to the JSON property `datasets`
|
11545
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::Dataset>]
|
11546
|
+
attr_accessor :datasets
|
11547
|
+
|
11548
|
+
# Pipelines associated with the finding.
|
11549
|
+
# Corresponds to the JSON property `pipelines`
|
11550
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::Pipeline>]
|
11551
|
+
attr_accessor :pipelines
|
11552
|
+
|
11553
|
+
def initialize(**args)
|
11554
|
+
update!(**args)
|
11555
|
+
end
|
11556
|
+
|
11557
|
+
# Update properties of this object
|
11558
|
+
def update!(**args)
|
11559
|
+
@datasets = args[:datasets] if args.key?(:datasets)
|
11560
|
+
@pipelines = args[:pipelines] if args.key?(:pipelines)
|
11561
|
+
end
|
11562
|
+
end
|
11563
|
+
|
11204
11564
|
# Refers to common vulnerability fields e.g. cve, cvss, cwe etc.
|
11205
11565
|
class Vulnerability
|
11206
11566
|
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.
|
19
|
+
GEM_VERSION = "0.92.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250616"
|
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
|
|
@@ -154,6 +160,12 @@ module Google
|
|
154
160
|
include Google::Apis::Core::JsonObjectSupport
|
155
161
|
end
|
156
162
|
|
163
|
+
class BigQueryDestination
|
164
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
165
|
+
|
166
|
+
include Google::Apis::Core::JsonObjectSupport
|
167
|
+
end
|
168
|
+
|
157
169
|
class Binding
|
158
170
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
159
171
|
|
@@ -268,6 +280,12 @@ module Google
|
|
268
280
|
include Google::Apis::Core::JsonObjectSupport
|
269
281
|
end
|
270
282
|
|
283
|
+
class Dataset
|
284
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
|
+
|
286
|
+
include Google::Apis::Core::JsonObjectSupport
|
287
|
+
end
|
288
|
+
|
271
289
|
class Denied
|
272
290
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
273
291
|
|
@@ -322,6 +340,18 @@ module Google
|
|
322
340
|
include Google::Apis::Core::JsonObjectSupport
|
323
341
|
end
|
324
342
|
|
343
|
+
class ExportFindingsMetadata
|
344
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
345
|
+
|
346
|
+
include Google::Apis::Core::JsonObjectSupport
|
347
|
+
end
|
348
|
+
|
349
|
+
class ExportFindingsResponse
|
350
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
351
|
+
|
352
|
+
include Google::Apis::Core::JsonObjectSupport
|
353
|
+
end
|
354
|
+
|
325
355
|
class Expr
|
326
356
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
327
357
|
|
@@ -550,6 +580,12 @@ module Google
|
|
550
580
|
include Google::Apis::Core::JsonObjectSupport
|
551
581
|
end
|
552
582
|
|
583
|
+
class GoogleCloudSecuritycenterV2AiModel
|
584
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
585
|
+
|
586
|
+
include Google::Apis::Core::JsonObjectSupport
|
587
|
+
end
|
588
|
+
|
553
589
|
class GoogleCloudSecuritycenterV2Allowed
|
554
590
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
555
591
|
|
@@ -754,6 +790,12 @@ module Google
|
|
754
790
|
include Google::Apis::Core::JsonObjectSupport
|
755
791
|
end
|
756
792
|
|
793
|
+
class GoogleCloudSecuritycenterV2Dataset
|
794
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
795
|
+
|
796
|
+
include Google::Apis::Core::JsonObjectSupport
|
797
|
+
end
|
798
|
+
|
757
799
|
class GoogleCloudSecuritycenterV2Denied
|
758
800
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
759
801
|
|
@@ -1066,6 +1108,12 @@ module Google
|
|
1066
1108
|
include Google::Apis::Core::JsonObjectSupport
|
1067
1109
|
end
|
1068
1110
|
|
1111
|
+
class GoogleCloudSecuritycenterV2Pipeline
|
1112
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1113
|
+
|
1114
|
+
include Google::Apis::Core::JsonObjectSupport
|
1115
|
+
end
|
1116
|
+
|
1069
1117
|
class GoogleCloudSecuritycenterV2Pod
|
1070
1118
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1071
1119
|
|
@@ -1198,6 +1246,12 @@ module Google
|
|
1198
1246
|
include Google::Apis::Core::JsonObjectSupport
|
1199
1247
|
end
|
1200
1248
|
|
1249
|
+
class GoogleCloudSecuritycenterV2VertexAi
|
1250
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1251
|
+
|
1252
|
+
include Google::Apis::Core::JsonObjectSupport
|
1253
|
+
end
|
1254
|
+
|
1201
1255
|
class GoogleCloudSecuritycenterV2Vulnerability
|
1202
1256
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1203
1257
|
|
@@ -1408,6 +1462,12 @@ module Google
|
|
1408
1462
|
include Google::Apis::Core::JsonObjectSupport
|
1409
1463
|
end
|
1410
1464
|
|
1465
|
+
class Pipeline
|
1466
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1467
|
+
|
1468
|
+
include Google::Apis::Core::JsonObjectSupport
|
1469
|
+
end
|
1470
|
+
|
1411
1471
|
class Pod
|
1412
1472
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1413
1473
|
|
@@ -1576,6 +1636,12 @@ module Google
|
|
1576
1636
|
include Google::Apis::Core::JsonObjectSupport
|
1577
1637
|
end
|
1578
1638
|
|
1639
|
+
class VertexAi
|
1640
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1641
|
+
|
1642
|
+
include Google::Apis::Core::JsonObjectSupport
|
1643
|
+
end
|
1644
|
+
|
1579
1645
|
class Vulnerability
|
1580
1646
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1581
1647
|
|
@@ -1646,6 +1712,19 @@ module Google
|
|
1646
1712
|
end
|
1647
1713
|
end
|
1648
1714
|
|
1715
|
+
class AiModel
|
1716
|
+
# @private
|
1717
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1718
|
+
property :deployment_platform, as: 'deploymentPlatform'
|
1719
|
+
property :display_name, as: 'displayName'
|
1720
|
+
property :domain, as: 'domain'
|
1721
|
+
property :library, as: 'library'
|
1722
|
+
property :location, as: 'location'
|
1723
|
+
property :name, as: 'name'
|
1724
|
+
property :publisher, as: 'publisher'
|
1725
|
+
end
|
1726
|
+
end
|
1727
|
+
|
1649
1728
|
class Allowed
|
1650
1729
|
# @private
|
1651
1730
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1822,6 +1901,13 @@ module Google
|
|
1822
1901
|
end
|
1823
1902
|
end
|
1824
1903
|
|
1904
|
+
class BigQueryDestination
|
1905
|
+
# @private
|
1906
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1907
|
+
property :dataset, as: 'dataset'
|
1908
|
+
end
|
1909
|
+
end
|
1910
|
+
|
1825
1911
|
class Binding
|
1826
1912
|
# @private
|
1827
1913
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2021,6 +2107,15 @@ module Google
|
|
2021
2107
|
end
|
2022
2108
|
end
|
2023
2109
|
|
2110
|
+
class Dataset
|
2111
|
+
# @private
|
2112
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2113
|
+
property :display_name, as: 'displayName'
|
2114
|
+
property :name, as: 'name'
|
2115
|
+
property :source, as: 'source'
|
2116
|
+
end
|
2117
|
+
end
|
2118
|
+
|
2024
2119
|
class Denied
|
2025
2120
|
# @private
|
2026
2121
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2093,6 +2188,21 @@ module Google
|
|
2093
2188
|
end
|
2094
2189
|
end
|
2095
2190
|
|
2191
|
+
class ExportFindingsMetadata
|
2192
|
+
# @private
|
2193
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2194
|
+
property :big_query_destination, as: 'bigQueryDestination', class: Google::Apis::SecuritycenterV1beta1::BigQueryDestination, decorator: Google::Apis::SecuritycenterV1beta1::BigQueryDestination::Representation
|
2195
|
+
|
2196
|
+
property :export_start_time, as: 'exportStartTime'
|
2197
|
+
end
|
2198
|
+
end
|
2199
|
+
|
2200
|
+
class ExportFindingsResponse
|
2201
|
+
# @private
|
2202
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2203
|
+
end
|
2204
|
+
end
|
2205
|
+
|
2096
2206
|
class Expr
|
2097
2207
|
# @private
|
2098
2208
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2133,6 +2243,8 @@ module Google
|
|
2133
2243
|
|
2134
2244
|
property :affected_resources, as: 'affectedResources', class: Google::Apis::SecuritycenterV1beta1::AffectedResources, decorator: Google::Apis::SecuritycenterV1beta1::AffectedResources::Representation
|
2135
2245
|
|
2246
|
+
property :ai_model, as: 'aiModel', class: Google::Apis::SecuritycenterV1beta1::AiModel, decorator: Google::Apis::SecuritycenterV1beta1::AiModel::Representation
|
2247
|
+
|
2136
2248
|
property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta1::Application, decorator: Google::Apis::SecuritycenterV1beta1::Application::Representation
|
2137
2249
|
|
2138
2250
|
property :attack_exposure, as: 'attackExposure', class: Google::Apis::SecuritycenterV1beta1::AttackExposure, decorator: Google::Apis::SecuritycenterV1beta1::AttackExposure::Representation
|
@@ -2226,6 +2338,8 @@ module Google
|
|
2226
2338
|
property :state, as: 'state'
|
2227
2339
|
property :toxic_combination, as: 'toxicCombination', class: Google::Apis::SecuritycenterV1beta1::ToxicCombination, decorator: Google::Apis::SecuritycenterV1beta1::ToxicCombination::Representation
|
2228
2340
|
|
2341
|
+
property :vertex_ai, as: 'vertexAi', class: Google::Apis::SecuritycenterV1beta1::VertexAi, decorator: Google::Apis::SecuritycenterV1beta1::VertexAi::Representation
|
2342
|
+
|
2229
2343
|
property :vulnerability, as: 'vulnerability', class: Google::Apis::SecuritycenterV1beta1::Vulnerability, decorator: Google::Apis::SecuritycenterV1beta1::Vulnerability::Representation
|
2230
2344
|
|
2231
2345
|
end
|
@@ -2623,6 +2737,19 @@ module Google
|
|
2623
2737
|
end
|
2624
2738
|
end
|
2625
2739
|
|
2740
|
+
class GoogleCloudSecuritycenterV2AiModel
|
2741
|
+
# @private
|
2742
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2743
|
+
property :deployment_platform, as: 'deploymentPlatform'
|
2744
|
+
property :display_name, as: 'displayName'
|
2745
|
+
property :domain, as: 'domain'
|
2746
|
+
property :library, as: 'library'
|
2747
|
+
property :location, as: 'location'
|
2748
|
+
property :name, as: 'name'
|
2749
|
+
property :publisher, as: 'publisher'
|
2750
|
+
end
|
2751
|
+
end
|
2752
|
+
|
2626
2753
|
class GoogleCloudSecuritycenterV2Allowed
|
2627
2754
|
# @private
|
2628
2755
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2975,6 +3102,15 @@ module Google
|
|
2975
3102
|
end
|
2976
3103
|
end
|
2977
3104
|
|
3105
|
+
class GoogleCloudSecuritycenterV2Dataset
|
3106
|
+
# @private
|
3107
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3108
|
+
property :display_name, as: 'displayName'
|
3109
|
+
property :name, as: 'name'
|
3110
|
+
property :source, as: 'source'
|
3111
|
+
end
|
3112
|
+
end
|
3113
|
+
|
2978
3114
|
class GoogleCloudSecuritycenterV2Denied
|
2979
3115
|
# @private
|
2980
3116
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3089,6 +3225,8 @@ module Google
|
|
3089
3225
|
|
3090
3226
|
property :affected_resources, as: 'affectedResources', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AffectedResources, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AffectedResources::Representation
|
3091
3227
|
|
3228
|
+
property :ai_model, as: 'aiModel', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AiModel, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AiModel::Representation
|
3229
|
+
|
3092
3230
|
property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Application, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Application::Representation
|
3093
3231
|
|
3094
3232
|
property :attack_exposure, as: 'attackExposure', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AttackExposure, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AttackExposure::Representation
|
@@ -3182,6 +3320,8 @@ module Google
|
|
3182
3320
|
property :state, as: 'state'
|
3183
3321
|
property :toxic_combination, as: 'toxicCombination', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ToxicCombination, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ToxicCombination::Representation
|
3184
3322
|
|
3323
|
+
property :vertex_ai, as: 'vertexAi', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2VertexAi, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2VertexAi::Representation
|
3324
|
+
|
3185
3325
|
property :vulnerability, as: 'vulnerability', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Vulnerability, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Vulnerability::Representation
|
3186
3326
|
|
3187
3327
|
end
|
@@ -3590,6 +3730,14 @@ module Google
|
|
3590
3730
|
end
|
3591
3731
|
end
|
3592
3732
|
|
3733
|
+
class GoogleCloudSecuritycenterV2Pipeline
|
3734
|
+
# @private
|
3735
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3736
|
+
property :display_name, as: 'displayName'
|
3737
|
+
property :name, as: 'name'
|
3738
|
+
end
|
3739
|
+
end
|
3740
|
+
|
3593
3741
|
class GoogleCloudSecuritycenterV2Pod
|
3594
3742
|
# @private
|
3595
3743
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3828,6 +3976,16 @@ module Google
|
|
3828
3976
|
end
|
3829
3977
|
end
|
3830
3978
|
|
3979
|
+
class GoogleCloudSecuritycenterV2VertexAi
|
3980
|
+
# @private
|
3981
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3982
|
+
collection :datasets, as: 'datasets', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Dataset, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Dataset::Representation
|
3983
|
+
|
3984
|
+
collection :pipelines, as: 'pipelines', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Pipeline, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Pipeline::Representation
|
3985
|
+
|
3986
|
+
end
|
3987
|
+
end
|
3988
|
+
|
3831
3989
|
class GoogleCloudSecuritycenterV2Vulnerability
|
3832
3990
|
# @private
|
3833
3991
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4186,6 +4344,14 @@ module Google
|
|
4186
4344
|
end
|
4187
4345
|
end
|
4188
4346
|
|
4347
|
+
class Pipeline
|
4348
|
+
# @private
|
4349
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4350
|
+
property :display_name, as: 'displayName'
|
4351
|
+
property :name, as: 'name'
|
4352
|
+
end
|
4353
|
+
end
|
4354
|
+
|
4189
4355
|
class Pod
|
4190
4356
|
# @private
|
4191
4357
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4455,6 +4621,16 @@ module Google
|
|
4455
4621
|
end
|
4456
4622
|
end
|
4457
4623
|
|
4624
|
+
class VertexAi
|
4625
|
+
# @private
|
4626
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4627
|
+
collection :datasets, as: 'datasets', class: Google::Apis::SecuritycenterV1beta1::Dataset, decorator: Google::Apis::SecuritycenterV1beta1::Dataset::Representation
|
4628
|
+
|
4629
|
+
collection :pipelines, as: 'pipelines', class: Google::Apis::SecuritycenterV1beta1::Pipeline, decorator: Google::Apis::SecuritycenterV1beta1::Pipeline::Representation
|
4630
|
+
|
4631
|
+
end
|
4632
|
+
end
|
4633
|
+
|
4458
4634
|
class Vulnerability
|
4459
4635
|
# @private
|
4460
4636
|
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.
|
4
|
+
version: 0.92.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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.92.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:
|