Class: SDM::VaultAppRoleCertSSHStore

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id: nil, issuedcertttlminutes: nil, name: nil, namespace: nil, server_address: nil, signing_role: nil, ssh_mount_point: nil, tags: nil) ⇒ VaultAppRoleCertSSHStore

Returns a new instance of VaultAppRoleCertSSHStore.



18803
18804
18805
18806
18807
18808
18809
18810
18811
18812
18813
18814
18815
18816
18817
18818
18819
18820
18821
# File 'lib/models/porcelain.rb', line 18803

def initialize(
  id: nil,
  issuedcertttlminutes: nil,
  name: nil,
  namespace: nil,
  server_address: nil,
  signing_role: nil,
  ssh_mount_point: nil,
  tags: nil
)
  @id = id == nil ? "" : id
  @issuedcertttlminutes = issuedcertttlminutes == nil ? 0 : issuedcertttlminutes
  @name = name == nil ? "" : name
  @namespace = namespace == nil ? "" : namespace
  @server_address = server_address == nil ? "" : server_address
  @signing_role = signing_role == nil ? "" : signing_role
  @ssh_mount_point = ssh_mount_point == nil ? "" : ssh_mount_point
  @tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
end

Instance Attribute Details

#id ⇒ Object

Unique identifier of the SecretStore.



18787
18788
18789
# File 'lib/models/porcelain.rb', line 18787

def id
  @id
end

#issuedcertttlminutes ⇒ Object

The lifetime of certificates issued by this CA represented in minutes.



18789
18790
18791
# File 'lib/models/porcelain.rb', line 18789

def issuedcertttlminutes
  @issuedcertttlminutes
end

#name ⇒ Object

Unique human-readable name of the SecretStore.



18791
18792
18793
# File 'lib/models/porcelain.rb', line 18791

def name
  @name
end

#namespace ⇒ Object

The namespace to make requests within



18793
18794
18795
# File 'lib/models/porcelain.rb', line 18793

def namespace
  @namespace
end

#server_address ⇒ Object

The URL of the Vault to target



18795
18796
18797
# File 'lib/models/porcelain.rb', line 18795

def server_address
  @server_address
end

#signing_role ⇒ Object

The signing role to be used for signing certificates



18797
18798
18799
# File 'lib/models/porcelain.rb', line 18797

def signing_role
  @signing_role
end

#ssh_mount_point ⇒ Object

The mount point of the SSH engine configured with the desired CA



18799
18800
18801
# File 'lib/models/porcelain.rb', line 18799

def ssh_mount_point
  @ssh_mount_point
end

#tags ⇒ Object

Tags is a map of key, value pairs.



18801
18802
18803
# File 'lib/models/porcelain.rb', line 18801

def tags
  @tags
end

Instance Method Details

#to_json(options = {}) ⇒ Object



18823
18824
18825
18826
18827
18828
18829
# File 'lib/models/porcelain.rb', line 18823

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