Class: TencentCloud::Ssl::V20191205::TkeSecretDetail
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ssl::V20191205::TkeSecretDetail
- Defined in:
- lib/v20191205/models.rb
Overview
tke secret详情
Instance Attribute Summary collapse
-
#CertId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#IngressList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Name ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#NoMatchDomains ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(name = nil, certid = nil, ingresslist = nil, nomatchdomains = nil) ⇒ TkeSecretDetail
constructor
A new instance of TkeSecretDetail.
Constructor Details
#initialize(name = nil, certid = nil, ingresslist = nil, nomatchdomains = nil) ⇒ TkeSecretDetail
Returns a new instance of TkeSecretDetail.
8004 8005 8006 8007 8008 8009 |
# File 'lib/v20191205/models.rb', line 8004 def initialize(name=nil, certid=nil, ingresslist=nil, nomatchdomains=nil) @Name = name @CertId = certid @IngressList = ingresslist @NoMatchDomains = nomatchdomains end |
Instance Attribute Details
#CertId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
8002 8003 8004 |
# File 'lib/v20191205/models.rb', line 8002 def CertId @CertId end |
#IngressList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
8002 8003 8004 |
# File 'lib/v20191205/models.rb', line 8002 def IngressList @IngressList end |
#Name ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
8002 8003 8004 |
# File 'lib/v20191205/models.rb', line 8002 def Name @Name end |
#NoMatchDomains ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
8002 8003 8004 |
# File 'lib/v20191205/models.rb', line 8002 def NoMatchDomains @NoMatchDomains end |
Instance Method Details
#deserialize(params) ⇒ Object
8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 |
# File 'lib/v20191205/models.rb', line 8011 def deserialize(params) @Name = params['Name'] @CertId = params['CertId'] unless params['IngressList'].nil? @IngressList = [] params['IngressList'].each do |i| tkeingressdetail_tmp = TkeIngressDetail.new tkeingressdetail_tmp.deserialize(i) @IngressList << tkeingressdetail_tmp end end @NoMatchDomains = params['NoMatchDomains'] end |