google-apis-securitycenter_v1 0.104.0 → 0.106.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: 76cd025a6d45f53960b789b0cbc7c951b59f9eceb91f01c59a7042e77691aa3a
|
4
|
+
data.tar.gz: 6198caafd169266bed7bc42cd836be78345d23eb4369438cc8a1b107dd0b2f31
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 64ceae8a50523aef7bcd7f983f58e40c65970edb53deeb1d362efe19f6ded4bf3801772596d1aefe54e2e403bb9b13f7610878466a3717411f7dc4b438d3f50d
|
7
|
+
data.tar.gz: d7ee71ee7d6b8bace5323d71dfd542500eda4ace37a12fed9c39170b0a3f2e047c796b2ddc5065eb50356691927030ceeb28569b7afdfd412194e9e0f048b0c9
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-securitycenter_v1
|
2
2
|
|
3
|
+
### v0.106.0 (2025-08-17)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250808
|
6
|
+
|
7
|
+
### v0.105.0 (2025-07-27)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250721
|
10
|
+
|
3
11
|
### v0.104.0 (2025-07-13)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250707
|
@@ -1407,6 +1407,43 @@ module Google
|
|
1407
1407
|
end
|
1408
1408
|
end
|
1409
1409
|
|
1410
|
+
# CloudControl associated with the finding.
|
1411
|
+
class CloudControl
|
1412
|
+
include Google::Apis::Core::Hashable
|
1413
|
+
|
1414
|
+
# Name of the CloudControl associated with the finding.
|
1415
|
+
# Corresponds to the JSON property `cloudControlName`
|
1416
|
+
# @return [String]
|
1417
|
+
attr_accessor :cloud_control_name
|
1418
|
+
|
1419
|
+
# Policy type of the CloudControl
|
1420
|
+
# Corresponds to the JSON property `policyType`
|
1421
|
+
# @return [String]
|
1422
|
+
attr_accessor :policy_type
|
1423
|
+
|
1424
|
+
# Type of cloud control.
|
1425
|
+
# Corresponds to the JSON property `type`
|
1426
|
+
# @return [String]
|
1427
|
+
attr_accessor :type
|
1428
|
+
|
1429
|
+
# Version of the Cloud Control
|
1430
|
+
# Corresponds to the JSON property `version`
|
1431
|
+
# @return [Fixnum]
|
1432
|
+
attr_accessor :version
|
1433
|
+
|
1434
|
+
def initialize(**args)
|
1435
|
+
update!(**args)
|
1436
|
+
end
|
1437
|
+
|
1438
|
+
# Update properties of this object
|
1439
|
+
def update!(**args)
|
1440
|
+
@cloud_control_name = args[:cloud_control_name] if args.key?(:cloud_control_name)
|
1441
|
+
@policy_type = args[:policy_type] if args.key?(:policy_type)
|
1442
|
+
@type = args[:type] if args.key?(:type)
|
1443
|
+
@version = args[:version] if args.key?(:version)
|
1444
|
+
end
|
1445
|
+
end
|
1446
|
+
|
1410
1447
|
# The [data profile](https://cloud.google.com/dlp/docs/data-profiles) associated
|
1411
1448
|
# with the finding.
|
1412
1449
|
class CloudDlpDataProfile
|
@@ -1550,6 +1587,39 @@ module Google
|
|
1550
1587
|
end
|
1551
1588
|
end
|
1552
1589
|
|
1590
|
+
# Compliance Details associated with the finding.
|
1591
|
+
class ComplianceDetails
|
1592
|
+
include Google::Apis::Core::Hashable
|
1593
|
+
|
1594
|
+
# CloudControl associated with the finding.
|
1595
|
+
# Corresponds to the JSON property `cloudControl`
|
1596
|
+
# @return [Google::Apis::SecuritycenterV1::CloudControl]
|
1597
|
+
attr_accessor :cloud_control
|
1598
|
+
|
1599
|
+
# Cloud Control Deployments associated with the finding. For example,
|
1600
|
+
# organizations/123/locations/global/cloudControlDeployments/
|
1601
|
+
# deploymentIdentifier
|
1602
|
+
# Corresponds to the JSON property `cloudControlDeploymentNames`
|
1603
|
+
# @return [Array<String>]
|
1604
|
+
attr_accessor :cloud_control_deployment_names
|
1605
|
+
|
1606
|
+
# Details of Frameworks associated with the finding
|
1607
|
+
# Corresponds to the JSON property `frameworks`
|
1608
|
+
# @return [Array<Google::Apis::SecuritycenterV1::Framework>]
|
1609
|
+
attr_accessor :frameworks
|
1610
|
+
|
1611
|
+
def initialize(**args)
|
1612
|
+
update!(**args)
|
1613
|
+
end
|
1614
|
+
|
1615
|
+
# Update properties of this object
|
1616
|
+
def update!(**args)
|
1617
|
+
@cloud_control = args[:cloud_control] if args.key?(:cloud_control)
|
1618
|
+
@cloud_control_deployment_names = args[:cloud_control_deployment_names] if args.key?(:cloud_control_deployment_names)
|
1619
|
+
@frameworks = args[:frameworks] if args.key?(:frameworks)
|
1620
|
+
end
|
1621
|
+
end
|
1622
|
+
|
1553
1623
|
# Contains information about the IP connection associated with the finding.
|
1554
1624
|
class Connection
|
1555
1625
|
include Google::Apis::Core::Hashable
|
@@ -1677,6 +1747,31 @@ module Google
|
|
1677
1747
|
end
|
1678
1748
|
end
|
1679
1749
|
|
1750
|
+
# Compliance control associated with the finding.
|
1751
|
+
class Control
|
1752
|
+
include Google::Apis::Core::Hashable
|
1753
|
+
|
1754
|
+
# Name of the Control
|
1755
|
+
# Corresponds to the JSON property `controlName`
|
1756
|
+
# @return [String]
|
1757
|
+
attr_accessor :control_name
|
1758
|
+
|
1759
|
+
# Display name of the control. For example, AU-02.
|
1760
|
+
# Corresponds to the JSON property `displayName`
|
1761
|
+
# @return [String]
|
1762
|
+
attr_accessor :display_name
|
1763
|
+
|
1764
|
+
def initialize(**args)
|
1765
|
+
update!(**args)
|
1766
|
+
end
|
1767
|
+
|
1768
|
+
# Update properties of this object
|
1769
|
+
def update!(**args)
|
1770
|
+
@control_name = args[:control_name] if args.key?(:control_name)
|
1771
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
1772
|
+
end
|
1773
|
+
end
|
1774
|
+
|
1680
1775
|
# Request message to create single resource value config
|
1681
1776
|
class CreateResourceValueConfigRequest
|
1682
1777
|
include Google::Apis::Core::Hashable
|
@@ -2813,6 +2908,11 @@ module Google
|
|
2813
2908
|
# @return [Google::Apis::SecuritycenterV1::CloudDlpInspection]
|
2814
2909
|
attr_accessor :cloud_dlp_inspection
|
2815
2910
|
|
2911
|
+
# Compliance Details associated with the finding.
|
2912
|
+
# Corresponds to the JSON property `complianceDetails`
|
2913
|
+
# @return [Google::Apis::SecuritycenterV1::ComplianceDetails]
|
2914
|
+
attr_accessor :compliance_details
|
2915
|
+
|
2816
2916
|
# Contains compliance information for security standards associated to the
|
2817
2917
|
# finding.
|
2818
2918
|
# Corresponds to the JSON property `compliances`
|
@@ -3139,6 +3239,7 @@ module Google
|
|
3139
3239
|
@cloud_armor = args[:cloud_armor] if args.key?(:cloud_armor)
|
3140
3240
|
@cloud_dlp_data_profile = args[:cloud_dlp_data_profile] if args.key?(:cloud_dlp_data_profile)
|
3141
3241
|
@cloud_dlp_inspection = args[:cloud_dlp_inspection] if args.key?(:cloud_dlp_inspection)
|
3242
|
+
@compliance_details = args[:compliance_details] if args.key?(:compliance_details)
|
3142
3243
|
@compliances = args[:compliances] if args.key?(:compliances)
|
3143
3244
|
@connections = args[:connections] if args.key?(:connections)
|
3144
3245
|
@contacts = args[:contacts] if args.key?(:contacts)
|
@@ -3217,6 +3318,54 @@ module Google
|
|
3217
3318
|
end
|
3218
3319
|
end
|
3219
3320
|
|
3321
|
+
# Compliance framework associated with the finding.
|
3322
|
+
class Framework
|
3323
|
+
include Google::Apis::Core::Hashable
|
3324
|
+
|
3325
|
+
# Category of the framework associated with the finding. E.g. Security Benchmark,
|
3326
|
+
# or Assured Workloads
|
3327
|
+
# Corresponds to the JSON property `category`
|
3328
|
+
# @return [Array<String>]
|
3329
|
+
attr_accessor :category
|
3330
|
+
|
3331
|
+
# The controls associated with the framework.
|
3332
|
+
# Corresponds to the JSON property `controls`
|
3333
|
+
# @return [Array<Google::Apis::SecuritycenterV1::Control>]
|
3334
|
+
attr_accessor :controls
|
3335
|
+
|
3336
|
+
# Display name of the framework. For a standard framework, this will look like e.
|
3337
|
+
# g. PCI DSS 3.2.1, whereas for a custom framework it can be a user defined
|
3338
|
+
# string like MyFramework
|
3339
|
+
# Corresponds to the JSON property `displayName`
|
3340
|
+
# @return [String]
|
3341
|
+
attr_accessor :display_name
|
3342
|
+
|
3343
|
+
# Name of the framework associated with the finding
|
3344
|
+
# Corresponds to the JSON property `name`
|
3345
|
+
# @return [String]
|
3346
|
+
attr_accessor :name
|
3347
|
+
|
3348
|
+
# Type of the framework associated with the finding, to specify whether the
|
3349
|
+
# framework is built-in (pre-defined and immutable) or a custom framework
|
3350
|
+
# defined by the customer (equivalent to security posture)
|
3351
|
+
# Corresponds to the JSON property `type`
|
3352
|
+
# @return [String]
|
3353
|
+
attr_accessor :type
|
3354
|
+
|
3355
|
+
def initialize(**args)
|
3356
|
+
update!(**args)
|
3357
|
+
end
|
3358
|
+
|
3359
|
+
# Update properties of this object
|
3360
|
+
def update!(**args)
|
3361
|
+
@category = args[:category] if args.key?(:category)
|
3362
|
+
@controls = args[:controls] if args.key?(:controls)
|
3363
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
3364
|
+
@name = args[:name] if args.key?(:name)
|
3365
|
+
@type = args[:type] if args.key?(:type)
|
3366
|
+
end
|
3367
|
+
end
|
3368
|
+
|
3220
3369
|
# Google Cloud metadata associated with the resource. Only applicable if the
|
3221
3370
|
# finding's cloud provider is Google Cloud.
|
3222
3371
|
class GcpMetadata
|
@@ -5350,6 +5499,13 @@ module Google
|
|
5350
5499
|
# @return [String]
|
5351
5500
|
attr_accessor :create_time
|
5352
5501
|
|
5502
|
+
# Output only. The resource name of the Cloud KMS `CryptoKey` used to protect
|
5503
|
+
# this configuration's data, if configured during Security Command Center
|
5504
|
+
# activation.
|
5505
|
+
# Corresponds to the JSON property `cryptoKeyName`
|
5506
|
+
# @return [String]
|
5507
|
+
attr_accessor :crypto_key_name
|
5508
|
+
|
5353
5509
|
# The dataset to write findings' updates to. Its format is "projects/[project_id]
|
5354
5510
|
# /datasets/[bigquery_dataset_id]". BigQuery dataset unique ID must contain only
|
5355
5511
|
# letters (a-z, A-Z), numbers (0-9), or underscores (_).
|
@@ -5414,6 +5570,7 @@ module Google
|
|
5414
5570
|
# Update properties of this object
|
5415
5571
|
def update!(**args)
|
5416
5572
|
@create_time = args[:create_time] if args.key?(:create_time)
|
5573
|
+
@crypto_key_name = args[:crypto_key_name] if args.key?(:crypto_key_name)
|
5417
5574
|
@dataset = args[:dataset] if args.key?(:dataset)
|
5418
5575
|
@description = args[:description] if args.key?(:description)
|
5419
5576
|
@filter = args[:filter] if args.key?(:filter)
|
@@ -5554,6 +5711,43 @@ module Google
|
|
5554
5711
|
end
|
5555
5712
|
end
|
5556
5713
|
|
5714
|
+
# CloudControl associated with the finding.
|
5715
|
+
class GoogleCloudSecuritycenterV2CloudControl
|
5716
|
+
include Google::Apis::Core::Hashable
|
5717
|
+
|
5718
|
+
# Name of the CloudControl associated with the finding.
|
5719
|
+
# Corresponds to the JSON property `cloudControlName`
|
5720
|
+
# @return [String]
|
5721
|
+
attr_accessor :cloud_control_name
|
5722
|
+
|
5723
|
+
# Policy type of the CloudControl
|
5724
|
+
# Corresponds to the JSON property `policyType`
|
5725
|
+
# @return [String]
|
5726
|
+
attr_accessor :policy_type
|
5727
|
+
|
5728
|
+
# Type of cloud control.
|
5729
|
+
# Corresponds to the JSON property `type`
|
5730
|
+
# @return [String]
|
5731
|
+
attr_accessor :type
|
5732
|
+
|
5733
|
+
# Version of the Cloud Control
|
5734
|
+
# Corresponds to the JSON property `version`
|
5735
|
+
# @return [Fixnum]
|
5736
|
+
attr_accessor :version
|
5737
|
+
|
5738
|
+
def initialize(**args)
|
5739
|
+
update!(**args)
|
5740
|
+
end
|
5741
|
+
|
5742
|
+
# Update properties of this object
|
5743
|
+
def update!(**args)
|
5744
|
+
@cloud_control_name = args[:cloud_control_name] if args.key?(:cloud_control_name)
|
5745
|
+
@policy_type = args[:policy_type] if args.key?(:policy_type)
|
5746
|
+
@type = args[:type] if args.key?(:type)
|
5747
|
+
@version = args[:version] if args.key?(:version)
|
5748
|
+
end
|
5749
|
+
end
|
5750
|
+
|
5557
5751
|
# The [data profile](https://cloud.google.com/dlp/docs/data-profiles) associated
|
5558
5752
|
# with the finding.
|
5559
5753
|
class GoogleCloudSecuritycenterV2CloudDlpDataProfile
|
@@ -5697,6 +5891,39 @@ module Google
|
|
5697
5891
|
end
|
5698
5892
|
end
|
5699
5893
|
|
5894
|
+
# Compliance Details associated with the finding.
|
5895
|
+
class GoogleCloudSecuritycenterV2ComplianceDetails
|
5896
|
+
include Google::Apis::Core::Hashable
|
5897
|
+
|
5898
|
+
# CloudControl associated with the finding.
|
5899
|
+
# Corresponds to the JSON property `cloudControl`
|
5900
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2CloudControl]
|
5901
|
+
attr_accessor :cloud_control
|
5902
|
+
|
5903
|
+
# Cloud Control Deployments associated with the finding. For example,
|
5904
|
+
# organizations/123/locations/global/cloudControlDeployments/
|
5905
|
+
# deploymentIdentifier
|
5906
|
+
# Corresponds to the JSON property `cloudControlDeploymentNames`
|
5907
|
+
# @return [Array<String>]
|
5908
|
+
attr_accessor :cloud_control_deployment_names
|
5909
|
+
|
5910
|
+
# Details of Frameworks associated with the finding
|
5911
|
+
# Corresponds to the JSON property `frameworks`
|
5912
|
+
# @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Framework>]
|
5913
|
+
attr_accessor :frameworks
|
5914
|
+
|
5915
|
+
def initialize(**args)
|
5916
|
+
update!(**args)
|
5917
|
+
end
|
5918
|
+
|
5919
|
+
# Update properties of this object
|
5920
|
+
def update!(**args)
|
5921
|
+
@cloud_control = args[:cloud_control] if args.key?(:cloud_control)
|
5922
|
+
@cloud_control_deployment_names = args[:cloud_control_deployment_names] if args.key?(:cloud_control_deployment_names)
|
5923
|
+
@frameworks = args[:frameworks] if args.key?(:frameworks)
|
5924
|
+
end
|
5925
|
+
end
|
5926
|
+
|
5700
5927
|
# Contains information about the IP connection associated with the finding.
|
5701
5928
|
class GoogleCloudSecuritycenterV2Connection
|
5702
5929
|
include Google::Apis::Core::Hashable
|
@@ -5824,6 +6051,31 @@ module Google
|
|
5824
6051
|
end
|
5825
6052
|
end
|
5826
6053
|
|
6054
|
+
# Compliance control associated with the finding.
|
6055
|
+
class GoogleCloudSecuritycenterV2Control
|
6056
|
+
include Google::Apis::Core::Hashable
|
6057
|
+
|
6058
|
+
# Name of the Control
|
6059
|
+
# Corresponds to the JSON property `controlName`
|
6060
|
+
# @return [String]
|
6061
|
+
attr_accessor :control_name
|
6062
|
+
|
6063
|
+
# Display name of the control. For example, AU-02.
|
6064
|
+
# Corresponds to the JSON property `displayName`
|
6065
|
+
# @return [String]
|
6066
|
+
attr_accessor :display_name
|
6067
|
+
|
6068
|
+
def initialize(**args)
|
6069
|
+
update!(**args)
|
6070
|
+
end
|
6071
|
+
|
6072
|
+
# Update properties of this object
|
6073
|
+
def update!(**args)
|
6074
|
+
@control_name = args[:control_name] if args.key?(:control_name)
|
6075
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
6076
|
+
end
|
6077
|
+
end
|
6078
|
+
|
5827
6079
|
# CVE stands for Common Vulnerabilities and Exposures. Information from the [CVE
|
5828
6080
|
# record](https://www.cve.org/ResourcesSupport/Glossary) that describes this
|
5829
6081
|
# vulnerability.
|
@@ -6707,6 +6959,11 @@ module Google
|
|
6707
6959
|
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2CloudDlpInspection]
|
6708
6960
|
attr_accessor :cloud_dlp_inspection
|
6709
6961
|
|
6962
|
+
# Compliance Details associated with the finding.
|
6963
|
+
# Corresponds to the JSON property `complianceDetails`
|
6964
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ComplianceDetails]
|
6965
|
+
attr_accessor :compliance_details
|
6966
|
+
|
6710
6967
|
# Contains compliance information for security standards associated to the
|
6711
6968
|
# finding.
|
6712
6969
|
# Corresponds to the JSON property `compliances`
|
@@ -6740,6 +6997,12 @@ module Google
|
|
6740
6997
|
# @return [String]
|
6741
6998
|
attr_accessor :create_time
|
6742
6999
|
|
7000
|
+
# Output only. The name of the Cloud KMS key used to encrypt this finding, if
|
7001
|
+
# any.
|
7002
|
+
# Corresponds to the JSON property `cryptoKeyName`
|
7003
|
+
# @return [String]
|
7004
|
+
attr_accessor :crypto_key_name
|
7005
|
+
|
6743
7006
|
# Data access events associated with the finding.
|
6744
7007
|
# Corresponds to the JSON property `dataAccessEvents`
|
6745
7008
|
# @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2DataAccessEvent>]
|
@@ -7043,11 +7306,13 @@ module Google
|
|
7043
7306
|
@cloud_armor = args[:cloud_armor] if args.key?(:cloud_armor)
|
7044
7307
|
@cloud_dlp_data_profile = args[:cloud_dlp_data_profile] if args.key?(:cloud_dlp_data_profile)
|
7045
7308
|
@cloud_dlp_inspection = args[:cloud_dlp_inspection] if args.key?(:cloud_dlp_inspection)
|
7309
|
+
@compliance_details = args[:compliance_details] if args.key?(:compliance_details)
|
7046
7310
|
@compliances = args[:compliances] if args.key?(:compliances)
|
7047
7311
|
@connections = args[:connections] if args.key?(:connections)
|
7048
7312
|
@contacts = args[:contacts] if args.key?(:contacts)
|
7049
7313
|
@containers = args[:containers] if args.key?(:containers)
|
7050
7314
|
@create_time = args[:create_time] if args.key?(:create_time)
|
7315
|
+
@crypto_key_name = args[:crypto_key_name] if args.key?(:crypto_key_name)
|
7051
7316
|
@data_access_events = args[:data_access_events] if args.key?(:data_access_events)
|
7052
7317
|
@data_flow_events = args[:data_flow_events] if args.key?(:data_flow_events)
|
7053
7318
|
@data_retention_deletion_events = args[:data_retention_deletion_events] if args.key?(:data_retention_deletion_events)
|
@@ -7121,6 +7386,54 @@ module Google
|
|
7121
7386
|
end
|
7122
7387
|
end
|
7123
7388
|
|
7389
|
+
# Compliance framework associated with the finding.
|
7390
|
+
class GoogleCloudSecuritycenterV2Framework
|
7391
|
+
include Google::Apis::Core::Hashable
|
7392
|
+
|
7393
|
+
# Category of the framework associated with the finding. E.g. Security Benchmark,
|
7394
|
+
# or Assured Workloads
|
7395
|
+
# Corresponds to the JSON property `category`
|
7396
|
+
# @return [Array<String>]
|
7397
|
+
attr_accessor :category
|
7398
|
+
|
7399
|
+
# The controls associated with the framework.
|
7400
|
+
# Corresponds to the JSON property `controls`
|
7401
|
+
# @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Control>]
|
7402
|
+
attr_accessor :controls
|
7403
|
+
|
7404
|
+
# Display name of the framework. For a standard framework, this will look like e.
|
7405
|
+
# g. PCI DSS 3.2.1, whereas for a custom framework it can be a user defined
|
7406
|
+
# string like MyFramework
|
7407
|
+
# Corresponds to the JSON property `displayName`
|
7408
|
+
# @return [String]
|
7409
|
+
attr_accessor :display_name
|
7410
|
+
|
7411
|
+
# Name of the framework associated with the finding
|
7412
|
+
# Corresponds to the JSON property `name`
|
7413
|
+
# @return [String]
|
7414
|
+
attr_accessor :name
|
7415
|
+
|
7416
|
+
# Type of the framework associated with the finding, to specify whether the
|
7417
|
+
# framework is built-in (pre-defined and immutable) or a custom framework
|
7418
|
+
# defined by the customer (equivalent to security posture)
|
7419
|
+
# Corresponds to the JSON property `type`
|
7420
|
+
# @return [String]
|
7421
|
+
attr_accessor :type
|
7422
|
+
|
7423
|
+
def initialize(**args)
|
7424
|
+
update!(**args)
|
7425
|
+
end
|
7426
|
+
|
7427
|
+
# Update properties of this object
|
7428
|
+
def update!(**args)
|
7429
|
+
@category = args[:category] if args.key?(:category)
|
7430
|
+
@controls = args[:controls] if args.key?(:controls)
|
7431
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
7432
|
+
@name = args[:name] if args.key?(:name)
|
7433
|
+
@type = args[:type] if args.key?(:type)
|
7434
|
+
end
|
7435
|
+
end
|
7436
|
+
|
7124
7437
|
# Represents a geographical location for a given access.
|
7125
7438
|
class GoogleCloudSecuritycenterV2Geolocation
|
7126
7439
|
include Google::Apis::Core::Hashable
|
@@ -8142,6 +8455,13 @@ module Google
|
|
8142
8455
|
# @return [String]
|
8143
8456
|
attr_accessor :create_time
|
8144
8457
|
|
8458
|
+
# Output only. The resource name of the Cloud KMS `CryptoKey` used to encrypt
|
8459
|
+
# this configuration data, if CMEK was enabled during Security Command Center
|
8460
|
+
# activation.
|
8461
|
+
# Corresponds to the JSON property `cryptoKeyName`
|
8462
|
+
# @return [String]
|
8463
|
+
attr_accessor :crypto_key_name
|
8464
|
+
|
8145
8465
|
# A description of the mute config.
|
8146
8466
|
# Corresponds to the JSON property `description`
|
8147
8467
|
# @return [String]
|
@@ -8205,6 +8525,7 @@ module Google
|
|
8205
8525
|
# Update properties of this object
|
8206
8526
|
def update!(**args)
|
8207
8527
|
@create_time = args[:create_time] if args.key?(:create_time)
|
8528
|
+
@crypto_key_name = args[:crypto_key_name] if args.key?(:crypto_key_name)
|
8208
8529
|
@description = args[:description] if args.key?(:description)
|
8209
8530
|
@expiry_time = args[:expiry_time] if args.key?(:expiry_time)
|
8210
8531
|
@filter = args[:filter] if args.key?(:filter)
|
@@ -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.106.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250808"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -226,6 +226,12 @@ module Google
|
|
226
226
|
include Google::Apis::Core::JsonObjectSupport
|
227
227
|
end
|
228
228
|
|
229
|
+
class CloudControl
|
230
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
|
+
|
232
|
+
include Google::Apis::Core::JsonObjectSupport
|
233
|
+
end
|
234
|
+
|
229
235
|
class CloudDlpDataProfile
|
230
236
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
237
|
|
@@ -250,6 +256,12 @@ module Google
|
|
250
256
|
include Google::Apis::Core::JsonObjectSupport
|
251
257
|
end
|
252
258
|
|
259
|
+
class ComplianceDetails
|
260
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
|
+
|
262
|
+
include Google::Apis::Core::JsonObjectSupport
|
263
|
+
end
|
264
|
+
|
253
265
|
class Connection
|
254
266
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
255
267
|
|
@@ -274,6 +286,12 @@ module Google
|
|
274
286
|
include Google::Apis::Core::JsonObjectSupport
|
275
287
|
end
|
276
288
|
|
289
|
+
class Control
|
290
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
|
+
|
292
|
+
include Google::Apis::Core::JsonObjectSupport
|
293
|
+
end
|
294
|
+
|
277
295
|
class CreateResourceValueConfigRequest
|
278
296
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
279
297
|
|
@@ -448,6 +466,12 @@ module Google
|
|
448
466
|
include Google::Apis::Core::JsonObjectSupport
|
449
467
|
end
|
450
468
|
|
469
|
+
class Framework
|
470
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
471
|
+
|
472
|
+
include Google::Apis::Core::JsonObjectSupport
|
473
|
+
end
|
474
|
+
|
451
475
|
class GcpMetadata
|
452
476
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
453
477
|
|
@@ -754,6 +778,12 @@ module Google
|
|
754
778
|
include Google::Apis::Core::JsonObjectSupport
|
755
779
|
end
|
756
780
|
|
781
|
+
class GoogleCloudSecuritycenterV2CloudControl
|
782
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
783
|
+
|
784
|
+
include Google::Apis::Core::JsonObjectSupport
|
785
|
+
end
|
786
|
+
|
757
787
|
class GoogleCloudSecuritycenterV2CloudDlpDataProfile
|
758
788
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
759
789
|
|
@@ -778,6 +808,12 @@ module Google
|
|
778
808
|
include Google::Apis::Core::JsonObjectSupport
|
779
809
|
end
|
780
810
|
|
811
|
+
class GoogleCloudSecuritycenterV2ComplianceDetails
|
812
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
813
|
+
|
814
|
+
include Google::Apis::Core::JsonObjectSupport
|
815
|
+
end
|
816
|
+
|
781
817
|
class GoogleCloudSecuritycenterV2Connection
|
782
818
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
783
819
|
|
@@ -802,6 +838,12 @@ module Google
|
|
802
838
|
include Google::Apis::Core::JsonObjectSupport
|
803
839
|
end
|
804
840
|
|
841
|
+
class GoogleCloudSecuritycenterV2Control
|
842
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
843
|
+
|
844
|
+
include Google::Apis::Core::JsonObjectSupport
|
845
|
+
end
|
846
|
+
|
805
847
|
class GoogleCloudSecuritycenterV2Cve
|
806
848
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
807
849
|
|
@@ -928,6 +970,12 @@ module Google
|
|
928
970
|
include Google::Apis::Core::JsonObjectSupport
|
929
971
|
end
|
930
972
|
|
973
|
+
class GoogleCloudSecuritycenterV2Framework
|
974
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
975
|
+
|
976
|
+
include Google::Apis::Core::JsonObjectSupport
|
977
|
+
end
|
978
|
+
|
931
979
|
class GoogleCloudSecuritycenterV2Geolocation
|
932
980
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
933
981
|
|
@@ -2242,6 +2290,16 @@ module Google
|
|
2242
2290
|
end
|
2243
2291
|
end
|
2244
2292
|
|
2293
|
+
class CloudControl
|
2294
|
+
# @private
|
2295
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2296
|
+
property :cloud_control_name, as: 'cloudControlName'
|
2297
|
+
property :policy_type, as: 'policyType'
|
2298
|
+
property :type, as: 'type'
|
2299
|
+
property :version, as: 'version'
|
2300
|
+
end
|
2301
|
+
end
|
2302
|
+
|
2245
2303
|
class CloudDlpDataProfile
|
2246
2304
|
# @private
|
2247
2305
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2279,6 +2337,17 @@ module Google
|
|
2279
2337
|
end
|
2280
2338
|
end
|
2281
2339
|
|
2340
|
+
class ComplianceDetails
|
2341
|
+
# @private
|
2342
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2343
|
+
property :cloud_control, as: 'cloudControl', class: Google::Apis::SecuritycenterV1::CloudControl, decorator: Google::Apis::SecuritycenterV1::CloudControl::Representation
|
2344
|
+
|
2345
|
+
collection :cloud_control_deployment_names, as: 'cloudControlDeploymentNames'
|
2346
|
+
collection :frameworks, as: 'frameworks', class: Google::Apis::SecuritycenterV1::Framework, decorator: Google::Apis::SecuritycenterV1::Framework::Representation
|
2347
|
+
|
2348
|
+
end
|
2349
|
+
end
|
2350
|
+
|
2282
2351
|
class Connection
|
2283
2352
|
# @private
|
2284
2353
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2317,6 +2386,14 @@ module Google
|
|
2317
2386
|
end
|
2318
2387
|
end
|
2319
2388
|
|
2389
|
+
class Control
|
2390
|
+
# @private
|
2391
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2392
|
+
property :control_name, as: 'controlName'
|
2393
|
+
property :display_name, as: 'displayName'
|
2394
|
+
end
|
2395
|
+
end
|
2396
|
+
|
2320
2397
|
class CreateResourceValueConfigRequest
|
2321
2398
|
# @private
|
2322
2399
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2614,6 +2691,8 @@ module Google
|
|
2614
2691
|
|
2615
2692
|
property :cloud_dlp_inspection, as: 'cloudDlpInspection', class: Google::Apis::SecuritycenterV1::CloudDlpInspection, decorator: Google::Apis::SecuritycenterV1::CloudDlpInspection::Representation
|
2616
2693
|
|
2694
|
+
property :compliance_details, as: 'complianceDetails', class: Google::Apis::SecuritycenterV1::ComplianceDetails, decorator: Google::Apis::SecuritycenterV1::ComplianceDetails::Representation
|
2695
|
+
|
2617
2696
|
collection :compliances, as: 'compliances', class: Google::Apis::SecuritycenterV1::Compliance, decorator: Google::Apis::SecuritycenterV1::Compliance::Representation
|
2618
2697
|
|
2619
2698
|
collection :connections, as: 'connections', class: Google::Apis::SecuritycenterV1::Connection, decorator: Google::Apis::SecuritycenterV1::Connection::Representation
|
@@ -2706,6 +2785,18 @@ module Google
|
|
2706
2785
|
end
|
2707
2786
|
end
|
2708
2787
|
|
2788
|
+
class Framework
|
2789
|
+
# @private
|
2790
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2791
|
+
collection :category, as: 'category'
|
2792
|
+
collection :controls, as: 'controls', class: Google::Apis::SecuritycenterV1::Control, decorator: Google::Apis::SecuritycenterV1::Control::Representation
|
2793
|
+
|
2794
|
+
property :display_name, as: 'displayName'
|
2795
|
+
property :name, as: 'name'
|
2796
|
+
property :type, as: 'type'
|
2797
|
+
end
|
2798
|
+
end
|
2799
|
+
|
2709
2800
|
class GcpMetadata
|
2710
2801
|
# @private
|
2711
2802
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3219,6 +3310,7 @@ module Google
|
|
3219
3310
|
# @private
|
3220
3311
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3221
3312
|
property :create_time, as: 'createTime'
|
3313
|
+
property :crypto_key_name, as: 'cryptoKeyName'
|
3222
3314
|
property :dataset, as: 'dataset'
|
3223
3315
|
property :description, as: 'description'
|
3224
3316
|
property :filter, as: 'filter'
|
@@ -3270,6 +3362,16 @@ module Google
|
|
3270
3362
|
end
|
3271
3363
|
end
|
3272
3364
|
|
3365
|
+
class GoogleCloudSecuritycenterV2CloudControl
|
3366
|
+
# @private
|
3367
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3368
|
+
property :cloud_control_name, as: 'cloudControlName'
|
3369
|
+
property :policy_type, as: 'policyType'
|
3370
|
+
property :type, as: 'type'
|
3371
|
+
property :version, as: 'version'
|
3372
|
+
end
|
3373
|
+
end
|
3374
|
+
|
3273
3375
|
class GoogleCloudSecuritycenterV2CloudDlpDataProfile
|
3274
3376
|
# @private
|
3275
3377
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3307,6 +3409,17 @@ module Google
|
|
3307
3409
|
end
|
3308
3410
|
end
|
3309
3411
|
|
3412
|
+
class GoogleCloudSecuritycenterV2ComplianceDetails
|
3413
|
+
# @private
|
3414
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3415
|
+
property :cloud_control, as: 'cloudControl', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2CloudControl, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2CloudControl::Representation
|
3416
|
+
|
3417
|
+
collection :cloud_control_deployment_names, as: 'cloudControlDeploymentNames'
|
3418
|
+
collection :frameworks, as: 'frameworks', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Framework, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Framework::Representation
|
3419
|
+
|
3420
|
+
end
|
3421
|
+
end
|
3422
|
+
|
3310
3423
|
class GoogleCloudSecuritycenterV2Connection
|
3311
3424
|
# @private
|
3312
3425
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3345,6 +3458,14 @@ module Google
|
|
3345
3458
|
end
|
3346
3459
|
end
|
3347
3460
|
|
3461
|
+
class GoogleCloudSecuritycenterV2Control
|
3462
|
+
# @private
|
3463
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3464
|
+
property :control_name, as: 'controlName'
|
3465
|
+
property :display_name, as: 'displayName'
|
3466
|
+
end
|
3467
|
+
end
|
3468
|
+
|
3348
3469
|
class GoogleCloudSecuritycenterV2Cve
|
3349
3470
|
# @private
|
3350
3471
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3571,6 +3692,8 @@ module Google
|
|
3571
3692
|
|
3572
3693
|
property :cloud_dlp_inspection, as: 'cloudDlpInspection', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2CloudDlpInspection, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2CloudDlpInspection::Representation
|
3573
3694
|
|
3695
|
+
property :compliance_details, as: 'complianceDetails', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ComplianceDetails, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ComplianceDetails::Representation
|
3696
|
+
|
3574
3697
|
collection :compliances, as: 'compliances', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Compliance, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Compliance::Representation
|
3575
3698
|
|
3576
3699
|
collection :connections, as: 'connections', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Connection, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Connection::Representation
|
@@ -3580,6 +3703,7 @@ module Google
|
|
3580
3703
|
collection :containers, as: 'containers', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Container, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Container::Representation
|
3581
3704
|
|
3582
3705
|
property :create_time, as: 'createTime'
|
3706
|
+
property :crypto_key_name, as: 'cryptoKeyName'
|
3583
3707
|
collection :data_access_events, as: 'dataAccessEvents', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2DataAccessEvent, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2DataAccessEvent::Representation
|
3584
3708
|
|
3585
3709
|
collection :data_flow_events, as: 'dataFlowEvents', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2DataFlowEvent, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2DataFlowEvent::Representation
|
@@ -3663,6 +3787,18 @@ module Google
|
|
3663
3787
|
end
|
3664
3788
|
end
|
3665
3789
|
|
3790
|
+
class GoogleCloudSecuritycenterV2Framework
|
3791
|
+
# @private
|
3792
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3793
|
+
collection :category, as: 'category'
|
3794
|
+
collection :controls, as: 'controls', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Control, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Control::Representation
|
3795
|
+
|
3796
|
+
property :display_name, as: 'displayName'
|
3797
|
+
property :name, as: 'name'
|
3798
|
+
property :type, as: 'type'
|
3799
|
+
end
|
3800
|
+
end
|
3801
|
+
|
3666
3802
|
class GoogleCloudSecuritycenterV2Geolocation
|
3667
3803
|
# @private
|
3668
3804
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3965,6 +4101,7 @@ module Google
|
|
3965
4101
|
# @private
|
3966
4102
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3967
4103
|
property :create_time, as: 'createTime'
|
4104
|
+
property :crypto_key_name, as: 'cryptoKeyName'
|
3968
4105
|
property :description, as: 'description'
|
3969
4106
|
property :expiry_time, as: 'expiryTime'
|
3970
4107
|
property :filter, as: 'filter'
|
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.106.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.106.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:
|