All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tencentcloudapi.thpc.v20220401.models.CFSOptionOverview Maven / Gradle / Ivy

There is a newer version: 3.1.1143
Show newest version
/*
 * 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.thpc.v20220401.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 CFSOptionOverview extends AbstractModel {

    /**
    * 文件系统本地挂载路径。
    */
    @SerializedName("LocalPath")
    @Expose
    private String LocalPath;

    /**
    * 文件系统远程挂载ip及路径。
    */
    @SerializedName("RemotePath")
    @Expose
    private String RemotePath;

    /**
    * 文件系统协议类型。
  • NFS 3.0。
  • NFS 4.0。
  • TURBO。 */ @SerializedName("Protocol") @Expose private String Protocol; /** * 文件系统存储类型,默认值SD;其中 SD 为通用标准型标准型存储, HP为通用性能型存储, TB为turbo标准型, TP 为turbo性能型。 */ @SerializedName("StorageType") @Expose private String StorageType; /** * Get 文件系统本地挂载路径。 * @return LocalPath 文件系统本地挂载路径。 */ public String getLocalPath() { return this.LocalPath; } /** * Set 文件系统本地挂载路径。 * @param LocalPath 文件系统本地挂载路径。 */ public void setLocalPath(String LocalPath) { this.LocalPath = LocalPath; } /** * Get 文件系统远程挂载ip及路径。 * @return RemotePath 文件系统远程挂载ip及路径。 */ public String getRemotePath() { return this.RemotePath; } /** * Set 文件系统远程挂载ip及路径。 * @param RemotePath 文件系统远程挂载ip及路径。 */ public void setRemotePath(String RemotePath) { this.RemotePath = RemotePath; } /** * Get 文件系统协议类型。
  • NFS 3.0。
  • NFS 4.0。
  • TURBO。 * @return Protocol 文件系统协议类型。
  • NFS 3.0。
  • NFS 4.0。
  • TURBO。 */ public String getProtocol() { return this.Protocol; } /** * Set 文件系统协议类型。
  • NFS 3.0。
  • NFS 4.0。
  • TURBO。 * @param Protocol 文件系统协议类型。
  • NFS 3.0。
  • NFS 4.0。
  • TURBO。 */ public void setProtocol(String Protocol) { this.Protocol = Protocol; } /** * Get 文件系统存储类型,默认值SD;其中 SD 为通用标准型标准型存储, HP为通用性能型存储, TB为turbo标准型, TP 为turbo性能型。 * @return StorageType 文件系统存储类型,默认值SD;其中 SD 为通用标准型标准型存储, HP为通用性能型存储, TB为turbo标准型, TP 为turbo性能型。 */ public String getStorageType() { return this.StorageType; } /** * Set 文件系统存储类型,默认值SD;其中 SD 为通用标准型标准型存储, HP为通用性能型存储, TB为turbo标准型, TP 为turbo性能型。 * @param StorageType 文件系统存储类型,默认值SD;其中 SD 为通用标准型标准型存储, HP为通用性能型存储, TB为turbo标准型, TP 为turbo性能型。 */ public void setStorageType(String StorageType) { this.StorageType = StorageType; } public CFSOptionOverview() { } /** * 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 CFSOptionOverview(CFSOptionOverview source) { if (source.LocalPath != null) { this.LocalPath = new String(source.LocalPath); } if (source.RemotePath != null) { this.RemotePath = new String(source.RemotePath); } if (source.Protocol != null) { this.Protocol = new String(source.Protocol); } if (source.StorageType != null) { this.StorageType = new String(source.StorageType); } } /** * Internal implementation, normal users should not use it. */ public void toMap(HashMap map, String prefix) { this.setParamSimple(map, prefix + "LocalPath", this.LocalPath); this.setParamSimple(map, prefix + "RemotePath", this.RemotePath); this.setParamSimple(map, prefix + "Protocol", this.Protocol); this.setParamSimple(map, prefix + "StorageType", this.StorageType); } }




  • © 2015 - 2024 Weber Informatics LLC | Privacy Policy