Class: Google::Apis::SecuritycenterV1beta2::SecurityPosture
- Inherits:
-
Object
- Object
- Google::Apis::SecuritycenterV1beta2::SecurityPosture
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/securitycenter_v1beta2/classes.rb,
lib/google/apis/securitycenter_v1beta2/representations.rb,
lib/google/apis/securitycenter_v1beta2/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
-
#changed_policy ⇒ String
The name of the policy that has been updated, for example,
projects/project_id/policies/constraint_name``. -
#name ⇒ String
Name of the posture, for example,
organizations/org_id/locations/location/ postures/posture_name``. -
#posture_deployment ⇒ String
The name of the posture deployment, for example,
projects/project_id/ posturedeployments/posture_deployment_id``. -
#posture_deployment_resource ⇒ String
The project, folder, or organization on which the posture is deployed, for example,
projects/project_id``. -
#revision_id ⇒ String
The version of the posture, for example,
c7cfa2a8.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SecurityPosture
constructor
A new instance of SecurityPosture.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SecurityPosture
Returns a new instance of SecurityPosture.
6259 6260 6261 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 6259 def initialize(**args) update!(**args) end |
Instance Attribute Details
#changed_policy ⇒ String
The name of the policy that has been updated, for example, projects/
project_id/policies/constraint_name`.
Corresponds to the JSON propertychangedPolicy`
6234 6235 6236 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 6234 def changed_policy @changed_policy end |
#name ⇒ String
Name of the posture, for example, organizations/org_id/locations/location/
postures/posture_name`.
Corresponds to the JSON propertyname`
6240 6241 6242 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 6240 def name @name end |
#posture_deployment ⇒ String
The name of the posture deployment, for example, projects/project_id/
posturedeployments/posture_deployment_id`.
Corresponds to the JSON propertypostureDeployment`
6246 6247 6248 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 6246 def posture_deployment @posture_deployment end |
#posture_deployment_resource ⇒ String
The project, folder, or organization on which the posture is deployed, for
example, projects/project_id`.
Corresponds to the JSON propertypostureDeploymentResource`
6252 6253 6254 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 6252 def posture_deployment_resource @posture_deployment_resource end |
#revision_id ⇒ String
The version of the posture, for example, c7cfa2a8.
Corresponds to the JSON property revisionId
6257 6258 6259 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 6257 def revision_id @revision_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6264 6265 6266 6267 6268 6269 6270 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 6264 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 |