Class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2SecurityPosture

Inherits:
Object
  • Object
show all
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

Represents a posture that is deployed on Google Cloud by the Security Command Center Posture Management service. A posture contains one or more policy sets. A policy set is a group of policies that enforce a set of security rules on Google Cloud.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudSecuritycenterV2SecurityPosture

Returns a new instance of GoogleCloudSecuritycenterV2SecurityPosture.



7533
7534
7535
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 7533

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#changed_policyString

The name of the updated policy, for example, projects/project_id/policies/ constraint_name`. Corresponds to the JSON propertychangedPolicy`

Returns:

  • (String)


7493
7494
7495
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 7493

def changed_policy
  @changed_policy
end

#nameString

Name of the posture, for example, CIS-Posture. Corresponds to the JSON property name

Returns:

  • (String)


7498
7499
7500
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 7498

def name
  @name
end

#policyString

The ID of the updated policy, for example, compute-policy-1. Corresponds to the JSON property policy

Returns:

  • (String)


7503
7504
7505
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 7503

def policy
  @policy
end

#policy_drift_detailsArray<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2PolicyDriftDetails>

The details about a change in an updated policy that violates the deployed posture. Corresponds to the JSON property policyDriftDetails



7509
7510
7511
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 7509

def policy_drift_details
  @policy_drift_details
end

#policy_setString

The name of the updated policy set, for example, cis-policyset. Corresponds to the JSON property policySet

Returns:

  • (String)


7514
7515
7516
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 7514

def policy_set
  @policy_set
end

#posture_deploymentString

The name of the posture deployment, for example, organizations/org_id/ posturedeployments/posture_deployment_id`. Corresponds to the JSON propertypostureDeployment`

Returns:

  • (String)


7520
7521
7522
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 7520

def posture_deployment
  @posture_deployment
end

#posture_deployment_resourceString

The project, folder, or organization on which the posture is deployed, for example, projects/project_number`. Corresponds to the JSON propertypostureDeploymentResource`

Returns:

  • (String)


7526
7527
7528
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 7526

def posture_deployment_resource
  @posture_deployment_resource
end

#revision_idString

The version of the posture, for example, c7cfa2a8. Corresponds to the JSON property revisionId

Returns:

  • (String)


7531
7532
7533
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 7531

def revision_id
  @revision_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 7538

def update!(**args)
  @changed_policy = args[:changed_policy] if args.key?(:changed_policy)
  @name = args[:name] if args.key?(:name)
  @policy = args[:policy] if args.key?(:policy)
  @policy_drift_details = args[:policy_drift_details] if args.key?(:policy_drift_details)
  @policy_set = args[:policy_set] if args.key?(:policy_set)
  @posture_deployment = args[:posture_deployment] if args.key?(:posture_deployment)
  @posture_deployment_resource = args[:posture_deployment_resource] if args.key?(:posture_deployment_resource)
  @revision_id = args[:revision_id] if args.key?(:revision_id)
end