Class: Google::Apis::PolicysimulatorV1::GoogleCloudPolicysimulatorV1alphaOrgPolicyViolationsPreviewResourceCounts
- Inherits:
-
Object
- Object
- Google::Apis::PolicysimulatorV1::GoogleCloudPolicysimulatorV1alphaOrgPolicyViolationsPreviewResourceCounts
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/policysimulator_v1/classes.rb,
lib/google/apis/policysimulator_v1/representations.rb,
lib/google/apis/policysimulator_v1/representations.rb
Overview
A summary of the state of all resources scanned for compliance with the changed OrgPolicy.
Instance Attribute Summary collapse
-
#compliant ⇒ Fixnum
Number of scanned resources with zero violations.
-
#errors ⇒ Fixnum
Number of resources that returned an error when scanned.
-
#noncompliant ⇒ Fixnum
Number of scanned resources with at least one violation.
-
#scanned ⇒ Fixnum
Number of resources checked for compliance.
-
#unenforced ⇒ Fixnum
Number of resources where the constraint was not enforced, i.e.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudPolicysimulatorV1alphaOrgPolicyViolationsPreviewResourceCounts
constructor
A new instance of GoogleCloudPolicysimulatorV1alphaOrgPolicyViolationsPreviewResourceCounts.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudPolicysimulatorV1alphaOrgPolicyViolationsPreviewResourceCounts
Returns a new instance of GoogleCloudPolicysimulatorV1alphaOrgPolicyViolationsPreviewResourceCounts.
1165 1166 1167 |
# File 'lib/google/apis/policysimulator_v1/classes.rb', line 1165 def initialize(**args) update!(**args) end |
Instance Attribute Details
#compliant ⇒ Fixnum
Number of scanned resources with zero violations.
Corresponds to the JSON property compliant
1141 1142 1143 |
# File 'lib/google/apis/policysimulator_v1/classes.rb', line 1141 def compliant @compliant end |
#errors ⇒ Fixnum
Number of resources that returned an error when scanned.
Corresponds to the JSON property errors
1146 1147 1148 |
# File 'lib/google/apis/policysimulator_v1/classes.rb', line 1146 def errors @errors end |
#noncompliant ⇒ Fixnum
Number of scanned resources with at least one violation.
Corresponds to the JSON property noncompliant
1151 1152 1153 |
# File 'lib/google/apis/policysimulator_v1/classes.rb', line 1151 def noncompliant @noncompliant end |
#scanned ⇒ Fixnum
Number of resources checked for compliance. Must equal: unenforced +
noncompliant + compliant + error
Corresponds to the JSON property scanned
1157 1158 1159 |
# File 'lib/google/apis/policysimulator_v1/classes.rb', line 1157 def scanned @scanned end |
#unenforced ⇒ Fixnum
Number of resources where the constraint was not enforced, i.e. the Policy set
enforced: false for that resource.
Corresponds to the JSON property unenforced
1163 1164 1165 |
# File 'lib/google/apis/policysimulator_v1/classes.rb', line 1163 def unenforced @unenforced end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1170 1171 1172 1173 1174 1175 1176 |
# File 'lib/google/apis/policysimulator_v1/classes.rb', line 1170 def update!(**args) @compliant = args[:compliant] if args.key?(:compliant) @errors = args[:errors] if args.key?(:errors) @noncompliant = args[:noncompliant] if args.key?(:noncompliant) @scanned = args[:scanned] if args.key?(:scanned) @unenforced = args[:unenforced] if args.key?(:unenforced) end |