class SDM::AKSServiceAccount
Attributes
healthy[RW]
True if the datasource is reachable and the credentials are valid.
hostname[RW]
id[RW]
Unique identifier of the Resource.
name[RW]
Unique human-readable name of the Resource.
port[RW]
token[RW]
Public Class Methods
new( id:nil \ , name:nil \ , healthy:nil \ , hostname:nil \ , port:nil \ , token:nil \ )
click to toggle source
# File lib/models/porcelain.rb, line 1849 def initialize( id:nil \ , name:nil \ , healthy:nil \ , hostname:nil \ , port:nil \ , token:nil \ ) if id != nil @id = id end if name != nil @name = name end if healthy != nil @healthy = healthy end if hostname != nil @hostname = hostname end if port != nil @port = port end if token != nil @token = token end end
Public Instance Methods
to_json(options={})
click to toggle source
# File lib/models/porcelain.rb, line 1881 def to_json(options={}) hash = {} self.instance_variables.each do |var| hash[var.id2name.delete_prefix('@')] = self.instance_variable_get var end hash.to_json end