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

src.logging.v2.BillingAccountSink.scala Maven / Gradle / Ivy

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

final case class BillingAccountSink private(
  urn: besom.types.Output[besom.types.URN],
  id: besom.types.Output[besom.types.ResourceId],
  bigqueryOptions: besom.types.Output[besom.api.googlenative.logging.v2.outputs.BigQueryOptionsResponse],
  billingAccountId: besom.types.Output[String],
  createTime: besom.types.Output[String],
  customWriterIdentity: besom.types.Output[scala.Option[String]],
  description: besom.types.Output[String],
  destination: besom.types.Output[String],
  disabled: besom.types.Output[Boolean],
  exclusions: besom.types.Output[scala.collection.immutable.List[besom.api.googlenative.logging.v2.outputs.LogExclusionResponse]],
  filter: besom.types.Output[String],
  includeChildren: besom.types.Output[Boolean],
  name: besom.types.Output[String],
  outputVersionFormat: besom.types.Output[String],
  uniqueWriterIdentity: besom.types.Output[scala.Option[Boolean]],
  updateTime: besom.types.Output[String],
  writerIdentity: besom.types.Output[String]
) extends besom.CustomResource

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

  private[besom] def typeToken: besom.types.ResourceType = "google-native:logging/v2:BillingAccountSink"

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

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


  given outputOps: {} with
    extension(output: besom.types.Output[BillingAccountSink])
      def urn : besom.types.Output[besom.types.URN] = output.flatMap(_.urn)
      def id : besom.types.Output[besom.types.ResourceId] = output.flatMap(_.id)
      def bigqueryOptions : besom.types.Output[besom.api.googlenative.logging.v2.outputs.BigQueryOptionsResponse] = output.flatMap(_.bigqueryOptions)
      def billingAccountId : besom.types.Output[String] = output.flatMap(_.billingAccountId)
      def createTime : besom.types.Output[String] = output.flatMap(_.createTime)
      def customWriterIdentity : besom.types.Output[scala.Option[String]] = output.flatMap(_.customWriterIdentity)
      def description : besom.types.Output[String] = output.flatMap(_.description)
      def destination : besom.types.Output[String] = output.flatMap(_.destination)
      def disabled : besom.types.Output[Boolean] = output.flatMap(_.disabled)
      def exclusions : besom.types.Output[scala.collection.immutable.List[besom.api.googlenative.logging.v2.outputs.LogExclusionResponse]] = output.flatMap(_.exclusions)
      def filter : besom.types.Output[String] = output.flatMap(_.filter)
      def includeChildren : besom.types.Output[Boolean] = output.flatMap(_.includeChildren)
      def name : besom.types.Output[String] = output.flatMap(_.name)
      def outputVersionFormat : besom.types.Output[String] = output.flatMap(_.outputVersionFormat)
      def uniqueWriterIdentity : besom.types.Output[scala.Option[Boolean]] = output.flatMap(_.uniqueWriterIdentity)
      def updateTime : besom.types.Output[String] = output.flatMap(_.updateTime)
      def writerIdentity : besom.types.Output[String] = output.flatMap(_.writerIdentity)





© 2015 - 2025 Weber Informatics LLC | Privacy Policy