com.tencentcloudapi.es.v20180416.models.CreateIndexRequest 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 CreateIndexRequest extends AbstractModel {
/**
* ES cluster ID
*/
@SerializedName("InstanceId")
@Expose
private String InstanceId;
/**
* Type of the index to create. `auto`: Automated; `normal`: General.
*/
@SerializedName("IndexType")
@Expose
private String IndexType;
/**
* Name of the index to create
*/
@SerializedName("IndexName")
@Expose
private String IndexName;
/**
* JSON-formatted index metadata to create, such as `mappings` and `settings`
*/
@SerializedName("IndexMetaJson")
@Expose
private String IndexMetaJson;
/**
* Username for cluster access
*/
@SerializedName("Username")
@Expose
private String Username;
/**
* Password for cluster access
*/
@SerializedName("Password")
@Expose
private String Password;
/**
* Get ES cluster ID
* @return InstanceId ES cluster ID
*/
public String getInstanceId() {
return this.InstanceId;
}
/**
* Set ES cluster ID
* @param InstanceId ES cluster ID
*/
public void setInstanceId(String InstanceId) {
this.InstanceId = InstanceId;
}
/**
* Get Type of the index to create. `auto`: Automated; `normal`: General.
* @return IndexType Type of the index to create. `auto`: Automated; `normal`: General.
*/
public String getIndexType() {
return this.IndexType;
}
/**
* Set Type of the index to create. `auto`: Automated; `normal`: General.
* @param IndexType Type of the index to create. `auto`: Automated; `normal`: General.
*/
public void setIndexType(String IndexType) {
this.IndexType = IndexType;
}
/**
* Get Name of the index to create
* @return IndexName Name of the index to create
*/
public String getIndexName() {
return this.IndexName;
}
/**
* Set Name of the index to create
* @param IndexName Name of the index to create
*/
public void setIndexName(String IndexName) {
this.IndexName = IndexName;
}
/**
* Get JSON-formatted index metadata to create, such as `mappings` and `settings`
* @return IndexMetaJson JSON-formatted index metadata to create, such as `mappings` and `settings`
*/
public String getIndexMetaJson() {
return this.IndexMetaJson;
}
/**
* Set JSON-formatted index metadata to create, such as `mappings` and `settings`
* @param IndexMetaJson JSON-formatted index metadata to create, such as `mappings` and `settings`
*/
public void setIndexMetaJson(String IndexMetaJson) {
this.IndexMetaJson = IndexMetaJson;
}
/**
* Get Username for cluster access
* @return Username Username for cluster access
*/
public String getUsername() {
return this.Username;
}
/**
* Set Username for cluster access
* @param Username Username for cluster access
*/
public void setUsername(String Username) {
this.Username = Username;
}
/**
* Get Password for cluster access
* @return Password Password for cluster access
*/
public String getPassword() {
return this.Password;
}
/**
* Set Password for cluster access
* @param Password Password for cluster access
*/
public void setPassword(String Password) {
this.Password = Password;
}
public CreateIndexRequest() {
}
/**
* 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 CreateIndexRequest(CreateIndexRequest source) {
if (source.InstanceId != null) {
this.InstanceId = new String(source.InstanceId);
}
if (source.IndexType != null) {
this.IndexType = new String(source.IndexType);
}
if (source.IndexName != null) {
this.IndexName = new String(source.IndexName);
}
if (source.IndexMetaJson != null) {
this.IndexMetaJson = new String(source.IndexMetaJson);
}
if (source.Username != null) {
this.Username = new String(source.Username);
}
if (source.Password != null) {
this.Password = new String(source.Password);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "InstanceId", this.InstanceId);
this.setParamSimple(map, prefix + "IndexType", this.IndexType);
this.setParamSimple(map, prefix + "IndexName", this.IndexName);
this.setParamSimple(map, prefix + "IndexMetaJson", this.IndexMetaJson);
this.setParamSimple(map, prefix + "Username", this.Username);
this.setParamSimple(map, prefix + "Password", this.Password);
}
}