Class: SDM::GCPCertX509Store
- Inherits:
-
Object
- Object
- SDM::GCPCertX509Store
- Defined in:
- lib/models/porcelain.rb
Instance Attribute Summary collapse
-
#caid ⇒ Object
The ID of the target CA.
-
#capoolid ⇒ Object
The ID of the target CA pool.
-
#id ⇒ Object
Unique identifier of the SecretStore.
-
#issuedcertttlminutes ⇒ Object
The lifetime of certificates issued by this CA represented in minutes.
-
#location ⇒ Object
The Region for the CA in GCP format e.g.
-
#name ⇒ Object
Unique human-readable name of the SecretStore.
-
#projectid ⇒ Object
The GCP project ID to target.
-
#tags ⇒ Object
Tags is a map of key, value pairs.
Instance Method Summary collapse
-
#initialize(caid: nil, capoolid: nil, id: nil, issuedcertttlminutes: nil, location: nil, name: nil, projectid: nil, tags: nil) ⇒ GCPCertX509Store
constructor
A new instance of GCPCertX509Store.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(caid: nil, capoolid: nil, id: nil, issuedcertttlminutes: nil, location: nil, name: nil, projectid: nil, tags: nil) ⇒ GCPCertX509Store
Returns a new instance of GCPCertX509Store.
5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 |
# File 'lib/models/porcelain.rb', line 5101 def initialize( caid: nil, capoolid: nil, id: nil, issuedcertttlminutes: nil, location: nil, name: nil, projectid: nil, tags: nil ) @caid = caid == nil ? "" : caid @capoolid = capoolid == nil ? "" : capoolid @id = id == nil ? "" : id @issuedcertttlminutes = issuedcertttlminutes == nil ? 0 : issuedcertttlminutes @location = location == nil ? "" : location @name = name == nil ? "" : name @projectid = projectid == nil ? "" : projectid @tags = == nil ? SDM::() : end |
Instance Attribute Details
#caid ⇒ Object
The ID of the target CA
5085 5086 5087 |
# File 'lib/models/porcelain.rb', line 5085 def caid @caid end |
#capoolid ⇒ Object
The ID of the target CA pool
5087 5088 5089 |
# File 'lib/models/porcelain.rb', line 5087 def capoolid @capoolid end |
#id ⇒ Object
Unique identifier of the SecretStore.
5089 5090 5091 |
# File 'lib/models/porcelain.rb', line 5089 def id @id end |
#issuedcertttlminutes ⇒ Object
The lifetime of certificates issued by this CA represented in minutes.
5091 5092 5093 |
# File 'lib/models/porcelain.rb', line 5091 def issuedcertttlminutes @issuedcertttlminutes end |
#location ⇒ Object
The Region for the CA in GCP format e.g. us-west1
5093 5094 5095 |
# File 'lib/models/porcelain.rb', line 5093 def location @location end |
#name ⇒ Object
Unique human-readable name of the SecretStore.
5095 5096 5097 |
# File 'lib/models/porcelain.rb', line 5095 def name @name end |
#projectid ⇒ Object
The GCP project ID to target.
5097 5098 5099 |
# File 'lib/models/porcelain.rb', line 5097 def projectid @projectid end |
#tags ⇒ Object
Tags is a map of key, value pairs.
5099 5100 5101 |
# File 'lib/models/porcelain.rb', line 5099 def @tags end |
Instance Method Details
#to_json(options = {}) ⇒ Object
5121 5122 5123 5124 5125 5126 5127 |
# File 'lib/models/porcelain.rb', line 5121 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 |