get Network Attached Data Network
suspend fun getNetworkAttachedDataNetwork(argument: GetNetworkAttachedDataNetworkPlainArgs): GetNetworkAttachedDataNetworkResult
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 exampleNetworkPacketCoreControlPlane = MobileFunctions.getNetworkPacketCoreControlPlane(GetNetworkPacketCoreControlPlaneArgs.builder()
.name("example-mnpccp")
.resourceGroupName("example-rg")
.build());
final var exampleNetworkAttachedDataNetwork = MobileFunctions.getNetworkAttachedDataNetwork(GetNetworkAttachedDataNetworkArgs.builder()
.mobileNetworkDataNetworkName(exampleNetworkPacketCoreControlPlane.applyValue(getNetworkPacketCoreControlPlaneResult -> getNetworkPacketCoreControlPlaneResult.name()))
.mobileNetworkPacketCoreDataPlaneId(exampleNetworkPacketCoreControlPlane.applyValue(getNetworkPacketCoreControlPlaneResult -> getNetworkPacketCoreControlPlaneResult.id()))
.build());
}
}
Content copied to clipboard
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
mobile Network Data Network Name
The Name of the azure.mobile.NetworkDataNetwork
this resource belongs to.
mobile Network Packet Core Data Plane Id
The ID of the azure.mobile.NetworkPacketCoreDataPlane
which the Mobile Network Attached Data Network belongs to.
suspend fun getNetworkAttachedDataNetwork(argument: suspend GetNetworkAttachedDataNetworkPlainArgsBuilder.() -> Unit): GetNetworkAttachedDataNetworkResult
Return
A collection of values returned by getNetworkAttachedDataNetwork.
See also
Parameters
argument
Builder for com.pulumi.azure.mobile.kotlin.inputs.GetNetworkAttachedDataNetworkPlainArgs.