Class: SDM::Mysql

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, database: nil, port_override: nil, port: nil) ⇒ Mysql

Returns a new instance of Mysql.



2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
# File 'lib/models/porcelain.rb', line 2496

def initialize(
	id:nil \
,
	name:nil \
,
	healthy:nil \
,
	tags:nil \
,
	hostname:nil \
,
	username:nil \
,
	password:nil \
,
	database:nil \
,
	port_override:nil \
,
	port: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 database != nil
		@database = database
	end
	if port_override != nil
		@port_override = port_override
	end
	if port != nil
		@port = port
	end
end

Instance Attribute Details

#databaseObject

Returns the value of attribute database.



2491
2492
2493
# File 'lib/models/porcelain.rb', line 2491

def database
  @database
end

#healthyObject

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



2481
2482
2483
# File 'lib/models/porcelain.rb', line 2481

def healthy
  @healthy
end

#hostnameObject

Returns the value of attribute hostname.



2485
2486
2487
# File 'lib/models/porcelain.rb', line 2485

def hostname
  @hostname
end

#idObject

Unique identifier of the Resource.



2477
2478
2479
# File 'lib/models/porcelain.rb', line 2477

def id
  @id
end

#nameObject

Unique human-readable name of the Resource.



2479
2480
2481
# File 'lib/models/porcelain.rb', line 2479

def name
  @name
end

#passwordObject

Returns the value of attribute password.



2489
2490
2491
# File 'lib/models/porcelain.rb', line 2489

def password
  @password
end

#portObject

Returns the value of attribute port.



2495
2496
2497
# File 'lib/models/porcelain.rb', line 2495

def port
  @port
end

#port_overrideObject

Returns the value of attribute port_override.



2493
2494
2495
# File 'lib/models/porcelain.rb', line 2493

def port_override
  @port_override
end

#tagsObject

Tags is a map of key, value pairs.



2483
2484
2485
# File 'lib/models/porcelain.rb', line 2483

def tags
  @tags
end

#usernameObject

Returns the value of attribute username.



2487
2488
2489
# File 'lib/models/porcelain.rb', line 2487

def username
  @username
end

Instance Method Details

#to_json(options = {}) ⇒ Object



2548
2549
2550
2551
2552
2553
2554
# File 'lib/models/porcelain.rb', line 2548

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