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

src.apigeeregistry.v1.Spec.scala Maven / Gradle / Ivy

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

final case class Spec private(
  urn: besom.types.Output[besom.types.URN],
  id: besom.types.Output[besom.types.ResourceId],
  annotations: besom.types.Output[scala.Predef.Map[String, String]],
  apiId: besom.types.Output[String],
  apiSpecId: besom.types.Output[String],
  contents: besom.types.Output[String],
  createTime: besom.types.Output[String],
  description: besom.types.Output[String],
  filename: besom.types.Output[String],
  hash: besom.types.Output[String],
  labels: besom.types.Output[scala.Predef.Map[String, String]],
  location: besom.types.Output[String],
  mimeType: besom.types.Output[String],
  name: besom.types.Output[String],
  project: besom.types.Output[String],
  revisionCreateTime: besom.types.Output[String],
  revisionId: besom.types.Output[String],
  revisionUpdateTime: besom.types.Output[String],
  sizeBytes: besom.types.Output[Int],
  sourceUri: besom.types.Output[String],
  versionId: besom.types.Output[String]
) extends besom.CustomResource

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

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

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

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


  given outputOps: {} with
    extension(output: besom.types.Output[Spec])
      def urn : besom.types.Output[besom.types.URN] = output.flatMap(_.urn)
      def id : besom.types.Output[besom.types.ResourceId] = output.flatMap(_.id)
      def annotations : besom.types.Output[scala.Predef.Map[String, String]] = output.flatMap(_.annotations)
      def apiId : besom.types.Output[String] = output.flatMap(_.apiId)
      def apiSpecId : besom.types.Output[String] = output.flatMap(_.apiSpecId)
      def contents : besom.types.Output[String] = output.flatMap(_.contents)
      def createTime : besom.types.Output[String] = output.flatMap(_.createTime)
      def description : besom.types.Output[String] = output.flatMap(_.description)
      def filename : besom.types.Output[String] = output.flatMap(_.filename)
      def hash : besom.types.Output[String] = output.flatMap(_.hash)
      def labels : besom.types.Output[scala.Predef.Map[String, String]] = output.flatMap(_.labels)
      def location : besom.types.Output[String] = output.flatMap(_.location)
      def mimeType : besom.types.Output[String] = output.flatMap(_.mimeType)
      def name : besom.types.Output[String] = output.flatMap(_.name)
      def project : besom.types.Output[String] = output.flatMap(_.project)
      def revisionCreateTime : besom.types.Output[String] = output.flatMap(_.revisionCreateTime)
      def revisionId : besom.types.Output[String] = output.flatMap(_.revisionId)
      def revisionUpdateTime : besom.types.Output[String] = output.flatMap(_.revisionUpdateTime)
      def sizeBytes : besom.types.Output[Int] = output.flatMap(_.sizeBytes)
      def sourceUri : besom.types.Output[String] = output.flatMap(_.sourceUri)
      def versionId : besom.types.Output[String] = output.flatMap(_.versionId)





© 2015 - 2025 Weber Informatics LLC | Privacy Policy