google-apis-securitycenter_v1beta2 0.82.0 → 0.84.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: 97f9fa3e5b852cf9d96b7df4ceb6b58d1dc85f177200c2bf5be205e372ff248c
|
4
|
+
data.tar.gz: 3e33474322d7c955eab2b71d75358f6d8f8e3b0098fccfd33fca8f8eb61a486d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c5f4a2d09cf24708d852fc32bcdc647d8cc65718bf0f2309c49a22b229606f73fc68195f1eaceadfc79233a41a4845e68a56ec91515301d3c4f0ec64429f5ce3
|
7
|
+
data.tar.gz: d5a0573cc65a5411fac172a0bad51cf56eac8e97e17448ddee966dc1e6774f7026ccf52cd15ad41099c7c17c37ef8982780d19bc0bc9ca7bec72e820cf05cbc1
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-securitycenter_v1beta2
|
2
2
|
|
3
|
+
### v0.84.0 (2025-06-22)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250616
|
6
|
+
|
7
|
+
### v0.83.0 (2025-06-15)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250609
|
10
|
+
* Regenerated using generator version 0.18.0
|
11
|
+
|
3
12
|
### v0.82.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
|
@@ -737,6 +792,26 @@ module Google
|
|
737
792
|
end
|
738
793
|
end
|
739
794
|
|
795
|
+
# The destination big query dataset to export findings to.
|
796
|
+
class BigQueryDestination
|
797
|
+
include Google::Apis::Core::Hashable
|
798
|
+
|
799
|
+
# Required. The relative resource name of the destination dataset, in the form
|
800
|
+
# projects/`projectId`/datasets/`datasetId`.
|
801
|
+
# Corresponds to the JSON property `dataset`
|
802
|
+
# @return [String]
|
803
|
+
attr_accessor :dataset
|
804
|
+
|
805
|
+
def initialize(**args)
|
806
|
+
update!(**args)
|
807
|
+
end
|
808
|
+
|
809
|
+
# Update properties of this object
|
810
|
+
def update!(**args)
|
811
|
+
@dataset = args[:dataset] if args.key?(:dataset)
|
812
|
+
end
|
813
|
+
end
|
814
|
+
|
740
815
|
# Contains details about a chokepoint, which is a resource or resource group
|
741
816
|
# where high-risk attack paths converge, based on [attack path simulations] (
|
742
817
|
# https://cloud.google.com/security-command-center/docs/attack-exposure-learn#
|
@@ -1548,6 +1623,39 @@ module Google
|
|
1548
1623
|
end
|
1549
1624
|
end
|
1550
1625
|
|
1626
|
+
# Vertex AI dataset associated with the finding.
|
1627
|
+
class Dataset
|
1628
|
+
include Google::Apis::Core::Hashable
|
1629
|
+
|
1630
|
+
# The user defined display name of dataset, e.g. plants-dataset
|
1631
|
+
# Corresponds to the JSON property `displayName`
|
1632
|
+
# @return [String]
|
1633
|
+
attr_accessor :display_name
|
1634
|
+
|
1635
|
+
# Resource name of the dataset, e.g. projects/`project`/locations/`location`/
|
1636
|
+
# datasets/2094040236064505856
|
1637
|
+
# Corresponds to the JSON property `name`
|
1638
|
+
# @return [String]
|
1639
|
+
attr_accessor :name
|
1640
|
+
|
1641
|
+
# Data source, such as BigQuery source URI, e.g. bq://scc-nexus-test.AIPPtest.
|
1642
|
+
# gsod
|
1643
|
+
# Corresponds to the JSON property `source`
|
1644
|
+
# @return [String]
|
1645
|
+
attr_accessor :source
|
1646
|
+
|
1647
|
+
def initialize(**args)
|
1648
|
+
update!(**args)
|
1649
|
+
end
|
1650
|
+
|
1651
|
+
# Update properties of this object
|
1652
|
+
def update!(**args)
|
1653
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
1654
|
+
@name = args[:name] if args.key?(:name)
|
1655
|
+
@source = args[:source] if args.key?(:source)
|
1656
|
+
end
|
1657
|
+
end
|
1658
|
+
|
1551
1659
|
# Denied IP rule.
|
1552
1660
|
class Denied
|
1553
1661
|
include Google::Apis::Core::Hashable
|
@@ -1831,6 +1939,44 @@ module Google
|
|
1831
1939
|
end
|
1832
1940
|
end
|
1833
1941
|
|
1942
|
+
# The LRO metadata for a ExportFindings request.
|
1943
|
+
class ExportFindingsMetadata
|
1944
|
+
include Google::Apis::Core::Hashable
|
1945
|
+
|
1946
|
+
# The destination big query dataset to export findings to.
|
1947
|
+
# Corresponds to the JSON property `bigQueryDestination`
|
1948
|
+
# @return [Google::Apis::SecuritycenterV1beta2::BigQueryDestination]
|
1949
|
+
attr_accessor :big_query_destination
|
1950
|
+
|
1951
|
+
# Optional. Timestamp at which export was started
|
1952
|
+
# Corresponds to the JSON property `exportStartTime`
|
1953
|
+
# @return [String]
|
1954
|
+
attr_accessor :export_start_time
|
1955
|
+
|
1956
|
+
def initialize(**args)
|
1957
|
+
update!(**args)
|
1958
|
+
end
|
1959
|
+
|
1960
|
+
# Update properties of this object
|
1961
|
+
def update!(**args)
|
1962
|
+
@big_query_destination = args[:big_query_destination] if args.key?(:big_query_destination)
|
1963
|
+
@export_start_time = args[:export_start_time] if args.key?(:export_start_time)
|
1964
|
+
end
|
1965
|
+
end
|
1966
|
+
|
1967
|
+
# The response to a ExportFindings request. Contains the LRO information.
|
1968
|
+
class ExportFindingsResponse
|
1969
|
+
include Google::Apis::Core::Hashable
|
1970
|
+
|
1971
|
+
def initialize(**args)
|
1972
|
+
update!(**args)
|
1973
|
+
end
|
1974
|
+
|
1975
|
+
# Update properties of this object
|
1976
|
+
def update!(**args)
|
1977
|
+
end
|
1978
|
+
end
|
1979
|
+
|
1834
1980
|
# Represents a textual expression in the Common Expression Language (CEL) syntax.
|
1835
1981
|
# CEL is a C-like expression language. The syntax and semantics of CEL are
|
1836
1982
|
# documented at https://github.com/google/cel-spec. Example (Comparison): title:
|
@@ -1987,6 +2133,11 @@ module Google
|
|
1987
2133
|
# @return [Google::Apis::SecuritycenterV1beta2::AffectedResources]
|
1988
2134
|
attr_accessor :affected_resources
|
1989
2135
|
|
2136
|
+
# Contains information about the AI model associated with the finding.
|
2137
|
+
# Corresponds to the JSON property `aiModel`
|
2138
|
+
# @return [Google::Apis::SecuritycenterV1beta2::AiModel]
|
2139
|
+
attr_accessor :ai_model
|
2140
|
+
|
1990
2141
|
# Represents an application associated with a finding.
|
1991
2142
|
# Corresponds to the JSON property `application`
|
1992
2143
|
# @return [Google::Apis::SecuritycenterV1beta2::Application]
|
@@ -2341,6 +2492,11 @@ module Google
|
|
2341
2492
|
# @return [Google::Apis::SecuritycenterV1beta2::ToxicCombination]
|
2342
2493
|
attr_accessor :toxic_combination
|
2343
2494
|
|
2495
|
+
# Vertex AI-related information associated with the finding.
|
2496
|
+
# Corresponds to the JSON property `vertexAi`
|
2497
|
+
# @return [Google::Apis::SecuritycenterV1beta2::VertexAi]
|
2498
|
+
attr_accessor :vertex_ai
|
2499
|
+
|
2344
2500
|
# Refers to common vulnerability fields e.g. cve, cvss, cwe etc.
|
2345
2501
|
# Corresponds to the JSON property `vulnerability`
|
2346
2502
|
# @return [Google::Apis::SecuritycenterV1beta2::Vulnerability]
|
@@ -2354,6 +2510,7 @@ module Google
|
|
2354
2510
|
def update!(**args)
|
2355
2511
|
@access = args[:access] if args.key?(:access)
|
2356
2512
|
@affected_resources = args[:affected_resources] if args.key?(:affected_resources)
|
2513
|
+
@ai_model = args[:ai_model] if args.key?(:ai_model)
|
2357
2514
|
@application = args[:application] if args.key?(:application)
|
2358
2515
|
@attack_exposure = args[:attack_exposure] if args.key?(:attack_exposure)
|
2359
2516
|
@backup_disaster_recovery = args[:backup_disaster_recovery] if args.key?(:backup_disaster_recovery)
|
@@ -2410,6 +2567,7 @@ module Google
|
|
2410
2567
|
@source_properties = args[:source_properties] if args.key?(:source_properties)
|
2411
2568
|
@state = args[:state] if args.key?(:state)
|
2412
2569
|
@toxic_combination = args[:toxic_combination] if args.key?(:toxic_combination)
|
2570
|
+
@vertex_ai = args[:vertex_ai] if args.key?(:vertex_ai)
|
2413
2571
|
@vulnerability = args[:vulnerability] if args.key?(:vulnerability)
|
2414
2572
|
end
|
2415
2573
|
end
|
@@ -3954,6 +4112,61 @@ module Google
|
|
3954
4112
|
end
|
3955
4113
|
end
|
3956
4114
|
|
4115
|
+
# Contains information about the AI model associated with the finding.
|
4116
|
+
class GoogleCloudSecuritycenterV2AiModel
|
4117
|
+
include Google::Apis::Core::Hashable
|
4118
|
+
|
4119
|
+
# The platform on which the model is deployed.
|
4120
|
+
# Corresponds to the JSON property `deploymentPlatform`
|
4121
|
+
# @return [String]
|
4122
|
+
attr_accessor :deployment_platform
|
4123
|
+
|
4124
|
+
# The user defined display name of model. Ex. baseline-classification-model
|
4125
|
+
# Corresponds to the JSON property `displayName`
|
4126
|
+
# @return [String]
|
4127
|
+
attr_accessor :display_name
|
4128
|
+
|
4129
|
+
# The domain of the model, for example, “image-classification”.
|
4130
|
+
# Corresponds to the JSON property `domain`
|
4131
|
+
# @return [String]
|
4132
|
+
attr_accessor :domain
|
4133
|
+
|
4134
|
+
# The name of the model library, for example, “transformers”.
|
4135
|
+
# Corresponds to the JSON property `library`
|
4136
|
+
# @return [String]
|
4137
|
+
attr_accessor :library
|
4138
|
+
|
4139
|
+
# The region in which the model is used, for example, “us-central1”.
|
4140
|
+
# Corresponds to the JSON property `location`
|
4141
|
+
# @return [String]
|
4142
|
+
attr_accessor :location
|
4143
|
+
|
4144
|
+
# The name of the AI model, for example, "gemini:1.0.0".
|
4145
|
+
# Corresponds to the JSON property `name`
|
4146
|
+
# @return [String]
|
4147
|
+
attr_accessor :name
|
4148
|
+
|
4149
|
+
# The publisher of the model, for example, “google” or “nvidia”.
|
4150
|
+
# Corresponds to the JSON property `publisher`
|
4151
|
+
# @return [String]
|
4152
|
+
attr_accessor :publisher
|
4153
|
+
|
4154
|
+
def initialize(**args)
|
4155
|
+
update!(**args)
|
4156
|
+
end
|
4157
|
+
|
4158
|
+
# Update properties of this object
|
4159
|
+
def update!(**args)
|
4160
|
+
@deployment_platform = args[:deployment_platform] if args.key?(:deployment_platform)
|
4161
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
4162
|
+
@domain = args[:domain] if args.key?(:domain)
|
4163
|
+
@library = args[:library] if args.key?(:library)
|
4164
|
+
@location = args[:location] if args.key?(:location)
|
4165
|
+
@name = args[:name] if args.key?(:name)
|
4166
|
+
@publisher = args[:publisher] if args.key?(:publisher)
|
4167
|
+
end
|
4168
|
+
end
|
4169
|
+
|
3957
4170
|
# Allowed IP rule.
|
3958
4171
|
class GoogleCloudSecuritycenterV2Allowed
|
3959
4172
|
include Google::Apis::Core::Hashable
|
@@ -5329,6 +5542,39 @@ module Google
|
|
5329
5542
|
end
|
5330
5543
|
end
|
5331
5544
|
|
5545
|
+
# Vertex AI dataset associated with the finding.
|
5546
|
+
class GoogleCloudSecuritycenterV2Dataset
|
5547
|
+
include Google::Apis::Core::Hashable
|
5548
|
+
|
5549
|
+
# The user defined display name of dataset, e.g. plants-dataset
|
5550
|
+
# Corresponds to the JSON property `displayName`
|
5551
|
+
# @return [String]
|
5552
|
+
attr_accessor :display_name
|
5553
|
+
|
5554
|
+
# Resource name of the dataset, e.g. projects/`project`/locations/`location`/
|
5555
|
+
# datasets/2094040236064505856
|
5556
|
+
# Corresponds to the JSON property `name`
|
5557
|
+
# @return [String]
|
5558
|
+
attr_accessor :name
|
5559
|
+
|
5560
|
+
# Data source, such as a BigQuery source URI, e.g. bq://scc-nexus-test.AIPPtest.
|
5561
|
+
# gsod
|
5562
|
+
# Corresponds to the JSON property `source`
|
5563
|
+
# @return [String]
|
5564
|
+
attr_accessor :source
|
5565
|
+
|
5566
|
+
def initialize(**args)
|
5567
|
+
update!(**args)
|
5568
|
+
end
|
5569
|
+
|
5570
|
+
# Update properties of this object
|
5571
|
+
def update!(**args)
|
5572
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
5573
|
+
@name = args[:name] if args.key?(:name)
|
5574
|
+
@source = args[:source] if args.key?(:source)
|
5575
|
+
end
|
5576
|
+
end
|
5577
|
+
|
5332
5578
|
# Denied IP rule.
|
5333
5579
|
class GoogleCloudSecuritycenterV2Denied
|
5334
5580
|
include Google::Apis::Core::Hashable
|
@@ -5730,6 +5976,11 @@ module Google
|
|
5730
5976
|
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AffectedResources]
|
5731
5977
|
attr_accessor :affected_resources
|
5732
5978
|
|
5979
|
+
# Contains information about the AI model associated with the finding.
|
5980
|
+
# Corresponds to the JSON property `aiModel`
|
5981
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AiModel]
|
5982
|
+
attr_accessor :ai_model
|
5983
|
+
|
5733
5984
|
# Represents an application associated with a finding.
|
5734
5985
|
# Corresponds to the JSON property `application`
|
5735
5986
|
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Application]
|
@@ -5988,7 +6239,7 @@ module Google
|
|
5988
6239
|
# @return [String]
|
5989
6240
|
attr_accessor :mute_update_time
|
5990
6241
|
|
5991
|
-
# The [relative resource name](https://cloud.google.com/apis/design/
|
6242
|
+
# Identifier. The [relative resource name](https://cloud.google.com/apis/design/
|
5992
6243
|
# resource_names#relative_resource_name) of the finding. The following list
|
5993
6244
|
# shows some examples: + `organizations/`organization_id`/sources/`source_id`/
|
5994
6245
|
# findings/`finding_id`` + `organizations/`organization_id`/sources/`source_id`/
|
@@ -6098,6 +6349,11 @@ module Google
|
|
6098
6349
|
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ToxicCombination]
|
6099
6350
|
attr_accessor :toxic_combination
|
6100
6351
|
|
6352
|
+
# Vertex AI-related information associated with the finding.
|
6353
|
+
# Corresponds to the JSON property `vertexAi`
|
6354
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2VertexAi]
|
6355
|
+
attr_accessor :vertex_ai
|
6356
|
+
|
6101
6357
|
# Refers to common vulnerability fields e.g. cve, cvss, cwe etc.
|
6102
6358
|
# Corresponds to the JSON property `vulnerability`
|
6103
6359
|
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Vulnerability]
|
@@ -6111,6 +6367,7 @@ module Google
|
|
6111
6367
|
def update!(**args)
|
6112
6368
|
@access = args[:access] if args.key?(:access)
|
6113
6369
|
@affected_resources = args[:affected_resources] if args.key?(:affected_resources)
|
6370
|
+
@ai_model = args[:ai_model] if args.key?(:ai_model)
|
6114
6371
|
@application = args[:application] if args.key?(:application)
|
6115
6372
|
@attack_exposure = args[:attack_exposure] if args.key?(:attack_exposure)
|
6116
6373
|
@backup_disaster_recovery = args[:backup_disaster_recovery] if args.key?(:backup_disaster_recovery)
|
@@ -6167,6 +6424,7 @@ module Google
|
|
6167
6424
|
@source_properties = args[:source_properties] if args.key?(:source_properties)
|
6168
6425
|
@state = args[:state] if args.key?(:state)
|
6169
6426
|
@toxic_combination = args[:toxic_combination] if args.key?(:toxic_combination)
|
6427
|
+
@vertex_ai = args[:vertex_ai] if args.key?(:vertex_ai)
|
6170
6428
|
@vulnerability = args[:vulnerability] if args.key?(:vulnerability)
|
6171
6429
|
end
|
6172
6430
|
end
|
@@ -7562,6 +7820,32 @@ module Google
|
|
7562
7820
|
end
|
7563
7821
|
end
|
7564
7822
|
|
7823
|
+
# Vertex AI training pipeline associated with the finding.
|
7824
|
+
class GoogleCloudSecuritycenterV2Pipeline
|
7825
|
+
include Google::Apis::Core::Hashable
|
7826
|
+
|
7827
|
+
# The user-defined display name of pipeline, e.g. plants-classification
|
7828
|
+
# Corresponds to the JSON property `displayName`
|
7829
|
+
# @return [String]
|
7830
|
+
attr_accessor :display_name
|
7831
|
+
|
7832
|
+
# Resource name of the pipeline, e.g. projects/`project`/locations/`location`/
|
7833
|
+
# trainingPipelines/5253428229225578496
|
7834
|
+
# Corresponds to the JSON property `name`
|
7835
|
+
# @return [String]
|
7836
|
+
attr_accessor :name
|
7837
|
+
|
7838
|
+
def initialize(**args)
|
7839
|
+
update!(**args)
|
7840
|
+
end
|
7841
|
+
|
7842
|
+
# Update properties of this object
|
7843
|
+
def update!(**args)
|
7844
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
7845
|
+
@name = args[:name] if args.key?(:name)
|
7846
|
+
end
|
7847
|
+
end
|
7848
|
+
|
7565
7849
|
# A Kubernetes Pod.
|
7566
7850
|
class GoogleCloudSecuritycenterV2Pod
|
7567
7851
|
include Google::Apis::Core::Hashable
|
@@ -8494,6 +8778,31 @@ module Google
|
|
8494
8778
|
end
|
8495
8779
|
end
|
8496
8780
|
|
8781
|
+
# Vertex AI-related information associated with the finding.
|
8782
|
+
class GoogleCloudSecuritycenterV2VertexAi
|
8783
|
+
include Google::Apis::Core::Hashable
|
8784
|
+
|
8785
|
+
# Datasets associated with the finding.
|
8786
|
+
# Corresponds to the JSON property `datasets`
|
8787
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Dataset>]
|
8788
|
+
attr_accessor :datasets
|
8789
|
+
|
8790
|
+
# Pipelines associated with the finding.
|
8791
|
+
# Corresponds to the JSON property `pipelines`
|
8792
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Pipeline>]
|
8793
|
+
attr_accessor :pipelines
|
8794
|
+
|
8795
|
+
def initialize(**args)
|
8796
|
+
update!(**args)
|
8797
|
+
end
|
8798
|
+
|
8799
|
+
# Update properties of this object
|
8800
|
+
def update!(**args)
|
8801
|
+
@datasets = args[:datasets] if args.key?(:datasets)
|
8802
|
+
@pipelines = args[:pipelines] if args.key?(:pipelines)
|
8803
|
+
end
|
8804
|
+
end
|
8805
|
+
|
8497
8806
|
# Refers to common vulnerability fields e.g. cve, cvss, cwe etc.
|
8498
8807
|
class GoogleCloudSecuritycenterV2Vulnerability
|
8499
8808
|
include Google::Apis::Core::Hashable
|
@@ -9322,6 +9631,32 @@ module Google
|
|
9322
9631
|
end
|
9323
9632
|
end
|
9324
9633
|
|
9634
|
+
# Vertex AI training pipeline associated with the finding.
|
9635
|
+
class Pipeline
|
9636
|
+
include Google::Apis::Core::Hashable
|
9637
|
+
|
9638
|
+
# The user defined display name of pipeline, e.g. plants-classification
|
9639
|
+
# Corresponds to the JSON property `displayName`
|
9640
|
+
# @return [String]
|
9641
|
+
attr_accessor :display_name
|
9642
|
+
|
9643
|
+
# Resource name of the pipeline, e.g. projects/`project`/locations/`location`/
|
9644
|
+
# trainingPipelines/5253428229225578496
|
9645
|
+
# Corresponds to the JSON property `name`
|
9646
|
+
# @return [String]
|
9647
|
+
attr_accessor :name
|
9648
|
+
|
9649
|
+
def initialize(**args)
|
9650
|
+
update!(**args)
|
9651
|
+
end
|
9652
|
+
|
9653
|
+
# Update properties of this object
|
9654
|
+
def update!(**args)
|
9655
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
9656
|
+
@name = args[:name] if args.key?(:name)
|
9657
|
+
end
|
9658
|
+
end
|
9659
|
+
|
9325
9660
|
# A Kubernetes Pod.
|
9326
9661
|
class Pod
|
9327
9662
|
include Google::Apis::Core::Hashable
|
@@ -10202,6 +10537,31 @@ module Google
|
|
10202
10537
|
end
|
10203
10538
|
end
|
10204
10539
|
|
10540
|
+
# Vertex AI-related information associated with the finding.
|
10541
|
+
class VertexAi
|
10542
|
+
include Google::Apis::Core::Hashable
|
10543
|
+
|
10544
|
+
# Datasets associated with the finding.
|
10545
|
+
# Corresponds to the JSON property `datasets`
|
10546
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::Dataset>]
|
10547
|
+
attr_accessor :datasets
|
10548
|
+
|
10549
|
+
# Pipelines associated with the finding.
|
10550
|
+
# Corresponds to the JSON property `pipelines`
|
10551
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::Pipeline>]
|
10552
|
+
attr_accessor :pipelines
|
10553
|
+
|
10554
|
+
def initialize(**args)
|
10555
|
+
update!(**args)
|
10556
|
+
end
|
10557
|
+
|
10558
|
+
# Update properties of this object
|
10559
|
+
def update!(**args)
|
10560
|
+
@datasets = args[:datasets] if args.key?(:datasets)
|
10561
|
+
@pipelines = args[:pipelines] if args.key?(:pipelines)
|
10562
|
+
end
|
10563
|
+
end
|
10564
|
+
|
10205
10565
|
# Resource capturing the settings for the Virtual Machine Threat Detection
|
10206
10566
|
# service.
|
10207
10567
|
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.
|
19
|
+
GEM_VERSION = "0.84.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
|
|
@@ -130,6 +136,12 @@ module Google
|
|
130
136
|
include Google::Apis::Core::JsonObjectSupport
|
131
137
|
end
|
132
138
|
|
139
|
+
class BigQueryDestination
|
140
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
141
|
+
|
142
|
+
include Google::Apis::Core::JsonObjectSupport
|
143
|
+
end
|
144
|
+
|
133
145
|
class Chokepoint
|
134
146
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
135
147
|
|
@@ -244,6 +256,12 @@ module Google
|
|
244
256
|
include Google::Apis::Core::JsonObjectSupport
|
245
257
|
end
|
246
258
|
|
259
|
+
class Dataset
|
260
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
|
+
|
262
|
+
include Google::Apis::Core::JsonObjectSupport
|
263
|
+
end
|
264
|
+
|
247
265
|
class Denied
|
248
266
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
249
267
|
|
@@ -304,6 +322,18 @@ module Google
|
|
304
322
|
include Google::Apis::Core::JsonObjectSupport
|
305
323
|
end
|
306
324
|
|
325
|
+
class ExportFindingsMetadata
|
326
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
327
|
+
|
328
|
+
include Google::Apis::Core::JsonObjectSupport
|
329
|
+
end
|
330
|
+
|
331
|
+
class ExportFindingsResponse
|
332
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
333
|
+
|
334
|
+
include Google::Apis::Core::JsonObjectSupport
|
335
|
+
end
|
336
|
+
|
307
337
|
class Expr
|
308
338
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
309
339
|
|
@@ -508,6 +538,12 @@ module Google
|
|
508
538
|
include Google::Apis::Core::JsonObjectSupport
|
509
539
|
end
|
510
540
|
|
541
|
+
class GoogleCloudSecuritycenterV2AiModel
|
542
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
543
|
+
|
544
|
+
include Google::Apis::Core::JsonObjectSupport
|
545
|
+
end
|
546
|
+
|
511
547
|
class GoogleCloudSecuritycenterV2Allowed
|
512
548
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
513
549
|
|
@@ -712,6 +748,12 @@ module Google
|
|
712
748
|
include Google::Apis::Core::JsonObjectSupport
|
713
749
|
end
|
714
750
|
|
751
|
+
class GoogleCloudSecuritycenterV2Dataset
|
752
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
753
|
+
|
754
|
+
include Google::Apis::Core::JsonObjectSupport
|
755
|
+
end
|
756
|
+
|
715
757
|
class GoogleCloudSecuritycenterV2Denied
|
716
758
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
717
759
|
|
@@ -1024,6 +1066,12 @@ module Google
|
|
1024
1066
|
include Google::Apis::Core::JsonObjectSupport
|
1025
1067
|
end
|
1026
1068
|
|
1069
|
+
class GoogleCloudSecuritycenterV2Pipeline
|
1070
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1071
|
+
|
1072
|
+
include Google::Apis::Core::JsonObjectSupport
|
1073
|
+
end
|
1074
|
+
|
1027
1075
|
class GoogleCloudSecuritycenterV2Pod
|
1028
1076
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1029
1077
|
|
@@ -1156,6 +1204,12 @@ module Google
|
|
1156
1204
|
include Google::Apis::Core::JsonObjectSupport
|
1157
1205
|
end
|
1158
1206
|
|
1207
|
+
class GoogleCloudSecuritycenterV2VertexAi
|
1208
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1209
|
+
|
1210
|
+
include Google::Apis::Core::JsonObjectSupport
|
1211
|
+
end
|
1212
|
+
|
1159
1213
|
class GoogleCloudSecuritycenterV2Vulnerability
|
1160
1214
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1161
1215
|
|
@@ -1294,6 +1348,12 @@ module Google
|
|
1294
1348
|
include Google::Apis::Core::JsonObjectSupport
|
1295
1349
|
end
|
1296
1350
|
|
1351
|
+
class Pipeline
|
1352
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1353
|
+
|
1354
|
+
include Google::Apis::Core::JsonObjectSupport
|
1355
|
+
end
|
1356
|
+
|
1297
1357
|
class Pod
|
1298
1358
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1299
1359
|
|
@@ -1432,6 +1492,12 @@ module Google
|
|
1432
1492
|
include Google::Apis::Core::JsonObjectSupport
|
1433
1493
|
end
|
1434
1494
|
|
1495
|
+
class VertexAi
|
1496
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1497
|
+
|
1498
|
+
include Google::Apis::Core::JsonObjectSupport
|
1499
|
+
end
|
1500
|
+
|
1435
1501
|
class VirtualMachineThreatDetectionSettings
|
1436
1502
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1437
1503
|
|
@@ -1514,6 +1580,19 @@ module Google
|
|
1514
1580
|
end
|
1515
1581
|
end
|
1516
1582
|
|
1583
|
+
class AiModel
|
1584
|
+
# @private
|
1585
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1586
|
+
property :deployment_platform, as: 'deploymentPlatform'
|
1587
|
+
property :display_name, as: 'displayName'
|
1588
|
+
property :domain, as: 'domain'
|
1589
|
+
property :library, as: 'library'
|
1590
|
+
property :location, as: 'location'
|
1591
|
+
property :name, as: 'name'
|
1592
|
+
property :publisher, as: 'publisher'
|
1593
|
+
end
|
1594
|
+
end
|
1595
|
+
|
1517
1596
|
class Allowed
|
1518
1597
|
# @private
|
1519
1598
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1651,6 +1730,13 @@ module Google
|
|
1651
1730
|
end
|
1652
1731
|
end
|
1653
1732
|
|
1733
|
+
class BigQueryDestination
|
1734
|
+
# @private
|
1735
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1736
|
+
property :dataset, as: 'dataset'
|
1737
|
+
end
|
1738
|
+
end
|
1739
|
+
|
1654
1740
|
class Chokepoint
|
1655
1741
|
# @private
|
1656
1742
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1854,6 +1940,15 @@ module Google
|
|
1854
1940
|
end
|
1855
1941
|
end
|
1856
1942
|
|
1943
|
+
class Dataset
|
1944
|
+
# @private
|
1945
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1946
|
+
property :display_name, as: 'displayName'
|
1947
|
+
property :name, as: 'name'
|
1948
|
+
property :source, as: 'source'
|
1949
|
+
end
|
1950
|
+
end
|
1951
|
+
|
1857
1952
|
class Denied
|
1858
1953
|
# @private
|
1859
1954
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1940,6 +2035,21 @@ module Google
|
|
1940
2035
|
end
|
1941
2036
|
end
|
1942
2037
|
|
2038
|
+
class ExportFindingsMetadata
|
2039
|
+
# @private
|
2040
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2041
|
+
property :big_query_destination, as: 'bigQueryDestination', class: Google::Apis::SecuritycenterV1beta2::BigQueryDestination, decorator: Google::Apis::SecuritycenterV1beta2::BigQueryDestination::Representation
|
2042
|
+
|
2043
|
+
property :export_start_time, as: 'exportStartTime'
|
2044
|
+
end
|
2045
|
+
end
|
2046
|
+
|
2047
|
+
class ExportFindingsResponse
|
2048
|
+
# @private
|
2049
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2050
|
+
end
|
2051
|
+
end
|
2052
|
+
|
1943
2053
|
class Expr
|
1944
2054
|
# @private
|
1945
2055
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1980,6 +2090,8 @@ module Google
|
|
1980
2090
|
|
1981
2091
|
property :affected_resources, as: 'affectedResources', class: Google::Apis::SecuritycenterV1beta2::AffectedResources, decorator: Google::Apis::SecuritycenterV1beta2::AffectedResources::Representation
|
1982
2092
|
|
2093
|
+
property :ai_model, as: 'aiModel', class: Google::Apis::SecuritycenterV1beta2::AiModel, decorator: Google::Apis::SecuritycenterV1beta2::AiModel::Representation
|
2094
|
+
|
1983
2095
|
property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta2::Application, decorator: Google::Apis::SecuritycenterV1beta2::Application::Representation
|
1984
2096
|
|
1985
2097
|
property :attack_exposure, as: 'attackExposure', class: Google::Apis::SecuritycenterV1beta2::AttackExposure, decorator: Google::Apis::SecuritycenterV1beta2::AttackExposure::Representation
|
@@ -2073,6 +2185,8 @@ module Google
|
|
2073
2185
|
property :state, as: 'state'
|
2074
2186
|
property :toxic_combination, as: 'toxicCombination', class: Google::Apis::SecuritycenterV1beta2::ToxicCombination, decorator: Google::Apis::SecuritycenterV1beta2::ToxicCombination::Representation
|
2075
2187
|
|
2188
|
+
property :vertex_ai, as: 'vertexAi', class: Google::Apis::SecuritycenterV1beta2::VertexAi, decorator: Google::Apis::SecuritycenterV1beta2::VertexAi::Representation
|
2189
|
+
|
2076
2190
|
property :vulnerability, as: 'vulnerability', class: Google::Apis::SecuritycenterV1beta2::Vulnerability, decorator: Google::Apis::SecuritycenterV1beta2::Vulnerability::Representation
|
2077
2191
|
|
2078
2192
|
end
|
@@ -2430,6 +2544,19 @@ module Google
|
|
2430
2544
|
end
|
2431
2545
|
end
|
2432
2546
|
|
2547
|
+
class GoogleCloudSecuritycenterV2AiModel
|
2548
|
+
# @private
|
2549
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2550
|
+
property :deployment_platform, as: 'deploymentPlatform'
|
2551
|
+
property :display_name, as: 'displayName'
|
2552
|
+
property :domain, as: 'domain'
|
2553
|
+
property :library, as: 'library'
|
2554
|
+
property :location, as: 'location'
|
2555
|
+
property :name, as: 'name'
|
2556
|
+
property :publisher, as: 'publisher'
|
2557
|
+
end
|
2558
|
+
end
|
2559
|
+
|
2433
2560
|
class GoogleCloudSecuritycenterV2Allowed
|
2434
2561
|
# @private
|
2435
2562
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2782,6 +2909,15 @@ module Google
|
|
2782
2909
|
end
|
2783
2910
|
end
|
2784
2911
|
|
2912
|
+
class GoogleCloudSecuritycenterV2Dataset
|
2913
|
+
# @private
|
2914
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2915
|
+
property :display_name, as: 'displayName'
|
2916
|
+
property :name, as: 'name'
|
2917
|
+
property :source, as: 'source'
|
2918
|
+
end
|
2919
|
+
end
|
2920
|
+
|
2785
2921
|
class GoogleCloudSecuritycenterV2Denied
|
2786
2922
|
# @private
|
2787
2923
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2896,6 +3032,8 @@ module Google
|
|
2896
3032
|
|
2897
3033
|
property :affected_resources, as: 'affectedResources', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AffectedResources, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AffectedResources::Representation
|
2898
3034
|
|
3035
|
+
property :ai_model, as: 'aiModel', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AiModel, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AiModel::Representation
|
3036
|
+
|
2899
3037
|
property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Application, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Application::Representation
|
2900
3038
|
|
2901
3039
|
property :attack_exposure, as: 'attackExposure', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AttackExposure, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AttackExposure::Representation
|
@@ -2989,6 +3127,8 @@ module Google
|
|
2989
3127
|
property :state, as: 'state'
|
2990
3128
|
property :toxic_combination, as: 'toxicCombination', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ToxicCombination, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ToxicCombination::Representation
|
2991
3129
|
|
3130
|
+
property :vertex_ai, as: 'vertexAi', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2VertexAi, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2VertexAi::Representation
|
3131
|
+
|
2992
3132
|
property :vulnerability, as: 'vulnerability', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Vulnerability, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Vulnerability::Representation
|
2993
3133
|
|
2994
3134
|
end
|
@@ -3397,6 +3537,14 @@ module Google
|
|
3397
3537
|
end
|
3398
3538
|
end
|
3399
3539
|
|
3540
|
+
class GoogleCloudSecuritycenterV2Pipeline
|
3541
|
+
# @private
|
3542
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3543
|
+
property :display_name, as: 'displayName'
|
3544
|
+
property :name, as: 'name'
|
3545
|
+
end
|
3546
|
+
end
|
3547
|
+
|
3400
3548
|
class GoogleCloudSecuritycenterV2Pod
|
3401
3549
|
# @private
|
3402
3550
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3635,6 +3783,16 @@ module Google
|
|
3635
3783
|
end
|
3636
3784
|
end
|
3637
3785
|
|
3786
|
+
class GoogleCloudSecuritycenterV2VertexAi
|
3787
|
+
# @private
|
3788
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3789
|
+
collection :datasets, as: 'datasets', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Dataset, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Dataset::Representation
|
3790
|
+
|
3791
|
+
collection :pipelines, as: 'pipelines', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Pipeline, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Pipeline::Representation
|
3792
|
+
|
3793
|
+
end
|
3794
|
+
end
|
3795
|
+
|
3638
3796
|
class GoogleCloudSecuritycenterV2Vulnerability
|
3639
3797
|
# @private
|
3640
3798
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3871,6 +4029,14 @@ module Google
|
|
3871
4029
|
end
|
3872
4030
|
end
|
3873
4031
|
|
4032
|
+
class Pipeline
|
4033
|
+
# @private
|
4034
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4035
|
+
property :display_name, as: 'displayName'
|
4036
|
+
property :name, as: 'name'
|
4037
|
+
end
|
4038
|
+
end
|
4039
|
+
|
3874
4040
|
class Pod
|
3875
4041
|
# @private
|
3876
4042
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4105,6 +4271,16 @@ module Google
|
|
4105
4271
|
end
|
4106
4272
|
end
|
4107
4273
|
|
4274
|
+
class VertexAi
|
4275
|
+
# @private
|
4276
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4277
|
+
collection :datasets, as: 'datasets', class: Google::Apis::SecuritycenterV1beta2::Dataset, decorator: Google::Apis::SecuritycenterV1beta2::Dataset::Representation
|
4278
|
+
|
4279
|
+
collection :pipelines, as: 'pipelines', class: Google::Apis::SecuritycenterV1beta2::Pipeline, decorator: Google::Apis::SecuritycenterV1beta2::Pipeline::Representation
|
4280
|
+
|
4281
|
+
end
|
4282
|
+
end
|
4283
|
+
|
4108
4284
|
class VirtualMachineThreatDetectionSettings
|
4109
4285
|
# @private
|
4110
4286
|
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.
|
4
|
+
version: 0.84.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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.84.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:
|