PlmnIdArgs

data class PlmnIdArgs(val mcc: Output<String>, val mnc: Output<String>) : ConvertibleToJava<PlmnIdArgs>

Public land mobile network (PLMN) ID. This is made up of the mobile country code and mobile network code, as defined in https://www.itu.int/rec/T-REC-E.212. The values 001-01 and 001-001 can be used for testing and the values 999-99 and 999-999 can be used on internal private networks.

Constructors

Link copied to clipboard
constructor(mcc: Output<String>, mnc: Output<String>)

Properties

Link copied to clipboard
val mcc: Output<String>

Mobile country code (MCC).

Link copied to clipboard
val mnc: Output<String>

Mobile network code (MNC).

Functions

Link copied to clipboard
open override fun toJava(): PlmnIdArgs