src.index.GetAppSecIpGeoArgs.scala Maven / Gradle / Ivy
The newest version!
package besom.api.akamai
final case class GetAppSecIpGeoArgs private(
configId: besom.types.Output[Int],
securityPolicyId: besom.types.Output[String]
)
object GetAppSecIpGeoArgs:
def apply(
configId: besom.types.Input[Int],
securityPolicyId: besom.types.Input[String]
)(using besom.types.Context): GetAppSecIpGeoArgs =
new GetAppSecIpGeoArgs(
configId = configId.asOutput(isSecret = false),
securityPolicyId = securityPolicyId.asOutput(isSecret = false)
)
given encoder(using besom.types.Context): besom.types.Encoder[GetAppSecIpGeoArgs] =
besom.internal.Encoder.derived[GetAppSecIpGeoArgs]
given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[GetAppSecIpGeoArgs] =
besom.internal.ArgsEncoder.derived[GetAppSecIpGeoArgs]