All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dataphin_public20230630.models.GetPhysicalInstanceRequest Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dataphin_public20230630.models;

import com.aliyun.tea.*;

public class GetPhysicalInstanceRequest extends TeaModel {
    /**
     * example:
     * 

PROD

*/ @NameInMap("Env") public String env; /** *

This parameter is required.

* * example: *

t_23231

*/ @NameInMap("InstanceId") public String instanceId; /** *

This parameter is required.

* * example: *

30001011

*/ @NameInMap("OpTenantId") public Long opTenantId; /** *

This parameter is required.

* * example: *

2323131

*/ @NameInMap("ProjectId") public Long projectId; public static GetPhysicalInstanceRequest build(java.util.Map map) throws Exception { GetPhysicalInstanceRequest self = new GetPhysicalInstanceRequest(); return TeaModel.build(map, self); } public GetPhysicalInstanceRequest setEnv(String env) { this.env = env; return this; } public String getEnv() { return this.env; } public GetPhysicalInstanceRequest setInstanceId(String instanceId) { this.instanceId = instanceId; return this; } public String getInstanceId() { return this.instanceId; } public GetPhysicalInstanceRequest setOpTenantId(Long opTenantId) { this.opTenantId = opTenantId; return this; } public Long getOpTenantId() { return this.opTenantId; } public GetPhysicalInstanceRequest setProjectId(Long projectId) { this.projectId = projectId; return this; } public Long getProjectId() { return this.projectId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy