Class: SDM::AWSCertX509Store

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(caarn: nil, certificatetemplatearn: nil, id: nil, issuedcertttlminutes: nil, name: nil, region: nil, signingalgo: nil, tags: nil) ⇒ AWSCertX509Store

Returns a new instance of AWSCertX509Store.



479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
# File 'lib/models/porcelain.rb', line 479

def initialize(
  caarn: nil,
  certificatetemplatearn: nil,
  id: nil,
  issuedcertttlminutes: nil,
  name: nil,
  region: nil,
  signingalgo: nil,
  tags: nil
)
  @caarn = caarn == nil ? "" : caarn
  @certificatetemplatearn = certificatetemplatearn == nil ? "" : certificatetemplatearn
  @id = id == nil ? "" : id
  @issuedcertttlminutes = issuedcertttlminutes == nil ? 0 : issuedcertttlminutes
  @name = name == nil ? "" : name
  @region = region == nil ? "" : region
  @signingalgo = signingalgo == nil ? "" : signingalgo
  @tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
end

Instance Attribute Details

#caarnObject

The ARN of the CA in AWS Private CA



463
464
465
# File 'lib/models/porcelain.rb', line 463

def caarn
  @caarn
end

#certificatetemplatearnObject

The ARN of the AWS certificate template for requested certificates. Must allow SAN, key usage, and ext key usage passthrough from CSR



465
466
467
# File 'lib/models/porcelain.rb', line 465

def certificatetemplatearn
  @certificatetemplatearn
end

#idObject

Unique identifier of the SecretStore.



467
468
469
# File 'lib/models/porcelain.rb', line 467

def id
  @id
end

#issuedcertttlminutesObject

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



469
470
471
# File 'lib/models/porcelain.rb', line 469

def issuedcertttlminutes
  @issuedcertttlminutes
end

#nameObject

Unique human-readable name of the SecretStore.



471
472
473
# File 'lib/models/porcelain.rb', line 471

def name
  @name
end

#regionObject

The AWS region to target e.g. us-east-1



473
474
475
# File 'lib/models/porcelain.rb', line 473

def region
  @region
end

#signingalgoObject

The specified signing algorithm family (RSA or ECDSA) must match the algorithm family of the CA's secret key. e.g. SHA256WITHRSA



475
476
477
# File 'lib/models/porcelain.rb', line 475

def signingalgo
  @signingalgo
end

#tagsObject

Tags is a map of key, value pairs.



477
478
479
# File 'lib/models/porcelain.rb', line 477

def tags
  @tags
end

Instance Method Details

#to_json(options = {}) ⇒ Object



499
500
501
502
503
504
505
# File 'lib/models/porcelain.rb', line 499

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