Sha256: 4555e666a20c127609be27c1eb350170ad2c84a2b5e888fb128e58be3395053d
Contents?: true
Size: 456 Bytes
Versions: 12
Compression:
Stored size: 456 Bytes
Contents
require 'fog/core/collection' module Fog module Compute class OracleCloud class SecurityApplications < Fog::Collection model Fog::Compute::OracleCloud::SecurityApplication def all data = service.list_security_applications().body['result'] load(data) end def get(name) data = service.get_security_application(name).body new(data) end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems