com.tencentcloudapi.cdb.v20170320.models.OpenAuditServiceRequest 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.cdb.v20170320.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class OpenAuditServiceRequest extends AbstractModel{
/**
* TencentDB for MySQL instance ID
*/
@SerializedName("InstanceId")
@Expose
private String InstanceId;
/**
* Retention period of audit logs. Valid values:
7: seven days (a week);
30: 30 days (a month);
180: 180 days (six months);
365: 365 days (a year);
1095: 1095 days (three years);
1825: 1825 days (five years).
*/
@SerializedName("LogExpireDay")
@Expose
private Long LogExpireDay;
/**
* Retention period of high-frequency audit logs. Valid values:
7: seven days (a week);
30: 30 days (a month);
180: 180 days (six months);
365: 365 days (a year);
1095: 1095 days (three years);
1825: 1825 days (five years).
*/
@SerializedName("HighLogExpireDay")
@Expose
private Long HighLogExpireDay;
/**
* Get TencentDB for MySQL instance ID
* @return InstanceId TencentDB for MySQL instance ID
*/
public String getInstanceId() {
return this.InstanceId;
}
/**
* Set TencentDB for MySQL instance ID
* @param InstanceId TencentDB for MySQL instance ID
*/
public void setInstanceId(String InstanceId) {
this.InstanceId = InstanceId;
}
/**
* Get Retention period of audit logs. Valid values:
7: seven days (a week);
30: 30 days (a month);
180: 180 days (six months);
365: 365 days (a year);
1095: 1095 days (three years);
1825: 1825 days (five years).
* @return LogExpireDay Retention period of audit logs. Valid values:
7: seven days (a week);
30: 30 days (a month);
180: 180 days (six months);
365: 365 days (a year);
1095: 1095 days (three years);
1825: 1825 days (five years).
*/
public Long getLogExpireDay() {
return this.LogExpireDay;
}
/**
* Set Retention period of audit logs. Valid values:
7: seven days (a week);
30: 30 days (a month);
180: 180 days (six months);
365: 365 days (a year);
1095: 1095 days (three years);
1825: 1825 days (five years).
* @param LogExpireDay Retention period of audit logs. Valid values:
7: seven days (a week);
30: 30 days (a month);
180: 180 days (six months);
365: 365 days (a year);
1095: 1095 days (three years);
1825: 1825 days (five years).
*/
public void setLogExpireDay(Long LogExpireDay) {
this.LogExpireDay = LogExpireDay;
}
/**
* Get Retention period of high-frequency audit logs. Valid values:
7: seven days (a week);
30: 30 days (a month);
180: 180 days (six months);
365: 365 days (a year);
1095: 1095 days (three years);
1825: 1825 days (five years).
* @return HighLogExpireDay Retention period of high-frequency audit logs. Valid values:
7: seven days (a week);
30: 30 days (a month);
180: 180 days (six months);
365: 365 days (a year);
1095: 1095 days (three years);
1825: 1825 days (five years).
*/
public Long getHighLogExpireDay() {
return this.HighLogExpireDay;
}
/**
* Set Retention period of high-frequency audit logs. Valid values:
7: seven days (a week);
30: 30 days (a month);
180: 180 days (six months);
365: 365 days (a year);
1095: 1095 days (three years);
1825: 1825 days (five years).
* @param HighLogExpireDay Retention period of high-frequency audit logs. Valid values:
7: seven days (a week);
30: 30 days (a month);
180: 180 days (six months);
365: 365 days (a year);
1095: 1095 days (three years);
1825: 1825 days (five years).
*/
public void setHighLogExpireDay(Long HighLogExpireDay) {
this.HighLogExpireDay = HighLogExpireDay;
}
public OpenAuditServiceRequest() {
}
/**
* 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 OpenAuditServiceRequest(OpenAuditServiceRequest source) {
if (source.InstanceId != null) {
this.InstanceId = new String(source.InstanceId);
}
if (source.LogExpireDay != null) {
this.LogExpireDay = new Long(source.LogExpireDay);
}
if (source.HighLogExpireDay != null) {
this.HighLogExpireDay = new Long(source.HighLogExpireDay);
}
}
/**
* 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 + "LogExpireDay", this.LogExpireDay);
this.setParamSimple(map, prefix + "HighLogExpireDay", this.HighLogExpireDay);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy