Class: OCI::FleetAppsManagement::Models::CompliancePolicyRuleSummary
- Inherits:
-
Object
- Object
- OCI::FleetAppsManagement::Models::CompliancePolicyRuleSummary
- Defined in:
- lib/oci/fleet_apps_management/models/compliance_policy_rule_summary.rb
Overview
Summary information about a CompliancePolicyRule.
Constant Summary collapse
- SEVERITY_ENUM =
[ SEVERITY_CRITICAL = 'CRITICAL'.freeze, SEVERITY_HIGH = 'HIGH'.freeze, SEVERITY_MEDIUM = 'MEDIUM'.freeze, SEVERITY_LOW = 'LOW'.freeze, SEVERITY_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
Instance Attribute Summary collapse
-
#compartment_id ⇒ String
[Required] The OCID of the compartment the CompliancePolicyRule belongs to.
-
#compliance_policy_id ⇒ String
[Required] Unique OCID of the CompliancePolicy.
-
#defined_tags ⇒ Hash<String, Hash<String, Object>>
Defined tags for this resource.
-
#display_name ⇒ String
[Required] A user-friendly name.
-
#freeform_tags ⇒ Hash<String, String>
Simple key-value pair that is applied without any predefined name, type or scope.
-
#grace_period ⇒ String
Grace period in days,weeks,months or years the exemption is applicable for the rule.
-
#id ⇒ String
[Required] Unique OCID of the CompliancePolicyRule.
-
#lifecycle_details ⇒ String
A message that describes the current state of the CompliancePolicyRule in more detail.
-
#lifecycle_state ⇒ String
[Required] The current state of the CompliancePolicyRule.
-
#patch_selection ⇒ OCI::FleetAppsManagement::Models::PatchSelectionDetails
This attribute is required.
-
#patch_type_id ⇒ Array<String>
[Required] PlatformConfiguration OCID for the patch type to which this CompliancePolicyRule applies.
-
#product_version ⇒ OCI::FleetAppsManagement::Models::ProductVersionDetails
This attribute is required.
-
#severity ⇒ Array<String>
Severity to which this CompliancePolicyRule applies.
-
#system_tags ⇒ Hash<String, Hash<String, Object>>
System tags for this resource.
-
#time_created ⇒ DateTime
[Required] The date and time the CompliancePolicyRule was created, in the format defined by RFC 3339.
-
#time_updated ⇒ DateTime
The date and time the CompliancePolicyRule was updated, in the format defined by RFC 3339.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.swagger_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(other) ⇒ Object
Checks equality by comparing each attribute.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(other) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ CompliancePolicyRuleSummary
constructor
Initializes the object.
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
Constructor Details
#initialize(attributes = {}) ⇒ CompliancePolicyRuleSummary
Initializes the object
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 |
# File 'lib/oci/fleet_apps_management/models/compliance_policy_rule_summary.rb', line 174 def initialize(attributes = {}) return unless attributes.is_a?(Hash) # convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v } self.id = attributes[:'id'] if attributes[:'id'] self.display_name = attributes[:'displayName'] if attributes[:'displayName'] raise 'You cannot provide both :displayName and :display_name' if attributes.key?(:'displayName') && attributes.key?(:'display_name') self.display_name = attributes[:'display_name'] if attributes[:'display_name'] self.compliance_policy_id = attributes[:'compliancePolicyId'] if attributes[:'compliancePolicyId'] raise 'You cannot provide both :compliancePolicyId and :compliance_policy_id' if attributes.key?(:'compliancePolicyId') && attributes.key?(:'compliance_policy_id') self.compliance_policy_id = attributes[:'compliance_policy_id'] if attributes[:'compliance_policy_id'] self.product_version = attributes[:'productVersion'] if attributes[:'productVersion'] raise 'You cannot provide both :productVersion and :product_version' if attributes.key?(:'productVersion') && attributes.key?(:'product_version') self.product_version = attributes[:'product_version'] if attributes[:'product_version'] self.patch_type_id = attributes[:'patchTypeId'] if attributes[:'patchTypeId'] raise 'You cannot provide both :patchTypeId and :patch_type_id' if attributes.key?(:'patchTypeId') && attributes.key?(:'patch_type_id') self.patch_type_id = attributes[:'patch_type_id'] if attributes[:'patch_type_id'] self.severity = attributes[:'severity'] if attributes[:'severity'] self.patch_selection = attributes[:'patchSelection'] if attributes[:'patchSelection'] raise 'You cannot provide both :patchSelection and :patch_selection' if attributes.key?(:'patchSelection') && attributes.key?(:'patch_selection') self.patch_selection = attributes[:'patch_selection'] if attributes[:'patch_selection'] self.grace_period = attributes[:'gracePeriod'] if attributes[:'gracePeriod'] raise 'You cannot provide both :gracePeriod and :grace_period' if attributes.key?(:'gracePeriod') && attributes.key?(:'grace_period') self.grace_period = attributes[:'grace_period'] if attributes[:'grace_period'] self.compartment_id = attributes[:'compartmentId'] if attributes[:'compartmentId'] raise 'You cannot provide both :compartmentId and :compartment_id' if attributes.key?(:'compartmentId') && attributes.key?(:'compartment_id') self.compartment_id = attributes[:'compartment_id'] if attributes[:'compartment_id'] self.time_created = attributes[:'timeCreated'] if attributes[:'timeCreated'] raise 'You cannot provide both :timeCreated and :time_created' if attributes.key?(:'timeCreated') && attributes.key?(:'time_created') self.time_created = attributes[:'time_created'] if attributes[:'time_created'] self.time_updated = attributes[:'timeUpdated'] if attributes[:'timeUpdated'] raise 'You cannot provide both :timeUpdated and :time_updated' if attributes.key?(:'timeUpdated') && attributes.key?(:'time_updated') self.time_updated = attributes[:'time_updated'] if attributes[:'time_updated'] self.lifecycle_state = attributes[:'lifecycleState'] if attributes[:'lifecycleState'] raise 'You cannot provide both :lifecycleState and :lifecycle_state' if attributes.key?(:'lifecycleState') && attributes.key?(:'lifecycle_state') self.lifecycle_state = attributes[:'lifecycle_state'] if attributes[:'lifecycle_state'] self.lifecycle_details = attributes[:'lifecycleDetails'] if attributes[:'lifecycleDetails'] raise 'You cannot provide both :lifecycleDetails and :lifecycle_details' if attributes.key?(:'lifecycleDetails') && attributes.key?(:'lifecycle_details') self.lifecycle_details = attributes[:'lifecycle_details'] if attributes[:'lifecycle_details'] self. = attributes[:'freeformTags'] if attributes[:'freeformTags'] raise 'You cannot provide both :freeformTags and :freeform_tags' if attributes.key?(:'freeformTags') && attributes.key?(:'freeform_tags') self. = attributes[:'freeform_tags'] if attributes[:'freeform_tags'] self. = attributes[:'definedTags'] if attributes[:'definedTags'] raise 'You cannot provide both :definedTags and :defined_tags' if attributes.key?(:'definedTags') && attributes.key?(:'defined_tags') self. = attributes[:'defined_tags'] if attributes[:'defined_tags'] self. = attributes[:'systemTags'] if attributes[:'systemTags'] raise 'You cannot provide both :systemTags and :system_tags' if attributes.key?(:'systemTags') && attributes.key?(:'system_tags') self. = attributes[:'system_tags'] if attributes[:'system_tags'] end |
Instance Attribute Details
#compartment_id ⇒ String
[Required] The OCID of the compartment the CompliancePolicyRule belongs to.
60 61 62 |
# File 'lib/oci/fleet_apps_management/models/compliance_policy_rule_summary.rb', line 60 def compartment_id @compartment_id end |
#compliance_policy_id ⇒ String
[Required] Unique OCID of the CompliancePolicy.
34 35 36 |
# File 'lib/oci/fleet_apps_management/models/compliance_policy_rule_summary.rb', line 34 def compliance_policy_id @compliance_policy_id end |
#defined_tags ⇒ Hash<String, Hash<String, Object>>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {\"foo-namespace\": {\"bar-key\": \"value\"}}
96 97 98 |
# File 'lib/oci/fleet_apps_management/models/compliance_policy_rule_summary.rb', line 96 def @defined_tags end |
#display_name ⇒ String
[Required] A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
Example: My new resource
30 31 32 |
# File 'lib/oci/fleet_apps_management/models/compliance_policy_rule_summary.rb', line 30 def display_name @display_name end |
#freeform_tags ⇒ Hash<String, String>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {\"bar-key\": \"value\"}
90 91 92 |
# File 'lib/oci/fleet_apps_management/models/compliance_policy_rule_summary.rb', line 90 def @freeform_tags end |
#grace_period ⇒ String
Grace period in days,weeks,months or years the exemption is applicable for the rule. This enables a grace period when Fleet Application Management doesn't report the product as noncompliant when patch is not applied.
56 57 58 |
# File 'lib/oci/fleet_apps_management/models/compliance_policy_rule_summary.rb', line 56 def grace_period @grace_period end |
#id ⇒ String
[Required] Unique OCID of the CompliancePolicyRule.
22 23 24 |
# File 'lib/oci/fleet_apps_management/models/compliance_policy_rule_summary.rb', line 22 def id @id end |
#lifecycle_details ⇒ String
A message that describes the current state of the CompliancePolicyRule in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
84 85 86 |
# File 'lib/oci/fleet_apps_management/models/compliance_policy_rule_summary.rb', line 84 def lifecycle_details @lifecycle_details end |
#lifecycle_state ⇒ String
[Required] The current state of the CompliancePolicyRule.
78 79 80 |
# File 'lib/oci/fleet_apps_management/models/compliance_policy_rule_summary.rb', line 78 def lifecycle_state @lifecycle_state end |
#patch_selection ⇒ OCI::FleetAppsManagement::Models::PatchSelectionDetails
This attribute is required.
50 51 52 |
# File 'lib/oci/fleet_apps_management/models/compliance_policy_rule_summary.rb', line 50 def patch_selection @patch_selection end |
#patch_type_id ⇒ Array<String>
[Required] PlatformConfiguration OCID for the patch type to which this CompliancePolicyRule applies.
42 43 44 |
# File 'lib/oci/fleet_apps_management/models/compliance_policy_rule_summary.rb', line 42 def patch_type_id @patch_type_id end |
#product_version ⇒ OCI::FleetAppsManagement::Models::ProductVersionDetails
This attribute is required.
38 39 40 |
# File 'lib/oci/fleet_apps_management/models/compliance_policy_rule_summary.rb', line 38 def product_version @product_version end |
#severity ⇒ Array<String>
Severity to which this CompliancePolicyRule applies.
46 47 48 |
# File 'lib/oci/fleet_apps_management/models/compliance_policy_rule_summary.rb', line 46 def severity @severity end |
#system_tags ⇒ Hash<String, Hash<String, Object>>
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}
102 103 104 |
# File 'lib/oci/fleet_apps_management/models/compliance_policy_rule_summary.rb', line 102 def @system_tags end |
#time_created ⇒ DateTime
[Required] The date and time the CompliancePolicyRule was created, in the format defined by RFC 3339.
Example: 2016-08-25T21:10:29.600Z
67 68 69 |
# File 'lib/oci/fleet_apps_management/models/compliance_policy_rule_summary.rb', line 67 def time_created @time_created end |
#time_updated ⇒ DateTime
The date and time the CompliancePolicyRule was updated, in the format defined by RFC 3339.
Example: 2016-08-25T21:10:29.600Z
74 75 76 |
# File 'lib/oci/fleet_apps_management/models/compliance_policy_rule_summary.rb', line 74 def time_updated @time_updated end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 |
# File 'lib/oci/fleet_apps_management/models/compliance_policy_rule_summary.rb', line 105 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'id': :'id', 'display_name': :'displayName', 'compliance_policy_id': :'compliancePolicyId', 'product_version': :'productVersion', 'patch_type_id': :'patchTypeId', 'severity': :'severity', 'patch_selection': :'patchSelection', 'grace_period': :'gracePeriod', 'compartment_id': :'compartmentId', 'time_created': :'timeCreated', 'time_updated': :'timeUpdated', 'lifecycle_state': :'lifecycleState', 'lifecycle_details': :'lifecycleDetails', 'freeform_tags': :'freeformTags', 'defined_tags': :'definedTags', 'system_tags': :'systemTags' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 |
# File 'lib/oci/fleet_apps_management/models/compliance_policy_rule_summary.rb', line 129 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'id': :'String', 'display_name': :'String', 'compliance_policy_id': :'String', 'product_version': :'OCI::FleetAppsManagement::Models::ProductVersionDetails', 'patch_type_id': :'Array<String>', 'severity': :'Array<String>', 'patch_selection': :'OCI::FleetAppsManagement::Models::PatchSelectionDetails', 'grace_period': :'String', 'compartment_id': :'String', 'time_created': :'DateTime', 'time_updated': :'DateTime', 'lifecycle_state': :'String', 'lifecycle_details': :'String', 'freeform_tags': :'Hash<String, String>', 'defined_tags': :'Hash<String, Hash<String, Object>>', 'system_tags': :'Hash<String, Hash<String, Object>>' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 |
# File 'lib/oci/fleet_apps_management/models/compliance_policy_rule_summary.rb', line 296 def ==(other) return true if equal?(other) self.class == other.class && id == other.id && display_name == other.display_name && compliance_policy_id == other.compliance_policy_id && product_version == other.product_version && patch_type_id == other.patch_type_id && severity == other.severity && patch_selection == other.patch_selection && grace_period == other.grace_period && compartment_id == other.compartment_id && time_created == other.time_created && time_updated == other.time_updated && lifecycle_state == other.lifecycle_state && lifecycle_details == other.lifecycle_details && == other. && == other. && == other. end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 |
# File 'lib/oci/fleet_apps_management/models/compliance_policy_rule_summary.rb', line 341 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) self.class.swagger_types.each_pair do |key, type| if type =~ /^Array<(.*)>/i # check to ensure the input is an array given that the the attribute # is documented as an array but the input is not if attributes[self.class.attribute_map[key]].is_a?(Array) public_method("#{key}=").call( attributes[self.class.attribute_map[key]] .map { |v| OCI::Internal::Util.convert_to_type(Regexp.last_match(1), v) } ) end elsif !attributes[self.class.attribute_map[key]].nil? public_method("#{key}=").call( OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]]) ) end # or else data not found in attributes(hash), not an issue as the data can be optional end self end |
#eql?(other) ⇒ Boolean
321 322 323 |
# File 'lib/oci/fleet_apps_management/models/compliance_policy_rule_summary.rb', line 321 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
330 331 332 |
# File 'lib/oci/fleet_apps_management/models/compliance_policy_rule_summary.rb', line 330 def hash [id, display_name, compliance_policy_id, product_version, patch_type_id, severity, patch_selection, grace_period, compartment_id, time_created, time_updated, lifecycle_state, lifecycle_details, , , ].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
374 375 376 377 378 379 380 381 382 383 |
# File 'lib/oci/fleet_apps_management/models/compliance_policy_rule_summary.rb', line 374 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = public_method(attr).call next if value.nil? && !instance_variable_defined?("@#{attr}") hash[param] = _to_hash(value) end hash end |
#to_s ⇒ String
Returns the string representation of the object
368 369 370 |
# File 'lib/oci/fleet_apps_management/models/compliance_policy_rule_summary.rb', line 368 def to_s to_hash.to_s end |