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

com.aliyun.openservices.log.request.CreateOrUpdateSqlInstanceRequest Maven / Gradle / Ivy

There is a newer version: 0.6.115
Show newest version
package com.aliyun.openservices.log.request;

public class CreateOrUpdateSqlInstanceRequest extends Request {
    private int cu;
    private boolean useAsDefault;

    public CreateOrUpdateSqlInstanceRequest(String project, int cu, boolean useAsDefault) {
        super(project);
        this.cu = cu;
        this.useAsDefault = useAsDefault;
    }

    public int getCu() {
        return cu;
    }

    public void setCu(int cu) {
        this.cu = cu;
    }

    public boolean isUseAsDefault() {
        return useAsDefault;
    }

    public void setUseAsDefault(boolean useAsDefault) {
        this.useAsDefault = useAsDefault;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy