com.ovhcloud.pulumi.ovh.Dbaas.outputs.GetLogsInputEngineResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-ovh Show documentation
Show all versions of pulumi-ovh Show documentation
A Pulumi package for creating and managing OVH resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.ovhcloud.pulumi.ovh.Dbaas.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GetLogsInputEngineResult {
/**
* @return The provider-assigned unique ID for this managed resource.
*
*/
private String id;
private Boolean isDeprecated;
private String name;
private String serviceName;
private String version;
private GetLogsInputEngineResult() {}
/**
* @return The provider-assigned unique ID for this managed resource.
*
*/
public String id() {
return this.id;
}
public Boolean isDeprecated() {
return this.isDeprecated;
}
public String name() {
return this.name;
}
public String serviceName() {
return this.serviceName;
}
public String version() {
return this.version;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetLogsInputEngineResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String id;
private Boolean isDeprecated;
private String name;
private String serviceName;
private String version;
public Builder() {}
public Builder(GetLogsInputEngineResult defaults) {
Objects.requireNonNull(defaults);
this.id = defaults.id;
this.isDeprecated = defaults.isDeprecated;
this.name = defaults.name;
this.serviceName = defaults.serviceName;
this.version = defaults.version;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("GetLogsInputEngineResult", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder isDeprecated(Boolean isDeprecated) {
if (isDeprecated == null) {
throw new MissingRequiredPropertyException("GetLogsInputEngineResult", "isDeprecated");
}
this.isDeprecated = isDeprecated;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("GetLogsInputEngineResult", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder serviceName(String serviceName) {
if (serviceName == null) {
throw new MissingRequiredPropertyException("GetLogsInputEngineResult", "serviceName");
}
this.serviceName = serviceName;
return this;
}
@CustomType.Setter
public Builder version(String version) {
if (version == null) {
throw new MissingRequiredPropertyException("GetLogsInputEngineResult", "version");
}
this.version = version;
return this;
}
public GetLogsInputEngineResult build() {
final var _resultValue = new GetLogsInputEngineResult();
_resultValue.id = id;
_resultValue.isDeprecated = isDeprecated;
_resultValue.name = name;
_resultValue.serviceName = serviceName;
_resultValue.version = version;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy