Class: Fog::Oracle::Model
- Inherits:
-
Model
- Object
- Model
- Fog::Oracle::Model
show all
- Defined in:
- lib/fog/oracle/models/model.rb
Direct Known Subclasses
Compute::Oracle::AccessHost, Compute::Oracle::ArchiveManagementAttributes, Compute::Oracle::BackupManagementAttributes, Compute::Oracle::BaseObject, Compute::Oracle::BusinessSelection, Compute::Oracle::ComparisonType, Compute::Oracle::EventManagementAttributes, Compute::Oracle::EventQuery, Compute::Oracle::Hypervisor, Compute::Oracle::IPAddress, Compute::Oracle::JobError, Compute::Oracle::JobManagementAttributes, Compute::Oracle::KeyValuePair, Compute::Oracle::LoggerManagementAttributes, Compute::Oracle::LoginCertificate, Compute::Oracle::MacManagementAttributes, Compute::Oracle::PasswordChange, Compute::Oracle::QosValue, Compute::Oracle::RepositoryImport, Compute::Oracle::ServerAbilities, Compute::Oracle::ServerEventAttributes, Compute::Oracle::SessionProperties, Compute::Oracle::Statistic, Compute::Oracle::StatisticQuery, Compute::Oracle::StatisticsManagementAttributes, Compute::Oracle::StorageAbilityRecord, Compute::Oracle::StringList, Compute::Oracle::UnselectedObjectDetails, Compute::Oracle::WsErrorDetails, Compute::Oracle::WsException
Instance Attribute Summary collapse
Class Method Summary
collapse
Instance Attribute Details
#response ⇒ Object
Returns the value of attribute response.
7
8
9
|
# File 'lib/fog/oracle/models/model.rb', line 7
def response
@response
end
|
Class Method Details
.has_many(name, collection_name, options = {}) ⇒ Object
13
14
15
|
# File 'lib/fog/oracle/models/model.rb', line 13
def self.has_many(name, collection_name, options = {})
Fog::Associations::OracleManyModels.new(self, name, collection_name, options)
end
|
.has_many_identities(name, collection_name, options = {}) ⇒ Object
21
22
23
|
# File 'lib/fog/oracle/models/model.rb', line 21
def self.has_many_identities(name, collection_name, options = {})
Fog::Associations::OracleManyIdentities.new(self, name, collection_name, options)
end
|
.has_one(name, collection_name, options = {}) ⇒ Object
9
10
11
|
# File 'lib/fog/oracle/models/model.rb', line 9
def self.has_one(name, collection_name, options = {})
Fog::Associations::OracleOneModel.new(self, name, collection_name, options)
end
|
.has_one_identity(name, collection_name, options = {}) ⇒ Object
17
18
19
|
# File 'lib/fog/oracle/models/model.rb', line 17
def self.has_one_identity(name, collection_name, options = {})
Fog::Associations::OracleOneIdentity.new(self, name, collection_name, options)
end
|