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

com.antgroup.antchain.openapi.deps.models.Cloud Maven / Gradle / Ivy

There is a newer version: 3.2.40
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.deps.models;

import com.aliyun.tea.*;

public class Cloud extends TeaModel {
    // id
    @NameInMap("id")
    public Long id;

    // identity
    @NameInMap("identity")
    public String identity;

    // name
    @NameInMap("name")
    public String name;

    // platforms
    @NameInMap("platforms")
    public java.util.List platforms;

    public static Cloud build(java.util.Map map) throws Exception {
        Cloud self = new Cloud();
        return TeaModel.build(map, self);
    }

    public Cloud setId(Long id) {
        this.id = id;
        return this;
    }
    public Long getId() {
        return this.id;
    }

    public Cloud setIdentity(String identity) {
        this.identity = identity;
        return this;
    }
    public String getIdentity() {
        return this.identity;
    }

    public Cloud setName(String name) {
        this.name = name;
        return this;
    }
    public String getName() {
        return this.name;
    }

    public Cloud setPlatforms(java.util.List platforms) {
        this.platforms = platforms;
        return this;
    }
    public java.util.List getPlatforms() {
        return this.platforms;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy