src.index.AppSecIpGeo.scala Maven / Gradle / Ivy
The newest version!
package besom.api.akamai
final case class AppSecIpGeo private(
urn: besom.types.Output[besom.types.URN],
id: besom.types.Output[besom.types.ResourceId],
asnNetworkLists: besom.types.Output[scala.Option[scala.collection.immutable.List[String]]],
configId: besom.types.Output[Int],
exceptionIpNetworkLists: besom.types.Output[scala.Option[scala.collection.immutable.List[String]]],
geoNetworkLists: besom.types.Output[scala.Option[scala.collection.immutable.List[String]]],
ipNetworkLists: besom.types.Output[scala.Option[scala.collection.immutable.List[String]]],
mode: besom.types.Output[String],
securityPolicyId: besom.types.Output[String],
ukraineGeoControlAction: besom.types.Output[scala.Option[String]]
) extends besom.CustomResource
object AppSecIpGeo extends besom.ResourceCompanion[AppSecIpGeo]:
/** Resource constructor for AppSecIpGeo.
*
* @param name [[besom.util.NonEmptyString]] The unique (stack-wise) name of the resource in Pulumi state (not on provider's side).
* NonEmptyString is inferred automatically from non-empty string literals, even when interpolated. If you encounter any
* issues with this, please try using `: NonEmptyString` type annotation. If you need to convert a dynamically generated
* string to NonEmptyString, use `NonEmptyString.apply` method - `NonEmptyString(str): Option[NonEmptyString]`.
*
* @param args [[AppSecIpGeoArgs]] The configuration to use to create this resource.
*
* @param opts [[besom.CustomResourceOptions]] Resource options to use for this resource.
* Defaults to empty options. If you need to set some options, use [[besom.opts]] function to create them, for example:
*
* {{{
* val res = AppSecIpGeo(
* "my-resource",
* AppSecIpGeoArgs(...), // your args
* opts(provider = myProvider)
* )
* }}}
*/
def apply(using ctx: besom.types.Context)(
name: besom.util.NonEmptyString,
args: AppSecIpGeoArgs,
opts: besom.ResourceOptsVariant.Custom ?=> besom.CustomResourceOptions = besom.CustomResourceOptions()
): besom.types.Output[AppSecIpGeo] =
ctx.readOrRegisterResource[AppSecIpGeo, AppSecIpGeoArgs]("akamai:index/appSecIPGeo:AppSecIPGeo", name, args, opts(using besom.ResourceOptsVariant.Custom))
private[besom] def typeToken: besom.types.ResourceType = "akamai:index/appSecIPGeo:AppSecIPGeo"
given resourceDecoder(using besom.types.Context): besom.types.ResourceDecoder[AppSecIpGeo] =
besom.internal.ResourceDecoder.derived[AppSecIpGeo]
given decoder(using besom.types.Context): besom.types.Decoder[AppSecIpGeo] =
besom.internal.Decoder.customResourceDecoder[AppSecIpGeo]
given outputOps: {} with
extension(output: besom.types.Output[AppSecIpGeo])
def urn : besom.types.Output[besom.types.URN] = output.flatMap(_.urn)
def id : besom.types.Output[besom.types.ResourceId] = output.flatMap(_.id)
def asnNetworkLists : besom.types.Output[scala.Option[scala.collection.immutable.List[String]]] = output.flatMap(_.asnNetworkLists)
def configId : besom.types.Output[Int] = output.flatMap(_.configId)
def exceptionIpNetworkLists : besom.types.Output[scala.Option[scala.collection.immutable.List[String]]] = output.flatMap(_.exceptionIpNetworkLists)
def geoNetworkLists : besom.types.Output[scala.Option[scala.collection.immutable.List[String]]] = output.flatMap(_.geoNetworkLists)
def ipNetworkLists : besom.types.Output[scala.Option[scala.collection.immutable.List[String]]] = output.flatMap(_.ipNetworkLists)
def mode : besom.types.Output[String] = output.flatMap(_.mode)
def securityPolicyId : besom.types.Output[String] = output.flatMap(_.securityPolicyId)
def ukraineGeoControlAction : besom.types.Output[scala.Option[String]] = output.flatMap(_.ukraineGeoControlAction)