com.pulumi.azurenative.deviceupdate.outputs.PrivateLinkServiceProxyResponse 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.deviceupdate.outputs;
import com.pulumi.azurenative.deviceupdate.outputs.GroupConnectivityInformationResponse;
import com.pulumi.azurenative.deviceupdate.outputs.PrivateLinkServiceConnectionStateResponse;
import com.pulumi.azurenative.deviceupdate.outputs.PrivateLinkServiceProxyResponseRemotePrivateEndpointConnection;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class PrivateLinkServiceProxyResponse {
/**
* @return Group connectivity information.
*
*/
private @Nullable List groupConnectivityInformation;
/**
* @return NRP resource ID.
*
*/
private @Nullable String id;
/**
* @return Remote private endpoint connection details.
*
*/
private @Nullable PrivateLinkServiceProxyResponseRemotePrivateEndpointConnection remotePrivateEndpointConnection;
/**
* @return Remote private link service connection state
*
*/
private @Nullable PrivateLinkServiceConnectionStateResponse remotePrivateLinkServiceConnectionState;
private PrivateLinkServiceProxyResponse() {}
/**
* @return Group connectivity information.
*
*/
public List groupConnectivityInformation() {
return this.groupConnectivityInformation == null ? List.of() : this.groupConnectivityInformation;
}
/**
* @return NRP resource ID.
*
*/
public Optional id() {
return Optional.ofNullable(this.id);
}
/**
* @return Remote private endpoint connection details.
*
*/
public Optional remotePrivateEndpointConnection() {
return Optional.ofNullable(this.remotePrivateEndpointConnection);
}
/**
* @return Remote private link service connection state
*
*/
public Optional remotePrivateLinkServiceConnectionState() {
return Optional.ofNullable(this.remotePrivateLinkServiceConnectionState);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(PrivateLinkServiceProxyResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable List groupConnectivityInformation;
private @Nullable String id;
private @Nullable PrivateLinkServiceProxyResponseRemotePrivateEndpointConnection remotePrivateEndpointConnection;
private @Nullable PrivateLinkServiceConnectionStateResponse remotePrivateLinkServiceConnectionState;
public Builder() {}
public Builder(PrivateLinkServiceProxyResponse defaults) {
Objects.requireNonNull(defaults);
this.groupConnectivityInformation = defaults.groupConnectivityInformation;
this.id = defaults.id;
this.remotePrivateEndpointConnection = defaults.remotePrivateEndpointConnection;
this.remotePrivateLinkServiceConnectionState = defaults.remotePrivateLinkServiceConnectionState;
}
@CustomType.Setter
public Builder groupConnectivityInformation(@Nullable List groupConnectivityInformation) {
this.groupConnectivityInformation = groupConnectivityInformation;
return this;
}
public Builder groupConnectivityInformation(GroupConnectivityInformationResponse... groupConnectivityInformation) {
return groupConnectivityInformation(List.of(groupConnectivityInformation));
}
@CustomType.Setter
public Builder id(@Nullable String id) {
this.id = id;
return this;
}
@CustomType.Setter
public Builder remotePrivateEndpointConnection(@Nullable PrivateLinkServiceProxyResponseRemotePrivateEndpointConnection remotePrivateEndpointConnection) {
this.remotePrivateEndpointConnection = remotePrivateEndpointConnection;
return this;
}
@CustomType.Setter
public Builder remotePrivateLinkServiceConnectionState(@Nullable PrivateLinkServiceConnectionStateResponse remotePrivateLinkServiceConnectionState) {
this.remotePrivateLinkServiceConnectionState = remotePrivateLinkServiceConnectionState;
return this;
}
public PrivateLinkServiceProxyResponse build() {
final var _resultValue = new PrivateLinkServiceProxyResponse();
_resultValue.groupConnectivityInformation = groupConnectivityInformation;
_resultValue.id = id;
_resultValue.remotePrivateEndpointConnection = remotePrivateEndpointConnection;
_resultValue.remotePrivateLinkServiceConnectionState = remotePrivateLinkServiceConnectionState;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy