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

src.compute.v1.RegionSslCertificate.scala Maven / Gradle / Ivy

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

final case class RegionSslCertificate private(
  urn: besom.types.Output[besom.types.URN],
  id: besom.types.Output[besom.types.ResourceId],
  certificate: besom.types.Output[String],
  creationTimestamp: besom.types.Output[String],
  description: besom.types.Output[String],
  expireTime: besom.types.Output[String],
  kind: besom.types.Output[String],
  managed: besom.types.Output[besom.api.googlenative.compute.v1.outputs.SslCertificateManagedSslCertificateResponse],
  name: besom.types.Output[String],
  privateKey: besom.types.Output[String],
  project: besom.types.Output[String],
  region: besom.types.Output[String],
  requestId: besom.types.Output[scala.Option[String]],
  selfLink: besom.types.Output[String],
  selfManaged: besom.types.Output[besom.api.googlenative.compute.v1.outputs.SslCertificateSelfManagedSslCertificateResponse],
  subjectAlternativeNames: besom.types.Output[scala.collection.immutable.List[String]],
  `type`: besom.types.Output[String]
) extends besom.CustomResource

object RegionSslCertificate extends besom.ResourceCompanion[RegionSslCertificate]:
  /** Resource constructor for RegionSslCertificate. 
    * 
    * @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 [[RegionSslCertificateArgs]] 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 = RegionSslCertificate(
    *          "my-resource",
    *          RegionSslCertificateArgs(...), // your args
    *          opts(provider = myProvider)
    *        )
    *        }}}
    */
  def apply(using ctx: besom.types.Context)(
    name: besom.util.NonEmptyString,
    args: RegionSslCertificateArgs,
    opts: besom.ResourceOptsVariant.Custom ?=> besom.CustomResourceOptions = besom.CustomResourceOptions()
  ): besom.types.Output[RegionSslCertificate] =
    ctx.readOrRegisterResource[RegionSslCertificate, RegionSslCertificateArgs]("google-native:compute/v1:RegionSslCertificate", name, args, opts(using besom.ResourceOptsVariant.Custom))

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

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

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


  given outputOps: {} with
    extension(output: besom.types.Output[RegionSslCertificate])
      def urn : besom.types.Output[besom.types.URN] = output.flatMap(_.urn)
      def id : besom.types.Output[besom.types.ResourceId] = output.flatMap(_.id)
      def certificate : besom.types.Output[String] = output.flatMap(_.certificate)
      def creationTimestamp : besom.types.Output[String] = output.flatMap(_.creationTimestamp)
      def description : besom.types.Output[String] = output.flatMap(_.description)
      def expireTime : besom.types.Output[String] = output.flatMap(_.expireTime)
      def kind : besom.types.Output[String] = output.flatMap(_.kind)
      def managed : besom.types.Output[besom.api.googlenative.compute.v1.outputs.SslCertificateManagedSslCertificateResponse] = output.flatMap(_.managed)
      def name : besom.types.Output[String] = output.flatMap(_.name)
      def privateKey : besom.types.Output[String] = output.flatMap(_.privateKey)
      def project : besom.types.Output[String] = output.flatMap(_.project)
      def region : besom.types.Output[String] = output.flatMap(_.region)
      def requestId : besom.types.Output[scala.Option[String]] = output.flatMap(_.requestId)
      def selfLink : besom.types.Output[String] = output.flatMap(_.selfLink)
      def selfManaged : besom.types.Output[besom.api.googlenative.compute.v1.outputs.SslCertificateSelfManagedSslCertificateResponse] = output.flatMap(_.selfManaged)
      def subjectAlternativeNames : besom.types.Output[scala.collection.immutable.List[String]] = output.flatMap(_.subjectAlternativeNames)
      def `type` : besom.types.Output[String] = output.flatMap(_.`type`)





© 2015 - 2025 Weber Informatics LLC | Privacy Policy