Class: TencentCloud::Tke::V20180525::DescribeTKEEdgeClusterCredentialResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tke::V20180525::DescribeTKEEdgeClusterCredentialResponse
- Defined in:
- lib/v20180525/models.rb
Overview
DescribeTKEEdgeClusterCredential返回参数结构体
Instance Attribute Summary collapse
-
#Addresses ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#CoreDns ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Credential ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#GridDaemon ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Health ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#HealthRegion ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#InternalLB ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#PublicLB ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#UnitCluster ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(addresses = nil, credential = nil, publiclb = nil, internallb = nil, coredns = nil, healthregion = nil, health = nil, griddaemon = nil, unitcluster = nil, requestid = nil) ⇒ DescribeTKEEdgeClusterCredentialResponse
constructor
A new instance of DescribeTKEEdgeClusterCredentialResponse.
Constructor Details
#initialize(addresses = nil, credential = nil, publiclb = nil, internallb = nil, coredns = nil, healthregion = nil, health = nil, griddaemon = nil, unitcluster = nil, requestid = nil) ⇒ DescribeTKEEdgeClusterCredentialResponse
Returns a new instance of DescribeTKEEdgeClusterCredentialResponse.
10327 10328 10329 10330 10331 10332 10333 10334 10335 10336 10337 10338 |
# File 'lib/v20180525/models.rb', line 10327 def initialize(addresses=nil, credential=nil, publiclb=nil, internallb=nil, coredns=nil, healthregion=nil, health=nil, griddaemon=nil, unitcluster=nil, requestid=nil) @Addresses = addresses @Credential = credential @PublicLB = publiclb @InternalLB = internallb @CoreDns = coredns @HealthRegion = healthregion @Health = health @GridDaemon = griddaemon @UnitCluster = unitcluster @RequestId = requestid end |
Instance Attribute Details
#Addresses ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
10325 10326 10327 |
# File 'lib/v20180525/models.rb', line 10325 def Addresses @Addresses end |
#CoreDns ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
10325 10326 10327 |
# File 'lib/v20180525/models.rb', line 10325 def CoreDns @CoreDns end |
#Credential ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
10325 10326 10327 |
# File 'lib/v20180525/models.rb', line 10325 def Credential @Credential end |
#GridDaemon ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
10325 10326 10327 |
# File 'lib/v20180525/models.rb', line 10325 def GridDaemon @GridDaemon end |
#Health ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
10325 10326 10327 |
# File 'lib/v20180525/models.rb', line 10325 def Health @Health end |
#HealthRegion ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
10325 10326 10327 |
# File 'lib/v20180525/models.rb', line 10325 def HealthRegion @HealthRegion end |
#InternalLB ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
10325 10326 10327 |
# File 'lib/v20180525/models.rb', line 10325 def InternalLB @InternalLB end |
#PublicLB ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
10325 10326 10327 |
# File 'lib/v20180525/models.rb', line 10325 def PublicLB @PublicLB end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
10325 10326 10327 |
# File 'lib/v20180525/models.rb', line 10325 def RequestId @RequestId end |
#UnitCluster ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
10325 10326 10327 |
# File 'lib/v20180525/models.rb', line 10325 def UnitCluster @UnitCluster end |
Instance Method Details
#deserialize(params) ⇒ Object
10340 10341 10342 10343 10344 10345 10346 10347 10348 10349 10350 10351 10352 10353 10354 10355 10356 10357 10358 10359 10360 10361 10362 10363 10364 10365 10366 10367 |
# File 'lib/v20180525/models.rb', line 10340 def deserialize(params) unless params['Addresses'].nil? @Addresses = [] params['Addresses'].each do |i| ipaddress_tmp = IPAddress.new ipaddress_tmp.deserialize(i) @Addresses << ipaddress_tmp end end unless params['Credential'].nil? @Credential = ClusterCredential.new @Credential.deserialize(params['Credential']) end unless params['PublicLB'].nil? @PublicLB = EdgeClusterPublicLB.new @PublicLB.deserialize(params['PublicLB']) end unless params['InternalLB'].nil? @InternalLB = EdgeClusterInternalLB.new @InternalLB.deserialize(params['InternalLB']) end @CoreDns = params['CoreDns'] @HealthRegion = params['HealthRegion'] @Health = params['Health'] @GridDaemon = params['GridDaemon'] @UnitCluster = params['UnitCluster'] @RequestId = params['RequestId'] end |