All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.hybridcontainerservice.inputs.VirtualNetworksPropertiesInfraVnetProfileArgs Maven / Gradle / Ivy

There is a newer version: 2.72.0
Show newest version
// *** 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.inputs;

import com.pulumi.azurenative.hybridcontainerservice.inputs.VirtualNetworksPropertiesHciArgs;
import com.pulumi.azurenative.hybridcontainerservice.inputs.VirtualNetworksPropertiesNetworkCloudArgs;
import com.pulumi.azurenative.hybridcontainerservice.inputs.VirtualNetworksPropertiesVmwareArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class VirtualNetworksPropertiesInfraVnetProfileArgs extends com.pulumi.resources.ResourceArgs {

    public static final VirtualNetworksPropertiesInfraVnetProfileArgs Empty = new VirtualNetworksPropertiesInfraVnetProfileArgs();

    /**
     * Infra network profile for HCI platform
     * 
     */
    @Import(name="hci")
    private @Nullable Output hci;

    /**
     * @return Infra network profile for HCI platform
     * 
     */
    public Optional> hci() {
        return Optional.ofNullable(this.hci);
    }

    /**
     * Infra network profile for the NetworkCloud platform
     * 
     */
    @Import(name="networkCloud")
    private @Nullable Output networkCloud;

    /**
     * @return Infra network profile for the NetworkCloud platform
     * 
     */
    public Optional> networkCloud() {
        return Optional.ofNullable(this.networkCloud);
    }

    /**
     * Infra network profile for VMware platform
     * 
     */
    @Import(name="vmware")
    private @Nullable Output vmware;

    /**
     * @return Infra network profile for VMware platform
     * 
     */
    public Optional> vmware() {
        return Optional.ofNullable(this.vmware);
    }

    private VirtualNetworksPropertiesInfraVnetProfileArgs() {}

    private VirtualNetworksPropertiesInfraVnetProfileArgs(VirtualNetworksPropertiesInfraVnetProfileArgs $) {
        this.hci = $.hci;
        this.networkCloud = $.networkCloud;
        this.vmware = $.vmware;
    }

    public static Builder builder() {
        return new Builder();
    }
    public static Builder builder(VirtualNetworksPropertiesInfraVnetProfileArgs defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private VirtualNetworksPropertiesInfraVnetProfileArgs $;

        public Builder() {
            $ = new VirtualNetworksPropertiesInfraVnetProfileArgs();
        }

        public Builder(VirtualNetworksPropertiesInfraVnetProfileArgs defaults) {
            $ = new VirtualNetworksPropertiesInfraVnetProfileArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param hci Infra network profile for HCI platform
         * 
         * @return builder
         * 
         */
        public Builder hci(@Nullable Output hci) {
            $.hci = hci;
            return this;
        }

        /**
         * @param hci Infra network profile for HCI platform
         * 
         * @return builder
         * 
         */
        public Builder hci(VirtualNetworksPropertiesHciArgs hci) {
            return hci(Output.of(hci));
        }

        /**
         * @param networkCloud Infra network profile for the NetworkCloud platform
         * 
         * @return builder
         * 
         */
        public Builder networkCloud(@Nullable Output networkCloud) {
            $.networkCloud = networkCloud;
            return this;
        }

        /**
         * @param networkCloud Infra network profile for the NetworkCloud platform
         * 
         * @return builder
         * 
         */
        public Builder networkCloud(VirtualNetworksPropertiesNetworkCloudArgs networkCloud) {
            return networkCloud(Output.of(networkCloud));
        }

        /**
         * @param vmware Infra network profile for VMware platform
         * 
         * @return builder
         * 
         */
        public Builder vmware(@Nullable Output vmware) {
            $.vmware = vmware;
            return this;
        }

        /**
         * @param vmware Infra network profile for VMware platform
         * 
         * @return builder
         * 
         */
        public Builder vmware(VirtualNetworksPropertiesVmwareArgs vmware) {
            return vmware(Output.of(vmware));
        }

        public VirtualNetworksPropertiesInfraVnetProfileArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy