Class: SDM::DynamoDB

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, access_key: nil, secret_access_key: nil, region: nil, endpoint: nil, port_override: nil) ⇒ DynamoDB

Returns a new instance of DynamoDB.



943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
# File 'lib/models/porcelain.rb', line 943

def initialize(
	id:nil \
,
	name:nil \
,
	healthy:nil \
,
	tags:nil \
,
	access_key:nil \
,
	secret_access_key:nil \
,
	region:nil \
,
	endpoint:nil \
,
	port_override: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 access_key != nil
		@access_key = access_key
	end
	if secret_access_key != nil
		@secret_access_key = secret_access_key
	end
	if region != nil
		@region = region
	end
	if endpoint != nil
		@endpoint = endpoint
	end
	if port_override != nil
		@port_override = port_override
	end
end

Instance Attribute Details

#access_keyObject

Returns the value of attribute access_key.



934
935
936
# File 'lib/models/porcelain.rb', line 934

def access_key
  @access_key
end

#endpointObject

Returns the value of attribute endpoint.



940
941
942
# File 'lib/models/porcelain.rb', line 940

def endpoint
  @endpoint
end

#healthyObject

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



930
931
932
# File 'lib/models/porcelain.rb', line 930

def healthy
  @healthy
end

#idObject

Unique identifier of the Resource.



926
927
928
# File 'lib/models/porcelain.rb', line 926

def id
  @id
end

#nameObject

Unique human-readable name of the Resource.



928
929
930
# File 'lib/models/porcelain.rb', line 928

def name
  @name
end

#port_overrideObject

Returns the value of attribute port_override.



942
943
944
# File 'lib/models/porcelain.rb', line 942

def port_override
  @port_override
end

#regionObject

Returns the value of attribute region.



938
939
940
# File 'lib/models/porcelain.rb', line 938

def region
  @region
end

#secret_access_keyObject

Returns the value of attribute secret_access_key.



936
937
938
# File 'lib/models/porcelain.rb', line 936

def secret_access_key
  @secret_access_key
end

#tagsObject

Tags is a map of key, value pairs.



932
933
934
# File 'lib/models/porcelain.rb', line 932

def tags
  @tags
end

Instance Method Details

#to_json(options = {}) ⇒ Object



990
991
992
993
994
995
996
# File 'lib/models/porcelain.rb', line 990

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