google-apis-securitycenter_v1beta2 0.58.0 → 0.59.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ed221937bac5b1e9c3d0dd58cb859e6962dfa062c4fd50ce7f422c52ebb2369f
|
4
|
+
data.tar.gz: e247dbb6fe0a3fb7b2bcdd401ca007280a6db9b300ffbf69bd5bf3b0e3d27598
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e7f2249d22497f502ab34189b2c0a17d3cc0a5e6196c029ca04d53ad17aa6b664952b3c69903af3008d878478a68259c46a1b5fd6b1888330b7347cd10d8db90
|
7
|
+
data.tar.gz: b72e53fe8dfcf018b04c124d8a98dd6a70b5d0d8df4724bfb03dd241032844c8be0f9a39599cfce9bcfb44544478a32b88f1e1a1a717ee0a37d8cd75eff115d8
|
data/CHANGELOG.md
CHANGED
@@ -186,6 +186,35 @@ module Google
|
|
186
186
|
end
|
187
187
|
end
|
188
188
|
|
189
|
+
# Represents an application associated with a finding.
|
190
|
+
class Application
|
191
|
+
include Google::Apis::Core::Hashable
|
192
|
+
|
193
|
+
# The base URI that identifies the network location of the application in which
|
194
|
+
# the vulnerability was detected. Examples: http://11.22.33.44, http://foo.com,
|
195
|
+
# http://11.22.33.44:8080
|
196
|
+
# Corresponds to the JSON property `baseUri`
|
197
|
+
# @return [String]
|
198
|
+
attr_accessor :base_uri
|
199
|
+
|
200
|
+
# The full URI with payload that can be used to reproduce the vulnerability.
|
201
|
+
# Example: http://11.22.33.44/reflected/parameter/attribute/singlequoted/js?p=
|
202
|
+
# aMmYgI6H
|
203
|
+
# Corresponds to the JSON property `fullUri`
|
204
|
+
# @return [String]
|
205
|
+
attr_accessor :full_uri
|
206
|
+
|
207
|
+
def initialize(**args)
|
208
|
+
update!(**args)
|
209
|
+
end
|
210
|
+
|
211
|
+
# Update properties of this object
|
212
|
+
def update!(**args)
|
213
|
+
@base_uri = args[:base_uri] if args.key?(:base_uri)
|
214
|
+
@full_uri = args[:full_uri] if args.key?(:full_uri)
|
215
|
+
end
|
216
|
+
end
|
217
|
+
|
189
218
|
# An attack exposure contains the results of an attack path simulation run.
|
190
219
|
class AttackExposure
|
191
220
|
include Google::Apis::Core::Hashable
|
@@ -249,6 +278,103 @@ module Google
|
|
249
278
|
end
|
250
279
|
end
|
251
280
|
|
281
|
+
# Information related to Google Cloud Backup and DR Service findings.
|
282
|
+
class BackupDisasterRecovery
|
283
|
+
include Google::Apis::Core::Hashable
|
284
|
+
|
285
|
+
# The name of the Backup and DR appliance that captures, moves, and manages the
|
286
|
+
# lifecycle of backup data. For example, “backup-server-57137”.
|
287
|
+
# Corresponds to the JSON property `appliance`
|
288
|
+
# @return [String]
|
289
|
+
attr_accessor :appliance
|
290
|
+
|
291
|
+
# The names of Backup and DR applications. An application is a VM, database, or
|
292
|
+
# file system on a managed host monitored by a backup and recovery appliance.
|
293
|
+
# For example, “centos7-01-vol00”, “centos7-01-vol01”, “centos7-01-vol02”.
|
294
|
+
# Corresponds to the JSON property `applications`
|
295
|
+
# @return [Array<String>]
|
296
|
+
attr_accessor :applications
|
297
|
+
|
298
|
+
# The timestamp at which the Backup and DR backup was created.
|
299
|
+
# Corresponds to the JSON property `backupCreateTime`
|
300
|
+
# @return [String]
|
301
|
+
attr_accessor :backup_create_time
|
302
|
+
|
303
|
+
# The name of a Backup and DR template which comprises one or more backup
|
304
|
+
# policies. See the [Backup and DR documentation](https://cloud.google.com/
|
305
|
+
# backup-disaster-recovery/docs/concepts/backup-plan#temp) for more information.
|
306
|
+
# For example, “snap-ov”.
|
307
|
+
# Corresponds to the JSON property `backupTemplate`
|
308
|
+
# @return [String]
|
309
|
+
attr_accessor :backup_template
|
310
|
+
|
311
|
+
# The backup type of the Backup and DR image. For example, “Snapshot”, “Remote
|
312
|
+
# Snapshot”, “OnVault”.
|
313
|
+
# Corresponds to the JSON property `backupType`
|
314
|
+
# @return [String]
|
315
|
+
attr_accessor :backup_type
|
316
|
+
|
317
|
+
# The name of a Backup and DR host, which is managed by the backup and recovery
|
318
|
+
# appliance and known to the management console. The host can be of type Generic
|
319
|
+
# (for example, Compute Engine, SQL Server, Oracle DB, SMB file system, etc.),
|
320
|
+
# vCenter, or an ESX server. See the [Backup and DR documentation on hosts](
|
321
|
+
# https://cloud.google.com/backup-disaster-recovery/docs/configuration/manage-
|
322
|
+
# hosts-and-their-applications) for more information. For example, “centos7-01”.
|
323
|
+
# Corresponds to the JSON property `host`
|
324
|
+
# @return [String]
|
325
|
+
attr_accessor :host
|
326
|
+
|
327
|
+
# The names of Backup and DR policies that are associated with a template and
|
328
|
+
# that define when to run a backup, how frequently to run a backup, and how long
|
329
|
+
# to retain the backup image. For example, “onvaults”.
|
330
|
+
# Corresponds to the JSON property `policies`
|
331
|
+
# @return [Array<String>]
|
332
|
+
attr_accessor :policies
|
333
|
+
|
334
|
+
# The names of Backup and DR advanced policy options of a policy applying to an
|
335
|
+
# application. See the [Backup and DR documentation on policy options](https://
|
336
|
+
# cloud.google.com/backup-disaster-recovery/docs/create-plan/policy-settings).
|
337
|
+
# For example, “skipofflineappsincongrp, nounmap”.
|
338
|
+
# Corresponds to the JSON property `policyOptions`
|
339
|
+
# @return [Array<String>]
|
340
|
+
attr_accessor :policy_options
|
341
|
+
|
342
|
+
# The name of the Backup and DR resource profile that specifies the storage
|
343
|
+
# media for backups of application and VM data. See the [Backup and DR
|
344
|
+
# documentation on profiles](https://cloud.google.com/backup-disaster-recovery/
|
345
|
+
# docs/concepts/backup-plan#profile). For example, “GCP”.
|
346
|
+
# Corresponds to the JSON property `profile`
|
347
|
+
# @return [String]
|
348
|
+
attr_accessor :profile
|
349
|
+
|
350
|
+
# The name of the Backup and DR storage pool that the backup and recovery
|
351
|
+
# appliance is storing data in. The storage pool could be of type Cloud, Primary,
|
352
|
+
# Snapshot, or OnVault. See the [Backup and DR documentation on storage pools](
|
353
|
+
# https://cloud.google.com/backup-disaster-recovery/docs/concepts/storage-pools).
|
354
|
+
# For example, “DiskPoolOne”.
|
355
|
+
# Corresponds to the JSON property `storagePool`
|
356
|
+
# @return [String]
|
357
|
+
attr_accessor :storage_pool
|
358
|
+
|
359
|
+
def initialize(**args)
|
360
|
+
update!(**args)
|
361
|
+
end
|
362
|
+
|
363
|
+
# Update properties of this object
|
364
|
+
def update!(**args)
|
365
|
+
@appliance = args[:appliance] if args.key?(:appliance)
|
366
|
+
@applications = args[:applications] if args.key?(:applications)
|
367
|
+
@backup_create_time = args[:backup_create_time] if args.key?(:backup_create_time)
|
368
|
+
@backup_template = args[:backup_template] if args.key?(:backup_template)
|
369
|
+
@backup_type = args[:backup_type] if args.key?(:backup_type)
|
370
|
+
@host = args[:host] if args.key?(:host)
|
371
|
+
@policies = args[:policies] if args.key?(:policies)
|
372
|
+
@policy_options = args[:policy_options] if args.key?(:policy_options)
|
373
|
+
@profile = args[:profile] if args.key?(:profile)
|
374
|
+
@storage_pool = args[:storage_pool] if args.key?(:storage_pool)
|
375
|
+
end
|
376
|
+
end
|
377
|
+
|
252
378
|
# The [data profile](https://cloud.google.com/dlp/docs/data-profiles) associated
|
253
379
|
# with the finding.
|
254
380
|
class CloudDlpDataProfile
|
@@ -1149,11 +1275,21 @@ module Google
|
|
1149
1275
|
# @return [Google::Apis::SecuritycenterV1beta2::Access]
|
1150
1276
|
attr_accessor :access
|
1151
1277
|
|
1278
|
+
# Represents an application associated with a finding.
|
1279
|
+
# Corresponds to the JSON property `application`
|
1280
|
+
# @return [Google::Apis::SecuritycenterV1beta2::Application]
|
1281
|
+
attr_accessor :application
|
1282
|
+
|
1152
1283
|
# An attack exposure contains the results of an attack path simulation run.
|
1153
1284
|
# Corresponds to the JSON property `attackExposure`
|
1154
1285
|
# @return [Google::Apis::SecuritycenterV1beta2::AttackExposure]
|
1155
1286
|
attr_accessor :attack_exposure
|
1156
1287
|
|
1288
|
+
# Information related to Google Cloud Backup and DR Service findings.
|
1289
|
+
# Corresponds to the JSON property `backupDisasterRecovery`
|
1290
|
+
# @return [Google::Apis::SecuritycenterV1beta2::BackupDisasterRecovery]
|
1291
|
+
attr_accessor :backup_disaster_recovery
|
1292
|
+
|
1157
1293
|
# The canonical name of the finding. It's either "organizations/`organization_id`
|
1158
1294
|
# /sources/`source_id`/findings/`finding_id`", "folders/`folder_id`/sources/`
|
1159
1295
|
# source_id`/findings/`finding_id`" or "projects/`project_number`/sources/`
|
@@ -1430,7 +1566,9 @@ module Google
|
|
1430
1566
|
# Update properties of this object
|
1431
1567
|
def update!(**args)
|
1432
1568
|
@access = args[:access] if args.key?(:access)
|
1569
|
+
@application = args[:application] if args.key?(:application)
|
1433
1570
|
@attack_exposure = args[:attack_exposure] if args.key?(:attack_exposure)
|
1571
|
+
@backup_disaster_recovery = args[:backup_disaster_recovery] if args.key?(:backup_disaster_recovery)
|
1434
1572
|
@canonical_name = args[:canonical_name] if args.key?(:canonical_name)
|
1435
1573
|
@category = args[:category] if args.key?(:category)
|
1436
1574
|
@cloud_dlp_data_profile = args[:cloud_dlp_data_profile] if args.key?(:cloud_dlp_data_profile)
|
@@ -2750,6 +2888,35 @@ module Google
|
|
2750
2888
|
end
|
2751
2889
|
end
|
2752
2890
|
|
2891
|
+
# Represents an application associated with a finding.
|
2892
|
+
class GoogleCloudSecuritycenterV2Application
|
2893
|
+
include Google::Apis::Core::Hashable
|
2894
|
+
|
2895
|
+
# The base URI that identifies the network location of the application in which
|
2896
|
+
# the vulnerability was detected. Examples: http://11.22.33.44, http://foo.com,
|
2897
|
+
# http://11.22.33.44:8080
|
2898
|
+
# Corresponds to the JSON property `baseUri`
|
2899
|
+
# @return [String]
|
2900
|
+
attr_accessor :base_uri
|
2901
|
+
|
2902
|
+
# The full URI with payload that could be used to reproduce the vulnerability.
|
2903
|
+
# Example: http://11.22.33.44/reflected/parameter/attribute/singlequoted/js?p=
|
2904
|
+
# aMmYgI6H
|
2905
|
+
# Corresponds to the JSON property `fullUri`
|
2906
|
+
# @return [String]
|
2907
|
+
attr_accessor :full_uri
|
2908
|
+
|
2909
|
+
def initialize(**args)
|
2910
|
+
update!(**args)
|
2911
|
+
end
|
2912
|
+
|
2913
|
+
# Update properties of this object
|
2914
|
+
def update!(**args)
|
2915
|
+
@base_uri = args[:base_uri] if args.key?(:base_uri)
|
2916
|
+
@full_uri = args[:full_uri] if args.key?(:full_uri)
|
2917
|
+
end
|
2918
|
+
end
|
2919
|
+
|
2753
2920
|
# An attack exposure contains the results of an attack path simulation run.
|
2754
2921
|
class GoogleCloudSecuritycenterV2AttackExposure
|
2755
2922
|
include Google::Apis::Core::Hashable
|
@@ -2813,6 +2980,103 @@ module Google
|
|
2813
2980
|
end
|
2814
2981
|
end
|
2815
2982
|
|
2983
|
+
# Information related to Google Cloud Backup and DR Service findings.
|
2984
|
+
class GoogleCloudSecuritycenterV2BackupDisasterRecovery
|
2985
|
+
include Google::Apis::Core::Hashable
|
2986
|
+
|
2987
|
+
# The name of the Backup and DR appliance that captures, moves, and manages the
|
2988
|
+
# lifecycle of backup data. For example, “backup-server-57137”.
|
2989
|
+
# Corresponds to the JSON property `appliance`
|
2990
|
+
# @return [String]
|
2991
|
+
attr_accessor :appliance
|
2992
|
+
|
2993
|
+
# The names of Backup and DR applications. An application is a VM, database, or
|
2994
|
+
# file system on a managed host monitored by a backup and recovery appliance.
|
2995
|
+
# For example, “centos7-01-vol00”, “centos7-01-vol01”, “centos7-01-vol02”.
|
2996
|
+
# Corresponds to the JSON property `applications`
|
2997
|
+
# @return [Array<String>]
|
2998
|
+
attr_accessor :applications
|
2999
|
+
|
3000
|
+
# The timestamp at which the Backup and DR backup was created.
|
3001
|
+
# Corresponds to the JSON property `backupCreateTime`
|
3002
|
+
# @return [String]
|
3003
|
+
attr_accessor :backup_create_time
|
3004
|
+
|
3005
|
+
# The name of a Backup and DR template which comprises one or more backup
|
3006
|
+
# policies. See the [Backup and DR documentation](https://cloud.google.com/
|
3007
|
+
# backup-disaster-recovery/docs/concepts/backup-plan#temp) for more information.
|
3008
|
+
# For example, “snap-ov”.
|
3009
|
+
# Corresponds to the JSON property `backupTemplate`
|
3010
|
+
# @return [String]
|
3011
|
+
attr_accessor :backup_template
|
3012
|
+
|
3013
|
+
# The backup type of the Backup and DR image. For example, “Snapshot”, “Remote
|
3014
|
+
# Snapshot”, “OnVault”.
|
3015
|
+
# Corresponds to the JSON property `backupType`
|
3016
|
+
# @return [String]
|
3017
|
+
attr_accessor :backup_type
|
3018
|
+
|
3019
|
+
# The name of a Backup and DR host, which is managed by the backup and recovery
|
3020
|
+
# appliance and known to the management console. The host can be of type Generic
|
3021
|
+
# (for example, Compute Engine, SQL Server, Oracle DB, SMB file system, etc.),
|
3022
|
+
# vCenter, or an ESX server. See the [Backup and DR documentation on hosts](
|
3023
|
+
# https://cloud.google.com/backup-disaster-recovery/docs/configuration/manage-
|
3024
|
+
# hosts-and-their-applications) for more information. For example, “centos7-01”.
|
3025
|
+
# Corresponds to the JSON property `host`
|
3026
|
+
# @return [String]
|
3027
|
+
attr_accessor :host
|
3028
|
+
|
3029
|
+
# The names of Backup and DR policies that are associated with a template and
|
3030
|
+
# that define when to run a backup, how frequently to run a backup, and how long
|
3031
|
+
# to retain the backup image. For example, “onvaults”.
|
3032
|
+
# Corresponds to the JSON property `policies`
|
3033
|
+
# @return [Array<String>]
|
3034
|
+
attr_accessor :policies
|
3035
|
+
|
3036
|
+
# The names of Backup and DR advanced policy options of a policy applying to an
|
3037
|
+
# application. See the [Backup and DR documentation on policy options](https://
|
3038
|
+
# cloud.google.com/backup-disaster-recovery/docs/create-plan/policy-settings).
|
3039
|
+
# For example, “skipofflineappsincongrp, nounmap”.
|
3040
|
+
# Corresponds to the JSON property `policyOptions`
|
3041
|
+
# @return [Array<String>]
|
3042
|
+
attr_accessor :policy_options
|
3043
|
+
|
3044
|
+
# The name of the Backup and DR resource profile that specifies the storage
|
3045
|
+
# media for backups of application and VM data. See the [Backup and DR
|
3046
|
+
# documentation on profiles](https://cloud.google.com/backup-disaster-recovery/
|
3047
|
+
# docs/concepts/backup-plan#profile). For example, “GCP”.
|
3048
|
+
# Corresponds to the JSON property `profile`
|
3049
|
+
# @return [String]
|
3050
|
+
attr_accessor :profile
|
3051
|
+
|
3052
|
+
# The name of the Backup and DR storage pool that the backup and recovery
|
3053
|
+
# appliance is storing data in. The storage pool could be of type Cloud, Primary,
|
3054
|
+
# Snapshot, or OnVault. See the [Backup and DR documentation on storage pools](
|
3055
|
+
# https://cloud.google.com/backup-disaster-recovery/docs/concepts/storage-pools).
|
3056
|
+
# For example, “DiskPoolOne”.
|
3057
|
+
# Corresponds to the JSON property `storagePool`
|
3058
|
+
# @return [String]
|
3059
|
+
attr_accessor :storage_pool
|
3060
|
+
|
3061
|
+
def initialize(**args)
|
3062
|
+
update!(**args)
|
3063
|
+
end
|
3064
|
+
|
3065
|
+
# Update properties of this object
|
3066
|
+
def update!(**args)
|
3067
|
+
@appliance = args[:appliance] if args.key?(:appliance)
|
3068
|
+
@applications = args[:applications] if args.key?(:applications)
|
3069
|
+
@backup_create_time = args[:backup_create_time] if args.key?(:backup_create_time)
|
3070
|
+
@backup_template = args[:backup_template] if args.key?(:backup_template)
|
3071
|
+
@backup_type = args[:backup_type] if args.key?(:backup_type)
|
3072
|
+
@host = args[:host] if args.key?(:host)
|
3073
|
+
@policies = args[:policies] if args.key?(:policies)
|
3074
|
+
@policy_options = args[:policy_options] if args.key?(:policy_options)
|
3075
|
+
@profile = args[:profile] if args.key?(:profile)
|
3076
|
+
@storage_pool = args[:storage_pool] if args.key?(:storage_pool)
|
3077
|
+
end
|
3078
|
+
end
|
3079
|
+
|
2816
3080
|
# Configures how to deliver Findings to BigQuery Instance.
|
2817
3081
|
class GoogleCloudSecuritycenterV2BigQueryExport
|
2818
3082
|
include Google::Apis::Core::Hashable
|
@@ -3633,11 +3897,21 @@ module Google
|
|
3633
3897
|
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Access]
|
3634
3898
|
attr_accessor :access
|
3635
3899
|
|
3900
|
+
# Represents an application associated with a finding.
|
3901
|
+
# Corresponds to the JSON property `application`
|
3902
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Application]
|
3903
|
+
attr_accessor :application
|
3904
|
+
|
3636
3905
|
# An attack exposure contains the results of an attack path simulation run.
|
3637
3906
|
# Corresponds to the JSON property `attackExposure`
|
3638
3907
|
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AttackExposure]
|
3639
3908
|
attr_accessor :attack_exposure
|
3640
3909
|
|
3910
|
+
# Information related to Google Cloud Backup and DR Service findings.
|
3911
|
+
# Corresponds to the JSON property `backupDisasterRecovery`
|
3912
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2BackupDisasterRecovery]
|
3913
|
+
attr_accessor :backup_disaster_recovery
|
3914
|
+
|
3641
3915
|
# Output only. The canonical name of the finding. The following list shows some
|
3642
3916
|
# examples: + `organizations/`organization_id`/sources/`source_id`/findings/`
|
3643
3917
|
# finding_id`` + `organizations/`organization_id`/sources/`source_id`/locations/`
|
@@ -3928,7 +4202,9 @@ module Google
|
|
3928
4202
|
# Update properties of this object
|
3929
4203
|
def update!(**args)
|
3930
4204
|
@access = args[:access] if args.key?(:access)
|
4205
|
+
@application = args[:application] if args.key?(:application)
|
3931
4206
|
@attack_exposure = args[:attack_exposure] if args.key?(:attack_exposure)
|
4207
|
+
@backup_disaster_recovery = args[:backup_disaster_recovery] if args.key?(:backup_disaster_recovery)
|
3932
4208
|
@canonical_name = args[:canonical_name] if args.key?(:canonical_name)
|
3933
4209
|
@category = args[:category] if args.key?(:category)
|
3934
4210
|
@cloud_dlp_data_profile = args[:cloud_dlp_data_profile] if args.key?(:cloud_dlp_data_profile)
|
@@ -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.59.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20231128"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -34,12 +34,24 @@ module Google
|
|
34
34
|
include Google::Apis::Core::JsonObjectSupport
|
35
35
|
end
|
36
36
|
|
37
|
+
class Application
|
38
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
39
|
+
|
40
|
+
include Google::Apis::Core::JsonObjectSupport
|
41
|
+
end
|
42
|
+
|
37
43
|
class AttackExposure
|
38
44
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
39
45
|
|
40
46
|
include Google::Apis::Core::JsonObjectSupport
|
41
47
|
end
|
42
48
|
|
49
|
+
class BackupDisasterRecovery
|
50
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
|
+
|
52
|
+
include Google::Apis::Core::JsonObjectSupport
|
53
|
+
end
|
54
|
+
|
43
55
|
class CloudDlpDataProfile
|
44
56
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
57
|
|
@@ -334,12 +346,24 @@ module Google
|
|
334
346
|
include Google::Apis::Core::JsonObjectSupport
|
335
347
|
end
|
336
348
|
|
349
|
+
class GoogleCloudSecuritycenterV2Application
|
350
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
351
|
+
|
352
|
+
include Google::Apis::Core::JsonObjectSupport
|
353
|
+
end
|
354
|
+
|
337
355
|
class GoogleCloudSecuritycenterV2AttackExposure
|
338
356
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
357
|
|
340
358
|
include Google::Apis::Core::JsonObjectSupport
|
341
359
|
end
|
342
360
|
|
361
|
+
class GoogleCloudSecuritycenterV2BackupDisasterRecovery
|
362
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
363
|
+
|
364
|
+
include Google::Apis::Core::JsonObjectSupport
|
365
|
+
end
|
366
|
+
|
343
367
|
class GoogleCloudSecuritycenterV2BigQueryExport
|
344
368
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
345
369
|
|
@@ -852,6 +876,14 @@ module Google
|
|
852
876
|
end
|
853
877
|
end
|
854
878
|
|
879
|
+
class Application
|
880
|
+
# @private
|
881
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
882
|
+
property :base_uri, as: 'baseUri'
|
883
|
+
property :full_uri, as: 'fullUri'
|
884
|
+
end
|
885
|
+
end
|
886
|
+
|
855
887
|
class AttackExposure
|
856
888
|
# @private
|
857
889
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -865,6 +897,22 @@ module Google
|
|
865
897
|
end
|
866
898
|
end
|
867
899
|
|
900
|
+
class BackupDisasterRecovery
|
901
|
+
# @private
|
902
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
903
|
+
property :appliance, as: 'appliance'
|
904
|
+
collection :applications, as: 'applications'
|
905
|
+
property :backup_create_time, as: 'backupCreateTime'
|
906
|
+
property :backup_template, as: 'backupTemplate'
|
907
|
+
property :backup_type, as: 'backupType'
|
908
|
+
property :host, as: 'host'
|
909
|
+
collection :policies, as: 'policies'
|
910
|
+
collection :policy_options, as: 'policyOptions'
|
911
|
+
property :profile, as: 'profile'
|
912
|
+
property :storage_pool, as: 'storagePool'
|
913
|
+
end
|
914
|
+
end
|
915
|
+
|
868
916
|
class CloudDlpDataProfile
|
869
917
|
# @private
|
870
918
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1095,8 +1143,12 @@ module Google
|
|
1095
1143
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1096
1144
|
property :access, as: 'access', class: Google::Apis::SecuritycenterV1beta2::Access, decorator: Google::Apis::SecuritycenterV1beta2::Access::Representation
|
1097
1145
|
|
1146
|
+
property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta2::Application, decorator: Google::Apis::SecuritycenterV1beta2::Application::Representation
|
1147
|
+
|
1098
1148
|
property :attack_exposure, as: 'attackExposure', class: Google::Apis::SecuritycenterV1beta2::AttackExposure, decorator: Google::Apis::SecuritycenterV1beta2::AttackExposure::Representation
|
1099
1149
|
|
1150
|
+
property :backup_disaster_recovery, as: 'backupDisasterRecovery', class: Google::Apis::SecuritycenterV1beta2::BackupDisasterRecovery, decorator: Google::Apis::SecuritycenterV1beta2::BackupDisasterRecovery::Representation
|
1151
|
+
|
1100
1152
|
property :canonical_name, as: 'canonicalName'
|
1101
1153
|
property :category, as: 'category'
|
1102
1154
|
property :cloud_dlp_data_profile, as: 'cloudDlpDataProfile', class: Google::Apis::SecuritycenterV1beta2::CloudDlpDataProfile, decorator: Google::Apis::SecuritycenterV1beta2::CloudDlpDataProfile::Representation
|
@@ -1455,6 +1507,14 @@ module Google
|
|
1455
1507
|
end
|
1456
1508
|
end
|
1457
1509
|
|
1510
|
+
class GoogleCloudSecuritycenterV2Application
|
1511
|
+
# @private
|
1512
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1513
|
+
property :base_uri, as: 'baseUri'
|
1514
|
+
property :full_uri, as: 'fullUri'
|
1515
|
+
end
|
1516
|
+
end
|
1517
|
+
|
1458
1518
|
class GoogleCloudSecuritycenterV2AttackExposure
|
1459
1519
|
# @private
|
1460
1520
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1468,6 +1528,22 @@ module Google
|
|
1468
1528
|
end
|
1469
1529
|
end
|
1470
1530
|
|
1531
|
+
class GoogleCloudSecuritycenterV2BackupDisasterRecovery
|
1532
|
+
# @private
|
1533
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1534
|
+
property :appliance, as: 'appliance'
|
1535
|
+
collection :applications, as: 'applications'
|
1536
|
+
property :backup_create_time, as: 'backupCreateTime'
|
1537
|
+
property :backup_template, as: 'backupTemplate'
|
1538
|
+
property :backup_type, as: 'backupType'
|
1539
|
+
property :host, as: 'host'
|
1540
|
+
collection :policies, as: 'policies'
|
1541
|
+
collection :policy_options, as: 'policyOptions'
|
1542
|
+
property :profile, as: 'profile'
|
1543
|
+
property :storage_pool, as: 'storagePool'
|
1544
|
+
end
|
1545
|
+
end
|
1546
|
+
|
1471
1547
|
class GoogleCloudSecuritycenterV2BigQueryExport
|
1472
1548
|
# @private
|
1473
1549
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1677,8 +1753,12 @@ module Google
|
|
1677
1753
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1678
1754
|
property :access, as: 'access', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Access, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Access::Representation
|
1679
1755
|
|
1756
|
+
property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Application, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Application::Representation
|
1757
|
+
|
1680
1758
|
property :attack_exposure, as: 'attackExposure', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AttackExposure, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AttackExposure::Representation
|
1681
1759
|
|
1760
|
+
property :backup_disaster_recovery, as: 'backupDisasterRecovery', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2BackupDisasterRecovery, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2BackupDisasterRecovery::Representation
|
1761
|
+
|
1682
1762
|
property :canonical_name, as: 'canonicalName'
|
1683
1763
|
property :category, as: 'category'
|
1684
1764
|
property :cloud_dlp_data_profile, as: 'cloudDlpDataProfile', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2CloudDlpDataProfile, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2CloudDlpDataProfile::Representation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.59.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-12-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.59.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|