google-apis-securitycenter_v1 0.100.0 → 0.102.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: 5270cac1d6b58c1c4509f79a4056769b622a7b52454bb5d0c391d74502785bfc
|
4
|
+
data.tar.gz: 3e9c9f7178b676a841f20e75ec37cb43b117b82c908ee91aca78bbd24f7f2ada
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6b6097d7f22a9ecf2d987ce08279ee29ba13432d46903511d4910340dcfb417659390d0ca4e623bcdf6c9715677dee65dcfc9564cd2c0cdacdf1d387c9ffc49d
|
7
|
+
data.tar.gz: a210dbad521ae89fffda11eb60e0020327e0230bb82a622df984169689fee918660b2ccb8a02995400c225a56d18250ab7a7963066f3261ce685d0f59a8d96b4
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-securitycenter_v1
|
2
2
|
|
3
|
+
### v0.102.0 (2025-06-22)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250616
|
6
|
+
|
7
|
+
### v0.101.0 (2025-06-15)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250609
|
10
|
+
* Regenerated using generator version 0.18.0
|
11
|
+
|
3
12
|
### v0.100.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
|
@@ -1108,6 +1163,26 @@ module Google
|
|
1108
1163
|
end
|
1109
1164
|
end
|
1110
1165
|
|
1166
|
+
# The destination big query dataset to export findings to.
|
1167
|
+
class BigQueryDestination
|
1168
|
+
include Google::Apis::Core::Hashable
|
1169
|
+
|
1170
|
+
# Required. The relative resource name of the destination dataset, in the form
|
1171
|
+
# projects/`projectId`/datasets/`datasetId`.
|
1172
|
+
# Corresponds to the JSON property `dataset`
|
1173
|
+
# @return [String]
|
1174
|
+
attr_accessor :dataset
|
1175
|
+
|
1176
|
+
def initialize(**args)
|
1177
|
+
update!(**args)
|
1178
|
+
end
|
1179
|
+
|
1180
|
+
# Update properties of this object
|
1181
|
+
def update!(**args)
|
1182
|
+
@dataset = args[:dataset] if args.key?(:dataset)
|
1183
|
+
end
|
1184
|
+
end
|
1185
|
+
|
1111
1186
|
# Associates `members`, or principals, with a `role`.
|
1112
1187
|
class Binding
|
1113
1188
|
include Google::Apis::Core::Hashable
|
@@ -2071,6 +2146,39 @@ module Google
|
|
2071
2146
|
end
|
2072
2147
|
end
|
2073
2148
|
|
2149
|
+
# Vertex AI dataset associated with the finding.
|
2150
|
+
class Dataset
|
2151
|
+
include Google::Apis::Core::Hashable
|
2152
|
+
|
2153
|
+
# The user defined display name of dataset, e.g. plants-dataset
|
2154
|
+
# Corresponds to the JSON property `displayName`
|
2155
|
+
# @return [String]
|
2156
|
+
attr_accessor :display_name
|
2157
|
+
|
2158
|
+
# Resource name of the dataset, e.g. projects/`project`/locations/`location`/
|
2159
|
+
# datasets/2094040236064505856
|
2160
|
+
# Corresponds to the JSON property `name`
|
2161
|
+
# @return [String]
|
2162
|
+
attr_accessor :name
|
2163
|
+
|
2164
|
+
# Data source, such as BigQuery source URI, e.g. bq://scc-nexus-test.AIPPtest.
|
2165
|
+
# gsod
|
2166
|
+
# Corresponds to the JSON property `source`
|
2167
|
+
# @return [String]
|
2168
|
+
attr_accessor :source
|
2169
|
+
|
2170
|
+
def initialize(**args)
|
2171
|
+
update!(**args)
|
2172
|
+
end
|
2173
|
+
|
2174
|
+
# Update properties of this object
|
2175
|
+
def update!(**args)
|
2176
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
2177
|
+
@name = args[:name] if args.key?(:name)
|
2178
|
+
@source = args[:source] if args.key?(:source)
|
2179
|
+
end
|
2180
|
+
end
|
2181
|
+
|
2074
2182
|
# Denied IP rule.
|
2075
2183
|
class Denied
|
2076
2184
|
include Google::Apis::Core::Hashable
|
@@ -2450,6 +2558,44 @@ module Google
|
|
2450
2558
|
end
|
2451
2559
|
end
|
2452
2560
|
|
2561
|
+
# The LRO metadata for a ExportFindings request.
|
2562
|
+
class ExportFindingsMetadata
|
2563
|
+
include Google::Apis::Core::Hashable
|
2564
|
+
|
2565
|
+
# The destination big query dataset to export findings to.
|
2566
|
+
# Corresponds to the JSON property `bigQueryDestination`
|
2567
|
+
# @return [Google::Apis::SecuritycenterV1::BigQueryDestination]
|
2568
|
+
attr_accessor :big_query_destination
|
2569
|
+
|
2570
|
+
# Optional. Timestamp at which export was started
|
2571
|
+
# Corresponds to the JSON property `exportStartTime`
|
2572
|
+
# @return [String]
|
2573
|
+
attr_accessor :export_start_time
|
2574
|
+
|
2575
|
+
def initialize(**args)
|
2576
|
+
update!(**args)
|
2577
|
+
end
|
2578
|
+
|
2579
|
+
# Update properties of this object
|
2580
|
+
def update!(**args)
|
2581
|
+
@big_query_destination = args[:big_query_destination] if args.key?(:big_query_destination)
|
2582
|
+
@export_start_time = args[:export_start_time] if args.key?(:export_start_time)
|
2583
|
+
end
|
2584
|
+
end
|
2585
|
+
|
2586
|
+
# The response to a ExportFindings request. Contains the LRO information.
|
2587
|
+
class ExportFindingsResponse
|
2588
|
+
include Google::Apis::Core::Hashable
|
2589
|
+
|
2590
|
+
def initialize(**args)
|
2591
|
+
update!(**args)
|
2592
|
+
end
|
2593
|
+
|
2594
|
+
# Update properties of this object
|
2595
|
+
def update!(**args)
|
2596
|
+
end
|
2597
|
+
end
|
2598
|
+
|
2453
2599
|
# Represents a textual expression in the Common Expression Language (CEL) syntax.
|
2454
2600
|
# CEL is a C-like expression language. The syntax and semantics of CEL are
|
2455
2601
|
# documented at https://github.com/google/cel-spec. Example (Comparison): title:
|
@@ -2606,6 +2752,11 @@ module Google
|
|
2606
2752
|
# @return [Google::Apis::SecuritycenterV1::AffectedResources]
|
2607
2753
|
attr_accessor :affected_resources
|
2608
2754
|
|
2755
|
+
# Contains information about the AI model associated with the finding.
|
2756
|
+
# Corresponds to the JSON property `aiModel`
|
2757
|
+
# @return [Google::Apis::SecuritycenterV1::AiModel]
|
2758
|
+
attr_accessor :ai_model
|
2759
|
+
|
2609
2760
|
# Represents an application associated with a finding.
|
2610
2761
|
# Corresponds to the JSON property `application`
|
2611
2762
|
# @return [Google::Apis::SecuritycenterV1::Application]
|
@@ -2960,6 +3111,11 @@ module Google
|
|
2960
3111
|
# @return [Google::Apis::SecuritycenterV1::ToxicCombination]
|
2961
3112
|
attr_accessor :toxic_combination
|
2962
3113
|
|
3114
|
+
# Vertex AI-related information associated with the finding.
|
3115
|
+
# Corresponds to the JSON property `vertexAi`
|
3116
|
+
# @return [Google::Apis::SecuritycenterV1::VertexAi]
|
3117
|
+
attr_accessor :vertex_ai
|
3118
|
+
|
2963
3119
|
# Refers to common vulnerability fields e.g. cve, cvss, cwe etc.
|
2964
3120
|
# Corresponds to the JSON property `vulnerability`
|
2965
3121
|
# @return [Google::Apis::SecuritycenterV1::Vulnerability]
|
@@ -2973,6 +3129,7 @@ module Google
|
|
2973
3129
|
def update!(**args)
|
2974
3130
|
@access = args[:access] if args.key?(:access)
|
2975
3131
|
@affected_resources = args[:affected_resources] if args.key?(:affected_resources)
|
3132
|
+
@ai_model = args[:ai_model] if args.key?(:ai_model)
|
2976
3133
|
@application = args[:application] if args.key?(:application)
|
2977
3134
|
@attack_exposure = args[:attack_exposure] if args.key?(:attack_exposure)
|
2978
3135
|
@backup_disaster_recovery = args[:backup_disaster_recovery] if args.key?(:backup_disaster_recovery)
|
@@ -3029,6 +3186,7 @@ module Google
|
|
3029
3186
|
@source_properties = args[:source_properties] if args.key?(:source_properties)
|
3030
3187
|
@state = args[:state] if args.key?(:state)
|
3031
3188
|
@toxic_combination = args[:toxic_combination] if args.key?(:toxic_combination)
|
3189
|
+
@vertex_ai = args[:vertex_ai] if args.key?(:vertex_ai)
|
3032
3190
|
@vulnerability = args[:vulnerability] if args.key?(:vulnerability)
|
3033
3191
|
end
|
3034
3192
|
end
|
@@ -4620,6 +4778,61 @@ module Google
|
|
4620
4778
|
end
|
4621
4779
|
end
|
4622
4780
|
|
4781
|
+
# Contains information about the AI model associated with the finding.
|
4782
|
+
class GoogleCloudSecuritycenterV2AiModel
|
4783
|
+
include Google::Apis::Core::Hashable
|
4784
|
+
|
4785
|
+
# The platform on which the model is deployed.
|
4786
|
+
# Corresponds to the JSON property `deploymentPlatform`
|
4787
|
+
# @return [String]
|
4788
|
+
attr_accessor :deployment_platform
|
4789
|
+
|
4790
|
+
# The user defined display name of model. Ex. baseline-classification-model
|
4791
|
+
# Corresponds to the JSON property `displayName`
|
4792
|
+
# @return [String]
|
4793
|
+
attr_accessor :display_name
|
4794
|
+
|
4795
|
+
# The domain of the model, for example, “image-classification”.
|
4796
|
+
# Corresponds to the JSON property `domain`
|
4797
|
+
# @return [String]
|
4798
|
+
attr_accessor :domain
|
4799
|
+
|
4800
|
+
# The name of the model library, for example, “transformers”.
|
4801
|
+
# Corresponds to the JSON property `library`
|
4802
|
+
# @return [String]
|
4803
|
+
attr_accessor :library
|
4804
|
+
|
4805
|
+
# The region in which the model is used, for example, “us-central1”.
|
4806
|
+
# Corresponds to the JSON property `location`
|
4807
|
+
# @return [String]
|
4808
|
+
attr_accessor :location
|
4809
|
+
|
4810
|
+
# The name of the AI model, for example, "gemini:1.0.0".
|
4811
|
+
# Corresponds to the JSON property `name`
|
4812
|
+
# @return [String]
|
4813
|
+
attr_accessor :name
|
4814
|
+
|
4815
|
+
# The publisher of the model, for example, “google” or “nvidia”.
|
4816
|
+
# Corresponds to the JSON property `publisher`
|
4817
|
+
# @return [String]
|
4818
|
+
attr_accessor :publisher
|
4819
|
+
|
4820
|
+
def initialize(**args)
|
4821
|
+
update!(**args)
|
4822
|
+
end
|
4823
|
+
|
4824
|
+
# Update properties of this object
|
4825
|
+
def update!(**args)
|
4826
|
+
@deployment_platform = args[:deployment_platform] if args.key?(:deployment_platform)
|
4827
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
4828
|
+
@domain = args[:domain] if args.key?(:domain)
|
4829
|
+
@library = args[:library] if args.key?(:library)
|
4830
|
+
@location = args[:location] if args.key?(:location)
|
4831
|
+
@name = args[:name] if args.key?(:name)
|
4832
|
+
@publisher = args[:publisher] if args.key?(:publisher)
|
4833
|
+
end
|
4834
|
+
end
|
4835
|
+
|
4623
4836
|
# Allowed IP rule.
|
4624
4837
|
class GoogleCloudSecuritycenterV2Allowed
|
4625
4838
|
include Google::Apis::Core::Hashable
|
@@ -5995,6 +6208,39 @@ module Google
|
|
5995
6208
|
end
|
5996
6209
|
end
|
5997
6210
|
|
6211
|
+
# Vertex AI dataset associated with the finding.
|
6212
|
+
class GoogleCloudSecuritycenterV2Dataset
|
6213
|
+
include Google::Apis::Core::Hashable
|
6214
|
+
|
6215
|
+
# The user defined display name of dataset, e.g. plants-dataset
|
6216
|
+
# Corresponds to the JSON property `displayName`
|
6217
|
+
# @return [String]
|
6218
|
+
attr_accessor :display_name
|
6219
|
+
|
6220
|
+
# Resource name of the dataset, e.g. projects/`project`/locations/`location`/
|
6221
|
+
# datasets/2094040236064505856
|
6222
|
+
# Corresponds to the JSON property `name`
|
6223
|
+
# @return [String]
|
6224
|
+
attr_accessor :name
|
6225
|
+
|
6226
|
+
# Data source, such as a BigQuery source URI, e.g. bq://scc-nexus-test.AIPPtest.
|
6227
|
+
# gsod
|
6228
|
+
# Corresponds to the JSON property `source`
|
6229
|
+
# @return [String]
|
6230
|
+
attr_accessor :source
|
6231
|
+
|
6232
|
+
def initialize(**args)
|
6233
|
+
update!(**args)
|
6234
|
+
end
|
6235
|
+
|
6236
|
+
# Update properties of this object
|
6237
|
+
def update!(**args)
|
6238
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
6239
|
+
@name = args[:name] if args.key?(:name)
|
6240
|
+
@source = args[:source] if args.key?(:source)
|
6241
|
+
end
|
6242
|
+
end
|
6243
|
+
|
5998
6244
|
# Denied IP rule.
|
5999
6245
|
class GoogleCloudSecuritycenterV2Denied
|
6000
6246
|
include Google::Apis::Core::Hashable
|
@@ -6396,6 +6642,11 @@ module Google
|
|
6396
6642
|
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AffectedResources]
|
6397
6643
|
attr_accessor :affected_resources
|
6398
6644
|
|
6645
|
+
# Contains information about the AI model associated with the finding.
|
6646
|
+
# Corresponds to the JSON property `aiModel`
|
6647
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AiModel]
|
6648
|
+
attr_accessor :ai_model
|
6649
|
+
|
6399
6650
|
# Represents an application associated with a finding.
|
6400
6651
|
# Corresponds to the JSON property `application`
|
6401
6652
|
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Application]
|
@@ -6654,7 +6905,7 @@ module Google
|
|
6654
6905
|
# @return [String]
|
6655
6906
|
attr_accessor :mute_update_time
|
6656
6907
|
|
6657
|
-
# The [relative resource name](https://cloud.google.com/apis/design/
|
6908
|
+
# Identifier. The [relative resource name](https://cloud.google.com/apis/design/
|
6658
6909
|
# resource_names#relative_resource_name) of the finding. The following list
|
6659
6910
|
# shows some examples: + `organizations/`organization_id`/sources/`source_id`/
|
6660
6911
|
# findings/`finding_id`` + `organizations/`organization_id`/sources/`source_id`/
|
@@ -6764,6 +7015,11 @@ module Google
|
|
6764
7015
|
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ToxicCombination]
|
6765
7016
|
attr_accessor :toxic_combination
|
6766
7017
|
|
7018
|
+
# Vertex AI-related information associated with the finding.
|
7019
|
+
# Corresponds to the JSON property `vertexAi`
|
7020
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2VertexAi]
|
7021
|
+
attr_accessor :vertex_ai
|
7022
|
+
|
6767
7023
|
# Refers to common vulnerability fields e.g. cve, cvss, cwe etc.
|
6768
7024
|
# Corresponds to the JSON property `vulnerability`
|
6769
7025
|
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Vulnerability]
|
@@ -6777,6 +7033,7 @@ module Google
|
|
6777
7033
|
def update!(**args)
|
6778
7034
|
@access = args[:access] if args.key?(:access)
|
6779
7035
|
@affected_resources = args[:affected_resources] if args.key?(:affected_resources)
|
7036
|
+
@ai_model = args[:ai_model] if args.key?(:ai_model)
|
6780
7037
|
@application = args[:application] if args.key?(:application)
|
6781
7038
|
@attack_exposure = args[:attack_exposure] if args.key?(:attack_exposure)
|
6782
7039
|
@backup_disaster_recovery = args[:backup_disaster_recovery] if args.key?(:backup_disaster_recovery)
|
@@ -6833,6 +7090,7 @@ module Google
|
|
6833
7090
|
@source_properties = args[:source_properties] if args.key?(:source_properties)
|
6834
7091
|
@state = args[:state] if args.key?(:state)
|
6835
7092
|
@toxic_combination = args[:toxic_combination] if args.key?(:toxic_combination)
|
7093
|
+
@vertex_ai = args[:vertex_ai] if args.key?(:vertex_ai)
|
6836
7094
|
@vulnerability = args[:vulnerability] if args.key?(:vulnerability)
|
6837
7095
|
end
|
6838
7096
|
end
|
@@ -8228,6 +8486,32 @@ module Google
|
|
8228
8486
|
end
|
8229
8487
|
end
|
8230
8488
|
|
8489
|
+
# Vertex AI training pipeline associated with the finding.
|
8490
|
+
class GoogleCloudSecuritycenterV2Pipeline
|
8491
|
+
include Google::Apis::Core::Hashable
|
8492
|
+
|
8493
|
+
# The user-defined display name of pipeline, e.g. plants-classification
|
8494
|
+
# Corresponds to the JSON property `displayName`
|
8495
|
+
# @return [String]
|
8496
|
+
attr_accessor :display_name
|
8497
|
+
|
8498
|
+
# Resource name of the pipeline, e.g. projects/`project`/locations/`location`/
|
8499
|
+
# trainingPipelines/5253428229225578496
|
8500
|
+
# Corresponds to the JSON property `name`
|
8501
|
+
# @return [String]
|
8502
|
+
attr_accessor :name
|
8503
|
+
|
8504
|
+
def initialize(**args)
|
8505
|
+
update!(**args)
|
8506
|
+
end
|
8507
|
+
|
8508
|
+
# Update properties of this object
|
8509
|
+
def update!(**args)
|
8510
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
8511
|
+
@name = args[:name] if args.key?(:name)
|
8512
|
+
end
|
8513
|
+
end
|
8514
|
+
|
8231
8515
|
# A Kubernetes Pod.
|
8232
8516
|
class GoogleCloudSecuritycenterV2Pod
|
8233
8517
|
include Google::Apis::Core::Hashable
|
@@ -9160,6 +9444,31 @@ module Google
|
|
9160
9444
|
end
|
9161
9445
|
end
|
9162
9446
|
|
9447
|
+
# Vertex AI-related information associated with the finding.
|
9448
|
+
class GoogleCloudSecuritycenterV2VertexAi
|
9449
|
+
include Google::Apis::Core::Hashable
|
9450
|
+
|
9451
|
+
# Datasets associated with the finding.
|
9452
|
+
# Corresponds to the JSON property `datasets`
|
9453
|
+
# @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Dataset>]
|
9454
|
+
attr_accessor :datasets
|
9455
|
+
|
9456
|
+
# Pipelines associated with the finding.
|
9457
|
+
# Corresponds to the JSON property `pipelines`
|
9458
|
+
# @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Pipeline>]
|
9459
|
+
attr_accessor :pipelines
|
9460
|
+
|
9461
|
+
def initialize(**args)
|
9462
|
+
update!(**args)
|
9463
|
+
end
|
9464
|
+
|
9465
|
+
# Update properties of this object
|
9466
|
+
def update!(**args)
|
9467
|
+
@datasets = args[:datasets] if args.key?(:datasets)
|
9468
|
+
@pipelines = args[:pipelines] if args.key?(:pipelines)
|
9469
|
+
end
|
9470
|
+
end
|
9471
|
+
|
9163
9472
|
# Refers to common vulnerability fields e.g. cve, cvss, cwe etc.
|
9164
9473
|
class GoogleCloudSecuritycenterV2Vulnerability
|
9165
9474
|
include Google::Apis::Core::Hashable
|
@@ -11020,6 +11329,32 @@ module Google
|
|
11020
11329
|
end
|
11021
11330
|
end
|
11022
11331
|
|
11332
|
+
# Vertex AI training pipeline associated with the finding.
|
11333
|
+
class Pipeline
|
11334
|
+
include Google::Apis::Core::Hashable
|
11335
|
+
|
11336
|
+
# The user defined display name of pipeline, e.g. plants-classification
|
11337
|
+
# Corresponds to the JSON property `displayName`
|
11338
|
+
# @return [String]
|
11339
|
+
attr_accessor :display_name
|
11340
|
+
|
11341
|
+
# Resource name of the pipeline, e.g. projects/`project`/locations/`location`/
|
11342
|
+
# trainingPipelines/5253428229225578496
|
11343
|
+
# Corresponds to the JSON property `name`
|
11344
|
+
# @return [String]
|
11345
|
+
attr_accessor :name
|
11346
|
+
|
11347
|
+
def initialize(**args)
|
11348
|
+
update!(**args)
|
11349
|
+
end
|
11350
|
+
|
11351
|
+
# Update properties of this object
|
11352
|
+
def update!(**args)
|
11353
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
11354
|
+
@name = args[:name] if args.key?(:name)
|
11355
|
+
end
|
11356
|
+
end
|
11357
|
+
|
11023
11358
|
# A Kubernetes Pod.
|
11024
11359
|
class Pod
|
11025
11360
|
include Google::Apis::Core::Hashable
|
@@ -12636,6 +12971,31 @@ module Google
|
|
12636
12971
|
end
|
12637
12972
|
end
|
12638
12973
|
|
12974
|
+
# Vertex AI-related information associated with the finding.
|
12975
|
+
class VertexAi
|
12976
|
+
include Google::Apis::Core::Hashable
|
12977
|
+
|
12978
|
+
# Datasets associated with the finding.
|
12979
|
+
# Corresponds to the JSON property `datasets`
|
12980
|
+
# @return [Array<Google::Apis::SecuritycenterV1::Dataset>]
|
12981
|
+
attr_accessor :datasets
|
12982
|
+
|
12983
|
+
# Pipelines associated with the finding.
|
12984
|
+
# Corresponds to the JSON property `pipelines`
|
12985
|
+
# @return [Array<Google::Apis::SecuritycenterV1::Pipeline>]
|
12986
|
+
attr_accessor :pipelines
|
12987
|
+
|
12988
|
+
def initialize(**args)
|
12989
|
+
update!(**args)
|
12990
|
+
end
|
12991
|
+
|
12992
|
+
# Update properties of this object
|
12993
|
+
def update!(**args)
|
12994
|
+
@datasets = args[:datasets] if args.key?(:datasets)
|
12995
|
+
@pipelines = args[:pipelines] if args.key?(:pipelines)
|
12996
|
+
end
|
12997
|
+
end
|
12998
|
+
|
12639
12999
|
# Refers to common vulnerability fields e.g. cve, cvss, cwe etc.
|
12640
13000
|
class Vulnerability
|
12641
13001
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module SecuritycenterV1
|
18
18
|
# Version of the google-apis-securitycenter_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.102.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
|
|
@@ -190,6 +196,12 @@ module Google
|
|
190
196
|
include Google::Apis::Core::JsonObjectSupport
|
191
197
|
end
|
192
198
|
|
199
|
+
class BigQueryDestination
|
200
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
|
+
|
202
|
+
include Google::Apis::Core::JsonObjectSupport
|
203
|
+
end
|
204
|
+
|
193
205
|
class Binding
|
194
206
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
207
|
|
@@ -322,6 +334,12 @@ module Google
|
|
322
334
|
include Google::Apis::Core::JsonObjectSupport
|
323
335
|
end
|
324
336
|
|
337
|
+
class Dataset
|
338
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
|
+
|
340
|
+
include Google::Apis::Core::JsonObjectSupport
|
341
|
+
end
|
342
|
+
|
325
343
|
class Denied
|
326
344
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
327
345
|
|
@@ -388,6 +406,18 @@ module Google
|
|
388
406
|
include Google::Apis::Core::JsonObjectSupport
|
389
407
|
end
|
390
408
|
|
409
|
+
class ExportFindingsMetadata
|
410
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
411
|
+
|
412
|
+
include Google::Apis::Core::JsonObjectSupport
|
413
|
+
end
|
414
|
+
|
415
|
+
class ExportFindingsResponse
|
416
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
417
|
+
|
418
|
+
include Google::Apis::Core::JsonObjectSupport
|
419
|
+
end
|
420
|
+
|
391
421
|
class Expr
|
392
422
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
393
423
|
|
@@ -604,6 +634,12 @@ module Google
|
|
604
634
|
include Google::Apis::Core::JsonObjectSupport
|
605
635
|
end
|
606
636
|
|
637
|
+
class GoogleCloudSecuritycenterV2AiModel
|
638
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
639
|
+
|
640
|
+
include Google::Apis::Core::JsonObjectSupport
|
641
|
+
end
|
642
|
+
|
607
643
|
class GoogleCloudSecuritycenterV2Allowed
|
608
644
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
609
645
|
|
@@ -808,6 +844,12 @@ module Google
|
|
808
844
|
include Google::Apis::Core::JsonObjectSupport
|
809
845
|
end
|
810
846
|
|
847
|
+
class GoogleCloudSecuritycenterV2Dataset
|
848
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
849
|
+
|
850
|
+
include Google::Apis::Core::JsonObjectSupport
|
851
|
+
end
|
852
|
+
|
811
853
|
class GoogleCloudSecuritycenterV2Denied
|
812
854
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
813
855
|
|
@@ -1120,6 +1162,12 @@ module Google
|
|
1120
1162
|
include Google::Apis::Core::JsonObjectSupport
|
1121
1163
|
end
|
1122
1164
|
|
1165
|
+
class GoogleCloudSecuritycenterV2Pipeline
|
1166
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1167
|
+
|
1168
|
+
include Google::Apis::Core::JsonObjectSupport
|
1169
|
+
end
|
1170
|
+
|
1123
1171
|
class GoogleCloudSecuritycenterV2Pod
|
1124
1172
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1125
1173
|
|
@@ -1252,6 +1300,12 @@ module Google
|
|
1252
1300
|
include Google::Apis::Core::JsonObjectSupport
|
1253
1301
|
end
|
1254
1302
|
|
1303
|
+
class GoogleCloudSecuritycenterV2VertexAi
|
1304
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1305
|
+
|
1306
|
+
include Google::Apis::Core::JsonObjectSupport
|
1307
|
+
end
|
1308
|
+
|
1255
1309
|
class GoogleCloudSecuritycenterV2Vulnerability
|
1256
1310
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1257
1311
|
|
@@ -1558,6 +1612,12 @@ module Google
|
|
1558
1612
|
include Google::Apis::Core::JsonObjectSupport
|
1559
1613
|
end
|
1560
1614
|
|
1615
|
+
class Pipeline
|
1616
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1617
|
+
|
1618
|
+
include Google::Apis::Core::JsonObjectSupport
|
1619
|
+
end
|
1620
|
+
|
1561
1621
|
class Pod
|
1562
1622
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1563
1623
|
|
@@ -1804,6 +1864,12 @@ module Google
|
|
1804
1864
|
include Google::Apis::Core::JsonObjectSupport
|
1805
1865
|
end
|
1806
1866
|
|
1867
|
+
class VertexAi
|
1868
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1869
|
+
|
1870
|
+
include Google::Apis::Core::JsonObjectSupport
|
1871
|
+
end
|
1872
|
+
|
1807
1873
|
class Vulnerability
|
1808
1874
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1809
1875
|
|
@@ -1874,6 +1940,19 @@ module Google
|
|
1874
1940
|
end
|
1875
1941
|
end
|
1876
1942
|
|
1943
|
+
class AiModel
|
1944
|
+
# @private
|
1945
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1946
|
+
property :deployment_platform, as: 'deploymentPlatform'
|
1947
|
+
property :display_name, as: 'displayName'
|
1948
|
+
property :domain, as: 'domain'
|
1949
|
+
property :library, as: 'library'
|
1950
|
+
property :location, as: 'location'
|
1951
|
+
property :name, as: 'name'
|
1952
|
+
property :publisher, as: 'publisher'
|
1953
|
+
end
|
1954
|
+
end
|
1955
|
+
|
1877
1956
|
class Allowed
|
1878
1957
|
# @private
|
1879
1958
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2114,6 +2193,13 @@ module Google
|
|
2114
2193
|
end
|
2115
2194
|
end
|
2116
2195
|
|
2196
|
+
class BigQueryDestination
|
2197
|
+
# @private
|
2198
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2199
|
+
property :dataset, as: 'dataset'
|
2200
|
+
end
|
2201
|
+
end
|
2202
|
+
|
2117
2203
|
class Binding
|
2118
2204
|
# @private
|
2119
2205
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2345,6 +2431,15 @@ module Google
|
|
2345
2431
|
end
|
2346
2432
|
end
|
2347
2433
|
|
2434
|
+
class Dataset
|
2435
|
+
# @private
|
2436
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2437
|
+
property :display_name, as: 'displayName'
|
2438
|
+
property :name, as: 'name'
|
2439
|
+
property :source, as: 'source'
|
2440
|
+
end
|
2441
|
+
end
|
2442
|
+
|
2348
2443
|
class Denied
|
2349
2444
|
# @private
|
2350
2445
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2446,6 +2541,21 @@ module Google
|
|
2446
2541
|
end
|
2447
2542
|
end
|
2448
2543
|
|
2544
|
+
class ExportFindingsMetadata
|
2545
|
+
# @private
|
2546
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2547
|
+
property :big_query_destination, as: 'bigQueryDestination', class: Google::Apis::SecuritycenterV1::BigQueryDestination, decorator: Google::Apis::SecuritycenterV1::BigQueryDestination::Representation
|
2548
|
+
|
2549
|
+
property :export_start_time, as: 'exportStartTime'
|
2550
|
+
end
|
2551
|
+
end
|
2552
|
+
|
2553
|
+
class ExportFindingsResponse
|
2554
|
+
# @private
|
2555
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2556
|
+
end
|
2557
|
+
end
|
2558
|
+
|
2449
2559
|
class Expr
|
2450
2560
|
# @private
|
2451
2561
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2486,6 +2596,8 @@ module Google
|
|
2486
2596
|
|
2487
2597
|
property :affected_resources, as: 'affectedResources', class: Google::Apis::SecuritycenterV1::AffectedResources, decorator: Google::Apis::SecuritycenterV1::AffectedResources::Representation
|
2488
2598
|
|
2599
|
+
property :ai_model, as: 'aiModel', class: Google::Apis::SecuritycenterV1::AiModel, decorator: Google::Apis::SecuritycenterV1::AiModel::Representation
|
2600
|
+
|
2489
2601
|
property :application, as: 'application', class: Google::Apis::SecuritycenterV1::Application, decorator: Google::Apis::SecuritycenterV1::Application::Representation
|
2490
2602
|
|
2491
2603
|
property :attack_exposure, as: 'attackExposure', class: Google::Apis::SecuritycenterV1::AttackExposure, decorator: Google::Apis::SecuritycenterV1::AttackExposure::Representation
|
@@ -2579,6 +2691,8 @@ module Google
|
|
2579
2691
|
property :state, as: 'state'
|
2580
2692
|
property :toxic_combination, as: 'toxicCombination', class: Google::Apis::SecuritycenterV1::ToxicCombination, decorator: Google::Apis::SecuritycenterV1::ToxicCombination::Representation
|
2581
2693
|
|
2694
|
+
property :vertex_ai, as: 'vertexAi', class: Google::Apis::SecuritycenterV1::VertexAi, decorator: Google::Apis::SecuritycenterV1::VertexAi::Representation
|
2695
|
+
|
2582
2696
|
property :vulnerability, as: 'vulnerability', class: Google::Apis::SecuritycenterV1::Vulnerability, decorator: Google::Apis::SecuritycenterV1::Vulnerability::Representation
|
2583
2697
|
|
2584
2698
|
end
|
@@ -2951,6 +3065,19 @@ module Google
|
|
2951
3065
|
end
|
2952
3066
|
end
|
2953
3067
|
|
3068
|
+
class GoogleCloudSecuritycenterV2AiModel
|
3069
|
+
# @private
|
3070
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3071
|
+
property :deployment_platform, as: 'deploymentPlatform'
|
3072
|
+
property :display_name, as: 'displayName'
|
3073
|
+
property :domain, as: 'domain'
|
3074
|
+
property :library, as: 'library'
|
3075
|
+
property :location, as: 'location'
|
3076
|
+
property :name, as: 'name'
|
3077
|
+
property :publisher, as: 'publisher'
|
3078
|
+
end
|
3079
|
+
end
|
3080
|
+
|
2954
3081
|
class GoogleCloudSecuritycenterV2Allowed
|
2955
3082
|
# @private
|
2956
3083
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3303,6 +3430,15 @@ module Google
|
|
3303
3430
|
end
|
3304
3431
|
end
|
3305
3432
|
|
3433
|
+
class GoogleCloudSecuritycenterV2Dataset
|
3434
|
+
# @private
|
3435
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3436
|
+
property :display_name, as: 'displayName'
|
3437
|
+
property :name, as: 'name'
|
3438
|
+
property :source, as: 'source'
|
3439
|
+
end
|
3440
|
+
end
|
3441
|
+
|
3306
3442
|
class GoogleCloudSecuritycenterV2Denied
|
3307
3443
|
# @private
|
3308
3444
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3417,6 +3553,8 @@ module Google
|
|
3417
3553
|
|
3418
3554
|
property :affected_resources, as: 'affectedResources', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AffectedResources, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AffectedResources::Representation
|
3419
3555
|
|
3556
|
+
property :ai_model, as: 'aiModel', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AiModel, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AiModel::Representation
|
3557
|
+
|
3420
3558
|
property :application, as: 'application', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Application, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Application::Representation
|
3421
3559
|
|
3422
3560
|
property :attack_exposure, as: 'attackExposure', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AttackExposure, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AttackExposure::Representation
|
@@ -3510,6 +3648,8 @@ module Google
|
|
3510
3648
|
property :state, as: 'state'
|
3511
3649
|
property :toxic_combination, as: 'toxicCombination', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ToxicCombination, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ToxicCombination::Representation
|
3512
3650
|
|
3651
|
+
property :vertex_ai, as: 'vertexAi', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2VertexAi, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2VertexAi::Representation
|
3652
|
+
|
3513
3653
|
property :vulnerability, as: 'vulnerability', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Vulnerability, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Vulnerability::Representation
|
3514
3654
|
|
3515
3655
|
end
|
@@ -3918,6 +4058,14 @@ module Google
|
|
3918
4058
|
end
|
3919
4059
|
end
|
3920
4060
|
|
4061
|
+
class GoogleCloudSecuritycenterV2Pipeline
|
4062
|
+
# @private
|
4063
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4064
|
+
property :display_name, as: 'displayName'
|
4065
|
+
property :name, as: 'name'
|
4066
|
+
end
|
4067
|
+
end
|
4068
|
+
|
3921
4069
|
class GoogleCloudSecuritycenterV2Pod
|
3922
4070
|
# @private
|
3923
4071
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4156,6 +4304,16 @@ module Google
|
|
4156
4304
|
end
|
4157
4305
|
end
|
4158
4306
|
|
4307
|
+
class GoogleCloudSecuritycenterV2VertexAi
|
4308
|
+
# @private
|
4309
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4310
|
+
collection :datasets, as: 'datasets', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Dataset, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Dataset::Representation
|
4311
|
+
|
4312
|
+
collection :pipelines, as: 'pipelines', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Pipeline, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Pipeline::Representation
|
4313
|
+
|
4314
|
+
end
|
4315
|
+
end
|
4316
|
+
|
4159
4317
|
class GoogleCloudSecuritycenterV2Vulnerability
|
4160
4318
|
# @private
|
4161
4319
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4665,6 +4823,14 @@ module Google
|
|
4665
4823
|
end
|
4666
4824
|
end
|
4667
4825
|
|
4826
|
+
class Pipeline
|
4827
|
+
# @private
|
4828
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4829
|
+
property :display_name, as: 'displayName'
|
4830
|
+
property :name, as: 'name'
|
4831
|
+
end
|
4832
|
+
end
|
4833
|
+
|
4668
4834
|
class Pod
|
4669
4835
|
# @private
|
4670
4836
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -5076,6 +5242,16 @@ module Google
|
|
5076
5242
|
end
|
5077
5243
|
end
|
5078
5244
|
|
5245
|
+
class VertexAi
|
5246
|
+
# @private
|
5247
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
5248
|
+
collection :datasets, as: 'datasets', class: Google::Apis::SecuritycenterV1::Dataset, decorator: Google::Apis::SecuritycenterV1::Dataset::Representation
|
5249
|
+
|
5250
|
+
collection :pipelines, as: 'pipelines', class: Google::Apis::SecuritycenterV1::Pipeline, decorator: Google::Apis::SecuritycenterV1::Pipeline::Representation
|
5251
|
+
|
5252
|
+
end
|
5253
|
+
end
|
5254
|
+
|
5079
5255
|
class Vulnerability
|
5080
5256
|
# @private
|
5081
5257
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-securitycenter_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.102.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.102.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|