
com.pulumi.azurenative.network.outputs.PerimeterBasedAccessRuleResponse Maven / Gradle / Ivy
// *** 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.network.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class PerimeterBasedAccessRuleResponse {
/**
* @return NSP id in the ARM id format.
*
*/
private String id;
/**
* @return Location of the NSP supplied.
*
*/
private String location;
/**
* @return Resource guid of the NSP supplied.
*
*/
private String perimeterGuid;
private PerimeterBasedAccessRuleResponse() {}
/**
* @return NSP id in the ARM id format.
*
*/
public String id() {
return this.id;
}
/**
* @return Location of the NSP supplied.
*
*/
public String location() {
return this.location;
}
/**
* @return Resource guid of the NSP supplied.
*
*/
public String perimeterGuid() {
return this.perimeterGuid;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(PerimeterBasedAccessRuleResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String id;
private String location;
private String perimeterGuid;
public Builder() {}
public Builder(PerimeterBasedAccessRuleResponse defaults) {
Objects.requireNonNull(defaults);
this.id = defaults.id;
this.location = defaults.location;
this.perimeterGuid = defaults.perimeterGuid;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("PerimeterBasedAccessRuleResponse", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder location(String location) {
if (location == null) {
throw new MissingRequiredPropertyException("PerimeterBasedAccessRuleResponse", "location");
}
this.location = location;
return this;
}
@CustomType.Setter
public Builder perimeterGuid(String perimeterGuid) {
if (perimeterGuid == null) {
throw new MissingRequiredPropertyException("PerimeterBasedAccessRuleResponse", "perimeterGuid");
}
this.perimeterGuid = perimeterGuid;
return this;
}
public PerimeterBasedAccessRuleResponse build() {
final var _resultValue = new PerimeterBasedAccessRuleResponse();
_resultValue.id = id;
_resultValue.location = location;
_resultValue.perimeterGuid = perimeterGuid;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy