![JAR search and dependency download from the Maven repository](/logo.png)
com.tencentcloudapi.cwp.v20180228.models.AssetSystemPackageInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Tencent Cloud API SDK for Java
/*
* 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.cwp.v20180228.models;
import com.tencentcloudapi.common.AbstractModel;
import com.tencentcloudapi.common.SSEResponseModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class AssetSystemPackageInfo extends AbstractModel {
/**
* Database name
*/
@SerializedName("Name")
@Expose
private String Name;
/**
* Description
*/
@SerializedName("Desc")
@Expose
private String Desc;
/**
* Version
*/
@SerializedName("Version")
@Expose
private String Version;
/**
* Installation time
*/
@SerializedName("InstallTime")
@Expose
private String InstallTime;
/**
* Type
*/
@SerializedName("Type")
@Expose
private String Type;
/**
* Host name
*/
@SerializedName("MachineName")
@Expose
private String MachineName;
/**
* Host IP
*/
@SerializedName("MachineIp")
@Expose
private String MachineIp;
/**
* Operating system
*/
@SerializedName("OsInfo")
@Expose
private String OsInfo;
/**
* Data update time
Note: This field may return null, indicating that no valid values can be obtained.
*/
@SerializedName("UpdateTime")
@Expose
private String UpdateTime;
/**
* First collection time
*/
@SerializedName("FirstTime")
@Expose
private String FirstTime;
/**
* Whether newly added [0: no|1: yes]
*/
@SerializedName("IsNew")
@Expose
private Long IsNew;
/**
* Additional information
*/
@SerializedName("MachineExtraInfo")
@Expose
private MachineExtraInfo MachineExtraInfo;
/**
* Host ID
*/
@SerializedName("Quuid")
@Expose
private String Quuid;
/**
* Agent Id
*/
@SerializedName("Uuid")
@Expose
private String Uuid;
/**
* Get Database name
* @return Name Database name
*/
public String getName() {
return this.Name;
}
/**
* Set Database name
* @param Name Database name
*/
public void setName(String Name) {
this.Name = Name;
}
/**
* Get Description
* @return Desc Description
*/
public String getDesc() {
return this.Desc;
}
/**
* Set Description
* @param Desc Description
*/
public void setDesc(String Desc) {
this.Desc = Desc;
}
/**
* Get Version
* @return Version Version
*/
public String getVersion() {
return this.Version;
}
/**
* Set Version
* @param Version Version
*/
public void setVersion(String Version) {
this.Version = Version;
}
/**
* Get Installation time
* @return InstallTime Installation time
*/
public String getInstallTime() {
return this.InstallTime;
}
/**
* Set Installation time
* @param InstallTime Installation time
*/
public void setInstallTime(String InstallTime) {
this.InstallTime = InstallTime;
}
/**
* Get Type
* @return Type Type
*/
public String getType() {
return this.Type;
}
/**
* Set Type
* @param Type Type
*/
public void setType(String Type) {
this.Type = Type;
}
/**
* Get Host name
* @return MachineName Host name
*/
public String getMachineName() {
return this.MachineName;
}
/**
* Set Host name
* @param MachineName Host name
*/
public void setMachineName(String MachineName) {
this.MachineName = MachineName;
}
/**
* Get Host IP
* @return MachineIp Host IP
*/
public String getMachineIp() {
return this.MachineIp;
}
/**
* Set Host IP
* @param MachineIp Host IP
*/
public void setMachineIp(String MachineIp) {
this.MachineIp = MachineIp;
}
/**
* Get Operating system
* @return OsInfo Operating system
*/
public String getOsInfo() {
return this.OsInfo;
}
/**
* Set Operating system
* @param OsInfo Operating system
*/
public void setOsInfo(String OsInfo) {
this.OsInfo = OsInfo;
}
/**
* Get Data update time
Note: This field may return null, indicating that no valid values can be obtained.
* @return UpdateTime Data update time
Note: This field may return null, indicating that no valid values can be obtained.
*/
public String getUpdateTime() {
return this.UpdateTime;
}
/**
* Set Data update time
Note: This field may return null, indicating that no valid values can be obtained.
* @param UpdateTime Data update time
Note: This field may return null, indicating that no valid values can be obtained.
*/
public void setUpdateTime(String UpdateTime) {
this.UpdateTime = UpdateTime;
}
/**
* Get First collection time
* @return FirstTime First collection time
*/
public String getFirstTime() {
return this.FirstTime;
}
/**
* Set First collection time
* @param FirstTime First collection time
*/
public void setFirstTime(String FirstTime) {
this.FirstTime = FirstTime;
}
/**
* Get Whether newly added [0: no|1: yes]
* @return IsNew Whether newly added [0: no|1: yes]
*/
public Long getIsNew() {
return this.IsNew;
}
/**
* Set Whether newly added [0: no|1: yes]
* @param IsNew Whether newly added [0: no|1: yes]
*/
public void setIsNew(Long IsNew) {
this.IsNew = IsNew;
}
/**
* Get Additional information
* @return MachineExtraInfo Additional information
*/
public MachineExtraInfo getMachineExtraInfo() {
return this.MachineExtraInfo;
}
/**
* Set Additional information
* @param MachineExtraInfo Additional information
*/
public void setMachineExtraInfo(MachineExtraInfo MachineExtraInfo) {
this.MachineExtraInfo = MachineExtraInfo;
}
/**
* Get Host ID
* @return Quuid Host ID
*/
public String getQuuid() {
return this.Quuid;
}
/**
* Set Host ID
* @param Quuid Host ID
*/
public void setQuuid(String Quuid) {
this.Quuid = Quuid;
}
/**
* Get Agent Id
* @return Uuid Agent Id
*/
public String getUuid() {
return this.Uuid;
}
/**
* Set Agent Id
* @param Uuid Agent Id
*/
public void setUuid(String Uuid) {
this.Uuid = Uuid;
}
public AssetSystemPackageInfo() {
}
/**
* NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
* and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
*/
public AssetSystemPackageInfo(AssetSystemPackageInfo source) {
if (source.Name != null) {
this.Name = new String(source.Name);
}
if (source.Desc != null) {
this.Desc = new String(source.Desc);
}
if (source.Version != null) {
this.Version = new String(source.Version);
}
if (source.InstallTime != null) {
this.InstallTime = new String(source.InstallTime);
}
if (source.Type != null) {
this.Type = new String(source.Type);
}
if (source.MachineName != null) {
this.MachineName = new String(source.MachineName);
}
if (source.MachineIp != null) {
this.MachineIp = new String(source.MachineIp);
}
if (source.OsInfo != null) {
this.OsInfo = new String(source.OsInfo);
}
if (source.UpdateTime != null) {
this.UpdateTime = new String(source.UpdateTime);
}
if (source.FirstTime != null) {
this.FirstTime = new String(source.FirstTime);
}
if (source.IsNew != null) {
this.IsNew = new Long(source.IsNew);
}
if (source.MachineExtraInfo != null) {
this.MachineExtraInfo = new MachineExtraInfo(source.MachineExtraInfo);
}
if (source.Quuid != null) {
this.Quuid = new String(source.Quuid);
}
if (source.Uuid != null) {
this.Uuid = new String(source.Uuid);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "Name", this.Name);
this.setParamSimple(map, prefix + "Desc", this.Desc);
this.setParamSimple(map, prefix + "Version", this.Version);
this.setParamSimple(map, prefix + "InstallTime", this.InstallTime);
this.setParamSimple(map, prefix + "Type", this.Type);
this.setParamSimple(map, prefix + "MachineName", this.MachineName);
this.setParamSimple(map, prefix + "MachineIp", this.MachineIp);
this.setParamSimple(map, prefix + "OsInfo", this.OsInfo);
this.setParamSimple(map, prefix + "UpdateTime", this.UpdateTime);
this.setParamSimple(map, prefix + "FirstTime", this.FirstTime);
this.setParamSimple(map, prefix + "IsNew", this.IsNew);
this.setParamObj(map, prefix + "MachineExtraInfo.", this.MachineExtraInfo);
this.setParamSimple(map, prefix + "Quuid", this.Quuid);
this.setParamSimple(map, prefix + "Uuid", this.Uuid);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy