Class: SDM::DB2I

Inherits:
Object
  • Object
show all
Defined in:
lib/models/porcelain.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id: nil, name: nil, healthy: nil, tags: nil, hostname: nil, username: nil, password: nil, port_override: nil, port: nil, tls_required: nil) ⇒ DB2I

Returns a new instance of DB2I.



895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
# File 'lib/models/porcelain.rb', line 895

def initialize(
  id: nil,
  name: nil,
  healthy: nil,
  tags: nil,
  hostname: nil,
  username: nil,
  password: nil,
  port_override: nil,
  port: nil,
  tls_required: nil
)
  if id != nil
    @id = id
  end
  if name != nil
    @name = name
  end
  if healthy != nil
    @healthy = healthy
  end
  if tags != nil
    @tags = tags
  end
  if hostname != nil
    @hostname = hostname
  end
  if username != nil
    @username = username
  end
  if password != nil
    @password = password
  end
  if port_override != nil
    @port_override = port_override
  end
  if port != nil
    @port = port
  end
  if tls_required != nil
    @tls_required = tls_required
  end
end

Instance Attribute Details

#healthyObject

True if the datasource is reachable and the credentials are valid.



879
880
881
# File 'lib/models/porcelain.rb', line 879

def healthy
  @healthy
end

#hostnameObject

Returns the value of attribute hostname.



883
884
885
# File 'lib/models/porcelain.rb', line 883

def hostname
  @hostname
end

#idObject

Unique identifier of the Resource.



875
876
877
# File 'lib/models/porcelain.rb', line 875

def id
  @id
end

#nameObject

Unique human-readable name of the Resource.



877
878
879
# File 'lib/models/porcelain.rb', line 877

def name
  @name
end

#passwordObject

Returns the value of attribute password.



887
888
889
# File 'lib/models/porcelain.rb', line 887

def password
  @password
end

#portObject

Returns the value of attribute port.



891
892
893
# File 'lib/models/porcelain.rb', line 891

def port
  @port
end

#port_overrideObject

Returns the value of attribute port_override.



889
890
891
# File 'lib/models/porcelain.rb', line 889

def port_override
  @port_override
end

#tagsObject

Tags is a map of key, value pairs.



881
882
883
# File 'lib/models/porcelain.rb', line 881

def tags
  @tags
end

#tls_requiredObject

Returns the value of attribute tls_required.



893
894
895
# File 'lib/models/porcelain.rb', line 893

def tls_required
  @tls_required
end

#usernameObject

Returns the value of attribute username.



885
886
887
# File 'lib/models/porcelain.rb', line 885

def username
  @username
end

Instance Method Details

#to_json(options = {}) ⇒ Object



939
940
941
942
943
944
945
# File 'lib/models/porcelain.rb', line 939

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