com.aliyun.ccp.ossclient.models.UpdateFileMetaRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ccp-oss-client Show documentation
Show all versions of ccp-oss-client Show documentation
Aliyun CCP oss SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ccp.ossclient.models;
import com.aliyun.tea.*;
public class UpdateFileMetaRequest extends TeaModel {
@NameInMap("description")
public String description;
@NameInMap("drive_id")
@Validation(required = true, pattern = "[0-9]+")
public String driveId;
@NameInMap("file_id")
@Validation(required = true, pattern = "[a-z0-9.-_]{1,50}")
public String fileId;
@NameInMap("hidden")
public boolean hidden;
@NameInMap("meta")
public String meta;
@NameInMap("name")
@Validation(required = true, pattern = "[a-zA-Z0-9.-]{1,1000}")
public String name;
@NameInMap("share_id")
public String shareId;
@NameInMap("starred")
public boolean starred;
@NameInMap("tags")
public java.util.Map tags;
public static UpdateFileMetaRequest build(java.util.Map map) throws Exception {
UpdateFileMetaRequest self = new UpdateFileMetaRequest();
return TeaModel.build(map, self);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy