Class: OCI::LogAnalytics::Models::LogAnalyticsEmBridge
- Inherits:
-
Object
- Object
- OCI::LogAnalytics::Models::LogAnalyticsEmBridge
- Defined in:
- lib/oci/log_analytics/models/log_analytics_em_bridge.rb
Overview
Configuration details for enterprise manager bridge.
Constant Summary collapse
- LIFECYCLE_STATE_ENUM =
[ LIFECYCLE_STATE_CREATING = 'CREATING'.freeze, LIFECYCLE_STATE_ACTIVE = 'ACTIVE'.freeze, LIFECYCLE_STATE_DELETED = 'DELETED'.freeze, LIFECYCLE_STATE_NEEDS_ATTENTION = 'NEEDS_ATTENTION'.freeze, LIFECYCLE_STATE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
- LAST_IMPORT_PROCESSING_STATUS_ENUM =
[ LAST_IMPORT_PROCESSING_STATUS_NOT_STARTED = 'NOT_STARTED'.freeze, LAST_IMPORT_PROCESSING_STATUS_SUCCESS = 'SUCCESS'.freeze, LAST_IMPORT_PROCESSING_STATUS_IN_PROGRESS = 'IN_PROGRESS'.freeze, LAST_IMPORT_PROCESSING_STATUS_FAILED = 'FAILED'.freeze, LAST_IMPORT_PROCESSING_STATUS_PARTIAL_SUCCESS = 'PARTIAL_SUCCESS'.freeze, LAST_IMPORT_PROCESSING_STATUS_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
Instance Attribute Summary collapse
-
#bucket_name ⇒ String
[Required] Object store bucket name where enterprise manager harvested entities will be uploaded.
-
#compartment_id ⇒ String
[Required] Compartment Identifier [OCID] (docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
-
#defined_tags ⇒ Hash<String, Hash<String, Object>>
Defined tags for this resource.
-
#description ⇒ String
A description for log analytics enterprise manager bridge.
-
#display_name ⇒ String
[Required] Log analytics enterprise manager bridge display name.
-
#em_entities_compartment_id ⇒ String
[Required] Compartment for entities created from enterprise manager.
-
#freeform_tags ⇒ Hash<String, String>
Simple key-value pair that is applied without any predefined name, type or scope.
-
#id ⇒ String
[Required] The enterprise manager bridge OCID.
-
#last_import_processing_details ⇒ String
Processing status details of enterprise manager upload.
-
#last_import_processing_status ⇒ String
[Required] The status from last processing status of enterprise manager upload.
-
#lifecycle_details ⇒ String
lifecycleDetails has additional information regarding substeps such as verifying connection to object store.
-
#lifecycle_state ⇒ String
[Required] The current state of the enterprise manager bridge.
-
#time_created ⇒ DateTime
[Required] The date and time the resource was created, in the format defined by RFC3339.
-
#time_em_data_last_extracted ⇒ DateTime
The timestamp of last enterprise manager upload to OCI Object Store.
-
#time_import_last_processed ⇒ DateTime
The last time of enterprise manager upload was processed.
-
#time_updated ⇒ DateTime
[Required] The date and time the resource was last updated, 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 = {}) ⇒ LogAnalyticsEmBridge
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 = {}) ⇒ LogAnalyticsEmBridge
Initializes the object
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 274 |
# File 'lib/oci/log_analytics/models/log_analytics_em_bridge.rb', line 181 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.description = attributes[:'description'] if attributes[:'description'] 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.em_entities_compartment_id = attributes[:'emEntitiesCompartmentId'] if attributes[:'emEntitiesCompartmentId'] raise 'You cannot provide both :emEntitiesCompartmentId and :em_entities_compartment_id' if attributes.key?(:'emEntitiesCompartmentId') && attributes.key?(:'em_entities_compartment_id') self.em_entities_compartment_id = attributes[:'em_entities_compartment_id'] if attributes[:'em_entities_compartment_id'] self.bucket_name = attributes[:'bucketName'] if attributes[:'bucketName'] raise 'You cannot provide both :bucketName and :bucket_name' if attributes.key?(:'bucketName') && attributes.key?(:'bucket_name') self.bucket_name = attributes[:'bucket_name'] if attributes[:'bucket_name'] 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.last_import_processing_status = attributes[:'lastImportProcessingStatus'] if attributes[:'lastImportProcessingStatus'] raise 'You cannot provide both :lastImportProcessingStatus and :last_import_processing_status' if attributes.key?(:'lastImportProcessingStatus') && attributes.key?(:'last_import_processing_status') self.last_import_processing_status = attributes[:'last_import_processing_status'] if attributes[:'last_import_processing_status'] self.last_import_processing_details = attributes[:'lastImportProcessingDetails'] if attributes[:'lastImportProcessingDetails'] raise 'You cannot provide both :lastImportProcessingDetails and :last_import_processing_details' if attributes.key?(:'lastImportProcessingDetails') && attributes.key?(:'last_import_processing_details') self.last_import_processing_details = attributes[:'last_import_processing_details'] if attributes[:'last_import_processing_details'] self.time_import_last_processed = attributes[:'timeImportLastProcessed'] if attributes[:'timeImportLastProcessed'] raise 'You cannot provide both :timeImportLastProcessed and :time_import_last_processed' if attributes.key?(:'timeImportLastProcessed') && attributes.key?(:'time_import_last_processed') self.time_import_last_processed = attributes[:'time_import_last_processed'] if attributes[:'time_import_last_processed'] self.time_em_data_last_extracted = attributes[:'timeEmDataLastExtracted'] if attributes[:'timeEmDataLastExtracted'] raise 'You cannot provide both :timeEmDataLastExtracted and :time_em_data_last_extracted' if attributes.key?(:'timeEmDataLastExtracted') && attributes.key?(:'time_em_data_last_extracted') self.time_em_data_last_extracted = attributes[:'time_em_data_last_extracted'] if attributes[:'time_em_data_last_extracted'] 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'] end |
Instance Attribute Details
#bucket_name ⇒ String
[Required] Object store bucket name where enterprise manager harvested entities will be uploaded.
56 57 58 |
# File 'lib/oci/log_analytics/models/log_analytics_em_bridge.rb', line 56 def bucket_name @bucket_name end |
#compartment_id ⇒ String
[Required] Compartment Identifier [OCID] (docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
47 48 49 |
# File 'lib/oci/log_analytics/models/log_analytics_em_bridge.rb', line 47 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\"}}
109 110 111 |
# File 'lib/oci/log_analytics/models/log_analytics_em_bridge.rb', line 109 def @defined_tags end |
#description ⇒ String
A description for log analytics enterprise manager bridge.
43 44 45 |
# File 'lib/oci/log_analytics/models/log_analytics_em_bridge.rb', line 43 def description @description end |
#display_name ⇒ String
[Required] Log analytics enterprise manager bridge display name.
38 39 40 |
# File 'lib/oci/log_analytics/models/log_analytics_em_bridge.rb', line 38 def display_name @display_name end |
#em_entities_compartment_id ⇒ String
[Required] Compartment for entities created from enterprise manager.
52 53 54 |
# File 'lib/oci/log_analytics/models/log_analytics_em_bridge.rb', line 52 def em_entities_compartment_id @em_entities_compartment_id 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\"}
103 104 105 |
# File 'lib/oci/log_analytics/models/log_analytics_em_bridge.rb', line 103 def @freeform_tags end |
#id ⇒ String
[Required] The enterprise manager bridge OCID.
33 34 35 |
# File 'lib/oci/log_analytics/models/log_analytics_em_bridge.rb', line 33 def id @id end |
#last_import_processing_details ⇒ String
Processing status details of enterprise manager upload. This provides additional details for failed status
87 88 89 |
# File 'lib/oci/log_analytics/models/log_analytics_em_bridge.rb', line 87 def last_import_processing_details @last_import_processing_details end |
#last_import_processing_status ⇒ String
[Required] The status from last processing status of enterprise manager upload.
81 82 83 |
# File 'lib/oci/log_analytics/models/log_analytics_em_bridge.rb', line 81 def last_import_processing_status @last_import_processing_status end |
#lifecycle_details ⇒ String
lifecycleDetails has additional information regarding substeps such as verifying connection to object store.
76 77 78 |
# File 'lib/oci/log_analytics/models/log_analytics_em_bridge.rb', line 76 def lifecycle_details @lifecycle_details end |
#lifecycle_state ⇒ String
[Required] The current state of the enterprise manager bridge.
71 72 73 |
# File 'lib/oci/log_analytics/models/log_analytics_em_bridge.rb', line 71 def lifecycle_state @lifecycle_state end |
#time_created ⇒ DateTime
[Required] The date and time the resource was created, in the format defined by RFC3339.
61 62 63 |
# File 'lib/oci/log_analytics/models/log_analytics_em_bridge.rb', line 61 def time_created @time_created end |
#time_em_data_last_extracted ⇒ DateTime
The timestamp of last enterprise manager upload to OCI Object Store. This is in the format defined by RFC3339
97 98 99 |
# File 'lib/oci/log_analytics/models/log_analytics_em_bridge.rb', line 97 def time_em_data_last_extracted @time_em_data_last_extracted end |
#time_import_last_processed ⇒ DateTime
The last time of enterprise manager upload was processed. This is in the format defined by RFC3339
92 93 94 |
# File 'lib/oci/log_analytics/models/log_analytics_em_bridge.rb', line 92 def time_import_last_processed @time_import_last_processed end |
#time_updated ⇒ DateTime
[Required] The date and time the resource was last updated, in the format defined by RFC3339.
66 67 68 |
# File 'lib/oci/log_analytics/models/log_analytics_em_bridge.rb', line 66 def time_updated @time_updated end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 |
# File 'lib/oci/log_analytics/models/log_analytics_em_bridge.rb', line 112 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'id': :'id', 'display_name': :'displayName', 'description': :'description', 'compartment_id': :'compartmentId', 'em_entities_compartment_id': :'emEntitiesCompartmentId', 'bucket_name': :'bucketName', 'time_created': :'timeCreated', 'time_updated': :'timeUpdated', 'lifecycle_state': :'lifecycleState', 'lifecycle_details': :'lifecycleDetails', 'last_import_processing_status': :'lastImportProcessingStatus', 'last_import_processing_details': :'lastImportProcessingDetails', 'time_import_last_processed': :'timeImportLastProcessed', 'time_em_data_last_extracted': :'timeEmDataLastExtracted', 'freeform_tags': :'freeformTags', 'defined_tags': :'definedTags' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 |
# File 'lib/oci/log_analytics/models/log_analytics_em_bridge.rb', line 136 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'id': :'String', 'display_name': :'String', 'description': :'String', 'compartment_id': :'String', 'em_entities_compartment_id': :'String', 'bucket_name': :'String', 'time_created': :'DateTime', 'time_updated': :'DateTime', 'lifecycle_state': :'String', 'lifecycle_details': :'String', 'last_import_processing_status': :'String', 'last_import_processing_details': :'String', 'time_import_last_processed': :'DateTime', 'time_em_data_last_extracted': :'DateTime', 'freeform_tags': :'Hash<String, String>', 'defined_tags': :'Hash<String, Hash<String, Object>>' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 |
# File 'lib/oci/log_analytics/models/log_analytics_em_bridge.rb', line 309 def ==(other) return true if equal?(other) self.class == other.class && id == other.id && display_name == other.display_name && description == other.description && compartment_id == other.compartment_id && em_entities_compartment_id == other.em_entities_compartment_id && bucket_name == other.bucket_name && time_created == other.time_created && time_updated == other.time_updated && lifecycle_state == other.lifecycle_state && lifecycle_details == other.lifecycle_details && last_import_processing_status == other.last_import_processing_status && last_import_processing_details == other.last_import_processing_details && time_import_last_processed == other.time_import_last_processed && time_em_data_last_extracted == other.time_em_data_last_extracted && == other. && == other. end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 |
# File 'lib/oci/log_analytics/models/log_analytics_em_bridge.rb', line 354 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
334 335 336 |
# File 'lib/oci/log_analytics/models/log_analytics_em_bridge.rb', line 334 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
343 344 345 |
# File 'lib/oci/log_analytics/models/log_analytics_em_bridge.rb', line 343 def hash [id, display_name, description, compartment_id, em_entities_compartment_id, bucket_name, time_created, time_updated, lifecycle_state, lifecycle_details, last_import_processing_status, last_import_processing_details, time_import_last_processed, time_em_data_last_extracted, , ].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
387 388 389 390 391 392 393 394 395 396 |
# File 'lib/oci/log_analytics/models/log_analytics_em_bridge.rb', line 387 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
381 382 383 |
# File 'lib/oci/log_analytics/models/log_analytics_em_bridge.rb', line 381 def to_s to_hash.to_s end |