com.aliyun.bean.config.DefaultConfigBean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of toolkit-maven-plugin
Show all versions of toolkit-maven-plugin
Aliyun Open API SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
package com.aliyun.bean.config;
import lombok.Data;
@Data
public class DefaultConfigBean {
private Env env;
private App app;
private Oss oss;
@Data
public static class Env {
private String accessKeyId;
private String accessKeySecret;
private String regionId;
@Deprecated
private String domain; //use endpoint instead
private String endpoint; //the same as domain, but this is more easy to understand
private String vpcId;
private String jarPath;
}
@Data
public static class App {
//common param
private String appId;
private String packageVersion;
private String imageUrl;
private Integer batchWaitTime;
private String type;
//normal app
private String desc;
private String deployType;
private String warUrl;
private String groupId;
private Integer batch;
private String appEnv;
private Integer stageTimeout;
private Integer serviceStageTimeout;
private Integer instanceStageTimeout;
// ecs
private Integer releaseType;
}
@Data
public static class Oss {
private String regionId;
private String bucket;
private String key;
private String accessKeyId;
private String accessKeySecret;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy