com.pulumi.azurenative.hybridnetwork.outputs.ArtifactStorePrivateEndPointsFormatResponse 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.hybridnetwork.outputs;
import com.pulumi.azurenative.hybridnetwork.outputs.ReferencedResourceResponse;
import com.pulumi.core.annotations.CustomType;
import java.util.List;
import java.util.Objects;
import javax.annotation.Nullable;
@CustomType
public final class ArtifactStorePrivateEndPointsFormatResponse {
/**
* @return list of private endpoints.
*
*/
private @Nullable List manualPrivateEndPointConnections;
private ArtifactStorePrivateEndPointsFormatResponse() {}
/**
* @return list of private endpoints.
*
*/
public List manualPrivateEndPointConnections() {
return this.manualPrivateEndPointConnections == null ? List.of() : this.manualPrivateEndPointConnections;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ArtifactStorePrivateEndPointsFormatResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable List manualPrivateEndPointConnections;
public Builder() {}
public Builder(ArtifactStorePrivateEndPointsFormatResponse defaults) {
Objects.requireNonNull(defaults);
this.manualPrivateEndPointConnections = defaults.manualPrivateEndPointConnections;
}
@CustomType.Setter
public Builder manualPrivateEndPointConnections(@Nullable List manualPrivateEndPointConnections) {
this.manualPrivateEndPointConnections = manualPrivateEndPointConnections;
return this;
}
public Builder manualPrivateEndPointConnections(ReferencedResourceResponse... manualPrivateEndPointConnections) {
return manualPrivateEndPointConnections(List.of(manualPrivateEndPointConnections));
}
public ArtifactStorePrivateEndPointsFormatResponse build() {
final var _resultValue = new ArtifactStorePrivateEndPointsFormatResponse();
_resultValue.manualPrivateEndPointConnections = manualPrivateEndPointConnections;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy