getNetworkAttachedDataNetwork

Use this data source to access information about an existing Mobile Network Attached Data Network.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.mobile.MobileFunctions;
import com.pulumi.azure.mobile.inputs.GetNetworkPacketCoreControlPlaneArgs;
import com.pulumi.azure.mobile.inputs.GetNetworkAttachedDataNetworkArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var example = MobileFunctions.getNetworkPacketCoreControlPlane(GetNetworkPacketCoreControlPlaneArgs.builder()
.name("example-mnpccp")
.resourceGroupName("example-rg")
.build());
final var exampleGetNetworkAttachedDataNetwork = MobileFunctions.getNetworkAttachedDataNetwork(GetNetworkAttachedDataNetworkArgs.builder()
.mobileNetworkDataNetworkName(example.applyValue(getNetworkPacketCoreControlPlaneResult -> getNetworkPacketCoreControlPlaneResult.name()))
.mobileNetworkPacketCoreDataPlaneId(example.applyValue(getNetworkPacketCoreControlPlaneResult -> getNetworkPacketCoreControlPlaneResult.id()))
.build());
}
}

Return

A collection of values returned by getNetworkAttachedDataNetwork.

Parameters

argument

A collection of arguments for invoking getNetworkAttachedDataNetwork.


suspend fun getNetworkAttachedDataNetwork(mobileNetworkDataNetworkName: String, mobileNetworkPacketCoreDataPlaneId: String): GetNetworkAttachedDataNetworkResult

Return

A collection of values returned by getNetworkAttachedDataNetwork.

See also

Parameters

mobileNetworkDataNetworkName

The Name of the azure.mobile.NetworkDataNetwork this resource belongs to.

mobileNetworkPacketCoreDataPlaneId

The ID of the azure.mobile.NetworkPacketCoreDataPlane which the Mobile Network Attached Data Network belongs to.


Return

A collection of values returned by getNetworkAttachedDataNetwork.

See also

Parameters

argument

Builder for com.pulumi.azure.mobile.kotlin.inputs.GetNetworkAttachedDataNetworkPlainArgs.