Class: Google::Resourcemanager::Property::NameValues

Inherits:
Base
  • Object
show all
Defined in:
lib/google/resourcemanager/property/namevalues.rb

Overview

A Puppet property that holds a string

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Base

#insync?

Class Method Details

.api_munge(value) ⇒ Object



35
36
37
38
# File 'lib/google/resourcemanager/property/namevalues.rb', line 35

def self.api_munge(value)
  return if value.nil?
  value
end

.unsafe_munge(value) ⇒ Object



40
41
42
43
# File 'lib/google/resourcemanager/property/namevalues.rb', line 40

def self.unsafe_munge(value)
  return if value.nil?
  value
end

Instance Method Details

#unsafe_munge(value) ⇒ Object



45
46
47
# File 'lib/google/resourcemanager/property/namevalues.rb', line 45

def unsafe_munge(value)
  self.class.unsafe_munge(value)
end