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