com.volcengine.model.acep.GetPodPropertyResResult 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.acep;
import com.alibaba.fastjson.JSON;
import java.util.Map;
/**
* GetPodPropertyResResult
*/
@lombok.Data
public final class GetPodPropertyResResult {
/**
* 查询到的 secure 类型 setting 值列表。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "SettingSecureList")
private Map settingSecureList;
/**
* 查询到的 global 类型 setting 值列表。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "SettingGlobalList")
private Map settingGlobalList;
/**
* 查询到的 system 类型 setting 值列表。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "SettingSystemList")
private Map settingSystemList;
/**
* 查询到的非持久化属性列表。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "PropertyList")
private Map propertyList;
/**
* 查询到的持久化属性列表。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "PersistPropertyList")
private Map persistPropertyList;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy