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

com.tencentcloudapi.yunjing.v20180228.models.HistoryAccount Maven / Gradle / Ivy

/*
 * 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.yunjing.v20180228.models;

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

public class HistoryAccount extends AbstractModel{

    /**
    * 唯一ID。
    */
    @SerializedName("Id")
    @Expose
    private Long Id;

    /**
    * 云镜客户端唯一Uuid。
    */
    @SerializedName("Uuid")
    @Expose
    private String Uuid;

    /**
    * 主机内网IP。
    */
    @SerializedName("MachineIp")
    @Expose
    private String MachineIp;

    /**
    * 主机名。
    */
    @SerializedName("MachineName")
    @Expose
    private String MachineName;

    /**
    * 帐号名。
    */
    @SerializedName("Username")
    @Expose
    private String Username;

    /**
    * 帐号变更类型。
  • CREATE:表示新增帐号
  • MODIFY:表示修改帐号
  • DELETE:表示删除帐号
  • */ @SerializedName("ModifyType") @Expose private String ModifyType; /** * 变更时间。 */ @SerializedName("ModifyTime") @Expose private String ModifyTime; /** * Get 唯一ID。 * @return Id 唯一ID。 */ public Long getId() { return this.Id; } /** * Set 唯一ID。 * @param Id 唯一ID。 */ public void setId(Long Id) { this.Id = Id; } /** * Get 云镜客户端唯一Uuid。 * @return Uuid 云镜客户端唯一Uuid。 */ public String getUuid() { return this.Uuid; } /** * Set 云镜客户端唯一Uuid。 * @param Uuid 云镜客户端唯一Uuid。 */ public void setUuid(String Uuid) { this.Uuid = Uuid; } /** * Get 主机内网IP。 * @return MachineIp 主机内网IP。 */ public String getMachineIp() { return this.MachineIp; } /** * Set 主机内网IP。 * @param MachineIp 主机内网IP。 */ public void setMachineIp(String MachineIp) { this.MachineIp = MachineIp; } /** * Get 主机名。 * @return MachineName 主机名。 */ public String getMachineName() { return this.MachineName; } /** * Set 主机名。 * @param MachineName 主机名。 */ public void setMachineName(String MachineName) { this.MachineName = MachineName; } /** * Get 帐号名。 * @return Username 帐号名。 */ public String getUsername() { return this.Username; } /** * Set 帐号名。 * @param Username 帐号名。 */ public void setUsername(String Username) { this.Username = Username; } /** * Get 帐号变更类型。
  • CREATE:表示新增帐号
  • MODIFY:表示修改帐号
  • DELETE:表示删除帐号
  • * @return ModifyType 帐号变更类型。
  • CREATE:表示新增帐号
  • MODIFY:表示修改帐号
  • DELETE:表示删除帐号
  • */ public String getModifyType() { return this.ModifyType; } /** * Set 帐号变更类型。
  • CREATE:表示新增帐号
  • MODIFY:表示修改帐号
  • DELETE:表示删除帐号
  • * @param ModifyType 帐号变更类型。
  • CREATE:表示新增帐号
  • MODIFY:表示修改帐号
  • DELETE:表示删除帐号
  • */ public void setModifyType(String ModifyType) { this.ModifyType = ModifyType; } /** * Get 变更时间。 * @return ModifyTime 变更时间。 */ public String getModifyTime() { return this.ModifyTime; } /** * Set 变更时间。 * @param ModifyTime 变更时间。 */ public void setModifyTime(String ModifyTime) { this.ModifyTime = ModifyTime; } /** * 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 + "Uuid", this.Uuid); this.setParamSimple(map, prefix + "MachineIp", this.MachineIp); this.setParamSimple(map, prefix + "MachineName", this.MachineName); this.setParamSimple(map, prefix + "Username", this.Username); this.setParamSimple(map, prefix + "ModifyType", this.ModifyType); this.setParamSimple(map, prefix + "ModifyTime", this.ModifyTime); } }




    © 2015 - 2025 Weber Informatics LLC | Privacy Policy