src.index.GetCloudletsPolicyActivationArgs.scala Maven / Gradle / Ivy
The newest version!
package besom.api.akamai
final case class GetCloudletsPolicyActivationArgs private(
associatedProperties: besom.types.Output[scala.Option[scala.collection.immutable.List[String]]],
network: besom.types.Output[String],
policyId: besom.types.Output[Int]
)
object GetCloudletsPolicyActivationArgs:
def apply(
associatedProperties: besom.types.Input.Optional[scala.collection.immutable.List[besom.types.Input[String]]] = scala.None,
network: besom.types.Input[String],
policyId: besom.types.Input[Int]
)(using besom.types.Context): GetCloudletsPolicyActivationArgs =
new GetCloudletsPolicyActivationArgs(
associatedProperties = associatedProperties.asOptionOutput(isSecret = false),
network = network.asOutput(isSecret = false),
policyId = policyId.asOutput(isSecret = false)
)
given encoder(using besom.types.Context): besom.types.Encoder[GetCloudletsPolicyActivationArgs] =
besom.internal.Encoder.derived[GetCloudletsPolicyActivationArgs]
given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[GetCloudletsPolicyActivationArgs] =
besom.internal.ArgsEncoder.derived[GetCloudletsPolicyActivationArgs]