
src.dataflow.v1b3.Template.scala Maven / Gradle / Ivy
package besom.api.googlenative.dataflow.v1b3
final case class Template private(
urn: besom.types.Output[besom.types.URN],
id: besom.types.Output[besom.types.ResourceId],
location: besom.types.Output[String],
metadata: besom.types.Output[besom.api.googlenative.dataflow.v1b3.outputs.TemplateMetadataResponse],
project: besom.types.Output[String],
runtimeMetadata: besom.types.Output[besom.api.googlenative.dataflow.v1b3.outputs.RuntimeMetadataResponse],
status: besom.types.Output[besom.api.googlenative.dataflow.v1b3.outputs.StatusResponse],
templateType: besom.types.Output[String]
) extends besom.CustomResource
object Template extends besom.ResourceCompanion[Template]:
/** Resource constructor for Template.
*
* @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 [[TemplateArgs]] 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 = Template(
* "my-resource",
* TemplateArgs(...), // your args
* opts(provider = myProvider)
* )
* }}}
*/
def apply(using ctx: besom.types.Context)(
name: besom.util.NonEmptyString,
args: TemplateArgs,
opts: besom.ResourceOptsVariant.Custom ?=> besom.CustomResourceOptions = besom.CustomResourceOptions()
): besom.types.Output[Template] =
ctx.readOrRegisterResource[Template, TemplateArgs]("google-native:dataflow/v1b3:Template", name, args, opts(using besom.ResourceOptsVariant.Custom))
private[besom] def typeToken: besom.types.ResourceType = "google-native:dataflow/v1b3:Template"
given resourceDecoder(using besom.types.Context): besom.types.ResourceDecoder[Template] =
besom.internal.ResourceDecoder.derived[Template]
given decoder(using besom.types.Context): besom.types.Decoder[Template] =
besom.internal.Decoder.customResourceDecoder[Template]
given outputOps: {} with
extension(output: besom.types.Output[Template])
def urn : besom.types.Output[besom.types.URN] = output.flatMap(_.urn)
def id : besom.types.Output[besom.types.ResourceId] = output.flatMap(_.id)
def location : besom.types.Output[String] = output.flatMap(_.location)
def metadata : besom.types.Output[besom.api.googlenative.dataflow.v1b3.outputs.TemplateMetadataResponse] = output.flatMap(_.metadata)
def project : besom.types.Output[String] = output.flatMap(_.project)
def runtimeMetadata : besom.types.Output[besom.api.googlenative.dataflow.v1b3.outputs.RuntimeMetadataResponse] = output.flatMap(_.runtimeMetadata)
def status : besom.types.Output[besom.api.googlenative.dataflow.v1b3.outputs.StatusResponse] = output.flatMap(_.status)
def templateType : besom.types.Output[String] = output.flatMap(_.templateType)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy