com.pulumi.azurenative.datadog.outputs.DatadogInstallMethodResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure 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.pulumi.azurenative.datadog.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class DatadogInstallMethodResponse {
/**
* @return The installer version.
*
*/
private @Nullable String installerVersion;
/**
* @return The tool.
*
*/
private @Nullable String tool;
/**
* @return The tool version.
*
*/
private @Nullable String toolVersion;
private DatadogInstallMethodResponse() {}
/**
* @return The installer version.
*
*/
public Optional installerVersion() {
return Optional.ofNullable(this.installerVersion);
}
/**
* @return The tool.
*
*/
public Optional tool() {
return Optional.ofNullable(this.tool);
}
/**
* @return The tool version.
*
*/
public Optional toolVersion() {
return Optional.ofNullable(this.toolVersion);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(DatadogInstallMethodResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String installerVersion;
private @Nullable String tool;
private @Nullable String toolVersion;
public Builder() {}
public Builder(DatadogInstallMethodResponse defaults) {
Objects.requireNonNull(defaults);
this.installerVersion = defaults.installerVersion;
this.tool = defaults.tool;
this.toolVersion = defaults.toolVersion;
}
@CustomType.Setter
public Builder installerVersion(@Nullable String installerVersion) {
this.installerVersion = installerVersion;
return this;
}
@CustomType.Setter
public Builder tool(@Nullable String tool) {
this.tool = tool;
return this;
}
@CustomType.Setter
public Builder toolVersion(@Nullable String toolVersion) {
this.toolVersion = toolVersion;
return this;
}
public DatadogInstallMethodResponse build() {
final var _resultValue = new DatadogInstallMethodResponse();
_resultValue.installerVersion = installerVersion;
_resultValue.tool = tool;
_resultValue.toolVersion = toolVersion;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy