
src.logging.v2.Sink.scala Maven / Gradle / Ivy
package besom.api.googlenative.logging.v2
final case class Sink 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],
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],
project: 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 Sink extends besom.ResourceCompanion[Sink]:
/** Resource constructor for Sink.
*
* @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 [[SinkArgs]] 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 = Sink(
* "my-resource",
* SinkArgs(...), // your args
* opts(provider = myProvider)
* )
* }}}
*/
def apply(using ctx: besom.types.Context)(
name: besom.util.NonEmptyString,
args: SinkArgs,
opts: besom.ResourceOptsVariant.Custom ?=> besom.CustomResourceOptions = besom.CustomResourceOptions()
): besom.types.Output[Sink] =
ctx.readOrRegisterResource[Sink, SinkArgs]("google-native:logging/v2:Sink", name, args, opts(using besom.ResourceOptsVariant.Custom))
private[besom] def typeToken: besom.types.ResourceType = "google-native:logging/v2:Sink"
given resourceDecoder(using besom.types.Context): besom.types.ResourceDecoder[Sink] =
besom.internal.ResourceDecoder.derived[Sink]
given decoder(using besom.types.Context): besom.types.Decoder[Sink] =
besom.internal.Decoder.customResourceDecoder[Sink]
given outputOps: {} with
extension(output: besom.types.Output[Sink])
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 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 project : besom.types.Output[String] = output.flatMap(_.project)
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