
com.tencentcloudapi.cfs.v20190719.models.CreateCfsSnapshotRequest Maven / Gradle / Ivy
/*
* 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.cfs.v20190719.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class CreateCfsSnapshotRequest extends AbstractModel{
/**
* File system ID
*/
@SerializedName("FileSystemId")
@Expose
private String FileSystemId;
/**
* Snapshot name
*/
@SerializedName("SnapshotName")
@Expose
private String SnapshotName;
/**
* Snapshot tag
*/
@SerializedName("ResourceTags")
@Expose
private TagInfo [] ResourceTags;
/**
* Get File system ID
* @return FileSystemId File system ID
*/
public String getFileSystemId() {
return this.FileSystemId;
}
/**
* Set File system ID
* @param FileSystemId File system ID
*/
public void setFileSystemId(String FileSystemId) {
this.FileSystemId = FileSystemId;
}
/**
* Get Snapshot name
* @return SnapshotName Snapshot name
*/
public String getSnapshotName() {
return this.SnapshotName;
}
/**
* Set Snapshot name
* @param SnapshotName Snapshot name
*/
public void setSnapshotName(String SnapshotName) {
this.SnapshotName = SnapshotName;
}
/**
* Get Snapshot tag
* @return ResourceTags Snapshot tag
*/
public TagInfo [] getResourceTags() {
return this.ResourceTags;
}
/**
* Set Snapshot tag
* @param ResourceTags Snapshot tag
*/
public void setResourceTags(TagInfo [] ResourceTags) {
this.ResourceTags = ResourceTags;
}
public CreateCfsSnapshotRequest() {
}
/**
* 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 CreateCfsSnapshotRequest(CreateCfsSnapshotRequest source) {
if (source.FileSystemId != null) {
this.FileSystemId = new String(source.FileSystemId);
}
if (source.SnapshotName != null) {
this.SnapshotName = new String(source.SnapshotName);
}
if (source.ResourceTags != null) {
this.ResourceTags = new TagInfo[source.ResourceTags.length];
for (int i = 0; i < source.ResourceTags.length; i++) {
this.ResourceTags[i] = new TagInfo(source.ResourceTags[i]);
}
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "FileSystemId", this.FileSystemId);
this.setParamSimple(map, prefix + "SnapshotName", this.SnapshotName);
this.setParamArrayObj(map, prefix + "ResourceTags.", this.ResourceTags);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy