Class: Google::Apis::SecuritycenterV1beta1::ComplianceDetails
- Inherits:
-
Object
- Object
- Google::Apis::SecuritycenterV1beta1::ComplianceDetails
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/securitycenter_v1beta1/classes.rb,
lib/google/apis/securitycenter_v1beta1/representations.rb,
lib/google/apis/securitycenter_v1beta1/representations.rb
Overview
Compliance Details associated with the finding.
Instance Attribute Summary collapse
-
#cloud_control ⇒ Google::Apis::SecuritycenterV1beta1::CloudControl
CloudControl associated with the finding.
-
#cloud_control_deployment_names ⇒ Array<String>
Cloud Control Deployments associated with the finding.
-
#frameworks ⇒ Array<Google::Apis::SecuritycenterV1beta1::Framework>
Details of Frameworks associated with the finding Corresponds to the JSON property
frameworks.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ComplianceDetails
constructor
A new instance of ComplianceDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ComplianceDetails
Returns a new instance of ComplianceDetails.
1505 1506 1507 |
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 1505 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cloud_control ⇒ Google::Apis::SecuritycenterV1beta1::CloudControl
CloudControl associated with the finding.
Corresponds to the JSON property cloudControl
1491 1492 1493 |
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 1491 def cloud_control @cloud_control end |
#cloud_control_deployment_names ⇒ Array<String>
Cloud Control Deployments associated with the finding. For example,
organizations/123/locations/global/cloudControlDeployments/
deploymentIdentifier
Corresponds to the JSON property cloudControlDeploymentNames
1498 1499 1500 |
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 1498 def cloud_control_deployment_names @cloud_control_deployment_names end |
#frameworks ⇒ Array<Google::Apis::SecuritycenterV1beta1::Framework>
Details of Frameworks associated with the finding
Corresponds to the JSON property frameworks
1503 1504 1505 |
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 1503 def frameworks @frameworks end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1510 1511 1512 1513 1514 |
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 1510 def update!(**args) @cloud_control = args[:cloud_control] if args.key?(:cloud_control) @cloud_control_deployment_names = args[:cloud_control_deployment_names] if args.key?(:cloud_control_deployment_names) @frameworks = args[:frameworks] if args.key?(:frameworks) end |