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