com.volcengine.model.imagex.v2.GetDomainConfigResResultAccessControlRemoteAuthAuthResponseAuthResultCache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
package com.volcengine.model.imagex.v2;
import com.alibaba.fastjson.JSON;
import java.util.List;
/**
* GetDomainConfigResResultAccessControlRemoteAuthAuthResponseAuthResultCache
*/
@lombok.Data
public final class GetDomainConfigResResultAccessControlRemoteAuthAuthResponseAuthResultCache {
/**
* 是否缓存鉴权状态码,取值如下所示:
*
*
*
* - `nocache`:veImageX 不缓存鉴权状态码。
*
* - `cache`:veImageX 缓存鉴权状态码。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "action")
private String action;
/**
* 缓存 key 指定了用于区分不同请求 URI 的查询参数
*/
@com.alibaba.fastjson.annotation.JSONField(name = "cache_key")
private List cacheKey;
/**
* 鉴权状态码的缓存时间,单位是秒
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ttl")
private Integer ttl;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy