google-apis-securitycenter_v1beta1 0.94.0 → 0.95.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: d9623ff5c4f0687e3b2b842a48e4e83df892e684fbb3a11463e03939cbb72c82
|
4
|
+
data.tar.gz: 8e8d2bc698f0d5502e75dcb8ec8fa51a5fe5a963c32cbef2625fb114a724919c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0727cecb0c45d7cfadf430eeb8ffb414a3a199131054140941e4629cfb6bdbcb3d23575269b2eb37c71c36d179762ce5859560e215015133bb7312c423c65ff6
|
7
|
+
data.tar.gz: 41c84b0cf35d3b8dac0bf5923f33c1b0d15993ab43207daa5cccc53d2839330e65f8b731e1f153c9f56750efe29535a4f702e4726111c28240b248b47a99f472
|
data/CHANGELOG.md
CHANGED
@@ -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.
|
@@ -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
|
@@ -5204,6 +5353,43 @@ module Google
|
|
5204
5353
|
end
|
5205
5354
|
end
|
5206
5355
|
|
5356
|
+
# CloudControl associated with the finding.
|
5357
|
+
class GoogleCloudSecuritycenterV2CloudControl
|
5358
|
+
include Google::Apis::Core::Hashable
|
5359
|
+
|
5360
|
+
# Name of the CloudControl associated with the finding.
|
5361
|
+
# Corresponds to the JSON property `cloudControlName`
|
5362
|
+
# @return [String]
|
5363
|
+
attr_accessor :cloud_control_name
|
5364
|
+
|
5365
|
+
# Policy type of the CloudControl
|
5366
|
+
# Corresponds to the JSON property `policyType`
|
5367
|
+
# @return [String]
|
5368
|
+
attr_accessor :policy_type
|
5369
|
+
|
5370
|
+
# Type of cloud control.
|
5371
|
+
# Corresponds to the JSON property `type`
|
5372
|
+
# @return [String]
|
5373
|
+
attr_accessor :type
|
5374
|
+
|
5375
|
+
# Version of the Cloud Control
|
5376
|
+
# Corresponds to the JSON property `version`
|
5377
|
+
# @return [Fixnum]
|
5378
|
+
attr_accessor :version
|
5379
|
+
|
5380
|
+
def initialize(**args)
|
5381
|
+
update!(**args)
|
5382
|
+
end
|
5383
|
+
|
5384
|
+
# Update properties of this object
|
5385
|
+
def update!(**args)
|
5386
|
+
@cloud_control_name = args[:cloud_control_name] if args.key?(:cloud_control_name)
|
5387
|
+
@policy_type = args[:policy_type] if args.key?(:policy_type)
|
5388
|
+
@type = args[:type] if args.key?(:type)
|
5389
|
+
@version = args[:version] if args.key?(:version)
|
5390
|
+
end
|
5391
|
+
end
|
5392
|
+
|
5207
5393
|
# The [data profile](https://cloud.google.com/dlp/docs/data-profiles) associated
|
5208
5394
|
# with the finding.
|
5209
5395
|
class GoogleCloudSecuritycenterV2CloudDlpDataProfile
|
@@ -5347,6 +5533,39 @@ module Google
|
|
5347
5533
|
end
|
5348
5534
|
end
|
5349
5535
|
|
5536
|
+
# Compliance Details associated with the finding.
|
5537
|
+
class GoogleCloudSecuritycenterV2ComplianceDetails
|
5538
|
+
include Google::Apis::Core::Hashable
|
5539
|
+
|
5540
|
+
# CloudControl associated with the finding.
|
5541
|
+
# Corresponds to the JSON property `cloudControl`
|
5542
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2CloudControl]
|
5543
|
+
attr_accessor :cloud_control
|
5544
|
+
|
5545
|
+
# Cloud Control Deployments associated with the finding. For example,
|
5546
|
+
# organizations/123/locations/global/cloudControlDeployments/
|
5547
|
+
# deploymentIdentifier
|
5548
|
+
# Corresponds to the JSON property `cloudControlDeploymentNames`
|
5549
|
+
# @return [Array<String>]
|
5550
|
+
attr_accessor :cloud_control_deployment_names
|
5551
|
+
|
5552
|
+
# Details of Frameworks associated with the finding
|
5553
|
+
# Corresponds to the JSON property `frameworks`
|
5554
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Framework>]
|
5555
|
+
attr_accessor :frameworks
|
5556
|
+
|
5557
|
+
def initialize(**args)
|
5558
|
+
update!(**args)
|
5559
|
+
end
|
5560
|
+
|
5561
|
+
# Update properties of this object
|
5562
|
+
def update!(**args)
|
5563
|
+
@cloud_control = args[:cloud_control] if args.key?(:cloud_control)
|
5564
|
+
@cloud_control_deployment_names = args[:cloud_control_deployment_names] if args.key?(:cloud_control_deployment_names)
|
5565
|
+
@frameworks = args[:frameworks] if args.key?(:frameworks)
|
5566
|
+
end
|
5567
|
+
end
|
5568
|
+
|
5350
5569
|
# Contains information about the IP connection associated with the finding.
|
5351
5570
|
class GoogleCloudSecuritycenterV2Connection
|
5352
5571
|
include Google::Apis::Core::Hashable
|
@@ -5474,6 +5693,31 @@ module Google
|
|
5474
5693
|
end
|
5475
5694
|
end
|
5476
5695
|
|
5696
|
+
# Compliance control associated with the finding.
|
5697
|
+
class GoogleCloudSecuritycenterV2Control
|
5698
|
+
include Google::Apis::Core::Hashable
|
5699
|
+
|
5700
|
+
# Name of the Control
|
5701
|
+
# Corresponds to the JSON property `controlName`
|
5702
|
+
# @return [String]
|
5703
|
+
attr_accessor :control_name
|
5704
|
+
|
5705
|
+
# Display name of the control. For example, AU-02.
|
5706
|
+
# Corresponds to the JSON property `displayName`
|
5707
|
+
# @return [String]
|
5708
|
+
attr_accessor :display_name
|
5709
|
+
|
5710
|
+
def initialize(**args)
|
5711
|
+
update!(**args)
|
5712
|
+
end
|
5713
|
+
|
5714
|
+
# Update properties of this object
|
5715
|
+
def update!(**args)
|
5716
|
+
@control_name = args[:control_name] if args.key?(:control_name)
|
5717
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
5718
|
+
end
|
5719
|
+
end
|
5720
|
+
|
5477
5721
|
# CVE stands for Common Vulnerabilities and Exposures. Information from the [CVE
|
5478
5722
|
# record](https://www.cve.org/ResourcesSupport/Glossary) that describes this
|
5479
5723
|
# vulnerability.
|
@@ -6357,6 +6601,11 @@ module Google
|
|
6357
6601
|
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2CloudDlpInspection]
|
6358
6602
|
attr_accessor :cloud_dlp_inspection
|
6359
6603
|
|
6604
|
+
# Compliance Details associated with the finding.
|
6605
|
+
# Corresponds to the JSON property `complianceDetails`
|
6606
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ComplianceDetails]
|
6607
|
+
attr_accessor :compliance_details
|
6608
|
+
|
6360
6609
|
# Contains compliance information for security standards associated to the
|
6361
6610
|
# finding.
|
6362
6611
|
# Corresponds to the JSON property `compliances`
|
@@ -6693,6 +6942,7 @@ module Google
|
|
6693
6942
|
@cloud_armor = args[:cloud_armor] if args.key?(:cloud_armor)
|
6694
6943
|
@cloud_dlp_data_profile = args[:cloud_dlp_data_profile] if args.key?(:cloud_dlp_data_profile)
|
6695
6944
|
@cloud_dlp_inspection = args[:cloud_dlp_inspection] if args.key?(:cloud_dlp_inspection)
|
6945
|
+
@compliance_details = args[:compliance_details] if args.key?(:compliance_details)
|
6696
6946
|
@compliances = args[:compliances] if args.key?(:compliances)
|
6697
6947
|
@connections = args[:connections] if args.key?(:connections)
|
6698
6948
|
@contacts = args[:contacts] if args.key?(:contacts)
|
@@ -6771,6 +7021,54 @@ module Google
|
|
6771
7021
|
end
|
6772
7022
|
end
|
6773
7023
|
|
7024
|
+
# Compliance framework associated with the finding.
|
7025
|
+
class GoogleCloudSecuritycenterV2Framework
|
7026
|
+
include Google::Apis::Core::Hashable
|
7027
|
+
|
7028
|
+
# Category of the framework associated with the finding. E.g. Security Benchmark,
|
7029
|
+
# or Assured Workloads
|
7030
|
+
# Corresponds to the JSON property `category`
|
7031
|
+
# @return [Array<String>]
|
7032
|
+
attr_accessor :category
|
7033
|
+
|
7034
|
+
# The controls associated with the framework.
|
7035
|
+
# Corresponds to the JSON property `controls`
|
7036
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Control>]
|
7037
|
+
attr_accessor :controls
|
7038
|
+
|
7039
|
+
# Display name of the framework. For a standard framework, this will look like e.
|
7040
|
+
# g. PCI DSS 3.2.1, whereas for a custom framework it can be a user defined
|
7041
|
+
# string like MyFramework
|
7042
|
+
# Corresponds to the JSON property `displayName`
|
7043
|
+
# @return [String]
|
7044
|
+
attr_accessor :display_name
|
7045
|
+
|
7046
|
+
# Name of the framework associated with the finding
|
7047
|
+
# Corresponds to the JSON property `name`
|
7048
|
+
# @return [String]
|
7049
|
+
attr_accessor :name
|
7050
|
+
|
7051
|
+
# Type of the framework associated with the finding, to specify whether the
|
7052
|
+
# framework is built-in (pre-defined and immutable) or a custom framework
|
7053
|
+
# defined by the customer (equivalent to security posture)
|
7054
|
+
# Corresponds to the JSON property `type`
|
7055
|
+
# @return [String]
|
7056
|
+
attr_accessor :type
|
7057
|
+
|
7058
|
+
def initialize(**args)
|
7059
|
+
update!(**args)
|
7060
|
+
end
|
7061
|
+
|
7062
|
+
# Update properties of this object
|
7063
|
+
def update!(**args)
|
7064
|
+
@category = args[:category] if args.key?(:category)
|
7065
|
+
@controls = args[:controls] if args.key?(:controls)
|
7066
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
7067
|
+
@name = args[:name] if args.key?(:name)
|
7068
|
+
@type = args[:type] if args.key?(:type)
|
7069
|
+
end
|
7070
|
+
end
|
7071
|
+
|
6774
7072
|
# Represents a geographical location for a given access.
|
6775
7073
|
class GoogleCloudSecuritycenterV2Geolocation
|
6776
7074
|
include Google::Apis::Core::Hashable
|
@@ -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.95.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 = "20250721"
|
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
|
@@ -2942,6 +3033,16 @@ module Google
|
|
2942
3033
|
end
|
2943
3034
|
end
|
2944
3035
|
|
3036
|
+
class GoogleCloudSecuritycenterV2CloudControl
|
3037
|
+
# @private
|
3038
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3039
|
+
property :cloud_control_name, as: 'cloudControlName'
|
3040
|
+
property :policy_type, as: 'policyType'
|
3041
|
+
property :type, as: 'type'
|
3042
|
+
property :version, as: 'version'
|
3043
|
+
end
|
3044
|
+
end
|
3045
|
+
|
2945
3046
|
class GoogleCloudSecuritycenterV2CloudDlpDataProfile
|
2946
3047
|
# @private
|
2947
3048
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2979,6 +3080,17 @@ module Google
|
|
2979
3080
|
end
|
2980
3081
|
end
|
2981
3082
|
|
3083
|
+
class GoogleCloudSecuritycenterV2ComplianceDetails
|
3084
|
+
# @private
|
3085
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3086
|
+
property :cloud_control, as: 'cloudControl', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2CloudControl, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2CloudControl::Representation
|
3087
|
+
|
3088
|
+
collection :cloud_control_deployment_names, as: 'cloudControlDeploymentNames'
|
3089
|
+
collection :frameworks, as: 'frameworks', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Framework, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Framework::Representation
|
3090
|
+
|
3091
|
+
end
|
3092
|
+
end
|
3093
|
+
|
2982
3094
|
class GoogleCloudSecuritycenterV2Connection
|
2983
3095
|
# @private
|
2984
3096
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3017,6 +3129,14 @@ module Google
|
|
3017
3129
|
end
|
3018
3130
|
end
|
3019
3131
|
|
3132
|
+
class GoogleCloudSecuritycenterV2Control
|
3133
|
+
# @private
|
3134
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3135
|
+
property :control_name, as: 'controlName'
|
3136
|
+
property :display_name, as: 'displayName'
|
3137
|
+
end
|
3138
|
+
end
|
3139
|
+
|
3020
3140
|
class GoogleCloudSecuritycenterV2Cve
|
3021
3141
|
# @private
|
3022
3142
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3243,6 +3363,8 @@ module Google
|
|
3243
3363
|
|
3244
3364
|
property :cloud_dlp_inspection, as: 'cloudDlpInspection', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2CloudDlpInspection, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2CloudDlpInspection::Representation
|
3245
3365
|
|
3366
|
+
property :compliance_details, as: 'complianceDetails', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ComplianceDetails, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ComplianceDetails::Representation
|
3367
|
+
|
3246
3368
|
collection :compliances, as: 'compliances', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Compliance, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Compliance::Representation
|
3247
3369
|
|
3248
3370
|
collection :connections, as: 'connections', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Connection, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Connection::Representation
|
@@ -3335,6 +3457,18 @@ module Google
|
|
3335
3457
|
end
|
3336
3458
|
end
|
3337
3459
|
|
3460
|
+
class GoogleCloudSecuritycenterV2Framework
|
3461
|
+
# @private
|
3462
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3463
|
+
collection :category, as: 'category'
|
3464
|
+
collection :controls, as: 'controls', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Control, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Control::Representation
|
3465
|
+
|
3466
|
+
property :display_name, as: 'displayName'
|
3467
|
+
property :name, as: 'name'
|
3468
|
+
property :type, as: 'type'
|
3469
|
+
end
|
3470
|
+
end
|
3471
|
+
|
3338
3472
|
class GoogleCloudSecuritycenterV2Geolocation
|
3339
3473
|
# @private
|
3340
3474
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.95.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.95.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:
|