
com.pulumi.azurenative.hybridcontainerservice.outputs.VirtualNetworksPropertiesResponseInfraVnetProfile 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.hybridcontainerservice.outputs;
import com.pulumi.azurenative.hybridcontainerservice.outputs.VirtualNetworksPropertiesResponseHci;
import com.pulumi.azurenative.hybridcontainerservice.outputs.VirtualNetworksPropertiesResponseNetworkCloud;
import com.pulumi.azurenative.hybridcontainerservice.outputs.VirtualNetworksPropertiesResponseVmware;
import com.pulumi.core.annotations.CustomType;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class VirtualNetworksPropertiesResponseInfraVnetProfile {
/**
* @return Infra network profile for HCI platform
*
*/
private @Nullable VirtualNetworksPropertiesResponseHci hci;
/**
* @return Infra network profile for the NetworkCloud platform
*
*/
private @Nullable VirtualNetworksPropertiesResponseNetworkCloud networkCloud;
/**
* @return Infra network profile for VMware platform
*
*/
private @Nullable VirtualNetworksPropertiesResponseVmware vmware;
private VirtualNetworksPropertiesResponseInfraVnetProfile() {}
/**
* @return Infra network profile for HCI platform
*
*/
public Optional hci() {
return Optional.ofNullable(this.hci);
}
/**
* @return Infra network profile for the NetworkCloud platform
*
*/
public Optional networkCloud() {
return Optional.ofNullable(this.networkCloud);
}
/**
* @return Infra network profile for VMware platform
*
*/
public Optional vmware() {
return Optional.ofNullable(this.vmware);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(VirtualNetworksPropertiesResponseInfraVnetProfile defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable VirtualNetworksPropertiesResponseHci hci;
private @Nullable VirtualNetworksPropertiesResponseNetworkCloud networkCloud;
private @Nullable VirtualNetworksPropertiesResponseVmware vmware;
public Builder() {}
public Builder(VirtualNetworksPropertiesResponseInfraVnetProfile defaults) {
Objects.requireNonNull(defaults);
this.hci = defaults.hci;
this.networkCloud = defaults.networkCloud;
this.vmware = defaults.vmware;
}
@CustomType.Setter
public Builder hci(@Nullable VirtualNetworksPropertiesResponseHci hci) {
this.hci = hci;
return this;
}
@CustomType.Setter
public Builder networkCloud(@Nullable VirtualNetworksPropertiesResponseNetworkCloud networkCloud) {
this.networkCloud = networkCloud;
return this;
}
@CustomType.Setter
public Builder vmware(@Nullable VirtualNetworksPropertiesResponseVmware vmware) {
this.vmware = vmware;
return this;
}
public VirtualNetworksPropertiesResponseInfraVnetProfile build() {
final var _resultValue = new VirtualNetworksPropertiesResponseInfraVnetProfile();
_resultValue.hci = hci;
_resultValue.networkCloud = networkCloud;
_resultValue.vmware = vmware;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy