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

com.pulumi.azure.mobile.inputs.GetNetworkDataNetworkPlainArgs Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.

There is a newer version: 6.10.0-alpha.1731737215
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.azure.mobile.inputs;

import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;


public final class GetNetworkDataNetworkPlainArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetNetworkDataNetworkPlainArgs Empty = new GetNetworkDataNetworkPlainArgs();

    /**
     * Specifies the ID of the Mobile Network.
     * 
     */
    @Import(name="mobileNetworkId", required=true)
    private String mobileNetworkId;

    /**
     * @return Specifies the ID of the Mobile Network.
     * 
     */
    public String mobileNetworkId() {
        return this.mobileNetworkId;
    }

    /**
     * Specifies the name which should be used for this Mobile Network Data Network.
     * 
     */
    @Import(name="name", required=true)
    private String name;

    /**
     * @return Specifies the name which should be used for this Mobile Network Data Network.
     * 
     */
    public String name() {
        return this.name;
    }

    private GetNetworkDataNetworkPlainArgs() {}

    private GetNetworkDataNetworkPlainArgs(GetNetworkDataNetworkPlainArgs $) {
        this.mobileNetworkId = $.mobileNetworkId;
        this.name = $.name;
    }

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

    public static final class Builder {
        private GetNetworkDataNetworkPlainArgs $;

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

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

        /**
         * @param mobileNetworkId Specifies the ID of the Mobile Network.
         * 
         * @return builder
         * 
         */
        public Builder mobileNetworkId(String mobileNetworkId) {
            $.mobileNetworkId = mobileNetworkId;
            return this;
        }

        /**
         * @param name Specifies the name which should be used for this Mobile Network Data Network.
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            $.name = name;
            return this;
        }

        public GetNetworkDataNetworkPlainArgs build() {
            if ($.mobileNetworkId == null) {
                throw new MissingRequiredPropertyException("GetNetworkDataNetworkPlainArgs", "mobileNetworkId");
            }
            if ($.name == null) {
                throw new MissingRequiredPropertyException("GetNetworkDataNetworkPlainArgs", "name");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy