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

com.antgroup.antchain.openapi.deps.models.BuildpackAdapter 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 BuildpackAdapter extends TeaModel {
    // buildpackArch
    @NameInMap("buildpack_arch")
    public String buildpackArch;

    // fullVersion
    @NameInMap("full_version")
    public String fullVersion;

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

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

    // techstack
    @NameInMap("techstack")
    public Techstack techstack;

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

    public BuildpackAdapter setBuildpackArch(String buildpackArch) {
        this.buildpackArch = buildpackArch;
        return this;
    }
    public String getBuildpackArch() {
        return this.buildpackArch;
    }

    public BuildpackAdapter setFullVersion(String fullVersion) {
        this.fullVersion = fullVersion;
        return this;
    }
    public String getFullVersion() {
        return this.fullVersion;
    }

    public BuildpackAdapter setSupportedOS(java.util.List supportedOS) {
        this.supportedOS = supportedOS;
        return this;
    }
    public java.util.List getSupportedOS() {
        return this.supportedOS;
    }

    public BuildpackAdapter setSupportedRegions(java.util.List supportedRegions) {
        this.supportedRegions = supportedRegions;
        return this;
    }
    public java.util.List getSupportedRegions() {
        return this.supportedRegions;
    }

    public BuildpackAdapter setTechstack(Techstack techstack) {
        this.techstack = techstack;
        return this;
    }
    public Techstack getTechstack() {
        return this.techstack;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy