Class: SDM::VaultAppRoleCertX509Store
- Inherits:
-
Object
- Object
- SDM::VaultAppRoleCertX509Store
- Defined in:
- lib/models/porcelain.rb
Instance Attribute Summary collapse
-
#id ⇒ Object
Unique identifier of the SecretStore.
-
#issuedcertttlminutes ⇒ Object
The lifetime of certificates issued by this CA in minutes.
-
#name ⇒ Object
Unique human-readable name of the SecretStore.
-
#namespace ⇒ Object
The namespace to make requests within.
-
#pki_mount_point ⇒ Object
The mount point of the PKI engine configured with the desired CA.
-
#server_address ⇒ Object
The URL of the Vault to target.
-
#signing_role ⇒ Object
The signing role to be used for signing certificates.
-
#tags ⇒ Object
Tags is a map of key, value pairs.
Instance Method Summary collapse
-
#initialize(id: nil, issuedcertttlminutes: nil, name: nil, namespace: nil, pki_mount_point: nil, server_address: nil, signing_role: nil, tags: nil) ⇒ VaultAppRoleCertX509Store
constructor
A new instance of VaultAppRoleCertX509Store.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(id: nil, issuedcertttlminutes: nil, name: nil, namespace: nil, pki_mount_point: nil, server_address: nil, signing_role: nil, tags: nil) ⇒ VaultAppRoleCertX509Store
Returns a new instance of VaultAppRoleCertX509Store.
16998 16999 17000 17001 17002 17003 17004 17005 17006 17007 17008 17009 17010 17011 17012 17013 17014 17015 17016 |
# File 'lib/models/porcelain.rb', line 16998 def initialize( id: nil, issuedcertttlminutes: nil, name: nil, namespace: nil, pki_mount_point: nil, server_address: nil, signing_role: nil, tags: nil ) @id = id == nil ? "" : id @issuedcertttlminutes = issuedcertttlminutes == nil ? 0 : issuedcertttlminutes @name = name == nil ? "" : name @namespace = namespace == nil ? "" : namespace @pki_mount_point = pki_mount_point == nil ? "" : pki_mount_point @server_address = server_address == nil ? "" : server_address @signing_role = signing_role == nil ? "" : signing_role @tags = == nil ? SDM::() : end |
Instance Attribute Details
#id ⇒ Object
Unique identifier of the SecretStore.
16982 16983 16984 |
# File 'lib/models/porcelain.rb', line 16982 def id @id end |
#issuedcertttlminutes ⇒ Object
The lifetime of certificates issued by this CA in minutes. Recommended value is 5.
16984 16985 16986 |
# File 'lib/models/porcelain.rb', line 16984 def issuedcertttlminutes @issuedcertttlminutes end |
#name ⇒ Object
Unique human-readable name of the SecretStore.
16986 16987 16988 |
# File 'lib/models/porcelain.rb', line 16986 def name @name end |
#namespace ⇒ Object
The namespace to make requests within
16988 16989 16990 |
# File 'lib/models/porcelain.rb', line 16988 def namespace @namespace end |
#pki_mount_point ⇒ Object
The mount point of the PKI engine configured with the desired CA
16990 16991 16992 |
# File 'lib/models/porcelain.rb', line 16990 def pki_mount_point @pki_mount_point end |
#server_address ⇒ Object
The URL of the Vault to target
16992 16993 16994 |
# File 'lib/models/porcelain.rb', line 16992 def server_address @server_address end |
#signing_role ⇒ Object
The signing role to be used for signing certificates
16994 16995 16996 |
# File 'lib/models/porcelain.rb', line 16994 def signing_role @signing_role end |
#tags ⇒ Object
Tags is a map of key, value pairs.
16996 16997 16998 |
# File 'lib/models/porcelain.rb', line 16996 def @tags end |
Instance Method Details
#to_json(options = {}) ⇒ Object
17018 17019 17020 17021 17022 17023 17024 |
# File 'lib/models/porcelain.rb', line 17018 def to_json( = {}) hash = {} self.instance_variables.each do |var| hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var end hash.to_json end |