com.pulumi.azurenative.documentdb.outputs.GraphAPIComputeRegionalServiceResourceResponse 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.documentdb.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GraphAPIComputeRegionalServiceResourceResponse {
/**
* @return The regional endpoint for GraphAPICompute.
*
*/
private String graphApiComputeEndpoint;
/**
* @return The location name.
*
*/
private String location;
/**
* @return The regional service name.
*
*/
private String name;
/**
* @return Describes the status of a service.
*
*/
private String status;
private GraphAPIComputeRegionalServiceResourceResponse() {}
/**
* @return The regional endpoint for GraphAPICompute.
*
*/
public String graphApiComputeEndpoint() {
return this.graphApiComputeEndpoint;
}
/**
* @return The location name.
*
*/
public String location() {
return this.location;
}
/**
* @return The regional service name.
*
*/
public String name() {
return this.name;
}
/**
* @return Describes the status of a service.
*
*/
public String status() {
return this.status;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GraphAPIComputeRegionalServiceResourceResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String graphApiComputeEndpoint;
private String location;
private String name;
private String status;
public Builder() {}
public Builder(GraphAPIComputeRegionalServiceResourceResponse defaults) {
Objects.requireNonNull(defaults);
this.graphApiComputeEndpoint = defaults.graphApiComputeEndpoint;
this.location = defaults.location;
this.name = defaults.name;
this.status = defaults.status;
}
@CustomType.Setter
public Builder graphApiComputeEndpoint(String graphApiComputeEndpoint) {
if (graphApiComputeEndpoint == null) {
throw new MissingRequiredPropertyException("GraphAPIComputeRegionalServiceResourceResponse", "graphApiComputeEndpoint");
}
this.graphApiComputeEndpoint = graphApiComputeEndpoint;
return this;
}
@CustomType.Setter
public Builder location(String location) {
if (location == null) {
throw new MissingRequiredPropertyException("GraphAPIComputeRegionalServiceResourceResponse", "location");
}
this.location = location;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("GraphAPIComputeRegionalServiceResourceResponse", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder status(String status) {
if (status == null) {
throw new MissingRequiredPropertyException("GraphAPIComputeRegionalServiceResourceResponse", "status");
}
this.status = status;
return this;
}
public GraphAPIComputeRegionalServiceResourceResponse build() {
final var _resultValue = new GraphAPIComputeRegionalServiceResourceResponse();
_resultValue.graphApiComputeEndpoint = graphApiComputeEndpoint;
_resultValue.location = location;
_resultValue.name = name;
_resultValue.status = status;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy