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