google-apis-securitycenter_v1beta2 0.81.0 → 0.83.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0aef32e70dce399defaf479275cd8ee83d644946a84a70385c7c4da0ec653b23
|
4
|
+
data.tar.gz: 1876d7f39e0ec685fcfe3b68bca639cd61bf0b712e6ec01732a0ad0e3a8e94d2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5dab2a345018628aece3e3052b05a4960669e43b73e2763eb33d7c7b321d32f73a939bdde21402c0cacfc77a15602d362bc450d2812849b7ba144f764f202576
|
7
|
+
data.tar.gz: dc9df10fbaf208b43e69fe3169daa6afc61b4e4b2298cf80f322e6c58900a9ead389230691dcca8afb30a0bbe737ba0b7bbe31d26c4dfd5a04ebfbef24193bdf
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-securitycenter_v1beta2
|
2
2
|
|
3
|
+
### v0.83.0 (2025-06-15)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250609
|
6
|
+
* Regenerated using generator version 0.18.0
|
7
|
+
|
8
|
+
### v0.82.0 (2025-05-21)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20250519
|
11
|
+
|
3
12
|
### v0.81.0 (2025-05-04)
|
4
13
|
|
5
14
|
* Regenerated using generator version 0.17.0
|
@@ -230,6 +230,61 @@ module Google
|
|
230
230
|
end
|
231
231
|
end
|
232
232
|
|
233
|
+
# Contains information about the AI model associated with the finding.
|
234
|
+
class AiModel
|
235
|
+
include Google::Apis::Core::Hashable
|
236
|
+
|
237
|
+
# The platform on which the model is deployed.
|
238
|
+
# Corresponds to the JSON property `deploymentPlatform`
|
239
|
+
# @return [String]
|
240
|
+
attr_accessor :deployment_platform
|
241
|
+
|
242
|
+
# The user defined display name of model. Ex. baseline-classification-model
|
243
|
+
# Corresponds to the JSON property `displayName`
|
244
|
+
# @return [String]
|
245
|
+
attr_accessor :display_name
|
246
|
+
|
247
|
+
# The domain of the model, for example, “image-classification”.
|
248
|
+
# Corresponds to the JSON property `domain`
|
249
|
+
# @return [String]
|
250
|
+
attr_accessor :domain
|
251
|
+
|
252
|
+
# The name of the model library, for example, “transformers”.
|
253
|
+
# Corresponds to the JSON property `library`
|
254
|
+
# @return [String]
|
255
|
+
attr_accessor :library
|
256
|
+
|
257
|
+
# The region in which the model is used, for example, “us-central1”.
|
258
|
+
# Corresponds to the JSON property `location`
|
259
|
+
# @return [String]
|
260
|
+
attr_accessor :location
|
261
|
+
|
262
|
+
# The name of the AI model, for example, "gemini:1.0.0".
|
263
|
+
# Corresponds to the JSON property `name`
|
264
|
+
# @return [String]
|
265
|
+
attr_accessor :name
|
266
|
+
|
267
|
+
# The publisher of the model, for example, “google” or “nvidia”.
|
268
|
+
# Corresponds to the JSON property `publisher`
|
269
|
+
# @return [String]
|
270
|
+
attr_accessor :publisher
|
271
|
+
|
272
|
+
def initialize(**args)
|
273
|
+
update!(**args)
|
274
|
+
end
|
275
|
+
|
276
|
+
# Update properties of this object
|
277
|
+
def update!(**args)
|
278
|
+
@deployment_platform = args[:deployment_platform] if args.key?(:deployment_platform)
|
279
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
280
|
+
@domain = args[:domain] if args.key?(:domain)
|
281
|
+
@library = args[:library] if args.key?(:library)
|
282
|
+
@location = args[:location] if args.key?(:location)
|
283
|
+
@name = args[:name] if args.key?(:name)
|
284
|
+
@publisher = args[:publisher] if args.key?(:publisher)
|
285
|
+
end
|
286
|
+
end
|
287
|
+
|
233
288
|
# Allowed IP rule.
|
234
289
|
class Allowed
|
235
290
|
include Google::Apis::Core::Hashable
|
@@ -1548,6 +1603,39 @@ module Google
|
|
1548
1603
|
end
|
1549
1604
|
end
|
1550
1605
|
|
1606
|
+
# Vertex AI dataset associated with the finding.
|
1607
|
+
class Dataset
|
1608
|
+
include Google::Apis::Core::Hashable
|
1609
|
+
|
1610
|
+
# The user defined display name of dataset, e.g. plants-dataset
|
1611
|
+
# Corresponds to the JSON property `displayName`
|
1612
|
+
# @return [String]
|
1613
|
+
attr_accessor :display_name
|
1614
|
+
|
1615
|
+
# Resource name of dataset, e.g. projects/`project`/locations/`location`/
|
1616
|
+
# datasets/2094040236064505856
|
1617
|
+
# Corresponds to the JSON property `name`
|
1618
|
+
# @return [String]
|
1619
|
+
attr_accessor :name
|
1620
|
+
|
1621
|
+
# Data source, such as BigQuery source URI, e.g. bq://scc-nexus-test.AIPPtest.
|
1622
|
+
# gsod
|
1623
|
+
# Corresponds to the JSON property `source`
|
1624
|
+
# @return [String]
|
1625
|
+
attr_accessor :source
|
1626
|
+
|
1627
|
+
def initialize(**args)
|
1628
|
+
update!(**args)
|
1629
|
+
end
|
1630
|
+
|
1631
|
+
# Update properties of this object
|
1632
|
+
def update!(**args)
|
1633
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
1634
|
+
@name = args[:name] if args.key?(:name)
|
1635
|
+
@source = args[:source] if args.key?(:source)
|
1636
|
+
end
|
1637
|
+
end
|
1638
|
+
|
1551
1639
|
# Denied IP rule.
|
1552
1640
|
class Denied
|
1553
1641
|
include Google::Apis::Core::Hashable
|
@@ -1906,6 +1994,11 @@ module Google
|
|
1906
1994
|
# @return [Fixnum]
|
1907
1995
|
attr_accessor :hashed_size
|
1908
1996
|
|
1997
|
+
# Operation(s) performed on a file.
|
1998
|
+
# Corresponds to the JSON property `operations`
|
1999
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::FileOperation>]
|
2000
|
+
attr_accessor :operations
|
2001
|
+
|
1909
2002
|
# True when the hash covers only a prefix of the file.
|
1910
2003
|
# Corresponds to the JSON property `partiallyHashed`
|
1911
2004
|
# @return [Boolean]
|
@@ -1937,6 +2030,7 @@ module Google
|
|
1937
2030
|
@contents = args[:contents] if args.key?(:contents)
|
1938
2031
|
@disk_path = args[:disk_path] if args.key?(:disk_path)
|
1939
2032
|
@hashed_size = args[:hashed_size] if args.key?(:hashed_size)
|
2033
|
+
@operations = args[:operations] if args.key?(:operations)
|
1940
2034
|
@partially_hashed = args[:partially_hashed] if args.key?(:partially_hashed)
|
1941
2035
|
@path = args[:path] if args.key?(:path)
|
1942
2036
|
@sha256 = args[:sha256] if args.key?(:sha256)
|
@@ -1944,6 +2038,25 @@ module Google
|
|
1944
2038
|
end
|
1945
2039
|
end
|
1946
2040
|
|
2041
|
+
# Operation(s) performed on a file.
|
2042
|
+
class FileOperation
|
2043
|
+
include Google::Apis::Core::Hashable
|
2044
|
+
|
2045
|
+
# The type of the operation
|
2046
|
+
# Corresponds to the JSON property `type`
|
2047
|
+
# @return [String]
|
2048
|
+
attr_accessor :type
|
2049
|
+
|
2050
|
+
def initialize(**args)
|
2051
|
+
update!(**args)
|
2052
|
+
end
|
2053
|
+
|
2054
|
+
# Update properties of this object
|
2055
|
+
def update!(**args)
|
2056
|
+
@type = args[:type] if args.key?(:type)
|
2057
|
+
end
|
2058
|
+
end
|
2059
|
+
|
1947
2060
|
# Security Command Center finding. A finding is a record of assessment data like
|
1948
2061
|
# security, risk, health, or privacy, that is ingested into Security Command
|
1949
2062
|
# Center for presentation, notification, analysis, policy testing, and
|
@@ -1962,6 +2075,11 @@ module Google
|
|
1962
2075
|
# @return [Google::Apis::SecuritycenterV1beta2::AffectedResources]
|
1963
2076
|
attr_accessor :affected_resources
|
1964
2077
|
|
2078
|
+
# Contains information about the AI model associated with the finding.
|
2079
|
+
# Corresponds to the JSON property `aiModel`
|
2080
|
+
# @return [Google::Apis::SecuritycenterV1beta2::AiModel]
|
2081
|
+
attr_accessor :ai_model
|
2082
|
+
|
1965
2083
|
# Represents an application associated with a finding.
|
1966
2084
|
# Corresponds to the JSON property `application`
|
1967
2085
|
# @return [Google::Apis::SecuritycenterV1beta2::Application]
|
@@ -2316,6 +2434,11 @@ module Google
|
|
2316
2434
|
# @return [Google::Apis::SecuritycenterV1beta2::ToxicCombination]
|
2317
2435
|
attr_accessor :toxic_combination
|
2318
2436
|
|
2437
|
+
# Vertex AI-related information associated with the finding.
|
2438
|
+
# Corresponds to the JSON property `vertexAi`
|
2439
|
+
# @return [Google::Apis::SecuritycenterV1beta2::VertexAi]
|
2440
|
+
attr_accessor :vertex_ai
|
2441
|
+
|
2319
2442
|
# Refers to common vulnerability fields e.g. cve, cvss, cwe etc.
|
2320
2443
|
# Corresponds to the JSON property `vulnerability`
|
2321
2444
|
# @return [Google::Apis::SecuritycenterV1beta2::Vulnerability]
|
@@ -2329,6 +2452,7 @@ module Google
|
|
2329
2452
|
def update!(**args)
|
2330
2453
|
@access = args[:access] if args.key?(:access)
|
2331
2454
|
@affected_resources = args[:affected_resources] if args.key?(:affected_resources)
|
2455
|
+
@ai_model = args[:ai_model] if args.key?(:ai_model)
|
2332
2456
|
@application = args[:application] if args.key?(:application)
|
2333
2457
|
@attack_exposure = args[:attack_exposure] if args.key?(:attack_exposure)
|
2334
2458
|
@backup_disaster_recovery = args[:backup_disaster_recovery] if args.key?(:backup_disaster_recovery)
|
@@ -2385,6 +2509,7 @@ module Google
|
|
2385
2509
|
@source_properties = args[:source_properties] if args.key?(:source_properties)
|
2386
2510
|
@state = args[:state] if args.key?(:state)
|
2387
2511
|
@toxic_combination = args[:toxic_combination] if args.key?(:toxic_combination)
|
2512
|
+
@vertex_ai = args[:vertex_ai] if args.key?(:vertex_ai)
|
2388
2513
|
@vulnerability = args[:vulnerability] if args.key?(:vulnerability)
|
2389
2514
|
end
|
2390
2515
|
end
|
@@ -3929,6 +4054,61 @@ module Google
|
|
3929
4054
|
end
|
3930
4055
|
end
|
3931
4056
|
|
4057
|
+
# Contains information about the AI model associated with the finding.
|
4058
|
+
class GoogleCloudSecuritycenterV2AiModel
|
4059
|
+
include Google::Apis::Core::Hashable
|
4060
|
+
|
4061
|
+
# The platform on which the model is deployed.
|
4062
|
+
# Corresponds to the JSON property `deploymentPlatform`
|
4063
|
+
# @return [String]
|
4064
|
+
attr_accessor :deployment_platform
|
4065
|
+
|
4066
|
+
# The user defined display name of model. Ex. baseline-classification-model
|
4067
|
+
# Corresponds to the JSON property `displayName`
|
4068
|
+
# @return [String]
|
4069
|
+
attr_accessor :display_name
|
4070
|
+
|
4071
|
+
# The domain of the model, for example, “image-classification”.
|
4072
|
+
# Corresponds to the JSON property `domain`
|
4073
|
+
# @return [String]
|
4074
|
+
attr_accessor :domain
|
4075
|
+
|
4076
|
+
# The name of the model library, for example, “transformers”.
|
4077
|
+
# Corresponds to the JSON property `library`
|
4078
|
+
# @return [String]
|
4079
|
+
attr_accessor :library
|
4080
|
+
|
4081
|
+
# The region in which the model is used, for example, “us-central1”.
|
4082
|
+
# Corresponds to the JSON property `location`
|
4083
|
+
# @return [String]
|
4084
|
+
attr_accessor :location
|
4085
|
+
|
4086
|
+
# The name of the AI model, for example, "gemini:1.0.0".
|
4087
|
+
# Corresponds to the JSON property `name`
|
4088
|
+
# @return [String]
|
4089
|
+
attr_accessor :name
|
4090
|
+
|
4091
|
+
# The publisher of the model, for example, “google” or “nvidia”.
|
4092
|
+
# Corresponds to the JSON property `publisher`
|
4093
|
+
# @return [String]
|
4094
|
+
attr_accessor :publisher
|
4095
|
+
|
4096
|
+
def initialize(**args)
|
4097
|
+
update!(**args)
|
4098
|
+
end
|
4099
|
+
|
4100
|
+
# Update properties of this object
|
4101
|
+
def update!(**args)
|
4102
|
+
@deployment_platform = args[:deployment_platform] if args.key?(:deployment_platform)
|
4103
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
4104
|
+
@domain = args[:domain] if args.key?(:domain)
|
4105
|
+
@library = args[:library] if args.key?(:library)
|
4106
|
+
@location = args[:location] if args.key?(:location)
|
4107
|
+
@name = args[:name] if args.key?(:name)
|
4108
|
+
@publisher = args[:publisher] if args.key?(:publisher)
|
4109
|
+
end
|
4110
|
+
end
|
4111
|
+
|
3932
4112
|
# Allowed IP rule.
|
3933
4113
|
class GoogleCloudSecuritycenterV2Allowed
|
3934
4114
|
include Google::Apis::Core::Hashable
|
@@ -5304,6 +5484,39 @@ module Google
|
|
5304
5484
|
end
|
5305
5485
|
end
|
5306
5486
|
|
5487
|
+
# Vertex AI dataset associated with the finding.
|
5488
|
+
class GoogleCloudSecuritycenterV2Dataset
|
5489
|
+
include Google::Apis::Core::Hashable
|
5490
|
+
|
5491
|
+
# The user defined display name of dataset, e.g. plants-dataset
|
5492
|
+
# Corresponds to the JSON property `displayName`
|
5493
|
+
# @return [String]
|
5494
|
+
attr_accessor :display_name
|
5495
|
+
|
5496
|
+
# Resource name of dataset, e.g. projects/`project`/locations/`location`/
|
5497
|
+
# datasets/2094040236064505856
|
5498
|
+
# Corresponds to the JSON property `name`
|
5499
|
+
# @return [String]
|
5500
|
+
attr_accessor :name
|
5501
|
+
|
5502
|
+
# Data source, such as BigQuery source URI, e.g. bq://scc-nexus-test.AIPPtest.
|
5503
|
+
# gsod
|
5504
|
+
# Corresponds to the JSON property `source`
|
5505
|
+
# @return [String]
|
5506
|
+
attr_accessor :source
|
5507
|
+
|
5508
|
+
def initialize(**args)
|
5509
|
+
update!(**args)
|
5510
|
+
end
|
5511
|
+
|
5512
|
+
# Update properties of this object
|
5513
|
+
def update!(**args)
|
5514
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
5515
|
+
@name = args[:name] if args.key?(:name)
|
5516
|
+
@source = args[:source] if args.key?(:source)
|
5517
|
+
end
|
5518
|
+
end
|
5519
|
+
|
5307
5520
|
# Denied IP rule.
|
5308
5521
|
class GoogleCloudSecuritycenterV2Denied
|
5309
5522
|
include Google::Apis::Core::Hashable
|
@@ -5624,6 +5837,11 @@ module Google
|
|
5624
5837
|
# @return [Fixnum]
|
5625
5838
|
attr_accessor :hashed_size
|
5626
5839
|
|
5840
|
+
# Operation(s) performed on a file.
|
5841
|
+
# Corresponds to the JSON property `operations`
|
5842
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2FileOperation>]
|
5843
|
+
attr_accessor :operations
|
5844
|
+
|
5627
5845
|
# True when the hash covers only a prefix of the file.
|
5628
5846
|
# Corresponds to the JSON property `partiallyHashed`
|
5629
5847
|
# @return [Boolean]
|
@@ -5655,6 +5873,7 @@ module Google
|
|
5655
5873
|
@contents = args[:contents] if args.key?(:contents)
|
5656
5874
|
@disk_path = args[:disk_path] if args.key?(:disk_path)
|
5657
5875
|
@hashed_size = args[:hashed_size] if args.key?(:hashed_size)
|
5876
|
+
@operations = args[:operations] if args.key?(:operations)
|
5658
5877
|
@partially_hashed = args[:partially_hashed] if args.key?(:partially_hashed)
|
5659
5878
|
@path = args[:path] if args.key?(:path)
|
5660
5879
|
@sha256 = args[:sha256] if args.key?(:sha256)
|
@@ -5662,6 +5881,25 @@ module Google
|
|
5662
5881
|
end
|
5663
5882
|
end
|
5664
5883
|
|
5884
|
+
# Operation(s) performed on a file.
|
5885
|
+
class GoogleCloudSecuritycenterV2FileOperation
|
5886
|
+
include Google::Apis::Core::Hashable
|
5887
|
+
|
5888
|
+
# The type of the operation
|
5889
|
+
# Corresponds to the JSON property `type`
|
5890
|
+
# @return [String]
|
5891
|
+
attr_accessor :type
|
5892
|
+
|
5893
|
+
def initialize(**args)
|
5894
|
+
update!(**args)
|
5895
|
+
end
|
5896
|
+
|
5897
|
+
# Update properties of this object
|
5898
|
+
def update!(**args)
|
5899
|
+
@type = args[:type] if args.key?(:type)
|
5900
|
+
end
|
5901
|
+
end
|
5902
|
+
|
5665
5903
|
# Security Command Center finding. A finding is a record of assessment data like
|
5666
5904
|
# security, risk, health, or privacy, that is ingested into Security Command
|
5667
5905
|
# Center for presentation, notification, analysis, policy testing, and
|
@@ -5680,6 +5918,11 @@ module Google
|
|
5680
5918
|
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AffectedResources]
|
5681
5919
|
attr_accessor :affected_resources
|
5682
5920
|
|
5921
|
+
# Contains information about the AI model associated with the finding.
|
5922
|
+
# Corresponds to the JSON property `aiModel`
|
5923
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AiModel]
|
5924
|
+
attr_accessor :ai_model
|
5925
|
+
|
5683
5926
|
# Represents an application associated with a finding.
|
5684
5927
|
# Corresponds to the JSON property `application`
|
5685
5928
|
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Application]
|
@@ -5938,7 +6181,7 @@ module Google
|
|
5938
6181
|
# @return [String]
|
5939
6182
|
attr_accessor :mute_update_time
|
5940
6183
|
|
5941
|
-
# The [relative resource name](https://cloud.google.com/apis/design/
|
6184
|
+
# Identifier. The [relative resource name](https://cloud.google.com/apis/design/
|
5942
6185
|
# resource_names#relative_resource_name) of the finding. The following list
|
5943
6186
|
# shows some examples: + `organizations/`organization_id`/sources/`source_id`/
|
5944
6187
|
# findings/`finding_id`` + `organizations/`organization_id`/sources/`source_id`/
|
@@ -6048,6 +6291,11 @@ module Google
|
|
6048
6291
|
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ToxicCombination]
|
6049
6292
|
attr_accessor :toxic_combination
|
6050
6293
|
|
6294
|
+
# Vertex AI-related information associated with the finding.
|
6295
|
+
# Corresponds to the JSON property `vertexAi`
|
6296
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2VertexAi]
|
6297
|
+
attr_accessor :vertex_ai
|
6298
|
+
|
6051
6299
|
# Refers to common vulnerability fields e.g. cve, cvss, cwe etc.
|
6052
6300
|
# Corresponds to the JSON property `vulnerability`
|
6053
6301
|
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Vulnerability]
|
@@ -6061,6 +6309,7 @@ module Google
|
|
6061
6309
|
def update!(**args)
|
6062
6310
|
@access = args[:access] if args.key?(:access)
|
6063
6311
|
@affected_resources = args[:affected_resources] if args.key?(:affected_resources)
|
6312
|
+
@ai_model = args[:ai_model] if args.key?(:ai_model)
|
6064
6313
|
@application = args[:application] if args.key?(:application)
|
6065
6314
|
@attack_exposure = args[:attack_exposure] if args.key?(:attack_exposure)
|
6066
6315
|
@backup_disaster_recovery = args[:backup_disaster_recovery] if args.key?(:backup_disaster_recovery)
|
@@ -6117,6 +6366,7 @@ module Google
|
|
6117
6366
|
@source_properties = args[:source_properties] if args.key?(:source_properties)
|
6118
6367
|
@state = args[:state] if args.key?(:state)
|
6119
6368
|
@toxic_combination = args[:toxic_combination] if args.key?(:toxic_combination)
|
6369
|
+
@vertex_ai = args[:vertex_ai] if args.key?(:vertex_ai)
|
6120
6370
|
@vulnerability = args[:vulnerability] if args.key?(:vulnerability)
|
6121
6371
|
end
|
6122
6372
|
end
|
@@ -7512,6 +7762,32 @@ module Google
|
|
7512
7762
|
end
|
7513
7763
|
end
|
7514
7764
|
|
7765
|
+
# Vertex AI training pipeline associated with the finding.
|
7766
|
+
class GoogleCloudSecuritycenterV2Pipeline
|
7767
|
+
include Google::Apis::Core::Hashable
|
7768
|
+
|
7769
|
+
# The user defined display name of pipeline, e.g. plants-classification
|
7770
|
+
# Corresponds to the JSON property `displayName`
|
7771
|
+
# @return [String]
|
7772
|
+
attr_accessor :display_name
|
7773
|
+
|
7774
|
+
# Resource name of pipeline, e.g. projects/`project`/locations/`location`/
|
7775
|
+
# trainingPipelines/5253428229225578496
|
7776
|
+
# Corresponds to the JSON property `name`
|
7777
|
+
# @return [String]
|
7778
|
+
attr_accessor :name
|
7779
|
+
|
7780
|
+
def initialize(**args)
|
7781
|
+
update!(**args)
|
7782
|
+
end
|
7783
|
+
|
7784
|
+
# Update properties of this object
|
7785
|
+
def update!(**args)
|
7786
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
7787
|
+
@name = args[:name] if args.key?(:name)
|
7788
|
+
end
|
7789
|
+
end
|
7790
|
+
|
7515
7791
|
# A Kubernetes Pod.
|
7516
7792
|
class GoogleCloudSecuritycenterV2Pod
|
7517
7793
|
include Google::Apis::Core::Hashable
|
@@ -8444,6 +8720,31 @@ module Google
|
|
8444
8720
|
end
|
8445
8721
|
end
|
8446
8722
|
|
8723
|
+
# Vertex AI-related information associated with the finding.
|
8724
|
+
class GoogleCloudSecuritycenterV2VertexAi
|
8725
|
+
include Google::Apis::Core::Hashable
|
8726
|
+
|
8727
|
+
# Datasets associated with the finding.
|
8728
|
+
# Corresponds to the JSON property `datasets`
|
8729
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Dataset>]
|
8730
|
+
attr_accessor :datasets
|
8731
|
+
|
8732
|
+
# Pipelines associated with the finding.
|
8733
|
+
# Corresponds to the JSON property `pipelines`
|
8734
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Pipeline>]
|
8735
|
+
attr_accessor :pipelines
|
8736
|
+
|
8737
|
+
def initialize(**args)
|
8738
|
+
update!(**args)
|
8739
|
+
end
|
8740
|
+
|
8741
|
+
# Update properties of this object
|
8742
|
+
def update!(**args)
|
8743
|
+
@datasets = args[:datasets] if args.key?(:datasets)
|
8744
|
+
@pipelines = args[:pipelines] if args.key?(:pipelines)
|
8745
|
+
end
|
8746
|
+
end
|
8747
|
+
|
8447
8748
|
# Refers to common vulnerability fields e.g. cve, cvss, cwe etc.
|
8448
8749
|
class GoogleCloudSecuritycenterV2Vulnerability
|
8449
8750
|
include Google::Apis::Core::Hashable
|
@@ -9272,6 +9573,32 @@ module Google
|
|
9272
9573
|
end
|
9273
9574
|
end
|
9274
9575
|
|
9576
|
+
# Vertex AI training pipeline associated with the finding.
|
9577
|
+
class Pipeline
|
9578
|
+
include Google::Apis::Core::Hashable
|
9579
|
+
|
9580
|
+
# The user defined display name of pipeline, e.g. plants-classification
|
9581
|
+
# Corresponds to the JSON property `displayName`
|
9582
|
+
# @return [String]
|
9583
|
+
attr_accessor :display_name
|
9584
|
+
|
9585
|
+
# Resource name of pipeline, e.g. projects/`project`/locations/`location`/
|
9586
|
+
# trainingPipelines/5253428229225578496
|
9587
|
+
# Corresponds to the JSON property `name`
|
9588
|
+
# @return [String]
|
9589
|
+
attr_accessor :name
|
9590
|
+
|
9591
|
+
def initialize(**args)
|
9592
|
+
update!(**args)
|
9593
|
+
end
|
9594
|
+
|
9595
|
+
# Update properties of this object
|
9596
|
+
def update!(**args)
|
9597
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
9598
|
+
@name = args[:name] if args.key?(:name)
|
9599
|
+
end
|
9600
|
+
end
|
9601
|
+
|
9275
9602
|
# A Kubernetes Pod.
|
9276
9603
|
class Pod
|
9277
9604
|
include Google::Apis::Core::Hashable
|
@@ -10152,6 +10479,31 @@ module Google
|
|
10152
10479
|
end
|
10153
10480
|
end
|
10154
10481
|
|
10482
|
+
# Vertex AI-related information associated with the finding.
|
10483
|
+
class VertexAi
|
10484
|
+
include Google::Apis::Core::Hashable
|
10485
|
+
|
10486
|
+
# Datasets associated with the finding.
|
10487
|
+
# Corresponds to the JSON property `datasets`
|
10488
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::Dataset>]
|
10489
|
+
attr_accessor :datasets
|
10490
|
+
|
10491
|
+
# Pipelines associated with the finding.
|
10492
|
+
# Corresponds to the JSON property `pipelines`
|
10493
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::Pipeline>]
|
10494
|
+
attr_accessor :pipelines
|
10495
|
+
|
10496
|
+
def initialize(**args)
|
10497
|
+
update!(**args)
|
10498
|
+
end
|
10499
|
+
|
10500
|
+
# Update properties of this object
|
10501
|
+
def update!(**args)
|
10502
|
+
@datasets = args[:datasets] if args.key?(:datasets)
|
10503
|
+
@pipelines = args[:pipelines] if args.key?(:pipelines)
|
10504
|
+
end
|
10505
|
+
end
|
10506
|
+
|
10155
10507
|
# Resource capturing the settings for the Virtual Machine Threat Detection
|
10156
10508
|
# service.
|
10157
10509
|
class VirtualMachineThreatDetectionSettings
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module SecuritycenterV1beta2
|
18
18
|
# Version of the google-apis-securitycenter_v1beta2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.83.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 = "20250609"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -46,6 +46,12 @@ module Google
|
|
46
46
|
include Google::Apis::Core::JsonObjectSupport
|
47
47
|
end
|
48
48
|
|
49
|
+
class AiModel
|
50
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
|
+
|
52
|
+
include Google::Apis::Core::JsonObjectSupport
|
53
|
+
end
|
54
|
+
|
49
55
|
class Allowed
|
50
56
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
57
|
|
@@ -244,6 +250,12 @@ module Google
|
|
244
250
|
include Google::Apis::Core::JsonObjectSupport
|
245
251
|
end
|
246
252
|
|
253
|
+
class Dataset
|
254
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
255
|
+
|
256
|
+
include Google::Apis::Core::JsonObjectSupport
|
257
|
+
end
|
258
|
+
|
247
259
|
class Denied
|
248
260
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
249
261
|
|
@@ -316,6 +328,12 @@ module Google
|
|
316
328
|
include Google::Apis::Core::JsonObjectSupport
|
317
329
|
end
|
318
330
|
|
331
|
+
class FileOperation
|
332
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
333
|
+
|
334
|
+
include Google::Apis::Core::JsonObjectSupport
|
335
|
+
end
|
336
|
+
|
319
337
|
class Finding
|
320
338
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
321
339
|
|
@@ -502,6 +520,12 @@ module Google
|
|
502
520
|
include Google::Apis::Core::JsonObjectSupport
|
503
521
|
end
|
504
522
|
|
523
|
+
class GoogleCloudSecuritycenterV2AiModel
|
524
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
525
|
+
|
526
|
+
include Google::Apis::Core::JsonObjectSupport
|
527
|
+
end
|
528
|
+
|
505
529
|
class GoogleCloudSecuritycenterV2Allowed
|
506
530
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
507
531
|
|
@@ -706,6 +730,12 @@ module Google
|
|
706
730
|
include Google::Apis::Core::JsonObjectSupport
|
707
731
|
end
|
708
732
|
|
733
|
+
class GoogleCloudSecuritycenterV2Dataset
|
734
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
735
|
+
|
736
|
+
include Google::Apis::Core::JsonObjectSupport
|
737
|
+
end
|
738
|
+
|
709
739
|
class GoogleCloudSecuritycenterV2Denied
|
710
740
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
711
741
|
|
@@ -766,6 +796,12 @@ module Google
|
|
766
796
|
include Google::Apis::Core::JsonObjectSupport
|
767
797
|
end
|
768
798
|
|
799
|
+
class GoogleCloudSecuritycenterV2FileOperation
|
800
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
801
|
+
|
802
|
+
include Google::Apis::Core::JsonObjectSupport
|
803
|
+
end
|
804
|
+
|
769
805
|
class GoogleCloudSecuritycenterV2Finding
|
770
806
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
771
807
|
|
@@ -1012,6 +1048,12 @@ module Google
|
|
1012
1048
|
include Google::Apis::Core::JsonObjectSupport
|
1013
1049
|
end
|
1014
1050
|
|
1051
|
+
class GoogleCloudSecuritycenterV2Pipeline
|
1052
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1053
|
+
|
1054
|
+
include Google::Apis::Core::JsonObjectSupport
|
1055
|
+
end
|
1056
|
+
|
1015
1057
|
class GoogleCloudSecuritycenterV2Pod
|
1016
1058
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1017
1059
|
|
@@ -1144,6 +1186,12 @@ module Google
|
|
1144
1186
|
include Google::Apis::Core::JsonObjectSupport
|
1145
1187
|
end
|
1146
1188
|
|
1189
|
+
class GoogleCloudSecuritycenterV2VertexAi
|
1190
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1191
|
+
|
1192
|
+
include Google::Apis::Core::JsonObjectSupport
|
1193
|
+
end
|
1194
|
+
|
1147
1195
|
class GoogleCloudSecuritycenterV2Vulnerability
|
1148
1196
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1149
1197
|
|
@@ -1282,6 +1330,12 @@ module Google
|
|
1282
1330
|
include Google::Apis::Core::JsonObjectSupport
|
1283
1331
|
end
|
1284
1332
|
|
1333
|
+
class Pipeline
|
1334
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1335
|
+
|
1336
|
+
include Google::Apis::Core::JsonObjectSupport
|
1337
|
+
end
|
1338
|
+
|
1285
1339
|
class Pod
|
1286
1340
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1287
1341
|
|
@@ -1420,6 +1474,12 @@ module Google
|
|
1420
1474
|
include Google::Apis::Core::JsonObjectSupport
|
1421
1475
|
end
|
1422
1476
|
|
1477
|
+
class VertexAi
|
1478
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1479
|
+
|
1480
|
+
include Google::Apis::Core::JsonObjectSupport
|
1481
|
+
end
|
1482
|
+
|
1423
1483
|
class VirtualMachineThreatDetectionSettings
|
1424
1484
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1425
1485
|
|
@@ -1502,6 +1562,19 @@ module Google
|
|
1502
1562
|
end
|
1503
1563
|
end
|
1504
1564
|
|
1565
|
+
class AiModel
|
1566
|
+
# @private
|
1567
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1568
|
+
property :deployment_platform, as: 'deploymentPlatform'
|
1569
|
+
property :display_name, as: 'displayName'
|
1570
|
+
property :domain, as: 'domain'
|
1571
|
+
property :library, as: 'library'
|
1572
|
+
property :location, as: 'location'
|
1573
|
+
property :name, as: 'name'
|
1574
|
+
property :publisher, as: 'publisher'
|
1575
|
+
end
|
1576
|
+
end
|
1577
|
+
|
1505
1578
|
class Allowed
|
1506
1579
|
# @private
|
1507
1580
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1842,6 +1915,15 @@ module Google
|
|
1842
1915
|
end
|
1843
1916
|
end
|
1844
1917
|
|
1918
|
+
class Dataset
|
1919
|
+
# @private
|
1920
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1921
|
+
property :display_name, as: 'displayName'
|
1922
|
+
property :name, as: 'name'
|
1923
|
+
property :source, as: 'source'
|
1924
|
+
end
|
1925
|
+
end
|
1926
|
+
|
1845
1927
|
class Denied
|
1846
1928
|
# @private
|
1847
1929
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1945,6 +2027,8 @@ module Google
|
|
1945
2027
|
property :disk_path, as: 'diskPath', class: Google::Apis::SecuritycenterV1beta2::DiskPath, decorator: Google::Apis::SecuritycenterV1beta2::DiskPath::Representation
|
1946
2028
|
|
1947
2029
|
property :hashed_size, :numeric_string => true, as: 'hashedSize'
|
2030
|
+
collection :operations, as: 'operations', class: Google::Apis::SecuritycenterV1beta2::FileOperation, decorator: Google::Apis::SecuritycenterV1beta2::FileOperation::Representation
|
2031
|
+
|
1948
2032
|
property :partially_hashed, as: 'partiallyHashed'
|
1949
2033
|
property :path, as: 'path'
|
1950
2034
|
property :sha256, as: 'sha256'
|
@@ -1952,6 +2036,13 @@ module Google
|
|
1952
2036
|
end
|
1953
2037
|
end
|
1954
2038
|
|
2039
|
+
class FileOperation
|
2040
|
+
# @private
|
2041
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2042
|
+
property :type, as: 'type'
|
2043
|
+
end
|
2044
|
+
end
|
2045
|
+
|
1955
2046
|
class Finding
|
1956
2047
|
# @private
|
1957
2048
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1959,6 +2050,8 @@ module Google
|
|
1959
2050
|
|
1960
2051
|
property :affected_resources, as: 'affectedResources', class: Google::Apis::SecuritycenterV1beta2::AffectedResources, decorator: Google::Apis::SecuritycenterV1beta2::AffectedResources::Representation
|
1961
2052
|
|
2053
|
+
property :ai_model, as: 'aiModel', class: Google::Apis::SecuritycenterV1beta2::AiModel, decorator: Google::Apis::SecuritycenterV1beta2::AiModel::Representation
|
2054
|
+
|
1962
2055
|
property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta2::Application, decorator: Google::Apis::SecuritycenterV1beta2::Application::Representation
|
1963
2056
|
|
1964
2057
|
property :attack_exposure, as: 'attackExposure', class: Google::Apis::SecuritycenterV1beta2::AttackExposure, decorator: Google::Apis::SecuritycenterV1beta2::AttackExposure::Representation
|
@@ -2052,6 +2145,8 @@ module Google
|
|
2052
2145
|
property :state, as: 'state'
|
2053
2146
|
property :toxic_combination, as: 'toxicCombination', class: Google::Apis::SecuritycenterV1beta2::ToxicCombination, decorator: Google::Apis::SecuritycenterV1beta2::ToxicCombination::Representation
|
2054
2147
|
|
2148
|
+
property :vertex_ai, as: 'vertexAi', class: Google::Apis::SecuritycenterV1beta2::VertexAi, decorator: Google::Apis::SecuritycenterV1beta2::VertexAi::Representation
|
2149
|
+
|
2055
2150
|
property :vulnerability, as: 'vulnerability', class: Google::Apis::SecuritycenterV1beta2::Vulnerability, decorator: Google::Apis::SecuritycenterV1beta2::Vulnerability::Representation
|
2056
2151
|
|
2057
2152
|
end
|
@@ -2409,6 +2504,19 @@ module Google
|
|
2409
2504
|
end
|
2410
2505
|
end
|
2411
2506
|
|
2507
|
+
class GoogleCloudSecuritycenterV2AiModel
|
2508
|
+
# @private
|
2509
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2510
|
+
property :deployment_platform, as: 'deploymentPlatform'
|
2511
|
+
property :display_name, as: 'displayName'
|
2512
|
+
property :domain, as: 'domain'
|
2513
|
+
property :library, as: 'library'
|
2514
|
+
property :location, as: 'location'
|
2515
|
+
property :name, as: 'name'
|
2516
|
+
property :publisher, as: 'publisher'
|
2517
|
+
end
|
2518
|
+
end
|
2519
|
+
|
2412
2520
|
class GoogleCloudSecuritycenterV2Allowed
|
2413
2521
|
# @private
|
2414
2522
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2761,6 +2869,15 @@ module Google
|
|
2761
2869
|
end
|
2762
2870
|
end
|
2763
2871
|
|
2872
|
+
class GoogleCloudSecuritycenterV2Dataset
|
2873
|
+
# @private
|
2874
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2875
|
+
property :display_name, as: 'displayName'
|
2876
|
+
property :name, as: 'name'
|
2877
|
+
property :source, as: 'source'
|
2878
|
+
end
|
2879
|
+
end
|
2880
|
+
|
2764
2881
|
class GoogleCloudSecuritycenterV2Denied
|
2765
2882
|
# @private
|
2766
2883
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2852,6 +2969,8 @@ module Google
|
|
2852
2969
|
property :disk_path, as: 'diskPath', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2DiskPath, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2DiskPath::Representation
|
2853
2970
|
|
2854
2971
|
property :hashed_size, :numeric_string => true, as: 'hashedSize'
|
2972
|
+
collection :operations, as: 'operations', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2FileOperation, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2FileOperation::Representation
|
2973
|
+
|
2855
2974
|
property :partially_hashed, as: 'partiallyHashed'
|
2856
2975
|
property :path, as: 'path'
|
2857
2976
|
property :sha256, as: 'sha256'
|
@@ -2859,6 +2978,13 @@ module Google
|
|
2859
2978
|
end
|
2860
2979
|
end
|
2861
2980
|
|
2981
|
+
class GoogleCloudSecuritycenterV2FileOperation
|
2982
|
+
# @private
|
2983
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2984
|
+
property :type, as: 'type'
|
2985
|
+
end
|
2986
|
+
end
|
2987
|
+
|
2862
2988
|
class GoogleCloudSecuritycenterV2Finding
|
2863
2989
|
# @private
|
2864
2990
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2866,6 +2992,8 @@ module Google
|
|
2866
2992
|
|
2867
2993
|
property :affected_resources, as: 'affectedResources', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AffectedResources, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AffectedResources::Representation
|
2868
2994
|
|
2995
|
+
property :ai_model, as: 'aiModel', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AiModel, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AiModel::Representation
|
2996
|
+
|
2869
2997
|
property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Application, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Application::Representation
|
2870
2998
|
|
2871
2999
|
property :attack_exposure, as: 'attackExposure', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AttackExposure, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AttackExposure::Representation
|
@@ -2959,6 +3087,8 @@ module Google
|
|
2959
3087
|
property :state, as: 'state'
|
2960
3088
|
property :toxic_combination, as: 'toxicCombination', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ToxicCombination, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ToxicCombination::Representation
|
2961
3089
|
|
3090
|
+
property :vertex_ai, as: 'vertexAi', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2VertexAi, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2VertexAi::Representation
|
3091
|
+
|
2962
3092
|
property :vulnerability, as: 'vulnerability', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Vulnerability, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Vulnerability::Representation
|
2963
3093
|
|
2964
3094
|
end
|
@@ -3367,6 +3497,14 @@ module Google
|
|
3367
3497
|
end
|
3368
3498
|
end
|
3369
3499
|
|
3500
|
+
class GoogleCloudSecuritycenterV2Pipeline
|
3501
|
+
# @private
|
3502
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3503
|
+
property :display_name, as: 'displayName'
|
3504
|
+
property :name, as: 'name'
|
3505
|
+
end
|
3506
|
+
end
|
3507
|
+
|
3370
3508
|
class GoogleCloudSecuritycenterV2Pod
|
3371
3509
|
# @private
|
3372
3510
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3605,6 +3743,16 @@ module Google
|
|
3605
3743
|
end
|
3606
3744
|
end
|
3607
3745
|
|
3746
|
+
class GoogleCloudSecuritycenterV2VertexAi
|
3747
|
+
# @private
|
3748
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3749
|
+
collection :datasets, as: 'datasets', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Dataset, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Dataset::Representation
|
3750
|
+
|
3751
|
+
collection :pipelines, as: 'pipelines', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Pipeline, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Pipeline::Representation
|
3752
|
+
|
3753
|
+
end
|
3754
|
+
end
|
3755
|
+
|
3608
3756
|
class GoogleCloudSecuritycenterV2Vulnerability
|
3609
3757
|
# @private
|
3610
3758
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3841,6 +3989,14 @@ module Google
|
|
3841
3989
|
end
|
3842
3990
|
end
|
3843
3991
|
|
3992
|
+
class Pipeline
|
3993
|
+
# @private
|
3994
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3995
|
+
property :display_name, as: 'displayName'
|
3996
|
+
property :name, as: 'name'
|
3997
|
+
end
|
3998
|
+
end
|
3999
|
+
|
3844
4000
|
class Pod
|
3845
4001
|
# @private
|
3846
4002
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4075,6 +4231,16 @@ module Google
|
|
4075
4231
|
end
|
4076
4232
|
end
|
4077
4233
|
|
4234
|
+
class VertexAi
|
4235
|
+
# @private
|
4236
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4237
|
+
collection :datasets, as: 'datasets', class: Google::Apis::SecuritycenterV1beta2::Dataset, decorator: Google::Apis::SecuritycenterV1beta2::Dataset::Representation
|
4238
|
+
|
4239
|
+
collection :pipelines, as: 'pipelines', class: Google::Apis::SecuritycenterV1beta2::Pipeline, decorator: Google::Apis::SecuritycenterV1beta2::Pipeline::Representation
|
4240
|
+
|
4241
|
+
end
|
4242
|
+
end
|
4243
|
+
|
4078
4244
|
class VirtualMachineThreatDetectionSettings
|
4079
4245
|
# @private
|
4080
4246
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-securitycenter_v1beta2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.83.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta2/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.83.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta2
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.9
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Security Command Center API V1beta2
|
79
79
|
test_files: []
|