com.tencentcloudapi.sqlserver.v20180328.models.RollbackInstanceRequest 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.sqlserver.v20180328.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 RollbackInstanceRequest extends AbstractModel {
/**
* Instance ID
*/
@SerializedName("InstanceId")
@Expose
private String InstanceId;
/**
* Rollback type. 0: the database rolled back overwrites the original database; 1: the database rolled back is renamed and does not overwrite the original database
*/
@SerializedName("Type")
@Expose
private Long Type;
/**
* Target time point for rollback
*/
@SerializedName("Time")
@Expose
private String Time;
/**
* Database to be rolled back
*/
@SerializedName("DBs")
@Expose
private String [] DBs;
/**
* ID of the target instance to which the backup is restored. The target instance should be under the same `APPID`. If this parameter is left empty, ID of the source instance will be used.
*/
@SerializedName("TargetInstanceId")
@Expose
private String TargetInstanceId;
/**
* Rename the databases listed in `ReNameRestoreDatabase`. This parameter takes effect only when `Type = 1` which indicates that backup rollback supports renaming databases. If it is left empty, databases will be renamed in the default format and the `DBs` parameter specifies the databases to be restored.
*/
@SerializedName("RenameRestore")
@Expose
private RenameRestoreDatabase [] RenameRestore;
/**
* 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 Rollback type. 0: the database rolled back overwrites the original database; 1: the database rolled back is renamed and does not overwrite the original database
* @return Type Rollback type. 0: the database rolled back overwrites the original database; 1: the database rolled back is renamed and does not overwrite the original database
*/
public Long getType() {
return this.Type;
}
/**
* Set Rollback type. 0: the database rolled back overwrites the original database; 1: the database rolled back is renamed and does not overwrite the original database
* @param Type Rollback type. 0: the database rolled back overwrites the original database; 1: the database rolled back is renamed and does not overwrite the original database
*/
public void setType(Long Type) {
this.Type = Type;
}
/**
* Get Target time point for rollback
* @return Time Target time point for rollback
*/
public String getTime() {
return this.Time;
}
/**
* Set Target time point for rollback
* @param Time Target time point for rollback
*/
public void setTime(String Time) {
this.Time = Time;
}
/**
* Get Database to be rolled back
* @return DBs Database to be rolled back
*/
public String [] getDBs() {
return this.DBs;
}
/**
* Set Database to be rolled back
* @param DBs Database to be rolled back
*/
public void setDBs(String [] DBs) {
this.DBs = DBs;
}
/**
* Get ID of the target instance to which the backup is restored. The target instance should be under the same `APPID`. If this parameter is left empty, ID of the source instance will be used.
* @return TargetInstanceId ID of the target instance to which the backup is restored. The target instance should be under the same `APPID`. If this parameter is left empty, ID of the source instance will be used.
*/
public String getTargetInstanceId() {
return this.TargetInstanceId;
}
/**
* Set ID of the target instance to which the backup is restored. The target instance should be under the same `APPID`. If this parameter is left empty, ID of the source instance will be used.
* @param TargetInstanceId ID of the target instance to which the backup is restored. The target instance should be under the same `APPID`. If this parameter is left empty, ID of the source instance will be used.
*/
public void setTargetInstanceId(String TargetInstanceId) {
this.TargetInstanceId = TargetInstanceId;
}
/**
* Get Rename the databases listed in `ReNameRestoreDatabase`. This parameter takes effect only when `Type = 1` which indicates that backup rollback supports renaming databases. If it is left empty, databases will be renamed in the default format and the `DBs` parameter specifies the databases to be restored.
* @return RenameRestore Rename the databases listed in `ReNameRestoreDatabase`. This parameter takes effect only when `Type = 1` which indicates that backup rollback supports renaming databases. If it is left empty, databases will be renamed in the default format and the `DBs` parameter specifies the databases to be restored.
*/
public RenameRestoreDatabase [] getRenameRestore() {
return this.RenameRestore;
}
/**
* Set Rename the databases listed in `ReNameRestoreDatabase`. This parameter takes effect only when `Type = 1` which indicates that backup rollback supports renaming databases. If it is left empty, databases will be renamed in the default format and the `DBs` parameter specifies the databases to be restored.
* @param RenameRestore Rename the databases listed in `ReNameRestoreDatabase`. This parameter takes effect only when `Type = 1` which indicates that backup rollback supports renaming databases. If it is left empty, databases will be renamed in the default format and the `DBs` parameter specifies the databases to be restored.
*/
public void setRenameRestore(RenameRestoreDatabase [] RenameRestore) {
this.RenameRestore = RenameRestore;
}
public RollbackInstanceRequest() {
}
/**
* 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 RollbackInstanceRequest(RollbackInstanceRequest source) {
if (source.InstanceId != null) {
this.InstanceId = new String(source.InstanceId);
}
if (source.Type != null) {
this.Type = new Long(source.Type);
}
if (source.Time != null) {
this.Time = new String(source.Time);
}
if (source.DBs != null) {
this.DBs = new String[source.DBs.length];
for (int i = 0; i < source.DBs.length; i++) {
this.DBs[i] = new String(source.DBs[i]);
}
}
if (source.TargetInstanceId != null) {
this.TargetInstanceId = new String(source.TargetInstanceId);
}
if (source.RenameRestore != null) {
this.RenameRestore = new RenameRestoreDatabase[source.RenameRestore.length];
for (int i = 0; i < source.RenameRestore.length; i++) {
this.RenameRestore[i] = new RenameRestoreDatabase(source.RenameRestore[i]);
}
}
}
/**
* 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 + "Type", this.Type);
this.setParamSimple(map, prefix + "Time", this.Time);
this.setParamArraySimple(map, prefix + "DBs.", this.DBs);
this.setParamSimple(map, prefix + "TargetInstanceId", this.TargetInstanceId);
this.setParamArrayObj(map, prefix + "RenameRestore.", this.RenameRestore);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy