Class: TencentCloud::Bmlb::V20180625::DescribeCertDetailResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Bmlb::V20180625::DescribeCertDetailResponse
- Defined in:
- lib/v20180625/models.rb
Overview
DescribeCertDetail返回参数结构体
Instance Attribute Summary collapse
- #CertBeginTime ⇒ Object
- #CertContent ⇒ Object
- #CertDomain ⇒ Object
- #CertEndTime ⇒ Object
- #CertId ⇒ Object
- #CertLoadBalancerSet ⇒ Object
- #CertName ⇒ Object
- #CertSubjectDomain ⇒ Object
- #CertType ⇒ Object
- #CertUploadTime ⇒ Object
- #RequestId ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(certid = nil, certname = nil, certtype = nil, certcontent = nil, certdomain = nil, certsubjectdomain = nil, certuploadtime = nil, certbegintime = nil, certendtime = nil, certloadbalancerset = nil, requestid = nil) ⇒ DescribeCertDetailResponse
constructor
A new instance of DescribeCertDetailResponse.
Constructor Details
#initialize(certid = nil, certname = nil, certtype = nil, certcontent = nil, certdomain = nil, certsubjectdomain = nil, certuploadtime = nil, certbegintime = nil, certendtime = nil, certloadbalancerset = nil, requestid = nil) ⇒ DescribeCertDetailResponse
Returns a new instance of DescribeCertDetailResponse.
1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 |
# File 'lib/v20180625/models.rb', line 1064 def initialize(certid=nil, certname=nil, certtype=nil, certcontent=nil, certdomain=nil, certsubjectdomain=nil, certuploadtime=nil, certbegintime=nil, certendtime=nil, certloadbalancerset=nil, requestid=nil) @CertId = certid @CertName = certname @CertType = certtype @CertContent = certcontent @CertDomain = certdomain @CertSubjectDomain = certsubjectdomain @CertUploadTime = certuploadtime @CertBeginTime = certbegintime @CertEndTime = certendtime @CertLoadBalancerSet = certloadbalancerset @RequestId = requestid end |
Instance Attribute Details
#CertBeginTime ⇒ Object
1062 1063 1064 |
# File 'lib/v20180625/models.rb', line 1062 def CertBeginTime @CertBeginTime end |
#CertContent ⇒ Object
1062 1063 1064 |
# File 'lib/v20180625/models.rb', line 1062 def CertContent @CertContent end |
#CertDomain ⇒ Object
1062 1063 1064 |
# File 'lib/v20180625/models.rb', line 1062 def CertDomain @CertDomain end |
#CertEndTime ⇒ Object
1062 1063 1064 |
# File 'lib/v20180625/models.rb', line 1062 def CertEndTime @CertEndTime end |
#CertId ⇒ Object
1062 1063 1064 |
# File 'lib/v20180625/models.rb', line 1062 def CertId @CertId end |
#CertLoadBalancerSet ⇒ Object
1062 1063 1064 |
# File 'lib/v20180625/models.rb', line 1062 def CertLoadBalancerSet @CertLoadBalancerSet end |
#CertName ⇒ Object
1062 1063 1064 |
# File 'lib/v20180625/models.rb', line 1062 def CertName @CertName end |
#CertSubjectDomain ⇒ Object
1062 1063 1064 |
# File 'lib/v20180625/models.rb', line 1062 def CertSubjectDomain @CertSubjectDomain end |
#CertType ⇒ Object
1062 1063 1064 |
# File 'lib/v20180625/models.rb', line 1062 def CertType @CertType end |
#CertUploadTime ⇒ Object
1062 1063 1064 |
# File 'lib/v20180625/models.rb', line 1062 def CertUploadTime @CertUploadTime end |
#RequestId ⇒ Object
1062 1063 1064 |
# File 'lib/v20180625/models.rb', line 1062 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 |
# File 'lib/v20180625/models.rb', line 1078 def deserialize(params) @CertId = params['CertId'] @CertName = params['CertName'] @CertType = params['CertType'] @CertContent = params['CertContent'] @CertDomain = params['CertDomain'] @CertSubjectDomain = params['CertSubjectDomain'] @CertUploadTime = params['CertUploadTime'] @CertBeginTime = params['CertBeginTime'] @CertEndTime = params['CertEndTime'] unless params['CertLoadBalancerSet'].nil? @CertLoadBalancerSet = [] params['CertLoadBalancerSet'].each do |i| certdetailloadbalancer_tmp = CertDetailLoadBalancer.new certdetailloadbalancer_tmp.deserialize(i) @CertLoadBalancerSet << certdetailloadbalancer_tmp end end @RequestId = params['RequestId'] end |