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 updated policy, for example,
projects/
project_id/policies/
constraint_name``. -
#name ⇒ String
Name of the posture, for example,
CIS-Posture
. -
#policy ⇒ String
The ID of the updated policy, for example,
compute-policy-1
. -
#policy_drift_details ⇒ Array<Google::Apis::SecuritycenterV1beta2::PolicyDriftDetails>
The details about a change in an updated policy that violates the deployed posture.
-
#policy_set ⇒ String
The name of the updated policyset, for example,
cis-policyset
. -
#posture_deployment ⇒ String
The name of the posture deployment, for example,
organizations/
org_id/ posturedeployments/
posture_deployment_id``. -
#posture_deployment_resource ⇒ String
The project, folder, or organization on which the posture is deployed, for example,
projects/
project_number``. -
#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.
8197 8198 8199 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 8197 def initialize(**args) update!(**args) end |
Instance Attribute Details
#changed_policy ⇒ String
The name of the updated policy, for example, projects/
project_id/policies/
constraint_name`.
Corresponds to the JSON property
changedPolicy`
8157 8158 8159 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 8157 def changed_policy @changed_policy end |
#name ⇒ String
Name of the posture, for example, CIS-Posture
.
Corresponds to the JSON property name
8162 8163 8164 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 8162 def name @name end |
#policy ⇒ String
The ID of the updated policy, for example, compute-policy-1
.
Corresponds to the JSON property policy
8167 8168 8169 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 8167 def policy @policy end |
#policy_drift_details ⇒ Array<Google::Apis::SecuritycenterV1beta2::PolicyDriftDetails>
The details about a change in an updated policy that violates the deployed
posture.
Corresponds to the JSON property policyDriftDetails
8173 8174 8175 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 8173 def policy_drift_details @policy_drift_details end |
#policy_set ⇒ String
The name of the updated policyset, for example, cis-policyset
.
Corresponds to the JSON property policySet
8178 8179 8180 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 8178 def policy_set @policy_set end |
#posture_deployment ⇒ String
The name of the posture deployment, for example, organizations/
org_id/
posturedeployments/
posture_deployment_id`.
Corresponds to the JSON property
postureDeployment`
8184 8185 8186 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 8184 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_number`.
Corresponds to the JSON property
postureDeploymentResource`
8190 8191 8192 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 8190 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
8195 8196 8197 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 8195 def revision_id @revision_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 8202 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 |