All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tencentcloudapi.tcb.v20180608.models.CloudBaseEsInfo Maven / Gradle / Ivy

There is a newer version: 3.1.1076
Show newest version
/*
 * Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.tencentcloudapi.tcb.v20180608.models;

import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;

public class CloudBaseEsInfo extends AbstractModel{

    /**
    * es的id
注意:此字段可能返回 null,表示取不到有效值。
    */
    @SerializedName("Id")
    @Expose
    private Long Id;

    /**
    * secret名字
注意:此字段可能返回 null,表示取不到有效值。
    */
    @SerializedName("SecretName")
    @Expose
    private String SecretName;

    /**
    * ip地址
注意:此字段可能返回 null,表示取不到有效值。
    */
    @SerializedName("Ip")
    @Expose
    private String Ip;

    /**
    * 端口
注意:此字段可能返回 null,表示取不到有效值。
    */
    @SerializedName("Port")
    @Expose
    private Long Port;

    /**
    * 索引
注意:此字段可能返回 null,表示取不到有效值。
    */
    @SerializedName("Index")
    @Expose
    private String Index;

    /**
    * 用户名
注意:此字段可能返回 null,表示取不到有效值。
    */
    @SerializedName("Account")
    @Expose
    private String Account;

    /**
    * 密码
注意:此字段可能返回 null,表示取不到有效值。
    */
    @SerializedName("Password")
    @Expose
    private String Password;

    /**
     * Get es的id
注意:此字段可能返回 null,表示取不到有效值。 
     * @return Id es的id
注意:此字段可能返回 null,表示取不到有效值。
     */
    public Long getId() {
        return this.Id;
    }

    /**
     * Set es的id
注意:此字段可能返回 null,表示取不到有效值。
     * @param Id es的id
注意:此字段可能返回 null,表示取不到有效值。
     */
    public void setId(Long Id) {
        this.Id = Id;
    }

    /**
     * Get secret名字
注意:此字段可能返回 null,表示取不到有效值。 
     * @return SecretName secret名字
注意:此字段可能返回 null,表示取不到有效值。
     */
    public String getSecretName() {
        return this.SecretName;
    }

    /**
     * Set secret名字
注意:此字段可能返回 null,表示取不到有效值。
     * @param SecretName secret名字
注意:此字段可能返回 null,表示取不到有效值。
     */
    public void setSecretName(String SecretName) {
        this.SecretName = SecretName;
    }

    /**
     * Get ip地址
注意:此字段可能返回 null,表示取不到有效值。 
     * @return Ip ip地址
注意:此字段可能返回 null,表示取不到有效值。
     */
    public String getIp() {
        return this.Ip;
    }

    /**
     * Set ip地址
注意:此字段可能返回 null,表示取不到有效值。
     * @param Ip ip地址
注意:此字段可能返回 null,表示取不到有效值。
     */
    public void setIp(String Ip) {
        this.Ip = Ip;
    }

    /**
     * Get 端口
注意:此字段可能返回 null,表示取不到有效值。 
     * @return Port 端口
注意:此字段可能返回 null,表示取不到有效值。
     */
    public Long getPort() {
        return this.Port;
    }

    /**
     * Set 端口
注意:此字段可能返回 null,表示取不到有效值。
     * @param Port 端口
注意:此字段可能返回 null,表示取不到有效值。
     */
    public void setPort(Long Port) {
        this.Port = Port;
    }

    /**
     * Get 索引
注意:此字段可能返回 null,表示取不到有效值。 
     * @return Index 索引
注意:此字段可能返回 null,表示取不到有效值。
     */
    public String getIndex() {
        return this.Index;
    }

    /**
     * Set 索引
注意:此字段可能返回 null,表示取不到有效值。
     * @param Index 索引
注意:此字段可能返回 null,表示取不到有效值。
     */
    public void setIndex(String Index) {
        this.Index = Index;
    }

    /**
     * Get 用户名
注意:此字段可能返回 null,表示取不到有效值。 
     * @return Account 用户名
注意:此字段可能返回 null,表示取不到有效值。
     */
    public String getAccount() {
        return this.Account;
    }

    /**
     * Set 用户名
注意:此字段可能返回 null,表示取不到有效值。
     * @param Account 用户名
注意:此字段可能返回 null,表示取不到有效值。
     */
    public void setAccount(String Account) {
        this.Account = Account;
    }

    /**
     * Get 密码
注意:此字段可能返回 null,表示取不到有效值。 
     * @return Password 密码
注意:此字段可能返回 null,表示取不到有效值。
     */
    public String getPassword() {
        return this.Password;
    }

    /**
     * Set 密码
注意:此字段可能返回 null,表示取不到有效值。
     * @param Password 密码
注意:此字段可能返回 null,表示取不到有效值。
     */
    public void setPassword(String Password) {
        this.Password = Password;
    }

    /**
     * Internal implementation, normal users should not use it.
     */
    public void toMap(HashMap map, String prefix) {
        this.setParamSimple(map, prefix + "Id", this.Id);
        this.setParamSimple(map, prefix + "SecretName", this.SecretName);
        this.setParamSimple(map, prefix + "Ip", this.Ip);
        this.setParamSimple(map, prefix + "Port", this.Port);
        this.setParamSimple(map, prefix + "Index", this.Index);
        this.setParamSimple(map, prefix + "Account", this.Account);
        this.setParamSimple(map, prefix + "Password", this.Password);

    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy