google-apis-securitycenter_v1beta1 0.94.0 → 0.96.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: 670e55bc88555663dcce085b76a7a61289a6c965390fcbdc2f2cec7686ee0650
|
4
|
+
data.tar.gz: ba92f8efa8ec500f11e2830b3f127c97800da8072de0889edfc58c52923a6729
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5bfde35a5b32e89eaf53c27199651fc52c5377f556fd77b537b5e3fcff31eebb14d5a2c324e55b0a65a2b3befb48e51177dc792f8ef92e023180d64559a7c9f2
|
7
|
+
data.tar.gz: ab3dad8ef508e9c41269ed74714e9f72e3f114e77a3a17e28dbd39adf7f17c3accc7d48811d0a37fc34608a1f098c21dd8a55ad668d4f6158d47b3b844cd4e38
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-securitycenter_v1beta1
|
2
2
|
|
3
|
+
### v0.96.0 (2025-08-24)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250815
|
6
|
+
|
7
|
+
### v0.95.0 (2025-07-27)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250721
|
10
|
+
|
3
11
|
### v0.94.0 (2025-07-13)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250707
|
@@ -949,7 +949,7 @@ module Google
|
|
949
949
|
end
|
950
950
|
end
|
951
951
|
|
952
|
-
# The destination
|
952
|
+
# The destination BigQuery dataset to export findings to.
|
953
953
|
class BigQueryDestination
|
954
954
|
include Google::Apis::Core::Hashable
|
955
955
|
|
@@ -1162,6 +1162,43 @@ module Google
|
|
1162
1162
|
end
|
1163
1163
|
end
|
1164
1164
|
|
1165
|
+
# CloudControl associated with the finding.
|
1166
|
+
class CloudControl
|
1167
|
+
include Google::Apis::Core::Hashable
|
1168
|
+
|
1169
|
+
# Name of the CloudControl associated with the finding.
|
1170
|
+
# Corresponds to the JSON property `cloudControlName`
|
1171
|
+
# @return [String]
|
1172
|
+
attr_accessor :cloud_control_name
|
1173
|
+
|
1174
|
+
# Policy type of the CloudControl
|
1175
|
+
# Corresponds to the JSON property `policyType`
|
1176
|
+
# @return [String]
|
1177
|
+
attr_accessor :policy_type
|
1178
|
+
|
1179
|
+
# Type of cloud control.
|
1180
|
+
# Corresponds to the JSON property `type`
|
1181
|
+
# @return [String]
|
1182
|
+
attr_accessor :type
|
1183
|
+
|
1184
|
+
# Version of the Cloud Control
|
1185
|
+
# Corresponds to the JSON property `version`
|
1186
|
+
# @return [Fixnum]
|
1187
|
+
attr_accessor :version
|
1188
|
+
|
1189
|
+
def initialize(**args)
|
1190
|
+
update!(**args)
|
1191
|
+
end
|
1192
|
+
|
1193
|
+
# Update properties of this object
|
1194
|
+
def update!(**args)
|
1195
|
+
@cloud_control_name = args[:cloud_control_name] if args.key?(:cloud_control_name)
|
1196
|
+
@policy_type = args[:policy_type] if args.key?(:policy_type)
|
1197
|
+
@type = args[:type] if args.key?(:type)
|
1198
|
+
@version = args[:version] if args.key?(:version)
|
1199
|
+
end
|
1200
|
+
end
|
1201
|
+
|
1165
1202
|
# The [data profile](https://cloud.google.com/dlp/docs/data-profiles) associated
|
1166
1203
|
# with the finding.
|
1167
1204
|
class CloudDlpDataProfile
|
@@ -1305,6 +1342,39 @@ module Google
|
|
1305
1342
|
end
|
1306
1343
|
end
|
1307
1344
|
|
1345
|
+
# Compliance Details associated with the finding.
|
1346
|
+
class ComplianceDetails
|
1347
|
+
include Google::Apis::Core::Hashable
|
1348
|
+
|
1349
|
+
# CloudControl associated with the finding.
|
1350
|
+
# Corresponds to the JSON property `cloudControl`
|
1351
|
+
# @return [Google::Apis::SecuritycenterV1beta1::CloudControl]
|
1352
|
+
attr_accessor :cloud_control
|
1353
|
+
|
1354
|
+
# Cloud Control Deployments associated with the finding. For example,
|
1355
|
+
# organizations/123/locations/global/cloudControlDeployments/
|
1356
|
+
# deploymentIdentifier
|
1357
|
+
# Corresponds to the JSON property `cloudControlDeploymentNames`
|
1358
|
+
# @return [Array<String>]
|
1359
|
+
attr_accessor :cloud_control_deployment_names
|
1360
|
+
|
1361
|
+
# Details of Frameworks associated with the finding
|
1362
|
+
# Corresponds to the JSON property `frameworks`
|
1363
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::Framework>]
|
1364
|
+
attr_accessor :frameworks
|
1365
|
+
|
1366
|
+
def initialize(**args)
|
1367
|
+
update!(**args)
|
1368
|
+
end
|
1369
|
+
|
1370
|
+
# Update properties of this object
|
1371
|
+
def update!(**args)
|
1372
|
+
@cloud_control = args[:cloud_control] if args.key?(:cloud_control)
|
1373
|
+
@cloud_control_deployment_names = args[:cloud_control_deployment_names] if args.key?(:cloud_control_deployment_names)
|
1374
|
+
@frameworks = args[:frameworks] if args.key?(:frameworks)
|
1375
|
+
end
|
1376
|
+
end
|
1377
|
+
|
1308
1378
|
# Contains information about the IP connection associated with the finding.
|
1309
1379
|
class Connection
|
1310
1380
|
include Google::Apis::Core::Hashable
|
@@ -1432,6 +1502,31 @@ module Google
|
|
1432
1502
|
end
|
1433
1503
|
end
|
1434
1504
|
|
1505
|
+
# Compliance control associated with the finding.
|
1506
|
+
class Control
|
1507
|
+
include Google::Apis::Core::Hashable
|
1508
|
+
|
1509
|
+
# Name of the Control
|
1510
|
+
# Corresponds to the JSON property `controlName`
|
1511
|
+
# @return [String]
|
1512
|
+
attr_accessor :control_name
|
1513
|
+
|
1514
|
+
# Display name of the control. For example, AU-02.
|
1515
|
+
# Corresponds to the JSON property `displayName`
|
1516
|
+
# @return [String]
|
1517
|
+
attr_accessor :display_name
|
1518
|
+
|
1519
|
+
def initialize(**args)
|
1520
|
+
update!(**args)
|
1521
|
+
end
|
1522
|
+
|
1523
|
+
# Update properties of this object
|
1524
|
+
def update!(**args)
|
1525
|
+
@control_name = args[:control_name] if args.key?(:control_name)
|
1526
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
1527
|
+
end
|
1528
|
+
end
|
1529
|
+
|
1435
1530
|
# CVE stands for Common Vulnerabilities and Exposures. Information from the [CVE
|
1436
1531
|
# record](https://www.cve.org/ResourcesSupport/Glossary) that describes this
|
1437
1532
|
# vulnerability.
|
@@ -2079,7 +2174,7 @@ module Google
|
|
2079
2174
|
class ExportFindingsMetadata
|
2080
2175
|
include Google::Apis::Core::Hashable
|
2081
2176
|
|
2082
|
-
# The destination
|
2177
|
+
# The destination BigQuery dataset to export findings to.
|
2083
2178
|
# Corresponds to the JSON property `bigQueryDestination`
|
2084
2179
|
# @return [Google::Apis::SecuritycenterV1beta1::BigQueryDestination]
|
2085
2180
|
attr_accessor :big_query_destination
|
@@ -2330,6 +2425,11 @@ module Google
|
|
2330
2425
|
# @return [Google::Apis::SecuritycenterV1beta1::CloudDlpInspection]
|
2331
2426
|
attr_accessor :cloud_dlp_inspection
|
2332
2427
|
|
2428
|
+
# Compliance Details associated with the finding.
|
2429
|
+
# Corresponds to the JSON property `complianceDetails`
|
2430
|
+
# @return [Google::Apis::SecuritycenterV1beta1::ComplianceDetails]
|
2431
|
+
attr_accessor :compliance_details
|
2432
|
+
|
2333
2433
|
# Contains compliance information for security standards associated to the
|
2334
2434
|
# finding.
|
2335
2435
|
# Corresponds to the JSON property `compliances`
|
@@ -2656,6 +2756,7 @@ module Google
|
|
2656
2756
|
@cloud_armor = args[:cloud_armor] if args.key?(:cloud_armor)
|
2657
2757
|
@cloud_dlp_data_profile = args[:cloud_dlp_data_profile] if args.key?(:cloud_dlp_data_profile)
|
2658
2758
|
@cloud_dlp_inspection = args[:cloud_dlp_inspection] if args.key?(:cloud_dlp_inspection)
|
2759
|
+
@compliance_details = args[:compliance_details] if args.key?(:compliance_details)
|
2659
2760
|
@compliances = args[:compliances] if args.key?(:compliances)
|
2660
2761
|
@connections = args[:connections] if args.key?(:connections)
|
2661
2762
|
@contacts = args[:contacts] if args.key?(:contacts)
|
@@ -2734,6 +2835,54 @@ module Google
|
|
2734
2835
|
end
|
2735
2836
|
end
|
2736
2837
|
|
2838
|
+
# Compliance framework associated with the finding.
|
2839
|
+
class Framework
|
2840
|
+
include Google::Apis::Core::Hashable
|
2841
|
+
|
2842
|
+
# Category of the framework associated with the finding. E.g. Security Benchmark,
|
2843
|
+
# or Assured Workloads
|
2844
|
+
# Corresponds to the JSON property `category`
|
2845
|
+
# @return [Array<String>]
|
2846
|
+
attr_accessor :category
|
2847
|
+
|
2848
|
+
# The controls associated with the framework.
|
2849
|
+
# Corresponds to the JSON property `controls`
|
2850
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::Control>]
|
2851
|
+
attr_accessor :controls
|
2852
|
+
|
2853
|
+
# Display name of the framework. For a standard framework, this will look like e.
|
2854
|
+
# g. PCI DSS 3.2.1, whereas for a custom framework it can be a user defined
|
2855
|
+
# string like MyFramework
|
2856
|
+
# Corresponds to the JSON property `displayName`
|
2857
|
+
# @return [String]
|
2858
|
+
attr_accessor :display_name
|
2859
|
+
|
2860
|
+
# Name of the framework associated with the finding
|
2861
|
+
# Corresponds to the JSON property `name`
|
2862
|
+
# @return [String]
|
2863
|
+
attr_accessor :name
|
2864
|
+
|
2865
|
+
# Type of the framework associated with the finding, to specify whether the
|
2866
|
+
# framework is built-in (pre-defined and immutable) or a custom framework
|
2867
|
+
# defined by the customer (equivalent to security posture)
|
2868
|
+
# Corresponds to the JSON property `type`
|
2869
|
+
# @return [String]
|
2870
|
+
attr_accessor :type
|
2871
|
+
|
2872
|
+
def initialize(**args)
|
2873
|
+
update!(**args)
|
2874
|
+
end
|
2875
|
+
|
2876
|
+
# Update properties of this object
|
2877
|
+
def update!(**args)
|
2878
|
+
@category = args[:category] if args.key?(:category)
|
2879
|
+
@controls = args[:controls] if args.key?(:controls)
|
2880
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
2881
|
+
@name = args[:name] if args.key?(:name)
|
2882
|
+
@type = args[:type] if args.key?(:type)
|
2883
|
+
end
|
2884
|
+
end
|
2885
|
+
|
2737
2886
|
# Google Cloud metadata associated with the resource. Only applicable if the
|
2738
2887
|
# finding's cloud provider is Google Cloud.
|
2739
2888
|
class GcpMetadata
|
@@ -5000,6 +5149,13 @@ module Google
|
|
5000
5149
|
# @return [String]
|
5001
5150
|
attr_accessor :create_time
|
5002
5151
|
|
5152
|
+
# Output only. The resource name of the Cloud KMS `CryptoKey` used to protect
|
5153
|
+
# this configuration's data, if configured during Security Command Center
|
5154
|
+
# activation.
|
5155
|
+
# Corresponds to the JSON property `cryptoKeyName`
|
5156
|
+
# @return [String]
|
5157
|
+
attr_accessor :crypto_key_name
|
5158
|
+
|
5003
5159
|
# The dataset to write findings' updates to. Its format is "projects/[project_id]
|
5004
5160
|
# /datasets/[bigquery_dataset_id]". BigQuery dataset unique ID must contain only
|
5005
5161
|
# letters (a-z, A-Z), numbers (0-9), or underscores (_).
|
@@ -5064,6 +5220,7 @@ module Google
|
|
5064
5220
|
# Update properties of this object
|
5065
5221
|
def update!(**args)
|
5066
5222
|
@create_time = args[:create_time] if args.key?(:create_time)
|
5223
|
+
@crypto_key_name = args[:crypto_key_name] if args.key?(:crypto_key_name)
|
5067
5224
|
@dataset = args[:dataset] if args.key?(:dataset)
|
5068
5225
|
@description = args[:description] if args.key?(:description)
|
5069
5226
|
@filter = args[:filter] if args.key?(:filter)
|
@@ -5204,6 +5361,43 @@ module Google
|
|
5204
5361
|
end
|
5205
5362
|
end
|
5206
5363
|
|
5364
|
+
# CloudControl associated with the finding.
|
5365
|
+
class GoogleCloudSecuritycenterV2CloudControl
|
5366
|
+
include Google::Apis::Core::Hashable
|
5367
|
+
|
5368
|
+
# Name of the CloudControl associated with the finding.
|
5369
|
+
# Corresponds to the JSON property `cloudControlName`
|
5370
|
+
# @return [String]
|
5371
|
+
attr_accessor :cloud_control_name
|
5372
|
+
|
5373
|
+
# Policy type of the CloudControl
|
5374
|
+
# Corresponds to the JSON property `policyType`
|
5375
|
+
# @return [String]
|
5376
|
+
attr_accessor :policy_type
|
5377
|
+
|
5378
|
+
# Type of cloud control.
|
5379
|
+
# Corresponds to the JSON property `type`
|
5380
|
+
# @return [String]
|
5381
|
+
attr_accessor :type
|
5382
|
+
|
5383
|
+
# Version of the Cloud Control
|
5384
|
+
# Corresponds to the JSON property `version`
|
5385
|
+
# @return [Fixnum]
|
5386
|
+
attr_accessor :version
|
5387
|
+
|
5388
|
+
def initialize(**args)
|
5389
|
+
update!(**args)
|
5390
|
+
end
|
5391
|
+
|
5392
|
+
# Update properties of this object
|
5393
|
+
def update!(**args)
|
5394
|
+
@cloud_control_name = args[:cloud_control_name] if args.key?(:cloud_control_name)
|
5395
|
+
@policy_type = args[:policy_type] if args.key?(:policy_type)
|
5396
|
+
@type = args[:type] if args.key?(:type)
|
5397
|
+
@version = args[:version] if args.key?(:version)
|
5398
|
+
end
|
5399
|
+
end
|
5400
|
+
|
5207
5401
|
# The [data profile](https://cloud.google.com/dlp/docs/data-profiles) associated
|
5208
5402
|
# with the finding.
|
5209
5403
|
class GoogleCloudSecuritycenterV2CloudDlpDataProfile
|
@@ -5347,6 +5541,39 @@ module Google
|
|
5347
5541
|
end
|
5348
5542
|
end
|
5349
5543
|
|
5544
|
+
# Compliance Details associated with the finding.
|
5545
|
+
class GoogleCloudSecuritycenterV2ComplianceDetails
|
5546
|
+
include Google::Apis::Core::Hashable
|
5547
|
+
|
5548
|
+
# CloudControl associated with the finding.
|
5549
|
+
# Corresponds to the JSON property `cloudControl`
|
5550
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2CloudControl]
|
5551
|
+
attr_accessor :cloud_control
|
5552
|
+
|
5553
|
+
# Cloud Control Deployments associated with the finding. For example,
|
5554
|
+
# organizations/123/locations/global/cloudControlDeployments/
|
5555
|
+
# deploymentIdentifier
|
5556
|
+
# Corresponds to the JSON property `cloudControlDeploymentNames`
|
5557
|
+
# @return [Array<String>]
|
5558
|
+
attr_accessor :cloud_control_deployment_names
|
5559
|
+
|
5560
|
+
# Details of Frameworks associated with the finding
|
5561
|
+
# Corresponds to the JSON property `frameworks`
|
5562
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Framework>]
|
5563
|
+
attr_accessor :frameworks
|
5564
|
+
|
5565
|
+
def initialize(**args)
|
5566
|
+
update!(**args)
|
5567
|
+
end
|
5568
|
+
|
5569
|
+
# Update properties of this object
|
5570
|
+
def update!(**args)
|
5571
|
+
@cloud_control = args[:cloud_control] if args.key?(:cloud_control)
|
5572
|
+
@cloud_control_deployment_names = args[:cloud_control_deployment_names] if args.key?(:cloud_control_deployment_names)
|
5573
|
+
@frameworks = args[:frameworks] if args.key?(:frameworks)
|
5574
|
+
end
|
5575
|
+
end
|
5576
|
+
|
5350
5577
|
# Contains information about the IP connection associated with the finding.
|
5351
5578
|
class GoogleCloudSecuritycenterV2Connection
|
5352
5579
|
include Google::Apis::Core::Hashable
|
@@ -5474,6 +5701,31 @@ module Google
|
|
5474
5701
|
end
|
5475
5702
|
end
|
5476
5703
|
|
5704
|
+
# Compliance control associated with the finding.
|
5705
|
+
class GoogleCloudSecuritycenterV2Control
|
5706
|
+
include Google::Apis::Core::Hashable
|
5707
|
+
|
5708
|
+
# Name of the Control
|
5709
|
+
# Corresponds to the JSON property `controlName`
|
5710
|
+
# @return [String]
|
5711
|
+
attr_accessor :control_name
|
5712
|
+
|
5713
|
+
# Display name of the control. For example, AU-02.
|
5714
|
+
# Corresponds to the JSON property `displayName`
|
5715
|
+
# @return [String]
|
5716
|
+
attr_accessor :display_name
|
5717
|
+
|
5718
|
+
def initialize(**args)
|
5719
|
+
update!(**args)
|
5720
|
+
end
|
5721
|
+
|
5722
|
+
# Update properties of this object
|
5723
|
+
def update!(**args)
|
5724
|
+
@control_name = args[:control_name] if args.key?(:control_name)
|
5725
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
5726
|
+
end
|
5727
|
+
end
|
5728
|
+
|
5477
5729
|
# CVE stands for Common Vulnerabilities and Exposures. Information from the [CVE
|
5478
5730
|
# record](https://www.cve.org/ResourcesSupport/Glossary) that describes this
|
5479
5731
|
# vulnerability.
|
@@ -6357,6 +6609,11 @@ module Google
|
|
6357
6609
|
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2CloudDlpInspection]
|
6358
6610
|
attr_accessor :cloud_dlp_inspection
|
6359
6611
|
|
6612
|
+
# Compliance Details associated with the finding.
|
6613
|
+
# Corresponds to the JSON property `complianceDetails`
|
6614
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ComplianceDetails]
|
6615
|
+
attr_accessor :compliance_details
|
6616
|
+
|
6360
6617
|
# Contains compliance information for security standards associated to the
|
6361
6618
|
# finding.
|
6362
6619
|
# Corresponds to the JSON property `compliances`
|
@@ -6390,6 +6647,12 @@ module Google
|
|
6390
6647
|
# @return [String]
|
6391
6648
|
attr_accessor :create_time
|
6392
6649
|
|
6650
|
+
# Output only. The name of the Cloud KMS key used to encrypt this finding, if
|
6651
|
+
# any.
|
6652
|
+
# Corresponds to the JSON property `cryptoKeyName`
|
6653
|
+
# @return [String]
|
6654
|
+
attr_accessor :crypto_key_name
|
6655
|
+
|
6393
6656
|
# Data access events associated with the finding.
|
6394
6657
|
# Corresponds to the JSON property `dataAccessEvents`
|
6395
6658
|
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2DataAccessEvent>]
|
@@ -6693,11 +6956,13 @@ module Google
|
|
6693
6956
|
@cloud_armor = args[:cloud_armor] if args.key?(:cloud_armor)
|
6694
6957
|
@cloud_dlp_data_profile = args[:cloud_dlp_data_profile] if args.key?(:cloud_dlp_data_profile)
|
6695
6958
|
@cloud_dlp_inspection = args[:cloud_dlp_inspection] if args.key?(:cloud_dlp_inspection)
|
6959
|
+
@compliance_details = args[:compliance_details] if args.key?(:compliance_details)
|
6696
6960
|
@compliances = args[:compliances] if args.key?(:compliances)
|
6697
6961
|
@connections = args[:connections] if args.key?(:connections)
|
6698
6962
|
@contacts = args[:contacts] if args.key?(:contacts)
|
6699
6963
|
@containers = args[:containers] if args.key?(:containers)
|
6700
6964
|
@create_time = args[:create_time] if args.key?(:create_time)
|
6965
|
+
@crypto_key_name = args[:crypto_key_name] if args.key?(:crypto_key_name)
|
6701
6966
|
@data_access_events = args[:data_access_events] if args.key?(:data_access_events)
|
6702
6967
|
@data_flow_events = args[:data_flow_events] if args.key?(:data_flow_events)
|
6703
6968
|
@data_retention_deletion_events = args[:data_retention_deletion_events] if args.key?(:data_retention_deletion_events)
|
@@ -6771,6 +7036,54 @@ module Google
|
|
6771
7036
|
end
|
6772
7037
|
end
|
6773
7038
|
|
7039
|
+
# Compliance framework associated with the finding.
|
7040
|
+
class GoogleCloudSecuritycenterV2Framework
|
7041
|
+
include Google::Apis::Core::Hashable
|
7042
|
+
|
7043
|
+
# Category of the framework associated with the finding. E.g. Security Benchmark,
|
7044
|
+
# or Assured Workloads
|
7045
|
+
# Corresponds to the JSON property `category`
|
7046
|
+
# @return [Array<String>]
|
7047
|
+
attr_accessor :category
|
7048
|
+
|
7049
|
+
# The controls associated with the framework.
|
7050
|
+
# Corresponds to the JSON property `controls`
|
7051
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Control>]
|
7052
|
+
attr_accessor :controls
|
7053
|
+
|
7054
|
+
# Display name of the framework. For a standard framework, this will look like e.
|
7055
|
+
# g. PCI DSS 3.2.1, whereas for a custom framework it can be a user defined
|
7056
|
+
# string like MyFramework
|
7057
|
+
# Corresponds to the JSON property `displayName`
|
7058
|
+
# @return [String]
|
7059
|
+
attr_accessor :display_name
|
7060
|
+
|
7061
|
+
# Name of the framework associated with the finding
|
7062
|
+
# Corresponds to the JSON property `name`
|
7063
|
+
# @return [String]
|
7064
|
+
attr_accessor :name
|
7065
|
+
|
7066
|
+
# Type of the framework associated with the finding, to specify whether the
|
7067
|
+
# framework is built-in (pre-defined and immutable) or a custom framework
|
7068
|
+
# defined by the customer (equivalent to security posture)
|
7069
|
+
# Corresponds to the JSON property `type`
|
7070
|
+
# @return [String]
|
7071
|
+
attr_accessor :type
|
7072
|
+
|
7073
|
+
def initialize(**args)
|
7074
|
+
update!(**args)
|
7075
|
+
end
|
7076
|
+
|
7077
|
+
# Update properties of this object
|
7078
|
+
def update!(**args)
|
7079
|
+
@category = args[:category] if args.key?(:category)
|
7080
|
+
@controls = args[:controls] if args.key?(:controls)
|
7081
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
7082
|
+
@name = args[:name] if args.key?(:name)
|
7083
|
+
@type = args[:type] if args.key?(:type)
|
7084
|
+
end
|
7085
|
+
end
|
7086
|
+
|
6774
7087
|
# Represents a geographical location for a given access.
|
6775
7088
|
class GoogleCloudSecuritycenterV2Geolocation
|
6776
7089
|
include Google::Apis::Core::Hashable
|
@@ -7792,6 +8105,13 @@ module Google
|
|
7792
8105
|
# @return [String]
|
7793
8106
|
attr_accessor :create_time
|
7794
8107
|
|
8108
|
+
# Output only. The resource name of the Cloud KMS `CryptoKey` used to encrypt
|
8109
|
+
# this configuration data, if CMEK was enabled during Security Command Center
|
8110
|
+
# activation.
|
8111
|
+
# Corresponds to the JSON property `cryptoKeyName`
|
8112
|
+
# @return [String]
|
8113
|
+
attr_accessor :crypto_key_name
|
8114
|
+
|
7795
8115
|
# A description of the mute config.
|
7796
8116
|
# Corresponds to the JSON property `description`
|
7797
8117
|
# @return [String]
|
@@ -7855,6 +8175,7 @@ module Google
|
|
7855
8175
|
# Update properties of this object
|
7856
8176
|
def update!(**args)
|
7857
8177
|
@create_time = args[:create_time] if args.key?(:create_time)
|
8178
|
+
@crypto_key_name = args[:crypto_key_name] if args.key?(:crypto_key_name)
|
7858
8179
|
@description = args[:description] if args.key?(:description)
|
7859
8180
|
@expiry_time = args[:expiry_time] if args.key?(:expiry_time)
|
7860
8181
|
@filter = args[:filter] if args.key?(:filter)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module SecuritycenterV1beta1
|
18
18
|
# Version of the google-apis-securitycenter_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.96.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 = "20250815"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -190,6 +190,12 @@ module Google
|
|
190
190
|
include Google::Apis::Core::JsonObjectSupport
|
191
191
|
end
|
192
192
|
|
193
|
+
class CloudControl
|
194
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
|
+
|
196
|
+
include Google::Apis::Core::JsonObjectSupport
|
197
|
+
end
|
198
|
+
|
193
199
|
class CloudDlpDataProfile
|
194
200
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
201
|
|
@@ -214,6 +220,12 @@ module Google
|
|
214
220
|
include Google::Apis::Core::JsonObjectSupport
|
215
221
|
end
|
216
222
|
|
223
|
+
class ComplianceDetails
|
224
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
225
|
+
|
226
|
+
include Google::Apis::Core::JsonObjectSupport
|
227
|
+
end
|
228
|
+
|
217
229
|
class Connection
|
218
230
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
219
231
|
|
@@ -238,6 +250,12 @@ module Google
|
|
238
250
|
include Google::Apis::Core::JsonObjectSupport
|
239
251
|
end
|
240
252
|
|
253
|
+
class Control
|
254
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
255
|
+
|
256
|
+
include Google::Apis::Core::JsonObjectSupport
|
257
|
+
end
|
258
|
+
|
241
259
|
class Cve
|
242
260
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
243
261
|
|
@@ -382,6 +400,12 @@ module Google
|
|
382
400
|
include Google::Apis::Core::JsonObjectSupport
|
383
401
|
end
|
384
402
|
|
403
|
+
class Framework
|
404
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
405
|
+
|
406
|
+
include Google::Apis::Core::JsonObjectSupport
|
407
|
+
end
|
408
|
+
|
385
409
|
class GcpMetadata
|
386
410
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
387
411
|
|
@@ -700,6 +724,12 @@ module Google
|
|
700
724
|
include Google::Apis::Core::JsonObjectSupport
|
701
725
|
end
|
702
726
|
|
727
|
+
class GoogleCloudSecuritycenterV2CloudControl
|
728
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
729
|
+
|
730
|
+
include Google::Apis::Core::JsonObjectSupport
|
731
|
+
end
|
732
|
+
|
703
733
|
class GoogleCloudSecuritycenterV2CloudDlpDataProfile
|
704
734
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
705
735
|
|
@@ -724,6 +754,12 @@ module Google
|
|
724
754
|
include Google::Apis::Core::JsonObjectSupport
|
725
755
|
end
|
726
756
|
|
757
|
+
class GoogleCloudSecuritycenterV2ComplianceDetails
|
758
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
759
|
+
|
760
|
+
include Google::Apis::Core::JsonObjectSupport
|
761
|
+
end
|
762
|
+
|
727
763
|
class GoogleCloudSecuritycenterV2Connection
|
728
764
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
729
765
|
|
@@ -748,6 +784,12 @@ module Google
|
|
748
784
|
include Google::Apis::Core::JsonObjectSupport
|
749
785
|
end
|
750
786
|
|
787
|
+
class GoogleCloudSecuritycenterV2Control
|
788
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
789
|
+
|
790
|
+
include Google::Apis::Core::JsonObjectSupport
|
791
|
+
end
|
792
|
+
|
751
793
|
class GoogleCloudSecuritycenterV2Cve
|
752
794
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
753
795
|
|
@@ -874,6 +916,12 @@ module Google
|
|
874
916
|
include Google::Apis::Core::JsonObjectSupport
|
875
917
|
end
|
876
918
|
|
919
|
+
class GoogleCloudSecuritycenterV2Framework
|
920
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
921
|
+
|
922
|
+
include Google::Apis::Core::JsonObjectSupport
|
923
|
+
end
|
924
|
+
|
877
925
|
class GoogleCloudSecuritycenterV2Geolocation
|
878
926
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
879
927
|
|
@@ -1947,6 +1995,16 @@ module Google
|
|
1947
1995
|
end
|
1948
1996
|
end
|
1949
1997
|
|
1998
|
+
class CloudControl
|
1999
|
+
# @private
|
2000
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2001
|
+
property :cloud_control_name, as: 'cloudControlName'
|
2002
|
+
property :policy_type, as: 'policyType'
|
2003
|
+
property :type, as: 'type'
|
2004
|
+
property :version, as: 'version'
|
2005
|
+
end
|
2006
|
+
end
|
2007
|
+
|
1950
2008
|
class CloudDlpDataProfile
|
1951
2009
|
# @private
|
1952
2010
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1984,6 +2042,17 @@ module Google
|
|
1984
2042
|
end
|
1985
2043
|
end
|
1986
2044
|
|
2045
|
+
class ComplianceDetails
|
2046
|
+
# @private
|
2047
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2048
|
+
property :cloud_control, as: 'cloudControl', class: Google::Apis::SecuritycenterV1beta1::CloudControl, decorator: Google::Apis::SecuritycenterV1beta1::CloudControl::Representation
|
2049
|
+
|
2050
|
+
collection :cloud_control_deployment_names, as: 'cloudControlDeploymentNames'
|
2051
|
+
collection :frameworks, as: 'frameworks', class: Google::Apis::SecuritycenterV1beta1::Framework, decorator: Google::Apis::SecuritycenterV1beta1::Framework::Representation
|
2052
|
+
|
2053
|
+
end
|
2054
|
+
end
|
2055
|
+
|
1987
2056
|
class Connection
|
1988
2057
|
# @private
|
1989
2058
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2022,6 +2091,14 @@ module Google
|
|
2022
2091
|
end
|
2023
2092
|
end
|
2024
2093
|
|
2094
|
+
class Control
|
2095
|
+
# @private
|
2096
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2097
|
+
property :control_name, as: 'controlName'
|
2098
|
+
property :display_name, as: 'displayName'
|
2099
|
+
end
|
2100
|
+
end
|
2101
|
+
|
2025
2102
|
class Cve
|
2026
2103
|
# @private
|
2027
2104
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2261,6 +2338,8 @@ module Google
|
|
2261
2338
|
|
2262
2339
|
property :cloud_dlp_inspection, as: 'cloudDlpInspection', class: Google::Apis::SecuritycenterV1beta1::CloudDlpInspection, decorator: Google::Apis::SecuritycenterV1beta1::CloudDlpInspection::Representation
|
2263
2340
|
|
2341
|
+
property :compliance_details, as: 'complianceDetails', class: Google::Apis::SecuritycenterV1beta1::ComplianceDetails, decorator: Google::Apis::SecuritycenterV1beta1::ComplianceDetails::Representation
|
2342
|
+
|
2264
2343
|
collection :compliances, as: 'compliances', class: Google::Apis::SecuritycenterV1beta1::Compliance, decorator: Google::Apis::SecuritycenterV1beta1::Compliance::Representation
|
2265
2344
|
|
2266
2345
|
collection :connections, as: 'connections', class: Google::Apis::SecuritycenterV1beta1::Connection, decorator: Google::Apis::SecuritycenterV1beta1::Connection::Representation
|
@@ -2353,6 +2432,18 @@ module Google
|
|
2353
2432
|
end
|
2354
2433
|
end
|
2355
2434
|
|
2435
|
+
class Framework
|
2436
|
+
# @private
|
2437
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2438
|
+
collection :category, as: 'category'
|
2439
|
+
collection :controls, as: 'controls', class: Google::Apis::SecuritycenterV1beta1::Control, decorator: Google::Apis::SecuritycenterV1beta1::Control::Representation
|
2440
|
+
|
2441
|
+
property :display_name, as: 'displayName'
|
2442
|
+
property :name, as: 'name'
|
2443
|
+
property :type, as: 'type'
|
2444
|
+
end
|
2445
|
+
end
|
2446
|
+
|
2356
2447
|
class GcpMetadata
|
2357
2448
|
# @private
|
2358
2449
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2891,6 +2982,7 @@ module Google
|
|
2891
2982
|
# @private
|
2892
2983
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2893
2984
|
property :create_time, as: 'createTime'
|
2985
|
+
property :crypto_key_name, as: 'cryptoKeyName'
|
2894
2986
|
property :dataset, as: 'dataset'
|
2895
2987
|
property :description, as: 'description'
|
2896
2988
|
property :filter, as: 'filter'
|
@@ -2942,6 +3034,16 @@ module Google
|
|
2942
3034
|
end
|
2943
3035
|
end
|
2944
3036
|
|
3037
|
+
class GoogleCloudSecuritycenterV2CloudControl
|
3038
|
+
# @private
|
3039
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3040
|
+
property :cloud_control_name, as: 'cloudControlName'
|
3041
|
+
property :policy_type, as: 'policyType'
|
3042
|
+
property :type, as: 'type'
|
3043
|
+
property :version, as: 'version'
|
3044
|
+
end
|
3045
|
+
end
|
3046
|
+
|
2945
3047
|
class GoogleCloudSecuritycenterV2CloudDlpDataProfile
|
2946
3048
|
# @private
|
2947
3049
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2979,6 +3081,17 @@ module Google
|
|
2979
3081
|
end
|
2980
3082
|
end
|
2981
3083
|
|
3084
|
+
class GoogleCloudSecuritycenterV2ComplianceDetails
|
3085
|
+
# @private
|
3086
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3087
|
+
property :cloud_control, as: 'cloudControl', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2CloudControl, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2CloudControl::Representation
|
3088
|
+
|
3089
|
+
collection :cloud_control_deployment_names, as: 'cloudControlDeploymentNames'
|
3090
|
+
collection :frameworks, as: 'frameworks', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Framework, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Framework::Representation
|
3091
|
+
|
3092
|
+
end
|
3093
|
+
end
|
3094
|
+
|
2982
3095
|
class GoogleCloudSecuritycenterV2Connection
|
2983
3096
|
# @private
|
2984
3097
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3017,6 +3130,14 @@ module Google
|
|
3017
3130
|
end
|
3018
3131
|
end
|
3019
3132
|
|
3133
|
+
class GoogleCloudSecuritycenterV2Control
|
3134
|
+
# @private
|
3135
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3136
|
+
property :control_name, as: 'controlName'
|
3137
|
+
property :display_name, as: 'displayName'
|
3138
|
+
end
|
3139
|
+
end
|
3140
|
+
|
3020
3141
|
class GoogleCloudSecuritycenterV2Cve
|
3021
3142
|
# @private
|
3022
3143
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3243,6 +3364,8 @@ module Google
|
|
3243
3364
|
|
3244
3365
|
property :cloud_dlp_inspection, as: 'cloudDlpInspection', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2CloudDlpInspection, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2CloudDlpInspection::Representation
|
3245
3366
|
|
3367
|
+
property :compliance_details, as: 'complianceDetails', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ComplianceDetails, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ComplianceDetails::Representation
|
3368
|
+
|
3246
3369
|
collection :compliances, as: 'compliances', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Compliance, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Compliance::Representation
|
3247
3370
|
|
3248
3371
|
collection :connections, as: 'connections', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Connection, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Connection::Representation
|
@@ -3252,6 +3375,7 @@ module Google
|
|
3252
3375
|
collection :containers, as: 'containers', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Container, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Container::Representation
|
3253
3376
|
|
3254
3377
|
property :create_time, as: 'createTime'
|
3378
|
+
property :crypto_key_name, as: 'cryptoKeyName'
|
3255
3379
|
collection :data_access_events, as: 'dataAccessEvents', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2DataAccessEvent, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2DataAccessEvent::Representation
|
3256
3380
|
|
3257
3381
|
collection :data_flow_events, as: 'dataFlowEvents', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2DataFlowEvent, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2DataFlowEvent::Representation
|
@@ -3335,6 +3459,18 @@ module Google
|
|
3335
3459
|
end
|
3336
3460
|
end
|
3337
3461
|
|
3462
|
+
class GoogleCloudSecuritycenterV2Framework
|
3463
|
+
# @private
|
3464
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3465
|
+
collection :category, as: 'category'
|
3466
|
+
collection :controls, as: 'controls', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Control, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Control::Representation
|
3467
|
+
|
3468
|
+
property :display_name, as: 'displayName'
|
3469
|
+
property :name, as: 'name'
|
3470
|
+
property :type, as: 'type'
|
3471
|
+
end
|
3472
|
+
end
|
3473
|
+
|
3338
3474
|
class GoogleCloudSecuritycenterV2Geolocation
|
3339
3475
|
# @private
|
3340
3476
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3637,6 +3773,7 @@ module Google
|
|
3637
3773
|
# @private
|
3638
3774
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3639
3775
|
property :create_time, as: 'createTime'
|
3776
|
+
property :crypto_key_name, as: 'cryptoKeyName'
|
3640
3777
|
property :description, as: 'description'
|
3641
3778
|
property :expiry_time, as: 'expiryTime'
|
3642
3779
|
property :filter, as: 'filter'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-securitycenter_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.96.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_v1beta1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.96.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|