Class: SDM::MysqlEngine

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(after_read_ttl: nil, database: nil, hostname: nil, id: nil, key_rotation_interval_days: nil, name: nil, password: nil, policy: nil, port: nil, public_key: nil, secret_store_id: nil, secret_store_root_path: nil, tags: nil, tls: nil, tls_skip_verify: nil, ttl: nil, username: nil) ⇒ MysqlEngine

Returns a new instance of MysqlEngine.



10916
10917
10918
10919
10920
10921
10922
10923
10924
10925
10926
10927
10928
10929
10930
10931
10932
10933
10934
10935
10936
10937
10938
10939
10940
10941
10942
10943
10944
10945
10946
10947
10948
10949
10950
10951
10952
# File 'lib/models/porcelain.rb', line 10916

def initialize(
  after_read_ttl: nil,
  database: nil,
  hostname: nil,
  id: nil,
  key_rotation_interval_days: nil,
  name: nil,
  password: nil,
  policy: nil,
  port: nil,
  public_key: nil,
  secret_store_id: nil,
  secret_store_root_path: nil,
  tags: nil,
  tls: nil,
  tls_skip_verify: nil,
  ttl: nil,
  username: nil
)
  @after_read_ttl = after_read_ttl == nil ? nil : after_read_ttl
  @database = database == nil ? "" : database
  @hostname = hostname == nil ? "" : hostname
  @id = id == nil ? "" : id
  @key_rotation_interval_days = key_rotation_interval_days == nil ? 0 : key_rotation_interval_days
  @name = name == nil ? "" : name
  @password = password == nil ? "" : password
  @policy = policy == nil ? nil : policy
  @port = port == nil ? 0 : port
  @public_key = public_key == nil ? "" : public_key
  @secret_store_id = secret_store_id == nil ? "" : secret_store_id
  @secret_store_root_path = secret_store_root_path == nil ? "" : secret_store_root_path
  @tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
  @tls = tls == nil ? false : tls
  @tls_skip_verify = tls_skip_verify == nil ? false : tls_skip_verify
  @ttl = ttl == nil ? nil : ttl
  @username = username == nil ? "" : username
end

Instance Attribute Details

#after_read_ttlObject

The default time-to-live duration of the password after it's read. Once the ttl has passed, a password will be rotated.



10882
10883
10884
# File 'lib/models/porcelain.rb', line 10882

def after_read_ttl
  @after_read_ttl
end

#databaseObject

Database is the database to verify credential against.



10884
10885
10886
# File 'lib/models/porcelain.rb', line 10884

def database
  @database
end

#hostnameObject

Hostname is the hostname or IP address of the MySQL server.



10886
10887
10888
# File 'lib/models/porcelain.rb', line 10886

def hostname
  @hostname
end

#idObject

Unique identifier of the Secret Engine.



10888
10889
10890
# File 'lib/models/porcelain.rb', line 10888

def id
  @id
end

#key_rotation_interval_daysObject

An interval of public/private key rotation for secret engine in days



10890
10891
10892
# File 'lib/models/porcelain.rb', line 10890

def key_rotation_interval_days
  @key_rotation_interval_days
end

#nameObject

Unique human-readable name of the Secret Engine.



10892
10893
10894
# File 'lib/models/porcelain.rb', line 10892

def name
  @name
end

#passwordObject

Password is the password to connect to the MySQL server.



10894
10895
10896
# File 'lib/models/porcelain.rb', line 10894

def password
  @password
end

#policyObject

Policy for password creation



10896
10897
10898
# File 'lib/models/porcelain.rb', line 10896

def policy
  @policy
end

#portObject

Port is the port number of the MySQL server.



10898
10899
10900
# File 'lib/models/porcelain.rb', line 10898

def port
  @port
end

#public_keyObject

Public key linked with a secret engine



10900
10901
10902
# File 'lib/models/porcelain.rb', line 10900

def public_key
  @public_key
end

#secret_store_idObject

Backing secret store identifier



10902
10903
10904
# File 'lib/models/porcelain.rb', line 10902

def secret_store_id
  @secret_store_id
end

#secret_store_root_pathObject

Backing Secret Store root path where managed secrets are going to be stored



10904
10905
10906
# File 'lib/models/porcelain.rb', line 10904

def secret_store_root_path
  @secret_store_root_path
end

#tagsObject

Tags is a map of key, value pairs.



10906
10907
10908
# File 'lib/models/porcelain.rb', line 10906

def tags
  @tags
end

#tlsObject

TLS enables TLS/SSL when connecting to the MySQL server.



10908
10909
10910
# File 'lib/models/porcelain.rb', line 10908

def tls
  @tls
end

#tls_skip_verifyObject

TLS disable certificate verification



10910
10911
10912
# File 'lib/models/porcelain.rb', line 10910

def tls_skip_verify
  @tls_skip_verify
end

#ttlObject

The default password time-to-live duration. Once the ttl has passed, a password will be rotated the next time it's requested.



10912
10913
10914
# File 'lib/models/porcelain.rb', line 10912

def ttl
  @ttl
end

#usernameObject

Username is the username to connect to the MySQL server.



10914
10915
10916
# File 'lib/models/porcelain.rb', line 10914

def username
  @username
end

Instance Method Details

#to_json(options = {}) ⇒ Object



10954
10955
10956
10957
10958
10959
10960
# File 'lib/models/porcelain.rb', line 10954

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