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