Sha256: 9550c4d4e705f69d20729a5b07c0f26e8f368445bab37a3369d22c531312d57d
Contents?: true
Size: 584 Bytes
Versions: 17
Compression:
Stored size: 584 Bytes
Contents
require 'fog/ecloud/models/compute/password_complexity_rule' module Fog module Compute class Ecloud class PasswordComplexityRules < Fog::Ecloud::Collection identity :href model Fog::Compute::Ecloud::PasswordComplexityRule def all data = service.get_password_complexity_rules(href).body load(data) end def get(uri) if data = service.get_password_complexity_rule(uri) new(data.body) end rescue Fog::Errors::NotFound nil end end end end end
Version data entries
17 entries across 17 versions & 5 rubygems