
com.pulumi.azurenative.aad.outputs.HealthMonitorResponse 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.aad.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class HealthMonitorResponse {
/**
* @return Health Monitor Details
*
*/
private String details;
/**
* @return Health Monitor Id
*
*/
private String id;
/**
* @return Health Monitor Name
*
*/
private String name;
private HealthMonitorResponse() {}
/**
* @return Health Monitor Details
*
*/
public String details() {
return this.details;
}
/**
* @return Health Monitor Id
*
*/
public String id() {
return this.id;
}
/**
* @return Health Monitor Name
*
*/
public String name() {
return this.name;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(HealthMonitorResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String details;
private String id;
private String name;
public Builder() {}
public Builder(HealthMonitorResponse defaults) {
Objects.requireNonNull(defaults);
this.details = defaults.details;
this.id = defaults.id;
this.name = defaults.name;
}
@CustomType.Setter
public Builder details(String details) {
if (details == null) {
throw new MissingRequiredPropertyException("HealthMonitorResponse", "details");
}
this.details = details;
return this;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("HealthMonitorResponse", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("HealthMonitorResponse", "name");
}
this.name = name;
return this;
}
public HealthMonitorResponse build() {
final var _resultValue = new HealthMonitorResponse();
_resultValue.details = details;
_resultValue.id = id;
_resultValue.name = name;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy