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