Sha256: f3b67d4317044eb4b5a0b698e3f99273ef1e6f2ee5e7b623f40b4d448caa8329
Contents?: true
Size: 621 Bytes
Versions: 12
Compression:
Stored size: 621 Bytes
Contents
module Fog module Brightbox class Compute class Real # @param [String] identifier Unique reference to identify the resource # @param [Hash] options # @option options [Boolean] :nested passed through with the API request. When true nested resources are expanded. # # @return [Hash] if successful Hash version of JSON object # def get_config_map(identifier, options = {}) return nil if identifier.nil? || identifier == "" wrapped_request("get", "/1.0/config_maps/#{identifier}", [200], options) end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems