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.



5265
5266
5267
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 5265

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

Instance Attribute Details

#changed_policyString

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

Returns:

  • (String)


5240
5241
5242
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 5240

def changed_policy
  @changed_policy
end

#nameString

Name of the posture, for example, organizations/org_id/locations/location/ postures/posture_name`. Corresponds to the JSON propertyname`

Returns:

  • (String)


5246
5247
5248
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 5246

def name
  @name
end

#posture_deploymentString

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

Returns:

  • (String)


5252
5253
5254
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 5252

def posture_deployment
  @posture_deployment
end

#posture_deployment_resourceString

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

Returns:

  • (String)


5258
5259
5260
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 5258

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)


5263
5264
5265
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 5263

def revision_id
  @revision_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5270
5271
5272
5273
5274
5275
5276
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 5270

def update!(**args)
  @changed_policy = args[:changed_policy] if args.key?(:changed_policy)
  @name = args[:name] if args.key?(:name)
  @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