google-apis-securitycenter_v1 0.104.0 → 0.105.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: da43b3eaed6eebbf58fc7041b7e0c4955195fd08fbf94a8c90da3b2300000e5b
|
4
|
+
data.tar.gz: ee9817633c5dc70b6e060711c4d327a8dd047ea365bc2452f6af6013fa0e908b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 836e12070df0551774d0d26d6d1d2089dca6df2f7c1179365c6862b6b914ad0884f39d61ad5ab350c38662283f5605f8a4861a51a728a0fefe00d55dafd15edd
|
7
|
+
data.tar.gz: 601baab6e206799dd1ca0ec1b1784d83d1ffb71c5094b268be8438fee240694917982a22f81bb3dddf3aafd049342240919ef539e7c41596aeb541d51381a9bc
|
data/CHANGELOG.md
CHANGED
@@ -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
|
@@ -5554,6 +5703,43 @@ module Google
|
|
5554
5703
|
end
|
5555
5704
|
end
|
5556
5705
|
|
5706
|
+
# CloudControl associated with the finding.
|
5707
|
+
class GoogleCloudSecuritycenterV2CloudControl
|
5708
|
+
include Google::Apis::Core::Hashable
|
5709
|
+
|
5710
|
+
# Name of the CloudControl associated with the finding.
|
5711
|
+
# Corresponds to the JSON property `cloudControlName`
|
5712
|
+
# @return [String]
|
5713
|
+
attr_accessor :cloud_control_name
|
5714
|
+
|
5715
|
+
# Policy type of the CloudControl
|
5716
|
+
# Corresponds to the JSON property `policyType`
|
5717
|
+
# @return [String]
|
5718
|
+
attr_accessor :policy_type
|
5719
|
+
|
5720
|
+
# Type of cloud control.
|
5721
|
+
# Corresponds to the JSON property `type`
|
5722
|
+
# @return [String]
|
5723
|
+
attr_accessor :type
|
5724
|
+
|
5725
|
+
# Version of the Cloud Control
|
5726
|
+
# Corresponds to the JSON property `version`
|
5727
|
+
# @return [Fixnum]
|
5728
|
+
attr_accessor :version
|
5729
|
+
|
5730
|
+
def initialize(**args)
|
5731
|
+
update!(**args)
|
5732
|
+
end
|
5733
|
+
|
5734
|
+
# Update properties of this object
|
5735
|
+
def update!(**args)
|
5736
|
+
@cloud_control_name = args[:cloud_control_name] if args.key?(:cloud_control_name)
|
5737
|
+
@policy_type = args[:policy_type] if args.key?(:policy_type)
|
5738
|
+
@type = args[:type] if args.key?(:type)
|
5739
|
+
@version = args[:version] if args.key?(:version)
|
5740
|
+
end
|
5741
|
+
end
|
5742
|
+
|
5557
5743
|
# The [data profile](https://cloud.google.com/dlp/docs/data-profiles) associated
|
5558
5744
|
# with the finding.
|
5559
5745
|
class GoogleCloudSecuritycenterV2CloudDlpDataProfile
|
@@ -5697,6 +5883,39 @@ module Google
|
|
5697
5883
|
end
|
5698
5884
|
end
|
5699
5885
|
|
5886
|
+
# Compliance Details associated with the finding.
|
5887
|
+
class GoogleCloudSecuritycenterV2ComplianceDetails
|
5888
|
+
include Google::Apis::Core::Hashable
|
5889
|
+
|
5890
|
+
# CloudControl associated with the finding.
|
5891
|
+
# Corresponds to the JSON property `cloudControl`
|
5892
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2CloudControl]
|
5893
|
+
attr_accessor :cloud_control
|
5894
|
+
|
5895
|
+
# Cloud Control Deployments associated with the finding. For example,
|
5896
|
+
# organizations/123/locations/global/cloudControlDeployments/
|
5897
|
+
# deploymentIdentifier
|
5898
|
+
# Corresponds to the JSON property `cloudControlDeploymentNames`
|
5899
|
+
# @return [Array<String>]
|
5900
|
+
attr_accessor :cloud_control_deployment_names
|
5901
|
+
|
5902
|
+
# Details of Frameworks associated with the finding
|
5903
|
+
# Corresponds to the JSON property `frameworks`
|
5904
|
+
# @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Framework>]
|
5905
|
+
attr_accessor :frameworks
|
5906
|
+
|
5907
|
+
def initialize(**args)
|
5908
|
+
update!(**args)
|
5909
|
+
end
|
5910
|
+
|
5911
|
+
# Update properties of this object
|
5912
|
+
def update!(**args)
|
5913
|
+
@cloud_control = args[:cloud_control] if args.key?(:cloud_control)
|
5914
|
+
@cloud_control_deployment_names = args[:cloud_control_deployment_names] if args.key?(:cloud_control_deployment_names)
|
5915
|
+
@frameworks = args[:frameworks] if args.key?(:frameworks)
|
5916
|
+
end
|
5917
|
+
end
|
5918
|
+
|
5700
5919
|
# Contains information about the IP connection associated with the finding.
|
5701
5920
|
class GoogleCloudSecuritycenterV2Connection
|
5702
5921
|
include Google::Apis::Core::Hashable
|
@@ -5824,6 +6043,31 @@ module Google
|
|
5824
6043
|
end
|
5825
6044
|
end
|
5826
6045
|
|
6046
|
+
# Compliance control associated with the finding.
|
6047
|
+
class GoogleCloudSecuritycenterV2Control
|
6048
|
+
include Google::Apis::Core::Hashable
|
6049
|
+
|
6050
|
+
# Name of the Control
|
6051
|
+
# Corresponds to the JSON property `controlName`
|
6052
|
+
# @return [String]
|
6053
|
+
attr_accessor :control_name
|
6054
|
+
|
6055
|
+
# Display name of the control. For example, AU-02.
|
6056
|
+
# Corresponds to the JSON property `displayName`
|
6057
|
+
# @return [String]
|
6058
|
+
attr_accessor :display_name
|
6059
|
+
|
6060
|
+
def initialize(**args)
|
6061
|
+
update!(**args)
|
6062
|
+
end
|
6063
|
+
|
6064
|
+
# Update properties of this object
|
6065
|
+
def update!(**args)
|
6066
|
+
@control_name = args[:control_name] if args.key?(:control_name)
|
6067
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
6068
|
+
end
|
6069
|
+
end
|
6070
|
+
|
5827
6071
|
# CVE stands for Common Vulnerabilities and Exposures. Information from the [CVE
|
5828
6072
|
# record](https://www.cve.org/ResourcesSupport/Glossary) that describes this
|
5829
6073
|
# vulnerability.
|
@@ -6707,6 +6951,11 @@ module Google
|
|
6707
6951
|
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2CloudDlpInspection]
|
6708
6952
|
attr_accessor :cloud_dlp_inspection
|
6709
6953
|
|
6954
|
+
# Compliance Details associated with the finding.
|
6955
|
+
# Corresponds to the JSON property `complianceDetails`
|
6956
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ComplianceDetails]
|
6957
|
+
attr_accessor :compliance_details
|
6958
|
+
|
6710
6959
|
# Contains compliance information for security standards associated to the
|
6711
6960
|
# finding.
|
6712
6961
|
# Corresponds to the JSON property `compliances`
|
@@ -7043,6 +7292,7 @@ module Google
|
|
7043
7292
|
@cloud_armor = args[:cloud_armor] if args.key?(:cloud_armor)
|
7044
7293
|
@cloud_dlp_data_profile = args[:cloud_dlp_data_profile] if args.key?(:cloud_dlp_data_profile)
|
7045
7294
|
@cloud_dlp_inspection = args[:cloud_dlp_inspection] if args.key?(:cloud_dlp_inspection)
|
7295
|
+
@compliance_details = args[:compliance_details] if args.key?(:compliance_details)
|
7046
7296
|
@compliances = args[:compliances] if args.key?(:compliances)
|
7047
7297
|
@connections = args[:connections] if args.key?(:connections)
|
7048
7298
|
@contacts = args[:contacts] if args.key?(:contacts)
|
@@ -7121,6 +7371,54 @@ module Google
|
|
7121
7371
|
end
|
7122
7372
|
end
|
7123
7373
|
|
7374
|
+
# Compliance framework associated with the finding.
|
7375
|
+
class GoogleCloudSecuritycenterV2Framework
|
7376
|
+
include Google::Apis::Core::Hashable
|
7377
|
+
|
7378
|
+
# Category of the framework associated with the finding. E.g. Security Benchmark,
|
7379
|
+
# or Assured Workloads
|
7380
|
+
# Corresponds to the JSON property `category`
|
7381
|
+
# @return [Array<String>]
|
7382
|
+
attr_accessor :category
|
7383
|
+
|
7384
|
+
# The controls associated with the framework.
|
7385
|
+
# Corresponds to the JSON property `controls`
|
7386
|
+
# @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Control>]
|
7387
|
+
attr_accessor :controls
|
7388
|
+
|
7389
|
+
# Display name of the framework. For a standard framework, this will look like e.
|
7390
|
+
# g. PCI DSS 3.2.1, whereas for a custom framework it can be a user defined
|
7391
|
+
# string like MyFramework
|
7392
|
+
# Corresponds to the JSON property `displayName`
|
7393
|
+
# @return [String]
|
7394
|
+
attr_accessor :display_name
|
7395
|
+
|
7396
|
+
# Name of the framework associated with the finding
|
7397
|
+
# Corresponds to the JSON property `name`
|
7398
|
+
# @return [String]
|
7399
|
+
attr_accessor :name
|
7400
|
+
|
7401
|
+
# Type of the framework associated with the finding, to specify whether the
|
7402
|
+
# framework is built-in (pre-defined and immutable) or a custom framework
|
7403
|
+
# defined by the customer (equivalent to security posture)
|
7404
|
+
# Corresponds to the JSON property `type`
|
7405
|
+
# @return [String]
|
7406
|
+
attr_accessor :type
|
7407
|
+
|
7408
|
+
def initialize(**args)
|
7409
|
+
update!(**args)
|
7410
|
+
end
|
7411
|
+
|
7412
|
+
# Update properties of this object
|
7413
|
+
def update!(**args)
|
7414
|
+
@category = args[:category] if args.key?(:category)
|
7415
|
+
@controls = args[:controls] if args.key?(:controls)
|
7416
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
7417
|
+
@name = args[:name] if args.key?(:name)
|
7418
|
+
@type = args[:type] if args.key?(:type)
|
7419
|
+
end
|
7420
|
+
end
|
7421
|
+
|
7124
7422
|
# Represents a geographical location for a given access.
|
7125
7423
|
class GoogleCloudSecuritycenterV2Geolocation
|
7126
7424
|
include Google::Apis::Core::Hashable
|
@@ -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.105.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
|
@@ -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
|
@@ -3270,6 +3361,16 @@ module Google
|
|
3270
3361
|
end
|
3271
3362
|
end
|
3272
3363
|
|
3364
|
+
class GoogleCloudSecuritycenterV2CloudControl
|
3365
|
+
# @private
|
3366
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3367
|
+
property :cloud_control_name, as: 'cloudControlName'
|
3368
|
+
property :policy_type, as: 'policyType'
|
3369
|
+
property :type, as: 'type'
|
3370
|
+
property :version, as: 'version'
|
3371
|
+
end
|
3372
|
+
end
|
3373
|
+
|
3273
3374
|
class GoogleCloudSecuritycenterV2CloudDlpDataProfile
|
3274
3375
|
# @private
|
3275
3376
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3307,6 +3408,17 @@ module Google
|
|
3307
3408
|
end
|
3308
3409
|
end
|
3309
3410
|
|
3411
|
+
class GoogleCloudSecuritycenterV2ComplianceDetails
|
3412
|
+
# @private
|
3413
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3414
|
+
property :cloud_control, as: 'cloudControl', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2CloudControl, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2CloudControl::Representation
|
3415
|
+
|
3416
|
+
collection :cloud_control_deployment_names, as: 'cloudControlDeploymentNames'
|
3417
|
+
collection :frameworks, as: 'frameworks', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Framework, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Framework::Representation
|
3418
|
+
|
3419
|
+
end
|
3420
|
+
end
|
3421
|
+
|
3310
3422
|
class GoogleCloudSecuritycenterV2Connection
|
3311
3423
|
# @private
|
3312
3424
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3345,6 +3457,14 @@ module Google
|
|
3345
3457
|
end
|
3346
3458
|
end
|
3347
3459
|
|
3460
|
+
class GoogleCloudSecuritycenterV2Control
|
3461
|
+
# @private
|
3462
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3463
|
+
property :control_name, as: 'controlName'
|
3464
|
+
property :display_name, as: 'displayName'
|
3465
|
+
end
|
3466
|
+
end
|
3467
|
+
|
3348
3468
|
class GoogleCloudSecuritycenterV2Cve
|
3349
3469
|
# @private
|
3350
3470
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3571,6 +3691,8 @@ module Google
|
|
3571
3691
|
|
3572
3692
|
property :cloud_dlp_inspection, as: 'cloudDlpInspection', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2CloudDlpInspection, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2CloudDlpInspection::Representation
|
3573
3693
|
|
3694
|
+
property :compliance_details, as: 'complianceDetails', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ComplianceDetails, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ComplianceDetails::Representation
|
3695
|
+
|
3574
3696
|
collection :compliances, as: 'compliances', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Compliance, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Compliance::Representation
|
3575
3697
|
|
3576
3698
|
collection :connections, as: 'connections', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Connection, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Connection::Representation
|
@@ -3663,6 +3785,18 @@ module Google
|
|
3663
3785
|
end
|
3664
3786
|
end
|
3665
3787
|
|
3788
|
+
class GoogleCloudSecuritycenterV2Framework
|
3789
|
+
# @private
|
3790
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3791
|
+
collection :category, as: 'category'
|
3792
|
+
collection :controls, as: 'controls', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Control, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Control::Representation
|
3793
|
+
|
3794
|
+
property :display_name, as: 'displayName'
|
3795
|
+
property :name, as: 'name'
|
3796
|
+
property :type, as: 'type'
|
3797
|
+
end
|
3798
|
+
end
|
3799
|
+
|
3666
3800
|
class GoogleCloudSecuritycenterV2Geolocation
|
3667
3801
|
# @private
|
3668
3802
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.105.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.105.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:
|