Class: TencentCloud::Bmlb::V20180625::UploadCertRequest

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20180625/models.rb

Overview

UploadCert请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(certtype = nil, cert = nil, _alias = nil, key = nil) ⇒ UploadCertRequest

Returns a new instance of UploadCertRequest.



4679
4680
4681
4682
4683
4684
# File 'lib/v20180625/models.rb', line 4679

def initialize(certtype=nil, cert=nil, _alias=nil, key=nil)
  @CertType = certtype
  @Cert = cert
  @Alias = _alias
  @Key = key
end

Instance Attribute Details

#AliasObject

Parameters:

  • CertType:

    证书类型,可选值:CA,SVR。

  • Cert:

    证书内容。

  • Alias:

    证书别名。

  • Key:

    私钥内容,证书类型为SVR时不需要传递。



4677
4678
4679
# File 'lib/v20180625/models.rb', line 4677

def Alias
  @Alias
end

#CertObject

Parameters:

  • CertType:

    证书类型,可选值:CA,SVR。

  • Cert:

    证书内容。

  • Alias:

    证书别名。

  • Key:

    私钥内容,证书类型为SVR时不需要传递。



4677
4678
4679
# File 'lib/v20180625/models.rb', line 4677

def Cert
  @Cert
end

#CertTypeObject

Parameters:

  • CertType:

    证书类型,可选值:CA,SVR。

  • Cert:

    证书内容。

  • Alias:

    证书别名。

  • Key:

    私钥内容,证书类型为SVR时不需要传递。



4677
4678
4679
# File 'lib/v20180625/models.rb', line 4677

def CertType
  @CertType
end

#KeyObject

Parameters:

  • CertType:

    证书类型,可选值:CA,SVR。

  • Cert:

    证书内容。

  • Alias:

    证书别名。

  • Key:

    私钥内容,证书类型为SVR时不需要传递。



4677
4678
4679
# File 'lib/v20180625/models.rb', line 4677

def Key
  @Key
end

Instance Method Details

#deserialize(params) ⇒ Object



4686
4687
4688
4689
4690
4691
# File 'lib/v20180625/models.rb', line 4686

def deserialize(params)
  @CertType = params['CertType']
  @Cert = params['Cert']
  @Alias = params['Alias']
  @Key = params['Key']
end