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