Class: TencentCloud::Tke::V20180525::DescribePrometheusInstanceResponse

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20180525/models.rb

Overview

DescribePrometheusInstance返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(instanceid = nil, name = nil, vpcid = nil, subnetid = nil, cosbucket = nil, queryaddress = nil, grafana = nil, alertmanagerurl = nil, requestid = nil) ⇒ DescribePrometheusInstanceResponse



9834
9835
9836
9837
9838
9839
9840
9841
9842
9843
9844
# File 'lib/v20180525/models.rb', line 9834

def initialize(instanceid=nil, name=nil, vpcid=nil, subnetid=nil, cosbucket=nil, queryaddress=nil, grafana=nil, alertmanagerurl=nil, requestid=nil)
  @InstanceId = instanceid
  @Name = name
  @VpcId = vpcid
  @SubnetId = subnetid
  @COSBucket = cosbucket
  @QueryAddress = queryaddress
  @Grafana = grafana
  @AlertManagerUrl = alertmanagerurl
  @RequestId = requestid
end

Instance Attribute Details

#AlertManagerUrlObject

注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。



9832
9833
9834
# File 'lib/v20180525/models.rb', line 9832

def AlertManagerUrl
  @AlertManagerUrl
end

#COSBucketObject

注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。



9832
9833
9834
# File 'lib/v20180525/models.rb', line 9832

def COSBucket
  @COSBucket
end

#GrafanaObject

注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。



9832
9833
9834
# File 'lib/v20180525/models.rb', line 9832

def Grafana
  @Grafana
end

#InstanceIdObject

注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。



9832
9833
9834
# File 'lib/v20180525/models.rb', line 9832

def InstanceId
  @InstanceId
end

#NameObject

注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。



9832
9833
9834
# File 'lib/v20180525/models.rb', line 9832

def Name
  @Name
end

#QueryAddressObject

注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。



9832
9833
9834
# File 'lib/v20180525/models.rb', line 9832

def QueryAddress
  @QueryAddress
end

#RequestIdObject

注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。



9832
9833
9834
# File 'lib/v20180525/models.rb', line 9832

def RequestId
  @RequestId
end

#SubnetIdObject

注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。



9832
9833
9834
# File 'lib/v20180525/models.rb', line 9832

def SubnetId
  @SubnetId
end

#VpcIdObject

注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。



9832
9833
9834
# File 'lib/v20180525/models.rb', line 9832

def VpcId
  @VpcId
end

Instance Method Details

#deserialize(params) ⇒ Object



9846
9847
9848
9849
9850
9851
9852
9853
9854
9855
9856
9857
9858
9859
# File 'lib/v20180525/models.rb', line 9846

def deserialize(params)
  @InstanceId = params['InstanceId']
  @Name = params['Name']
  @VpcId = params['VpcId']
  @SubnetId = params['SubnetId']
  @COSBucket = params['COSBucket']
  @QueryAddress = params['QueryAddress']
  unless params['Grafana'].nil?
    @Grafana = PrometheusGrafanaInfo.new
    @Grafana.deserialize(params['Grafana'])
  end
  @AlertManagerUrl = params['AlertManagerUrl']
  @RequestId = params['RequestId']
end