
src.compute.beta.GetSslPolicyArgs.scala Maven / Gradle / Ivy
package besom.api.googlenative.compute.beta
final case class GetSslPolicyArgs private(
project: besom.types.Output[scala.Option[String]],
sslPolicy: besom.types.Output[String]
)
object GetSslPolicyArgs:
def apply(
project: besom.types.Input.Optional[String] = scala.None,
sslPolicy: besom.types.Input[String]
)(using besom.types.Context): GetSslPolicyArgs =
new GetSslPolicyArgs(
project = project.asOptionOutput(isSecret = false),
sslPolicy = sslPolicy.asOutput(isSecret = false)
)
given encoder(using besom.types.Context): besom.types.Encoder[GetSslPolicyArgs] =
besom.internal.Encoder.derived[GetSslPolicyArgs]
given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[GetSslPolicyArgs] =
besom.internal.ArgsEncoder.derived[GetSslPolicyArgs]
© 2015 - 2025 Weber Informatics LLC | Privacy Policy