com.tencentcloudapi.es.v20180416.models.UpdatePluginsRequest 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.es.v20180416.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 UpdatePluginsRequest extends AbstractModel {
/**
* Instance ID
*/
@SerializedName("InstanceId")
@Expose
private String InstanceId;
/**
* List of names of the plugins to be installed
*/
@SerializedName("InstallPluginList")
@Expose
private String [] InstallPluginList;
/**
* List of names of the plugins to be uninstalled
*/
@SerializedName("RemovePluginList")
@Expose
private String [] RemovePluginList;
/**
* Whether to force restart the cluster. The default value is `false`.
*/
@SerializedName("ForceRestart")
@Expose
private Boolean ForceRestart;
/**
* Whether to reinstall the cluster. The default value is `false`.
*/
@SerializedName("ForceUpdate")
@Expose
private Boolean ForceUpdate;
/**
* 0: system plugin
*/
@SerializedName("PluginType")
@Expose
private Long PluginType;
/**
* Get Instance ID
* @return InstanceId Instance ID
*/
public String getInstanceId() {
return this.InstanceId;
}
/**
* Set Instance ID
* @param InstanceId Instance ID
*/
public void setInstanceId(String InstanceId) {
this.InstanceId = InstanceId;
}
/**
* Get List of names of the plugins to be installed
* @return InstallPluginList List of names of the plugins to be installed
*/
public String [] getInstallPluginList() {
return this.InstallPluginList;
}
/**
* Set List of names of the plugins to be installed
* @param InstallPluginList List of names of the plugins to be installed
*/
public void setInstallPluginList(String [] InstallPluginList) {
this.InstallPluginList = InstallPluginList;
}
/**
* Get List of names of the plugins to be uninstalled
* @return RemovePluginList List of names of the plugins to be uninstalled
*/
public String [] getRemovePluginList() {
return this.RemovePluginList;
}
/**
* Set List of names of the plugins to be uninstalled
* @param RemovePluginList List of names of the plugins to be uninstalled
*/
public void setRemovePluginList(String [] RemovePluginList) {
this.RemovePluginList = RemovePluginList;
}
/**
* Get Whether to force restart the cluster. The default value is `false`.
* @return ForceRestart Whether to force restart the cluster. The default value is `false`.
*/
public Boolean getForceRestart() {
return this.ForceRestart;
}
/**
* Set Whether to force restart the cluster. The default value is `false`.
* @param ForceRestart Whether to force restart the cluster. The default value is `false`.
*/
public void setForceRestart(Boolean ForceRestart) {
this.ForceRestart = ForceRestart;
}
/**
* Get Whether to reinstall the cluster. The default value is `false`.
* @return ForceUpdate Whether to reinstall the cluster. The default value is `false`.
*/
public Boolean getForceUpdate() {
return this.ForceUpdate;
}
/**
* Set Whether to reinstall the cluster. The default value is `false`.
* @param ForceUpdate Whether to reinstall the cluster. The default value is `false`.
*/
public void setForceUpdate(Boolean ForceUpdate) {
this.ForceUpdate = ForceUpdate;
}
/**
* Get 0: system plugin
* @return PluginType 0: system plugin
*/
public Long getPluginType() {
return this.PluginType;
}
/**
* Set 0: system plugin
* @param PluginType 0: system plugin
*/
public void setPluginType(Long PluginType) {
this.PluginType = PluginType;
}
public UpdatePluginsRequest() {
}
/**
* 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 UpdatePluginsRequest(UpdatePluginsRequest source) {
if (source.InstanceId != null) {
this.InstanceId = new String(source.InstanceId);
}
if (source.InstallPluginList != null) {
this.InstallPluginList = new String[source.InstallPluginList.length];
for (int i = 0; i < source.InstallPluginList.length; i++) {
this.InstallPluginList[i] = new String(source.InstallPluginList[i]);
}
}
if (source.RemovePluginList != null) {
this.RemovePluginList = new String[source.RemovePluginList.length];
for (int i = 0; i < source.RemovePluginList.length; i++) {
this.RemovePluginList[i] = new String(source.RemovePluginList[i]);
}
}
if (source.ForceRestart != null) {
this.ForceRestart = new Boolean(source.ForceRestart);
}
if (source.ForceUpdate != null) {
this.ForceUpdate = new Boolean(source.ForceUpdate);
}
if (source.PluginType != null) {
this.PluginType = new Long(source.PluginType);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "InstanceId", this.InstanceId);
this.setParamArraySimple(map, prefix + "InstallPluginList.", this.InstallPluginList);
this.setParamArraySimple(map, prefix + "RemovePluginList.", this.RemovePluginList);
this.setParamSimple(map, prefix + "ForceRestart", this.ForceRestart);
this.setParamSimple(map, prefix + "ForceUpdate", this.ForceUpdate);
this.setParamSimple(map, prefix + "PluginType", this.PluginType);
}
}