google-apis-securitycenter_v1 0.69.0 → 0.70.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: 28e37721ca086b75ab237189a99ebe07079847f079e835825bd9993a7670ff36
|
4
|
+
data.tar.gz: 3ca70ac499abd223d4821f44f956ca961fc9cef47a52614b14cfdcb048c4ad17
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5f3ff5dbf2b672b56a488595918ace4194fd37912c24bd2f686cfff04754cbeeb4a9b7369b4a73b0cd6f52e3d144729059e1e0ec3c0bc0481538eb922dc685a4
|
7
|
+
data.tar.gz: df4349a746e938ff8431dd89b43f2fec13180e8b13633561bec388e549048fb35eab8ed05cc7cc9ea4809eb222052da13920a34cdc955fd5ad588fe896105a19
|
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
|
# Security Command Center representation of a Google Cloud resource. The Asset
|
190
219
|
# is a Security Command Center resource that captures information about a single
|
191
220
|
# Google Cloud resource. All modifications to an Asset are only within the
|
@@ -582,6 +611,103 @@ module Google
|
|
582
611
|
end
|
583
612
|
end
|
584
613
|
|
614
|
+
# Information related to Google Cloud Backup and DR Service findings.
|
615
|
+
class BackupDisasterRecovery
|
616
|
+
include Google::Apis::Core::Hashable
|
617
|
+
|
618
|
+
# The name of the Backup and DR appliance that captures, moves, and manages the
|
619
|
+
# lifecycle of backup data. For example, “backup-server-57137”.
|
620
|
+
# Corresponds to the JSON property `appliance`
|
621
|
+
# @return [String]
|
622
|
+
attr_accessor :appliance
|
623
|
+
|
624
|
+
# The names of Backup and DR applications. An application is a VM, database, or
|
625
|
+
# file system on a managed host monitored by a backup and recovery appliance.
|
626
|
+
# For example, “centos7-01-vol00”, “centos7-01-vol01”, “centos7-01-vol02”.
|
627
|
+
# Corresponds to the JSON property `applications`
|
628
|
+
# @return [Array<String>]
|
629
|
+
attr_accessor :applications
|
630
|
+
|
631
|
+
# The timestamp at which the Backup and DR backup was created.
|
632
|
+
# Corresponds to the JSON property `backupCreateTime`
|
633
|
+
# @return [String]
|
634
|
+
attr_accessor :backup_create_time
|
635
|
+
|
636
|
+
# The name of a Backup and DR template which comprises one or more backup
|
637
|
+
# policies. See the [Backup and DR documentation](https://cloud.google.com/
|
638
|
+
# backup-disaster-recovery/docs/concepts/backup-plan#temp) for more information.
|
639
|
+
# For example, “snap-ov”.
|
640
|
+
# Corresponds to the JSON property `backupTemplate`
|
641
|
+
# @return [String]
|
642
|
+
attr_accessor :backup_template
|
643
|
+
|
644
|
+
# The backup type of the Backup and DR image. For example, “Snapshot”, “Remote
|
645
|
+
# Snapshot”, “OnVault”.
|
646
|
+
# Corresponds to the JSON property `backupType`
|
647
|
+
# @return [String]
|
648
|
+
attr_accessor :backup_type
|
649
|
+
|
650
|
+
# The name of a Backup and DR host, which is managed by the backup and recovery
|
651
|
+
# appliance and known to the management console. The host can be of type Generic
|
652
|
+
# (for example, Compute Engine, SQL Server, Oracle DB, SMB file system, etc.),
|
653
|
+
# vCenter, or an ESX server. See the [Backup and DR documentation on hosts](
|
654
|
+
# https://cloud.google.com/backup-disaster-recovery/docs/configuration/manage-
|
655
|
+
# hosts-and-their-applications) for more information. For example, “centos7-01”.
|
656
|
+
# Corresponds to the JSON property `host`
|
657
|
+
# @return [String]
|
658
|
+
attr_accessor :host
|
659
|
+
|
660
|
+
# The names of Backup and DR policies that are associated with a template and
|
661
|
+
# that define when to run a backup, how frequently to run a backup, and how long
|
662
|
+
# to retain the backup image. For example, “onvaults”.
|
663
|
+
# Corresponds to the JSON property `policies`
|
664
|
+
# @return [Array<String>]
|
665
|
+
attr_accessor :policies
|
666
|
+
|
667
|
+
# The names of Backup and DR advanced policy options of a policy applying to an
|
668
|
+
# application. See the [Backup and DR documentation on policy options](https://
|
669
|
+
# cloud.google.com/backup-disaster-recovery/docs/create-plan/policy-settings).
|
670
|
+
# For example, “skipofflineappsincongrp, nounmap”.
|
671
|
+
# Corresponds to the JSON property `policyOptions`
|
672
|
+
# @return [Array<String>]
|
673
|
+
attr_accessor :policy_options
|
674
|
+
|
675
|
+
# The name of the Backup and DR resource profile that specifies the storage
|
676
|
+
# media for backups of application and VM data. See the [Backup and DR
|
677
|
+
# documentation on profiles](https://cloud.google.com/backup-disaster-recovery/
|
678
|
+
# docs/concepts/backup-plan#profile). For example, “GCP”.
|
679
|
+
# Corresponds to the JSON property `profile`
|
680
|
+
# @return [String]
|
681
|
+
attr_accessor :profile
|
682
|
+
|
683
|
+
# The name of the Backup and DR storage pool that the backup and recovery
|
684
|
+
# appliance is storing data in. The storage pool could be of type Cloud, Primary,
|
685
|
+
# Snapshot, or OnVault. See the [Backup and DR documentation on storage pools](
|
686
|
+
# https://cloud.google.com/backup-disaster-recovery/docs/concepts/storage-pools).
|
687
|
+
# For example, “DiskPoolOne”.
|
688
|
+
# Corresponds to the JSON property `storagePool`
|
689
|
+
# @return [String]
|
690
|
+
attr_accessor :storage_pool
|
691
|
+
|
692
|
+
def initialize(**args)
|
693
|
+
update!(**args)
|
694
|
+
end
|
695
|
+
|
696
|
+
# Update properties of this object
|
697
|
+
def update!(**args)
|
698
|
+
@appliance = args[:appliance] if args.key?(:appliance)
|
699
|
+
@applications = args[:applications] if args.key?(:applications)
|
700
|
+
@backup_create_time = args[:backup_create_time] if args.key?(:backup_create_time)
|
701
|
+
@backup_template = args[:backup_template] if args.key?(:backup_template)
|
702
|
+
@backup_type = args[:backup_type] if args.key?(:backup_type)
|
703
|
+
@host = args[:host] if args.key?(:host)
|
704
|
+
@policies = args[:policies] if args.key?(:policies)
|
705
|
+
@policy_options = args[:policy_options] if args.key?(:policy_options)
|
706
|
+
@profile = args[:profile] if args.key?(:profile)
|
707
|
+
@storage_pool = args[:storage_pool] if args.key?(:storage_pool)
|
708
|
+
end
|
709
|
+
end
|
710
|
+
|
585
711
|
# Request message to create multiple resource value configs
|
586
712
|
class BatchCreateResourceValueConfigsRequest
|
587
713
|
include Google::Apis::Core::Hashable
|
@@ -1651,11 +1777,21 @@ module Google
|
|
1651
1777
|
# @return [Google::Apis::SecuritycenterV1::Access]
|
1652
1778
|
attr_accessor :access
|
1653
1779
|
|
1780
|
+
# Represents an application associated with a finding.
|
1781
|
+
# Corresponds to the JSON property `application`
|
1782
|
+
# @return [Google::Apis::SecuritycenterV1::Application]
|
1783
|
+
attr_accessor :application
|
1784
|
+
|
1654
1785
|
# An attack exposure contains the results of an attack path simulation run.
|
1655
1786
|
# Corresponds to the JSON property `attackExposure`
|
1656
1787
|
# @return [Google::Apis::SecuritycenterV1::AttackExposure]
|
1657
1788
|
attr_accessor :attack_exposure
|
1658
1789
|
|
1790
|
+
# Information related to Google Cloud Backup and DR Service findings.
|
1791
|
+
# Corresponds to the JSON property `backupDisasterRecovery`
|
1792
|
+
# @return [Google::Apis::SecuritycenterV1::BackupDisasterRecovery]
|
1793
|
+
attr_accessor :backup_disaster_recovery
|
1794
|
+
|
1659
1795
|
# The canonical name of the finding. It's either "organizations/`organization_id`
|
1660
1796
|
# /sources/`source_id`/findings/`finding_id`", "folders/`folder_id`/sources/`
|
1661
1797
|
# source_id`/findings/`finding_id`" or "projects/`project_number`/sources/`
|
@@ -1932,7 +2068,9 @@ module Google
|
|
1932
2068
|
# Update properties of this object
|
1933
2069
|
def update!(**args)
|
1934
2070
|
@access = args[:access] if args.key?(:access)
|
2071
|
+
@application = args[:application] if args.key?(:application)
|
1935
2072
|
@attack_exposure = args[:attack_exposure] if args.key?(:attack_exposure)
|
2073
|
+
@backup_disaster_recovery = args[:backup_disaster_recovery] if args.key?(:backup_disaster_recovery)
|
1936
2074
|
@canonical_name = args[:canonical_name] if args.key?(:canonical_name)
|
1937
2075
|
@category = args[:category] if args.key?(:category)
|
1938
2076
|
@cloud_dlp_data_profile = args[:cloud_dlp_data_profile] if args.key?(:cloud_dlp_data_profile)
|
@@ -3299,6 +3437,35 @@ module Google
|
|
3299
3437
|
end
|
3300
3438
|
end
|
3301
3439
|
|
3440
|
+
# Represents an application associated with a finding.
|
3441
|
+
class GoogleCloudSecuritycenterV2Application
|
3442
|
+
include Google::Apis::Core::Hashable
|
3443
|
+
|
3444
|
+
# The base URI that identifies the network location of the application in which
|
3445
|
+
# the vulnerability was detected. Examples: http://11.22.33.44, http://foo.com,
|
3446
|
+
# http://11.22.33.44:8080
|
3447
|
+
# Corresponds to the JSON property `baseUri`
|
3448
|
+
# @return [String]
|
3449
|
+
attr_accessor :base_uri
|
3450
|
+
|
3451
|
+
# The full URI with payload that could be used to reproduce the vulnerability.
|
3452
|
+
# Example: http://11.22.33.44/reflected/parameter/attribute/singlequoted/js?p=
|
3453
|
+
# aMmYgI6H
|
3454
|
+
# Corresponds to the JSON property `fullUri`
|
3455
|
+
# @return [String]
|
3456
|
+
attr_accessor :full_uri
|
3457
|
+
|
3458
|
+
def initialize(**args)
|
3459
|
+
update!(**args)
|
3460
|
+
end
|
3461
|
+
|
3462
|
+
# Update properties of this object
|
3463
|
+
def update!(**args)
|
3464
|
+
@base_uri = args[:base_uri] if args.key?(:base_uri)
|
3465
|
+
@full_uri = args[:full_uri] if args.key?(:full_uri)
|
3466
|
+
end
|
3467
|
+
end
|
3468
|
+
|
3302
3469
|
# An attack exposure contains the results of an attack path simulation run.
|
3303
3470
|
class GoogleCloudSecuritycenterV2AttackExposure
|
3304
3471
|
include Google::Apis::Core::Hashable
|
@@ -3362,6 +3529,103 @@ module Google
|
|
3362
3529
|
end
|
3363
3530
|
end
|
3364
3531
|
|
3532
|
+
# Information related to Google Cloud Backup and DR Service findings.
|
3533
|
+
class GoogleCloudSecuritycenterV2BackupDisasterRecovery
|
3534
|
+
include Google::Apis::Core::Hashable
|
3535
|
+
|
3536
|
+
# The name of the Backup and DR appliance that captures, moves, and manages the
|
3537
|
+
# lifecycle of backup data. For example, “backup-server-57137”.
|
3538
|
+
# Corresponds to the JSON property `appliance`
|
3539
|
+
# @return [String]
|
3540
|
+
attr_accessor :appliance
|
3541
|
+
|
3542
|
+
# The names of Backup and DR applications. An application is a VM, database, or
|
3543
|
+
# file system on a managed host monitored by a backup and recovery appliance.
|
3544
|
+
# For example, “centos7-01-vol00”, “centos7-01-vol01”, “centos7-01-vol02”.
|
3545
|
+
# Corresponds to the JSON property `applications`
|
3546
|
+
# @return [Array<String>]
|
3547
|
+
attr_accessor :applications
|
3548
|
+
|
3549
|
+
# The timestamp at which the Backup and DR backup was created.
|
3550
|
+
# Corresponds to the JSON property `backupCreateTime`
|
3551
|
+
# @return [String]
|
3552
|
+
attr_accessor :backup_create_time
|
3553
|
+
|
3554
|
+
# The name of a Backup and DR template which comprises one or more backup
|
3555
|
+
# policies. See the [Backup and DR documentation](https://cloud.google.com/
|
3556
|
+
# backup-disaster-recovery/docs/concepts/backup-plan#temp) for more information.
|
3557
|
+
# For example, “snap-ov”.
|
3558
|
+
# Corresponds to the JSON property `backupTemplate`
|
3559
|
+
# @return [String]
|
3560
|
+
attr_accessor :backup_template
|
3561
|
+
|
3562
|
+
# The backup type of the Backup and DR image. For example, “Snapshot”, “Remote
|
3563
|
+
# Snapshot”, “OnVault”.
|
3564
|
+
# Corresponds to the JSON property `backupType`
|
3565
|
+
# @return [String]
|
3566
|
+
attr_accessor :backup_type
|
3567
|
+
|
3568
|
+
# The name of a Backup and DR host, which is managed by the backup and recovery
|
3569
|
+
# appliance and known to the management console. The host can be of type Generic
|
3570
|
+
# (for example, Compute Engine, SQL Server, Oracle DB, SMB file system, etc.),
|
3571
|
+
# vCenter, or an ESX server. See the [Backup and DR documentation on hosts](
|
3572
|
+
# https://cloud.google.com/backup-disaster-recovery/docs/configuration/manage-
|
3573
|
+
# hosts-and-their-applications) for more information. For example, “centos7-01”.
|
3574
|
+
# Corresponds to the JSON property `host`
|
3575
|
+
# @return [String]
|
3576
|
+
attr_accessor :host
|
3577
|
+
|
3578
|
+
# The names of Backup and DR policies that are associated with a template and
|
3579
|
+
# that define when to run a backup, how frequently to run a backup, and how long
|
3580
|
+
# to retain the backup image. For example, “onvaults”.
|
3581
|
+
# Corresponds to the JSON property `policies`
|
3582
|
+
# @return [Array<String>]
|
3583
|
+
attr_accessor :policies
|
3584
|
+
|
3585
|
+
# The names of Backup and DR advanced policy options of a policy applying to an
|
3586
|
+
# application. See the [Backup and DR documentation on policy options](https://
|
3587
|
+
# cloud.google.com/backup-disaster-recovery/docs/create-plan/policy-settings).
|
3588
|
+
# For example, “skipofflineappsincongrp, nounmap”.
|
3589
|
+
# Corresponds to the JSON property `policyOptions`
|
3590
|
+
# @return [Array<String>]
|
3591
|
+
attr_accessor :policy_options
|
3592
|
+
|
3593
|
+
# The name of the Backup and DR resource profile that specifies the storage
|
3594
|
+
# media for backups of application and VM data. See the [Backup and DR
|
3595
|
+
# documentation on profiles](https://cloud.google.com/backup-disaster-recovery/
|
3596
|
+
# docs/concepts/backup-plan#profile). For example, “GCP”.
|
3597
|
+
# Corresponds to the JSON property `profile`
|
3598
|
+
# @return [String]
|
3599
|
+
attr_accessor :profile
|
3600
|
+
|
3601
|
+
# The name of the Backup and DR storage pool that the backup and recovery
|
3602
|
+
# appliance is storing data in. The storage pool could be of type Cloud, Primary,
|
3603
|
+
# Snapshot, or OnVault. See the [Backup and DR documentation on storage pools](
|
3604
|
+
# https://cloud.google.com/backup-disaster-recovery/docs/concepts/storage-pools).
|
3605
|
+
# For example, “DiskPoolOne”.
|
3606
|
+
# Corresponds to the JSON property `storagePool`
|
3607
|
+
# @return [String]
|
3608
|
+
attr_accessor :storage_pool
|
3609
|
+
|
3610
|
+
def initialize(**args)
|
3611
|
+
update!(**args)
|
3612
|
+
end
|
3613
|
+
|
3614
|
+
# Update properties of this object
|
3615
|
+
def update!(**args)
|
3616
|
+
@appliance = args[:appliance] if args.key?(:appliance)
|
3617
|
+
@applications = args[:applications] if args.key?(:applications)
|
3618
|
+
@backup_create_time = args[:backup_create_time] if args.key?(:backup_create_time)
|
3619
|
+
@backup_template = args[:backup_template] if args.key?(:backup_template)
|
3620
|
+
@backup_type = args[:backup_type] if args.key?(:backup_type)
|
3621
|
+
@host = args[:host] if args.key?(:host)
|
3622
|
+
@policies = args[:policies] if args.key?(:policies)
|
3623
|
+
@policy_options = args[:policy_options] if args.key?(:policy_options)
|
3624
|
+
@profile = args[:profile] if args.key?(:profile)
|
3625
|
+
@storage_pool = args[:storage_pool] if args.key?(:storage_pool)
|
3626
|
+
end
|
3627
|
+
end
|
3628
|
+
|
3365
3629
|
# Configures how to deliver Findings to BigQuery Instance.
|
3366
3630
|
class GoogleCloudSecuritycenterV2BigQueryExport
|
3367
3631
|
include Google::Apis::Core::Hashable
|
@@ -4182,11 +4446,21 @@ module Google
|
|
4182
4446
|
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Access]
|
4183
4447
|
attr_accessor :access
|
4184
4448
|
|
4449
|
+
# Represents an application associated with a finding.
|
4450
|
+
# Corresponds to the JSON property `application`
|
4451
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Application]
|
4452
|
+
attr_accessor :application
|
4453
|
+
|
4185
4454
|
# An attack exposure contains the results of an attack path simulation run.
|
4186
4455
|
# Corresponds to the JSON property `attackExposure`
|
4187
4456
|
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AttackExposure]
|
4188
4457
|
attr_accessor :attack_exposure
|
4189
4458
|
|
4459
|
+
# Information related to Google Cloud Backup and DR Service findings.
|
4460
|
+
# Corresponds to the JSON property `backupDisasterRecovery`
|
4461
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2BackupDisasterRecovery]
|
4462
|
+
attr_accessor :backup_disaster_recovery
|
4463
|
+
|
4190
4464
|
# Output only. The canonical name of the finding. The following list shows some
|
4191
4465
|
# examples: + `organizations/`organization_id`/sources/`source_id`/findings/`
|
4192
4466
|
# finding_id`` + `organizations/`organization_id`/sources/`source_id`/locations/`
|
@@ -4477,7 +4751,9 @@ module Google
|
|
4477
4751
|
# Update properties of this object
|
4478
4752
|
def update!(**args)
|
4479
4753
|
@access = args[:access] if args.key?(:access)
|
4754
|
+
@application = args[:application] if args.key?(:application)
|
4480
4755
|
@attack_exposure = args[:attack_exposure] if args.key?(:attack_exposure)
|
4756
|
+
@backup_disaster_recovery = args[:backup_disaster_recovery] if args.key?(:backup_disaster_recovery)
|
4481
4757
|
@canonical_name = args[:canonical_name] if args.key?(:canonical_name)
|
4482
4758
|
@category = args[:category] if args.key?(:category)
|
4483
4759
|
@cloud_dlp_data_profile = args[:cloud_dlp_data_profile] if args.key?(:cloud_dlp_data_profile)
|
@@ -7820,8 +8096,9 @@ module Google
|
|
7820
8096
|
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1CustomConfig]
|
7821
8097
|
attr_accessor :custom_config
|
7822
8098
|
|
7823
|
-
# Manually constructed resource. If the custom module
|
7824
|
-
# resource data, the iam_policy_data field
|
8099
|
+
# Manually constructed resource name. If the custom module evaluates against
|
8100
|
+
# only the resource data, you can omit the `iam_policy_data` field. If it
|
8101
|
+
# evaluates only the `iam_policy_data` field, you can omit the resource data.
|
7825
8102
|
# Corresponds to the JSON property `resource`
|
7826
8103
|
# @return [Google::Apis::SecuritycenterV1::SimulatedResource]
|
7827
8104
|
attr_accessor :resource
|
@@ -7837,8 +8114,8 @@ module Google
|
|
7837
8114
|
end
|
7838
8115
|
end
|
7839
8116
|
|
7840
|
-
# Response message for simulating a SecurityHealthAnalyticsCustomModule
|
7841
|
-
# a given resource.
|
8117
|
+
# Response message for simulating a `SecurityHealthAnalyticsCustomModule`
|
8118
|
+
# against a given resource.
|
7842
8119
|
class SimulateSecurityHealthAnalyticsCustomModuleResponse
|
7843
8120
|
include Google::Apis::Core::Hashable
|
7844
8121
|
|
@@ -7857,8 +8134,9 @@ module Google
|
|
7857
8134
|
end
|
7858
8135
|
end
|
7859
8136
|
|
7860
|
-
# Manually constructed resource. If the custom module
|
7861
|
-
# resource data, the iam_policy_data field
|
8137
|
+
# Manually constructed resource name. If the custom module evaluates against
|
8138
|
+
# only the resource data, you can omit the `iam_policy_data` field. If it
|
8139
|
+
# evaluates only the `iam_policy_data` field, you can omit the resource data.
|
7862
8140
|
class SimulatedResource
|
7863
8141
|
include Google::Apis::Core::Hashable
|
7864
8142
|
|
@@ -7893,13 +8171,13 @@ module Google
|
|
7893
8171
|
# @return [Google::Apis::SecuritycenterV1::Policy]
|
7894
8172
|
attr_accessor :iam_policy_data
|
7895
8173
|
|
7896
|
-
# Optional. A representation of the
|
7897
|
-
# JSON format.
|
8174
|
+
# Optional. A representation of the Google Cloud resource. Should match the
|
8175
|
+
# Google Cloud resource JSON format.
|
7898
8176
|
# Corresponds to the JSON property `resourceData`
|
7899
8177
|
# @return [Hash<String,Object>]
|
7900
8178
|
attr_accessor :resource_data
|
7901
8179
|
|
7902
|
-
# Required. The type of the resource,
|
8180
|
+
# Required. The type of the resource, for example, `compute.googleapis.com/Disk`.
|
7903
8181
|
# Corresponds to the JSON property `resourceType`
|
7904
8182
|
# @return [String]
|
7905
8183
|
attr_accessor :resource_type
|
@@ -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.70.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,6 +34,12 @@ 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 Asset
|
38
44
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
39
45
|
|
@@ -88,6 +94,12 @@ module Google
|
|
88
94
|
include Google::Apis::Core::JsonObjectSupport
|
89
95
|
end
|
90
96
|
|
97
|
+
class BackupDisasterRecovery
|
98
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
|
+
|
100
|
+
include Google::Apis::Core::JsonObjectSupport
|
101
|
+
end
|
102
|
+
|
91
103
|
class BatchCreateResourceValueConfigsRequest
|
92
104
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
93
105
|
|
@@ -424,12 +436,24 @@ module Google
|
|
424
436
|
include Google::Apis::Core::JsonObjectSupport
|
425
437
|
end
|
426
438
|
|
439
|
+
class GoogleCloudSecuritycenterV2Application
|
440
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
441
|
+
|
442
|
+
include Google::Apis::Core::JsonObjectSupport
|
443
|
+
end
|
444
|
+
|
427
445
|
class GoogleCloudSecuritycenterV2AttackExposure
|
428
446
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
429
447
|
|
430
448
|
include Google::Apis::Core::JsonObjectSupport
|
431
449
|
end
|
432
450
|
|
451
|
+
class GoogleCloudSecuritycenterV2BackupDisasterRecovery
|
452
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
453
|
+
|
454
|
+
include Google::Apis::Core::JsonObjectSupport
|
455
|
+
end
|
456
|
+
|
433
457
|
class GoogleCloudSecuritycenterV2BigQueryExport
|
434
458
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
435
459
|
|
@@ -1194,6 +1218,14 @@ module Google
|
|
1194
1218
|
end
|
1195
1219
|
end
|
1196
1220
|
|
1221
|
+
class Application
|
1222
|
+
# @private
|
1223
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1224
|
+
property :base_uri, as: 'baseUri'
|
1225
|
+
property :full_uri, as: 'fullUri'
|
1226
|
+
end
|
1227
|
+
end
|
1228
|
+
|
1197
1229
|
class Asset
|
1198
1230
|
# @private
|
1199
1231
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1294,6 +1326,22 @@ module Google
|
|
1294
1326
|
end
|
1295
1327
|
end
|
1296
1328
|
|
1329
|
+
class BackupDisasterRecovery
|
1330
|
+
# @private
|
1331
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1332
|
+
property :appliance, as: 'appliance'
|
1333
|
+
collection :applications, as: 'applications'
|
1334
|
+
property :backup_create_time, as: 'backupCreateTime'
|
1335
|
+
property :backup_template, as: 'backupTemplate'
|
1336
|
+
property :backup_type, as: 'backupType'
|
1337
|
+
property :host, as: 'host'
|
1338
|
+
collection :policies, as: 'policies'
|
1339
|
+
collection :policy_options, as: 'policyOptions'
|
1340
|
+
property :profile, as: 'profile'
|
1341
|
+
property :storage_pool, as: 'storagePool'
|
1342
|
+
end
|
1343
|
+
end
|
1344
|
+
|
1297
1345
|
class BatchCreateResourceValueConfigsRequest
|
1298
1346
|
# @private
|
1299
1347
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1567,8 +1615,12 @@ module Google
|
|
1567
1615
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1568
1616
|
property :access, as: 'access', class: Google::Apis::SecuritycenterV1::Access, decorator: Google::Apis::SecuritycenterV1::Access::Representation
|
1569
1617
|
|
1618
|
+
property :application, as: 'application', class: Google::Apis::SecuritycenterV1::Application, decorator: Google::Apis::SecuritycenterV1::Application::Representation
|
1619
|
+
|
1570
1620
|
property :attack_exposure, as: 'attackExposure', class: Google::Apis::SecuritycenterV1::AttackExposure, decorator: Google::Apis::SecuritycenterV1::AttackExposure::Representation
|
1571
1621
|
|
1622
|
+
property :backup_disaster_recovery, as: 'backupDisasterRecovery', class: Google::Apis::SecuritycenterV1::BackupDisasterRecovery, decorator: Google::Apis::SecuritycenterV1::BackupDisasterRecovery::Representation
|
1623
|
+
|
1572
1624
|
property :canonical_name, as: 'canonicalName'
|
1573
1625
|
property :category, as: 'category'
|
1574
1626
|
property :cloud_dlp_data_profile, as: 'cloudDlpDataProfile', class: Google::Apis::SecuritycenterV1::CloudDlpDataProfile, decorator: Google::Apis::SecuritycenterV1::CloudDlpDataProfile::Representation
|
@@ -1942,6 +1994,14 @@ module Google
|
|
1942
1994
|
end
|
1943
1995
|
end
|
1944
1996
|
|
1997
|
+
class GoogleCloudSecuritycenterV2Application
|
1998
|
+
# @private
|
1999
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2000
|
+
property :base_uri, as: 'baseUri'
|
2001
|
+
property :full_uri, as: 'fullUri'
|
2002
|
+
end
|
2003
|
+
end
|
2004
|
+
|
1945
2005
|
class GoogleCloudSecuritycenterV2AttackExposure
|
1946
2006
|
# @private
|
1947
2007
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1955,6 +2015,22 @@ module Google
|
|
1955
2015
|
end
|
1956
2016
|
end
|
1957
2017
|
|
2018
|
+
class GoogleCloudSecuritycenterV2BackupDisasterRecovery
|
2019
|
+
# @private
|
2020
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2021
|
+
property :appliance, as: 'appliance'
|
2022
|
+
collection :applications, as: 'applications'
|
2023
|
+
property :backup_create_time, as: 'backupCreateTime'
|
2024
|
+
property :backup_template, as: 'backupTemplate'
|
2025
|
+
property :backup_type, as: 'backupType'
|
2026
|
+
property :host, as: 'host'
|
2027
|
+
collection :policies, as: 'policies'
|
2028
|
+
collection :policy_options, as: 'policyOptions'
|
2029
|
+
property :profile, as: 'profile'
|
2030
|
+
property :storage_pool, as: 'storagePool'
|
2031
|
+
end
|
2032
|
+
end
|
2033
|
+
|
1958
2034
|
class GoogleCloudSecuritycenterV2BigQueryExport
|
1959
2035
|
# @private
|
1960
2036
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2164,8 +2240,12 @@ module Google
|
|
2164
2240
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2165
2241
|
property :access, as: 'access', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Access, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Access::Representation
|
2166
2242
|
|
2243
|
+
property :application, as: 'application', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Application, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Application::Representation
|
2244
|
+
|
2167
2245
|
property :attack_exposure, as: 'attackExposure', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AttackExposure, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AttackExposure::Representation
|
2168
2246
|
|
2247
|
+
property :backup_disaster_recovery, as: 'backupDisasterRecovery', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2BackupDisasterRecovery, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2BackupDisasterRecovery::Representation
|
2248
|
+
|
2169
2249
|
property :canonical_name, as: 'canonicalName'
|
2170
2250
|
property :category, as: 'category'
|
2171
2251
|
property :cloud_dlp_data_profile, as: 'cloudDlpDataProfile', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2CloudDlpDataProfile, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2CloudDlpDataProfile::Representation
|
@@ -1215,8 +1215,9 @@ module Google
|
|
1215
1215
|
# Simulates a given SecurityHealthAnalyticsCustomModule and Resource.
|
1216
1216
|
# @param [String] parent
|
1217
1217
|
# Required. The relative resource name of the organization, project, or folder.
|
1218
|
-
#
|
1219
|
-
#
|
1218
|
+
# For more information about relative resource names, see [Relative Resource
|
1219
|
+
# Name](https://cloud.google.com/apis/design/resource_names#
|
1220
|
+
# relative_resource_name) Example: `organizations/`organization_id``
|
1220
1221
|
# @param [Google::Apis::SecuritycenterV1::SimulateSecurityHealthAnalyticsCustomModuleRequest] simulate_security_health_analytics_custom_module_request_object
|
1221
1222
|
# @param [String] fields
|
1222
1223
|
# Selector specifying which fields to include in a partial response.
|
@@ -3526,8 +3527,9 @@ module Google
|
|
3526
3527
|
# Simulates a given SecurityHealthAnalyticsCustomModule and Resource.
|
3527
3528
|
# @param [String] parent
|
3528
3529
|
# Required. The relative resource name of the organization, project, or folder.
|
3529
|
-
#
|
3530
|
-
#
|
3530
|
+
# For more information about relative resource names, see [Relative Resource
|
3531
|
+
# Name](https://cloud.google.com/apis/design/resource_names#
|
3532
|
+
# relative_resource_name) Example: `organizations/`organization_id``
|
3531
3533
|
# @param [Google::Apis::SecuritycenterV1::SimulateSecurityHealthAnalyticsCustomModuleRequest] simulate_security_health_analytics_custom_module_request_object
|
3532
3534
|
# @param [String] fields
|
3533
3535
|
# Selector specifying which fields to include in a partial response.
|
@@ -5750,8 +5752,9 @@ module Google
|
|
5750
5752
|
# Simulates a given SecurityHealthAnalyticsCustomModule and Resource.
|
5751
5753
|
# @param [String] parent
|
5752
5754
|
# Required. The relative resource name of the organization, project, or folder.
|
5753
|
-
#
|
5754
|
-
#
|
5755
|
+
# For more information about relative resource names, see [Relative Resource
|
5756
|
+
# Name](https://cloud.google.com/apis/design/resource_names#
|
5757
|
+
# relative_resource_name) Example: `organizations/`organization_id``
|
5755
5758
|
# @param [Google::Apis::SecuritycenterV1::SimulateSecurityHealthAnalyticsCustomModuleRequest] simulate_security_health_analytics_custom_module_request_object
|
5756
5759
|
# @param [String] fields
|
5757
5760
|
# Selector specifying which fields to include in a partial response.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.70.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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.70.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|