
com.pulumi.azurenative.network.outputs.VpnServerConfigurationPolicyGroupMemberResponse 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.network.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 VpnServerConfigurationPolicyGroupMemberResponse {
/**
* @return The Vpn Policy member attribute type.
*
*/
private @Nullable String attributeType;
/**
* @return The value of Attribute used for this VpnServerConfigurationPolicyGroupMember.
*
*/
private @Nullable String attributeValue;
/**
* @return Name of the VpnServerConfigurationPolicyGroupMember.
*
*/
private @Nullable String name;
private VpnServerConfigurationPolicyGroupMemberResponse() {}
/**
* @return The Vpn Policy member attribute type.
*
*/
public Optional attributeType() {
return Optional.ofNullable(this.attributeType);
}
/**
* @return The value of Attribute used for this VpnServerConfigurationPolicyGroupMember.
*
*/
public Optional attributeValue() {
return Optional.ofNullable(this.attributeValue);
}
/**
* @return Name of the VpnServerConfigurationPolicyGroupMember.
*
*/
public Optional name() {
return Optional.ofNullable(this.name);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(VpnServerConfigurationPolicyGroupMemberResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String attributeType;
private @Nullable String attributeValue;
private @Nullable String name;
public Builder() {}
public Builder(VpnServerConfigurationPolicyGroupMemberResponse defaults) {
Objects.requireNonNull(defaults);
this.attributeType = defaults.attributeType;
this.attributeValue = defaults.attributeValue;
this.name = defaults.name;
}
@CustomType.Setter
public Builder attributeType(@Nullable String attributeType) {
this.attributeType = attributeType;
return this;
}
@CustomType.Setter
public Builder attributeValue(@Nullable String attributeValue) {
this.attributeValue = attributeValue;
return this;
}
@CustomType.Setter
public Builder name(@Nullable String name) {
this.name = name;
return this;
}
public VpnServerConfigurationPolicyGroupMemberResponse build() {
final var _resultValue = new VpnServerConfigurationPolicyGroupMemberResponse();
_resultValue.attributeType = attributeType;
_resultValue.attributeValue = attributeValue;
_resultValue.name = name;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy