src.index.inputs.GetGtmDomainResourceArgs.scala Maven / Gradle / Ivy
The newest version!
package besom.api.akamai.inputs
final case class GetGtmDomainResourceArgs private(
aggregationType: besom.types.Output[String],
constrainedProperty: besom.types.Output[String],
decayRate: besom.types.Output[Double],
description: besom.types.Output[String],
hostHeader: besom.types.Output[String],
leaderString: besom.types.Output[String],
leastSquaresDecay: besom.types.Output[Double],
links: besom.types.Output[scala.Option[scala.collection.immutable.List[besom.api.akamai.inputs.GetGtmDomainResourceLinkArgs]]],
loadImbalancePercentage: besom.types.Output[Double],
maxUMultiplicativeIncrement: besom.types.Output[Double],
name: besom.types.Output[String],
resourceInstances: besom.types.Output[scala.Option[scala.collection.immutable.List[besom.api.akamai.inputs.GetGtmDomainResourceResourceInstanceArgs]]],
`type`: besom.types.Output[String],
upperBound: besom.types.Output[Int]
)
object GetGtmDomainResourceArgs:
def apply(
aggregationType: besom.types.Input[String],
constrainedProperty: besom.types.Input[String],
decayRate: besom.types.Input[Double],
description: besom.types.Input[String],
hostHeader: besom.types.Input[String],
leaderString: besom.types.Input[String],
leastSquaresDecay: besom.types.Input[Double],
links: besom.types.Input.Optional[scala.collection.immutable.List[besom.types.Input[besom.api.akamai.inputs.GetGtmDomainResourceLinkArgs]]] = scala.None,
loadImbalancePercentage: besom.types.Input[Double],
maxUMultiplicativeIncrement: besom.types.Input[Double],
name: besom.types.Input[String],
resourceInstances: besom.types.Input.Optional[scala.collection.immutable.List[besom.types.Input[besom.api.akamai.inputs.GetGtmDomainResourceResourceInstanceArgs]]] = scala.None,
`type`: besom.types.Input[String],
upperBound: besom.types.Input[Int]
)(using besom.types.Context): GetGtmDomainResourceArgs =
new GetGtmDomainResourceArgs(
aggregationType = aggregationType.asOutput(isSecret = false),
constrainedProperty = constrainedProperty.asOutput(isSecret = false),
decayRate = decayRate.asOutput(isSecret = false),
description = description.asOutput(isSecret = false),
hostHeader = hostHeader.asOutput(isSecret = false),
leaderString = leaderString.asOutput(isSecret = false),
leastSquaresDecay = leastSquaresDecay.asOutput(isSecret = false),
links = links.asOptionOutput(isSecret = false),
loadImbalancePercentage = loadImbalancePercentage.asOutput(isSecret = false),
maxUMultiplicativeIncrement = maxUMultiplicativeIncrement.asOutput(isSecret = false),
name = name.asOutput(isSecret = false),
resourceInstances = resourceInstances.asOptionOutput(isSecret = false),
`type` = `type`.asOutput(isSecret = false),
upperBound = upperBound.asOutput(isSecret = false)
)
given encoder(using besom.types.Context): besom.types.Encoder[GetGtmDomainResourceArgs] =
besom.internal.Encoder.derived[GetGtmDomainResourceArgs]
given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[GetGtmDomainResourceArgs] =
besom.internal.ArgsEncoder.derived[GetGtmDomainResourceArgs]