Class: Google::Apis::AssuredworkloadsV1beta1::GoogleCloudAssuredworkloadsV1beta1WorkloadComplianceStatus
- Inherits:
-
Object
- Object
- Google::Apis::AssuredworkloadsV1beta1::GoogleCloudAssuredworkloadsV1beta1WorkloadComplianceStatus
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/assuredworkloads_v1beta1/classes.rb,
lib/google/apis/assuredworkloads_v1beta1/representations.rb,
lib/google/apis/assuredworkloads_v1beta1/representations.rb
Overview
Represents the Compliance Status of this workload
Instance Attribute Summary collapse
-
#acknowledged_resource_violation_count ⇒ Fixnum
Number of current resource violations which are not acknowledged.
-
#acknowledged_violation_count ⇒ Fixnum
Number of current orgPolicy violations which are acknowledged.
-
#active_resource_violation_count ⇒ Fixnum
Number of current resource violations which are acknowledged.
-
#active_violation_count ⇒ Fixnum
Number of current orgPolicy violations which are not acknowledged.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAssuredworkloadsV1beta1WorkloadComplianceStatus
constructor
A new instance of GoogleCloudAssuredworkloadsV1beta1WorkloadComplianceStatus.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAssuredworkloadsV1beta1WorkloadComplianceStatus
Returns a new instance of GoogleCloudAssuredworkloadsV1beta1WorkloadComplianceStatus.
900 901 902 |
# File 'lib/google/apis/assuredworkloads_v1beta1/classes.rb', line 900 def initialize(**args) update!(**args) end |
Instance Attribute Details
#acknowledged_resource_violation_count ⇒ Fixnum
Number of current resource violations which are not acknowledged.
Corresponds to the JSON property acknowledgedResourceViolationCount
883 884 885 |
# File 'lib/google/apis/assuredworkloads_v1beta1/classes.rb', line 883 def acknowledged_resource_violation_count @acknowledged_resource_violation_count end |
#acknowledged_violation_count ⇒ Fixnum
Number of current orgPolicy violations which are acknowledged.
Corresponds to the JSON property acknowledgedViolationCount
888 889 890 |
# File 'lib/google/apis/assuredworkloads_v1beta1/classes.rb', line 888 def acknowledged_violation_count @acknowledged_violation_count end |
#active_resource_violation_count ⇒ Fixnum
Number of current resource violations which are acknowledged.
Corresponds to the JSON property activeResourceViolationCount
893 894 895 |
# File 'lib/google/apis/assuredworkloads_v1beta1/classes.rb', line 893 def active_resource_violation_count @active_resource_violation_count end |
#active_violation_count ⇒ Fixnum
Number of current orgPolicy violations which are not acknowledged.
Corresponds to the JSON property activeViolationCount
898 899 900 |
# File 'lib/google/apis/assuredworkloads_v1beta1/classes.rb', line 898 def active_violation_count @active_violation_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
905 906 907 908 909 910 |
# File 'lib/google/apis/assuredworkloads_v1beta1/classes.rb', line 905 def update!(**args) @acknowledged_resource_violation_count = args[:acknowledged_resource_violation_count] if args.key?(:acknowledged_resource_violation_count) @acknowledged_violation_count = args[:acknowledged_violation_count] if args.key?(:acknowledged_violation_count) @active_resource_violation_count = args[:active_resource_violation_count] if args.key?(:active_resource_violation_count) @active_violation_count = args[:active_violation_count] if args.key?(:active_violation_count) end |