com.antgroup.antchain.openapi.deps.models.CreateSidecarRuleRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-deps Show documentation
Show all versions of openapi-deps Show documentation
Ant Chain deps SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.deps.models;
import com.aliyun.tea.*;
public class CreateSidecarRuleRequest extends TeaModel {
@NameInMap("auth_token")
public String authToken;
@NameInMap("tenant")
public String tenant;
// 规则描述
@NameInMap("description")
public String description;
// 规则优先级
@NameInMap("level")
public Long level;
// sidecar生效范围:workspace、workspace_group、region
@NameInMap("scope")
@Validation(required = true)
public String scope;
// scope对应的唯一标识,例如workspace对应workspace id
//
@NameInMap("scope_identity")
@Validation(required = true)
public String scopeIdentity;
// sidecar版本实例id
@NameInMap("sidecar_version_instance_id")
@Validation(required = true)
public String sidecarVersionInstanceId;
public static CreateSidecarRuleRequest build(java.util.Map map) throws Exception {
CreateSidecarRuleRequest self = new CreateSidecarRuleRequest();
return TeaModel.build(map, self);
}
public CreateSidecarRuleRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public CreateSidecarRuleRequest setTenant(String tenant) {
this.tenant = tenant;
return this;
}
public String getTenant() {
return this.tenant;
}
public CreateSidecarRuleRequest setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public CreateSidecarRuleRequest setLevel(Long level) {
this.level = level;
return this;
}
public Long getLevel() {
return this.level;
}
public CreateSidecarRuleRequest setScope(String scope) {
this.scope = scope;
return this;
}
public String getScope() {
return this.scope;
}
public CreateSidecarRuleRequest setScopeIdentity(String scopeIdentity) {
this.scopeIdentity = scopeIdentity;
return this;
}
public String getScopeIdentity() {
return this.scopeIdentity;
}
public CreateSidecarRuleRequest setSidecarVersionInstanceId(String sidecarVersionInstanceId) {
this.sidecarVersionInstanceId = sidecarVersionInstanceId;
return this;
}
public String getSidecarVersionInstanceId() {
return this.sidecarVersionInstanceId;
}
}