Class: TencentCloud::Wss::V20180426::UploadCertRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wss::V20180426::UploadCertRequest
- Defined in:
- lib/v20180426/models.rb
Overview
UploadCert请求参数结构体
Instance Attribute Summary collapse
- #Alias ⇒ Object
- #Cert ⇒ Object
- #CertType ⇒ Object
- #Key ⇒ Object
- #ModuleType ⇒ Object
- #ProjectId ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(cert = nil, certtype = nil, projectid = nil, moduletype = nil, key = nil, _alias = nil) ⇒ UploadCertRequest
constructor
A new instance of UploadCertRequest.
Constructor Details
#initialize(cert = nil, certtype = nil, projectid = nil, moduletype = nil, key = nil, _alias = nil) ⇒ UploadCertRequest
Returns a new instance of UploadCertRequest.
335 336 337 338 339 340 341 342 |
# File 'lib/v20180426/models.rb', line 335 def initialize(cert=nil, certtype=nil, projectid=nil, moduletype=nil, key=nil, _alias=nil) @Cert = cert @CertType = certtype @ProjectId = projectid @ModuleType = moduletype @Key = key @Alias = _alias end |
Instance Attribute Details
#Alias ⇒ Object
333 334 335 |
# File 'lib/v20180426/models.rb', line 333 def Alias @Alias end |
#Cert ⇒ Object
333 334 335 |
# File 'lib/v20180426/models.rb', line 333 def Cert @Cert end |
#CertType ⇒ Object
333 334 335 |
# File 'lib/v20180426/models.rb', line 333 def CertType @CertType end |
#Key ⇒ Object
333 334 335 |
# File 'lib/v20180426/models.rb', line 333 def Key @Key end |
#ModuleType ⇒ Object
333 334 335 |
# File 'lib/v20180426/models.rb', line 333 def ModuleType @ModuleType end |
#ProjectId ⇒ Object
333 334 335 |
# File 'lib/v20180426/models.rb', line 333 def ProjectId @ProjectId end |
Instance Method Details
#deserialize(params) ⇒ Object
344 345 346 347 348 349 350 351 |
# File 'lib/v20180426/models.rb', line 344 def deserialize(params) @Cert = params['Cert'] @CertType = params['CertType'] @ProjectId = params['ProjectId'] @ModuleType = params['ModuleType'] @Key = params['Key'] @Alias = params['Alias'] end |