Class: Fog::Compute::Oracle::ServerUpdateRepositoryConfigurations
- Inherits:
-
Oracle::Collection
- Object
- Fog::Collection
- Oracle::Collection
- Fog::Compute::Oracle::ServerUpdateRepositoryConfigurations
show all
- Defined in:
- lib/fog/oracle/models/compute/server_update_repository_configurations.rb
Instance Attribute Summary
#response
Instance Method Summary
collapse
#id_value, #load_response, #new_from_response
Instance Method Details
#all ⇒ Object
10
11
12
13
|
# File 'lib/fog/oracle/models/compute/server_update_repository_configurations.rb', line 10
def all()
data = service.list_server_update_repository_configurations()
load_response(data)
end
|
#get(id) ⇒ Object
15
16
17
18
|
# File 'lib/fog/oracle/models/compute/server_update_repository_configurations.rb', line 15
def get(id)
data = service.get_server_update_repository_configuration(id_value(id))
new_from_response(data)
end
|