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