Class: OCI::DataSafe::Models::AuditArchiveRetrieval
- Inherits:
-
Object
- Object
- OCI::DataSafe::Models::AuditArchiveRetrieval
- Defined in:
- lib/oci/data_safe/models/audit_archive_retrieval.rb
Overview
Represents the archive retrieve request for the audit data. You can retrieve audit data for a target database from the archive and store it online. For more information, see Retrieve Audit Data for a Target Database from the Archive.
Constant Summary collapse
- LIFECYCLE_STATE_ENUM =
[ LIFECYCLE_STATE_CREATING = 'CREATING'.freeze, LIFECYCLE_STATE_ACTIVE = 'ACTIVE'.freeze, LIFECYCLE_STATE_NEEDS_ATTENTION = 'NEEDS_ATTENTION'.freeze, LIFECYCLE_STATE_FAILED = 'FAILED'.freeze, LIFECYCLE_STATE_DELETING = 'DELETING'.freeze, LIFECYCLE_STATE_DELETED = 'DELETED'.freeze, LIFECYCLE_STATE_UPDATING = 'UPDATING'.freeze, LIFECYCLE_STATE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
Instance Attribute Summary collapse
-
#audit_event_count ⇒ Integer
Total count of audit events to be retrieved from the archive for the specified date range.
-
#compartment_id ⇒ String
[Required] The OCID of the compartment that contains archive retrieval.
-
#defined_tags ⇒ Hash<String, Hash<String, Object>>
Defined tags for this resource.
-
#description ⇒ String
Description of the archive retrieval.
-
#display_name ⇒ String
[Required] The display name of the archive retrieval.
-
#end_date ⇒ DateTime
[Required] End month of the archive retrieval, in the format defined by RFC3339.
-
#error_info ⇒ String
The Error details of a failed archive retrieval.
-
#freeform_tags ⇒ Hash<String, String>
Free-form tags for this resource.
-
#id ⇒ String
[Required] The OCID of the archive retrieval.
-
#lifecycle_details ⇒ String
Details about the current state of the archive retrieval.
-
#lifecycle_state ⇒ String
[Required] The current state of the archive retrieval.
-
#start_date ⇒ DateTime
[Required] Start month of the archive retrieval, in the format defined by RFC3339.
-
#system_tags ⇒ Hash<String, Hash<String, Object>>
System tags for this resource.
-
#target_id ⇒ String
[Required] The OCID of the target associated with the archive retrieval.
-
#time_completed ⇒ DateTime
The date time when archive retrieval request was fulfilled, in the format defined by RFC3339.
-
#time_of_expiry ⇒ DateTime
The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.
-
#time_requested ⇒ DateTime
The date time when archive retrieval was requested, in the format defined by RFC3339.
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 = {}) ⇒ AuditArchiveRetrieval
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 = {}) ⇒ AuditArchiveRetrieval
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 268 269 270 271 272 273 |
# File 'lib/oci/data_safe/models/audit_archive_retrieval.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.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.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.description = attributes[:'description'] if attributes[:'description'] self.start_date = attributes[:'startDate'] if attributes[:'startDate'] raise 'You cannot provide both :startDate and :start_date' if attributes.key?(:'startDate') && attributes.key?(:'start_date') self.start_date = attributes[:'start_date'] if attributes[:'start_date'] self.end_date = attributes[:'endDate'] if attributes[:'endDate'] raise 'You cannot provide both :endDate and :end_date' if attributes.key?(:'endDate') && attributes.key?(:'end_date') self.end_date = attributes[:'end_date'] if attributes[:'end_date'] self.target_id = attributes[:'targetId'] if attributes[:'targetId'] raise 'You cannot provide both :targetId and :target_id' if attributes.key?(:'targetId') && attributes.key?(:'target_id') self.target_id = attributes[:'target_id'] if attributes[:'target_id'] self.time_requested = attributes[:'timeRequested'] if attributes[:'timeRequested'] raise 'You cannot provide both :timeRequested and :time_requested' if attributes.key?(:'timeRequested') && attributes.key?(:'time_requested') self.time_requested = attributes[:'time_requested'] if attributes[:'time_requested'] self.time_completed = attributes[:'timeCompleted'] if attributes[:'timeCompleted'] raise 'You cannot provide both :timeCompleted and :time_completed' if attributes.key?(:'timeCompleted') && attributes.key?(:'time_completed') self.time_completed = attributes[:'time_completed'] if attributes[:'time_completed'] self.time_of_expiry = attributes[:'timeOfExpiry'] if attributes[:'timeOfExpiry'] raise 'You cannot provide both :timeOfExpiry and :time_of_expiry' if attributes.key?(:'timeOfExpiry') && attributes.key?(:'time_of_expiry') self.time_of_expiry = attributes[:'time_of_expiry'] if attributes[:'time_of_expiry'] self.audit_event_count = attributes[:'auditEventCount'] if attributes[:'auditEventCount'] raise 'You cannot provide both :auditEventCount and :audit_event_count' if attributes.key?(:'auditEventCount') && attributes.key?(:'audit_event_count') self.audit_event_count = attributes[:'audit_event_count'] if attributes[:'audit_event_count'] self.error_info = attributes[:'errorInfo'] if attributes[:'errorInfo'] raise 'You cannot provide both :errorInfo and :error_info' if attributes.key?(:'errorInfo') && attributes.key?(:'error_info') self.error_info = attributes[:'error_info'] if attributes[:'error_info'] 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
#audit_event_count ⇒ Integer
Total count of audit events to be retrieved from the archive for the specified date range.
67 68 69 |
# File 'lib/oci/data_safe/models/audit_archive_retrieval.rb', line 67 def audit_event_count @audit_event_count end |
#compartment_id ⇒ String
[Required] The OCID of the compartment that contains archive retrieval.
31 32 33 |
# File 'lib/oci/data_safe/models/audit_archive_retrieval.rb', line 31 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. For more information, see Resource Tags
Example: {\"Operations\": {\"CostCenter\": \"42\"}}
93 94 95 |
# File 'lib/oci/data_safe/models/audit_archive_retrieval.rb', line 93 def @defined_tags end |
#description ⇒ String
Description of the archive retrieval.
39 40 41 |
# File 'lib/oci/data_safe/models/audit_archive_retrieval.rb', line 39 def description @description end |
#display_name ⇒ String
[Required] The display name of the archive retrieval. The name does not have to be unique, and is changeable.
35 36 37 |
# File 'lib/oci/data_safe/models/audit_archive_retrieval.rb', line 35 def display_name @display_name end |
#end_date ⇒ DateTime
[Required] End month of the archive retrieval, in the format defined by RFC3339.
47 48 49 |
# File 'lib/oci/data_safe/models/audit_archive_retrieval.rb', line 47 def end_date @end_date end |
#error_info ⇒ String
The Error details of a failed archive retrieval.
71 72 73 |
# File 'lib/oci/data_safe/models/audit_archive_retrieval.rb', line 71 def error_info @error_info end |
#freeform_tags ⇒ Hash<String, String>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags
Example: {\"Department\": \"Finance\"}
86 87 88 |
# File 'lib/oci/data_safe/models/audit_archive_retrieval.rb', line 86 def @freeform_tags end |
#id ⇒ String
[Required] The OCID of the archive retrieval.
27 28 29 |
# File 'lib/oci/data_safe/models/audit_archive_retrieval.rb', line 27 def id @id end |
#lifecycle_details ⇒ String
Details about the current state of the archive retrieval.
79 80 81 |
# File 'lib/oci/data_safe/models/audit_archive_retrieval.rb', line 79 def lifecycle_details @lifecycle_details end |
#lifecycle_state ⇒ String
[Required] The current state of the archive retrieval.
75 76 77 |
# File 'lib/oci/data_safe/models/audit_archive_retrieval.rb', line 75 def lifecycle_state @lifecycle_state end |
#start_date ⇒ DateTime
[Required] Start month of the archive retrieval, in the format defined by RFC3339.
43 44 45 |
# File 'lib/oci/data_safe/models/audit_archive_retrieval.rb', line 43 def start_date @start_date end |
#system_tags ⇒ Hash<String, Hash<String, Object>>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}
99 100 101 |
# File 'lib/oci/data_safe/models/audit_archive_retrieval.rb', line 99 def @system_tags end |
#target_id ⇒ String
[Required] The OCID of the target associated with the archive retrieval.
51 52 53 |
# File 'lib/oci/data_safe/models/audit_archive_retrieval.rb', line 51 def target_id @target_id end |
#time_completed ⇒ DateTime
The date time when archive retrieval request was fulfilled, in the format defined by RFC3339.
59 60 61 |
# File 'lib/oci/data_safe/models/audit_archive_retrieval.rb', line 59 def time_completed @time_completed end |
#time_of_expiry ⇒ DateTime
The date time when retrieved archive data will be deleted from Data Safe and unloaded back into archival.
63 64 65 |
# File 'lib/oci/data_safe/models/audit_archive_retrieval.rb', line 63 def time_of_expiry @time_of_expiry end |
#time_requested ⇒ DateTime
The date time when archive retrieval was requested, in the format defined by RFC3339.
55 56 57 |
# File 'lib/oci/data_safe/models/audit_archive_retrieval.rb', line 55 def time_requested @time_requested end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 |
# File 'lib/oci/data_safe/models/audit_archive_retrieval.rb', line 102 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'id': :'id', 'compartment_id': :'compartmentId', 'display_name': :'displayName', 'description': :'description', 'start_date': :'startDate', 'end_date': :'endDate', 'target_id': :'targetId', 'time_requested': :'timeRequested', 'time_completed': :'timeCompleted', 'time_of_expiry': :'timeOfExpiry', 'audit_event_count': :'auditEventCount', 'error_info': :'errorInfo', '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.
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 |
# File 'lib/oci/data_safe/models/audit_archive_retrieval.rb', line 127 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'id': :'String', 'compartment_id': :'String', 'display_name': :'String', 'description': :'String', 'start_date': :'DateTime', 'end_date': :'DateTime', 'target_id': :'String', 'time_requested': :'DateTime', 'time_completed': :'DateTime', 'time_of_expiry': :'DateTime', 'audit_event_count': :'Integer', 'error_info': :'String', '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.
295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 |
# File 'lib/oci/data_safe/models/audit_archive_retrieval.rb', line 295 def ==(other) return true if equal?(other) self.class == other.class && id == other.id && compartment_id == other.compartment_id && display_name == other.display_name && description == other.description && start_date == other.start_date && end_date == other.end_date && target_id == other.target_id && time_requested == other.time_requested && time_completed == other.time_completed && time_of_expiry == other.time_of_expiry && audit_event_count == other.audit_event_count && error_info == other.error_info && 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/data_safe/models/audit_archive_retrieval.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/data_safe/models/audit_archive_retrieval.rb', line 321 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
330 331 332 |
# File 'lib/oci/data_safe/models/audit_archive_retrieval.rb', line 330 def hash [id, compartment_id, display_name, description, start_date, end_date, target_id, time_requested, time_completed, time_of_expiry, audit_event_count, error_info, 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/data_safe/models/audit_archive_retrieval.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/data_safe/models/audit_archive_retrieval.rb', line 368 def to_s to_hash.to_s end |