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.
11031 11032 11033 11034 11035 11036 11037 11038 11039 11040 11041 11042 |
# File 'lib/v20180525/models.rb', line 11031 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,表示取不到有效值。
11029 11030 11031 |
# File 'lib/v20180525/models.rb', line 11029 def Addresses @Addresses end |
#CoreDns ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
11029 11030 11031 |
# File 'lib/v20180525/models.rb', line 11029 def CoreDns @CoreDns end |
#Credential ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
11029 11030 11031 |
# File 'lib/v20180525/models.rb', line 11029 def Credential @Credential end |
#GridDaemon ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
11029 11030 11031 |
# File 'lib/v20180525/models.rb', line 11029 def GridDaemon @GridDaemon end |
#Health ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
11029 11030 11031 |
# File 'lib/v20180525/models.rb', line 11029 def Health @Health end |
#HealthRegion ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
11029 11030 11031 |
# File 'lib/v20180525/models.rb', line 11029 def HealthRegion @HealthRegion end |
#InternalLB ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
11029 11030 11031 |
# File 'lib/v20180525/models.rb', line 11029 def InternalLB @InternalLB end |
#PublicLB ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
11029 11030 11031 |
# File 'lib/v20180525/models.rb', line 11029 def PublicLB @PublicLB end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
11029 11030 11031 |
# File 'lib/v20180525/models.rb', line 11029 def RequestId @RequestId end |
#UnitCluster ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
11029 11030 11031 |
# File 'lib/v20180525/models.rb', line 11029 def UnitCluster @UnitCluster end |
Instance Method Details
#deserialize(params) ⇒ Object
11044 11045 11046 11047 11048 11049 11050 11051 11052 11053 11054 11055 11056 11057 11058 11059 11060 11061 11062 11063 11064 11065 11066 11067 11068 11069 11070 11071 |
# File 'lib/v20180525/models.rb', line 11044 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 |