Sha256: 76f7564c62d7cce43837db3d0399da66ead6e9cde90e68118fa45f7ec70ab90e
Contents?: true
Size: 890 Bytes
Versions: 4
Compression:
Stored size: 890 Bytes
Contents
require 'fog/huaweicloud/models/collection' require 'fog/identity/huaweicloud/v3/models/service' module Fog module Identity class HuaweiCloud class V3 class Services < Fog::HuaweiCloud::Collection model Fog::Identity::HuaweiCloud::V3::Service def all(options = {}) load_response(service.list_services(options), 'services') end def find_by_id(id) cached_service = find { |service| service.id == id } return cached_service if cached_service service_hash = service.get_service(id).body['service'] Fog::Identity::HuaweiCloud::V3::Service.new( service_hash.merge(:service => service) ) end def destroy(id) service = find_by_id(id) service.destroy end end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems