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

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

There is a newer version: 0.32.0-core.0.4
Show newest version
package besom.api.googlenative.certificatemanager.v1

final case class Certificate private(
  urn: besom.types.Output[besom.types.URN],
  id: besom.types.Output[besom.types.ResourceId],
  certificateId: besom.types.Output[String],
  createTime: besom.types.Output[String],
  description: besom.types.Output[String],
  expireTime: besom.types.Output[String],
  labels: besom.types.Output[scala.Predef.Map[String, String]],
  location: besom.types.Output[String],
  managed: besom.types.Output[besom.api.googlenative.certificatemanager.v1.outputs.ManagedCertificateResponse],
  name: besom.types.Output[String],
  pemCertificate: besom.types.Output[String],
  project: besom.types.Output[String],
  sanDnsnames: besom.types.Output[scala.collection.immutable.List[String]],
  scope: besom.types.Output[String],
  selfManaged: besom.types.Output[besom.api.googlenative.certificatemanager.v1.outputs.SelfManagedCertificateResponse],
  updateTime: besom.types.Output[String]
) extends besom.CustomResource

object Certificate extends besom.ResourceCompanion[Certificate]:
  /** Resource constructor for Certificate. 
    * 
    * @param name [[besom.util.NonEmptyString]] The unique (stack-wise) name of the resource in Pulumi state (not on provider's side).
    *        NonEmptyString is inferred automatically from non-empty string literals, even when interpolated. If you encounter any
    *        issues with this, please try using `: NonEmptyString` type annotation. If you need to convert a dynamically generated
    *        string to NonEmptyString, use `NonEmptyString.apply` method - `NonEmptyString(str): Option[NonEmptyString]`.
    *
    * @param args [[CertificateArgs]] The configuration to use to create this resource. 
    *
    * @param opts [[besom.CustomResourceOptions]] Resource options to use for this resource. 
    *        Defaults to empty options. If you need to set some options, use [[besom.opts]] function to create them, for example:
    *  
    *        {{{
    *        val res = Certificate(
    *          "my-resource",
    *          CertificateArgs(...), // your args
    *          opts(provider = myProvider)
    *        )
    *        }}}
    */
  def apply(using ctx: besom.types.Context)(
    name: besom.util.NonEmptyString,
    args: CertificateArgs,
    opts: besom.ResourceOptsVariant.Custom ?=> besom.CustomResourceOptions = besom.CustomResourceOptions()
  ): besom.types.Output[Certificate] =
    ctx.readOrRegisterResource[Certificate, CertificateArgs]("google-native:certificatemanager/v1:Certificate", name, args, opts(using besom.ResourceOptsVariant.Custom))

  private[besom] def typeToken: besom.types.ResourceType = "google-native:certificatemanager/v1:Certificate"

  given resourceDecoder(using besom.types.Context): besom.types.ResourceDecoder[Certificate] =
    besom.internal.ResourceDecoder.derived[Certificate]

  given decoder(using besom.types.Context): besom.types.Decoder[Certificate] =
    besom.internal.Decoder.customResourceDecoder[Certificate]


  given outputOps: {} with
    extension(output: besom.types.Output[Certificate])
      def urn : besom.types.Output[besom.types.URN] = output.flatMap(_.urn)
      def id : besom.types.Output[besom.types.ResourceId] = output.flatMap(_.id)
      def certificateId : besom.types.Output[String] = output.flatMap(_.certificateId)
      def createTime : besom.types.Output[String] = output.flatMap(_.createTime)
      def description : besom.types.Output[String] = output.flatMap(_.description)
      def expireTime : besom.types.Output[String] = output.flatMap(_.expireTime)
      def labels : besom.types.Output[scala.Predef.Map[String, String]] = output.flatMap(_.labels)
      def location : besom.types.Output[String] = output.flatMap(_.location)
      def managed : besom.types.Output[besom.api.googlenative.certificatemanager.v1.outputs.ManagedCertificateResponse] = output.flatMap(_.managed)
      def name : besom.types.Output[String] = output.flatMap(_.name)
      def pemCertificate : besom.types.Output[String] = output.flatMap(_.pemCertificate)
      def project : besom.types.Output[String] = output.flatMap(_.project)
      def sanDnsnames : besom.types.Output[scala.collection.immutable.List[String]] = output.flatMap(_.sanDnsnames)
      def scope : besom.types.Output[String] = output.flatMap(_.scope)
      def selfManaged : besom.types.Output[besom.api.googlenative.certificatemanager.v1.outputs.SelfManagedCertificateResponse] = output.flatMap(_.selfManaged)
      def updateTime : besom.types.Output[String] = output.flatMap(_.updateTime)





© 2015 - 2025 Weber Informatics LLC | Privacy Policy