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

src.certificatemanager.v1.GetTrustConfigArgs.scala Maven / Gradle / Ivy

package besom.api.googlenative.certificatemanager.v1

final case class GetTrustConfigArgs private(
  location: besom.types.Output[String],
  project: besom.types.Output[scala.Option[String]],
  trustConfigId: besom.types.Output[String]
)

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

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy