com.aliyuncs.vod.model.v20170321.RefreshVodObjectCachesRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-java-sdk-vod Show documentation
Show all versions of aliyun-java-sdk-vod Show documentation
Aliyun Open API SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
The newest version!
/*
* 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.aliyuncs.vod.model.v20170321;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.vod.Endpoint;
/**
* @author auto create
* @version
*/
public class RefreshVodObjectCachesRequest extends RpcAcsRequest {
private String objectPath;
private String securityToken;
private String objectType;
private Long ownerId;
private Boolean force;
public RefreshVodObjectCachesRequest() {
super("vod", "2017-03-21", "RefreshVodObjectCaches", "vod");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getObjectPath() {
return this.objectPath;
}
public void setObjectPath(String objectPath) {
this.objectPath = objectPath;
if(objectPath != null){
putQueryParameter("ObjectPath", objectPath);
}
}
public String getSecurityToken() {
return this.securityToken;
}
public void setSecurityToken(String securityToken) {
this.securityToken = securityToken;
if(securityToken != null){
putQueryParameter("SecurityToken", securityToken);
}
}
public String getObjectType() {
return this.objectType;
}
public void setObjectType(String objectType) {
this.objectType = objectType;
if(objectType != null){
putQueryParameter("ObjectType", objectType);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public Boolean getForce() {
return this.force;
}
public void setForce(Boolean force) {
this.force = force;
if(force != null){
putQueryParameter("Force", force.toString());
}
}
@Override
public Class getResponseClass() {
return RefreshVodObjectCachesResponse.class;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy