![JAR search and dependency download from the Maven repository](/logo.png)
com.tencentcloudapi.redis.v20180412.models.ModifyAutoBackupConfigRequest 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.redis.v20180412.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 ModifyAutoBackupConfigRequest extends AbstractModel {
/**
* ID of a specified instance, such as "crs-xjhsdj****" Log in to the [Redis console](https://console.cloud.tencent.com/redis) and copy the instance ID in the instance list.
*/
@SerializedName("InstanceId")
@Expose
private String InstanceId;
/**
* Automatic backup cycle. Valid values: `Monday`, `Tuesday`, `Wednesday`, `Thursday`, `Friday`, `Saturday`, `Sunday`. This parameter currently cannot be modified.
*/
@SerializedName("WeekDays")
@Expose
private String [] WeekDays;
/**
* Automatic backup time in the format of 00:00-01:00, 01:00-02:00... 23:00-00:00.
*/
@SerializedName("TimePeriod")
@Expose
private String TimePeriod;
/**
* Automatic backup type. Valid value: `1` (scheduled backup).
*/
@SerializedName("AutoBackupType")
@Expose
private Long AutoBackupType;
/**
* Get ID of a specified instance, such as "crs-xjhsdj****" Log in to the [Redis console](https://console.cloud.tencent.com/redis) and copy the instance ID in the instance list.
* @return InstanceId ID of a specified instance, such as "crs-xjhsdj****" Log in to the [Redis console](https://console.cloud.tencent.com/redis) and copy the instance ID in the instance list.
*/
public String getInstanceId() {
return this.InstanceId;
}
/**
* Set ID of a specified instance, such as "crs-xjhsdj****" Log in to the [Redis console](https://console.cloud.tencent.com/redis) and copy the instance ID in the instance list.
* @param InstanceId ID of a specified instance, such as "crs-xjhsdj****" Log in to the [Redis console](https://console.cloud.tencent.com/redis) and copy the instance ID in the instance list.
*/
public void setInstanceId(String InstanceId) {
this.InstanceId = InstanceId;
}
/**
* Get Automatic backup cycle. Valid values: `Monday`, `Tuesday`, `Wednesday`, `Thursday`, `Friday`, `Saturday`, `Sunday`. This parameter currently cannot be modified.
* @return WeekDays Automatic backup cycle. Valid values: `Monday`, `Tuesday`, `Wednesday`, `Thursday`, `Friday`, `Saturday`, `Sunday`. This parameter currently cannot be modified.
*/
public String [] getWeekDays() {
return this.WeekDays;
}
/**
* Set Automatic backup cycle. Valid values: `Monday`, `Tuesday`, `Wednesday`, `Thursday`, `Friday`, `Saturday`, `Sunday`. This parameter currently cannot be modified.
* @param WeekDays Automatic backup cycle. Valid values: `Monday`, `Tuesday`, `Wednesday`, `Thursday`, `Friday`, `Saturday`, `Sunday`. This parameter currently cannot be modified.
*/
public void setWeekDays(String [] WeekDays) {
this.WeekDays = WeekDays;
}
/**
* Get Automatic backup time in the format of 00:00-01:00, 01:00-02:00... 23:00-00:00.
* @return TimePeriod Automatic backup time in the format of 00:00-01:00, 01:00-02:00... 23:00-00:00.
*/
public String getTimePeriod() {
return this.TimePeriod;
}
/**
* Set Automatic backup time in the format of 00:00-01:00, 01:00-02:00... 23:00-00:00.
* @param TimePeriod Automatic backup time in the format of 00:00-01:00, 01:00-02:00... 23:00-00:00.
*/
public void setTimePeriod(String TimePeriod) {
this.TimePeriod = TimePeriod;
}
/**
* Get Automatic backup type. Valid value: `1` (scheduled backup).
* @return AutoBackupType Automatic backup type. Valid value: `1` (scheduled backup).
*/
public Long getAutoBackupType() {
return this.AutoBackupType;
}
/**
* Set Automatic backup type. Valid value: `1` (scheduled backup).
* @param AutoBackupType Automatic backup type. Valid value: `1` (scheduled backup).
*/
public void setAutoBackupType(Long AutoBackupType) {
this.AutoBackupType = AutoBackupType;
}
public ModifyAutoBackupConfigRequest() {
}
/**
* 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 ModifyAutoBackupConfigRequest(ModifyAutoBackupConfigRequest source) {
if (source.InstanceId != null) {
this.InstanceId = new String(source.InstanceId);
}
if (source.WeekDays != null) {
this.WeekDays = new String[source.WeekDays.length];
for (int i = 0; i < source.WeekDays.length; i++) {
this.WeekDays[i] = new String(source.WeekDays[i]);
}
}
if (source.TimePeriod != null) {
this.TimePeriod = new String(source.TimePeriod);
}
if (source.AutoBackupType != null) {
this.AutoBackupType = new Long(source.AutoBackupType);
}
}
/**
* 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 + "WeekDays.", this.WeekDays);
this.setParamSimple(map, prefix + "TimePeriod", this.TimePeriod);
this.setParamSimple(map, prefix + "AutoBackupType", this.AutoBackupType);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy