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