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

com.pulumi.azurenative.mobilenetwork.PacketCoreDataPlaneArgs Maven / Gradle / Ivy

There is a newer version: 2.82.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.mobilenetwork;

import com.pulumi.azurenative.mobilenetwork.inputs.InterfacePropertiesArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final PacketCoreDataPlaneArgs Empty = new PacketCoreDataPlaneArgs();

    /**
     * The geo-location where the resource lives
     * 
     */
    @Import(name="location")
    private @Nullable Output location;

    /**
     * @return The geo-location where the resource lives
     * 
     */
    public Optional> location() {
        return Optional.ofNullable(this.location);
    }

    /**
     * The name of the packet core control plane.
     * 
     */
    @Import(name="packetCoreControlPlaneName", required=true)
    private Output packetCoreControlPlaneName;

    /**
     * @return The name of the packet core control plane.
     * 
     */
    public Output packetCoreControlPlaneName() {
        return this.packetCoreControlPlaneName;
    }

    /**
     * The name of the packet core data plane.
     * 
     */
    @Import(name="packetCoreDataPlaneName")
    private @Nullable Output packetCoreDataPlaneName;

    /**
     * @return The name of the packet core data plane.
     * 
     */
    public Optional> packetCoreDataPlaneName() {
        return Optional.ofNullable(this.packetCoreDataPlaneName);
    }

    /**
     * The name of the resource group. The name is case insensitive.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private Output resourceGroupName;

    /**
     * @return The name of the resource group. The name is case insensitive.
     * 
     */
    public Output resourceGroupName() {
        return this.resourceGroupName;
    }

    /**
     * Resource tags.
     * 
     */
    @Import(name="tags")
    private @Nullable Output> tags;

    /**
     * @return Resource tags.
     * 
     */
    public Optional>> tags() {
        return Optional.ofNullable(this.tags);
    }

    /**
     * The user plane interface on the access network. For 5G networks, this is the N3 interface. For 4G networks, this is the S1-U interface.
     * 
     */
    @Import(name="userPlaneAccessInterface", required=true)
    private Output userPlaneAccessInterface;

    /**
     * @return The user plane interface on the access network. For 5G networks, this is the N3 interface. For 4G networks, this is the S1-U interface.
     * 
     */
    public Output userPlaneAccessInterface() {
        return this.userPlaneAccessInterface;
    }

    private PacketCoreDataPlaneArgs() {}

    private PacketCoreDataPlaneArgs(PacketCoreDataPlaneArgs $) {
        this.location = $.location;
        this.packetCoreControlPlaneName = $.packetCoreControlPlaneName;
        this.packetCoreDataPlaneName = $.packetCoreDataPlaneName;
        this.resourceGroupName = $.resourceGroupName;
        this.tags = $.tags;
        this.userPlaneAccessInterface = $.userPlaneAccessInterface;
    }

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

    public static final class Builder {
        private PacketCoreDataPlaneArgs $;

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

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

        /**
         * @param location The geo-location where the resource lives
         * 
         * @return builder
         * 
         */
        public Builder location(@Nullable Output location) {
            $.location = location;
            return this;
        }

        /**
         * @param location The geo-location where the resource lives
         * 
         * @return builder
         * 
         */
        public Builder location(String location) {
            return location(Output.of(location));
        }

        /**
         * @param packetCoreControlPlaneName The name of the packet core control plane.
         * 
         * @return builder
         * 
         */
        public Builder packetCoreControlPlaneName(Output packetCoreControlPlaneName) {
            $.packetCoreControlPlaneName = packetCoreControlPlaneName;
            return this;
        }

        /**
         * @param packetCoreControlPlaneName The name of the packet core control plane.
         * 
         * @return builder
         * 
         */
        public Builder packetCoreControlPlaneName(String packetCoreControlPlaneName) {
            return packetCoreControlPlaneName(Output.of(packetCoreControlPlaneName));
        }

        /**
         * @param packetCoreDataPlaneName The name of the packet core data plane.
         * 
         * @return builder
         * 
         */
        public Builder packetCoreDataPlaneName(@Nullable Output packetCoreDataPlaneName) {
            $.packetCoreDataPlaneName = packetCoreDataPlaneName;
            return this;
        }

        /**
         * @param packetCoreDataPlaneName The name of the packet core data plane.
         * 
         * @return builder
         * 
         */
        public Builder packetCoreDataPlaneName(String packetCoreDataPlaneName) {
            return packetCoreDataPlaneName(Output.of(packetCoreDataPlaneName));
        }

        /**
         * @param resourceGroupName The name of the resource group. The name is case insensitive.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(Output resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param resourceGroupName The name of the resource group. The name is case insensitive.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            return resourceGroupName(Output.of(resourceGroupName));
        }

        /**
         * @param tags Resource tags.
         * 
         * @return builder
         * 
         */
        public Builder tags(@Nullable Output> tags) {
            $.tags = tags;
            return this;
        }

        /**
         * @param tags Resource tags.
         * 
         * @return builder
         * 
         */
        public Builder tags(Map tags) {
            return tags(Output.of(tags));
        }

        /**
         * @param userPlaneAccessInterface The user plane interface on the access network. For 5G networks, this is the N3 interface. For 4G networks, this is the S1-U interface.
         * 
         * @return builder
         * 
         */
        public Builder userPlaneAccessInterface(Output userPlaneAccessInterface) {
            $.userPlaneAccessInterface = userPlaneAccessInterface;
            return this;
        }

        /**
         * @param userPlaneAccessInterface The user plane interface on the access network. For 5G networks, this is the N3 interface. For 4G networks, this is the S1-U interface.
         * 
         * @return builder
         * 
         */
        public Builder userPlaneAccessInterface(InterfacePropertiesArgs userPlaneAccessInterface) {
            return userPlaneAccessInterface(Output.of(userPlaneAccessInterface));
        }

        public PacketCoreDataPlaneArgs build() {
            if ($.packetCoreControlPlaneName == null) {
                throw new MissingRequiredPropertyException("PacketCoreDataPlaneArgs", "packetCoreControlPlaneName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("PacketCoreDataPlaneArgs", "resourceGroupName");
            }
            if ($.userPlaneAccessInterface == null) {
                throw new MissingRequiredPropertyException("PacketCoreDataPlaneArgs", "userPlaneAccessInterface");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy