All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.privateca.v1.GetCertificateArgs.scala Maven / Gradle / Ivy

The newest version!
package besom.api.googlenative.privateca.v1

final case class GetCertificateArgs private(
  caPoolId: besom.types.Output[String],
  certificateId: besom.types.Output[String],
  location: besom.types.Output[String],
  project: besom.types.Output[scala.Option[String]]
)

object GetCertificateArgs:
  def apply(
    caPoolId: besom.types.Input[String],
    certificateId: besom.types.Input[String],
    location: besom.types.Input[String],
    project: besom.types.Input.Optional[String] = scala.None
  )(using besom.types.Context): GetCertificateArgs =
    new GetCertificateArgs(
      caPoolId = caPoolId.asOutput(isSecret = false),
      certificateId = certificateId.asOutput(isSecret = false),
      location = location.asOutput(isSecret = false),
      project = project.asOptionOutput(isSecret = false)
    )

  given encoder(using besom.types.Context): besom.types.Encoder[GetCertificateArgs] =
    besom.internal.Encoder.derived[GetCertificateArgs]
  given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[GetCertificateArgs] =
    besom.internal.ArgsEncoder.derived[GetCertificateArgs]






© 2015 - 2025 Weber Informatics LLC | Privacy Policy