Class: OCI::Dblm::Models::DblmPatchManagement
- Inherits:
-
Object
- Object
- OCI::Dblm::Models::DblmPatchManagement
- Defined in:
- lib/oci/dblm/models/dblm_patch_management.rb
Overview
Description of PatchManagement.
Constant Summary collapse
- LIFECYCLE_STATE_ENUM =
[ LIFECYCLE_STATE_CREATING = 'CREATING'.freeze, LIFECYCLE_STATE_ACTIVE = 'ACTIVE'.freeze, LIFECYCLE_STATE_FAILED = 'FAILED'.freeze, LIFECYCLE_STATE_NEEDS_ATTENTION = 'NEEDS_ATTENTION'.freeze, LIFECYCLE_STATE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
Instance Attribute Summary collapse
-
#compartment_id ⇒ String
[Required] Compartment Identifier.
-
#defined_tags ⇒ Hash<String, Hash<String, Object>>
Defined tags for this resource.
-
#freeform_tags ⇒ Hash<String, String>
Simple key-value pair that is applied without any predefined name, type or scope.
-
#images_patch_recommendation_summary ⇒ Object
Summary of image patches recommended to install.
-
#lifecycle_state ⇒ String
The current state of the feature.
-
#message ⇒ String
A message describing the status of the feature's state.
-
#patch_operations_summary ⇒ Object
Summary of patch operations.
-
#resources ⇒ Array<OCI::Dblm::Models::ResourceInfo>
resources objects.
-
#resources_patch_compliance_summary ⇒ Object
Summary of image patches to be compliant to install.
-
#system_tags ⇒ Hash<String, Hash<String, Object>>
System tags for this resource.
-
#time_enabled ⇒ DateTime
The time the Vulnerability was enabled.
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 = {}) ⇒ DblmPatchManagement
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 = {}) ⇒ DblmPatchManagement
Initializes the object
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 |
# File 'lib/oci/dblm/models/dblm_patch_management.rb', line 125 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.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.resources = attributes[:'resources'] if attributes[:'resources'] self. = attributes[:'message'] if attributes[:'message'] self.time_enabled = attributes[:'timeEnabled'] if attributes[:'timeEnabled'] raise 'You cannot provide both :timeEnabled and :time_enabled' if attributes.key?(:'timeEnabled') && attributes.key?(:'time_enabled') self.time_enabled = attributes[:'time_enabled'] if attributes[:'time_enabled'] 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.patch_operations_summary = attributes[:'patchOperationsSummary'] if attributes[:'patchOperationsSummary'] raise 'You cannot provide both :patchOperationsSummary and :patch_operations_summary' if attributes.key?(:'patchOperationsSummary') && attributes.key?(:'patch_operations_summary') self.patch_operations_summary = attributes[:'patch_operations_summary'] if attributes[:'patch_operations_summary'] self.images_patch_recommendation_summary = attributes[:'imagesPatchRecommendationSummary'] if attributes[:'imagesPatchRecommendationSummary'] raise 'You cannot provide both :imagesPatchRecommendationSummary and :images_patch_recommendation_summary' if attributes.key?(:'imagesPatchRecommendationSummary') && attributes.key?(:'images_patch_recommendation_summary') self.images_patch_recommendation_summary = attributes[:'images_patch_recommendation_summary'] if attributes[:'images_patch_recommendation_summary'] self.resources_patch_compliance_summary = attributes[:'resourcesPatchComplianceSummary'] if attributes[:'resourcesPatchComplianceSummary'] raise 'You cannot provide both :resourcesPatchComplianceSummary and :resources_patch_compliance_summary' if attributes.key?(:'resourcesPatchComplianceSummary') && attributes.key?(:'resources_patch_compliance_summary') self.resources_patch_compliance_summary = attributes[:'resources_patch_compliance_summary'] if attributes[:'resources_patch_compliance_summary'] 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] Compartment Identifier
22 23 24 |
# File 'lib/oci/dblm/models/dblm_patch_management.rb', line 22 def compartment_id @compartment_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\"}}
62 63 64 |
# File 'lib/oci/dblm/models/dblm_patch_management.rb', line 62 def @defined_tags 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\"}
56 57 58 |
# File 'lib/oci/dblm/models/dblm_patch_management.rb', line 56 def @freeform_tags end |
#images_patch_recommendation_summary ⇒ Object
Summary of image patches recommended to install.
46 47 48 |
# File 'lib/oci/dblm/models/dblm_patch_management.rb', line 46 def images_patch_recommendation_summary @images_patch_recommendation_summary end |
#lifecycle_state ⇒ String
The current state of the feature.
38 39 40 |
# File 'lib/oci/dblm/models/dblm_patch_management.rb', line 38 def lifecycle_state @lifecycle_state end |
#message ⇒ String
A message describing the status of the feature's state
30 31 32 |
# File 'lib/oci/dblm/models/dblm_patch_management.rb', line 30 def @message end |
#patch_operations_summary ⇒ Object
Summary of patch operations.
42 43 44 |
# File 'lib/oci/dblm/models/dblm_patch_management.rb', line 42 def patch_operations_summary @patch_operations_summary end |
#resources ⇒ Array<OCI::Dblm::Models::ResourceInfo>
resources objects
26 27 28 |
# File 'lib/oci/dblm/models/dblm_patch_management.rb', line 26 def resources @resources end |
#resources_patch_compliance_summary ⇒ Object
Summary of image patches to be compliant to install.
50 51 52 |
# File 'lib/oci/dblm/models/dblm_patch_management.rb', line 50 def resources_patch_compliance_summary @resources_patch_compliance_summary 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\"}}
68 69 70 |
# File 'lib/oci/dblm/models/dblm_patch_management.rb', line 68 def @system_tags end |
#time_enabled ⇒ DateTime
The time the Vulnerability was enabled. An RFC3339 formatted datetime string.
34 35 36 |
# File 'lib/oci/dblm/models/dblm_patch_management.rb', line 34 def time_enabled @time_enabled end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
# File 'lib/oci/dblm/models/dblm_patch_management.rb', line 71 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'compartment_id': :'compartmentId', 'resources': :'resources', 'message': :'message', 'time_enabled': :'timeEnabled', 'lifecycle_state': :'lifecycleState', 'patch_operations_summary': :'patchOperationsSummary', 'images_patch_recommendation_summary': :'imagesPatchRecommendationSummary', 'resources_patch_compliance_summary': :'resourcesPatchComplianceSummary', 'freeform_tags': :'freeformTags', 'defined_tags': :'definedTags', 'system_tags': :'systemTags' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 |
# File 'lib/oci/dblm/models/dblm_patch_management.rb', line 90 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'compartment_id': :'String', 'resources': :'Array<OCI::Dblm::Models::ResourceInfo>', 'message': :'String', 'time_enabled': :'DateTime', 'lifecycle_state': :'String', 'patch_operations_summary': :'Object', 'images_patch_recommendation_summary': :'Object', 'resources_patch_compliance_summary': :'Object', '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.
210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 |
# File 'lib/oci/dblm/models/dblm_patch_management.rb', line 210 def ==(other) return true if equal?(other) self.class == other.class && compartment_id == other.compartment_id && resources == other.resources && == other. && time_enabled == other.time_enabled && lifecycle_state == other.lifecycle_state && patch_operations_summary == other.patch_operations_summary && images_patch_recommendation_summary == other.images_patch_recommendation_summary && resources_patch_compliance_summary == other.resources_patch_compliance_summary && == other. && == other. && == other. end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
# File 'lib/oci/dblm/models/dblm_patch_management.rb', line 250 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
230 231 232 |
# File 'lib/oci/dblm/models/dblm_patch_management.rb', line 230 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
239 240 241 |
# File 'lib/oci/dblm/models/dblm_patch_management.rb', line 239 def hash [compartment_id, resources, , time_enabled, lifecycle_state, patch_operations_summary, images_patch_recommendation_summary, resources_patch_compliance_summary, , , ].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
283 284 285 286 287 288 289 290 291 292 |
# File 'lib/oci/dblm/models/dblm_patch_management.rb', line 283 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
277 278 279 |
# File 'lib/oci/dblm/models/dblm_patch_management.rb', line 277 def to_s to_hash.to_s end |