
src.compute.alpha.InstantSnapshot.scala Maven / Gradle / Ivy
package besom.api.googlenative.compute.alpha
final case class InstantSnapshot private(
urn: besom.types.Output[besom.types.URN],
id: besom.types.Output[besom.types.ResourceId],
architecture: besom.types.Output[String],
creationTimestamp: besom.types.Output[String],
description: besom.types.Output[String],
diskSizeGb: besom.types.Output[String],
guestFlush: besom.types.Output[Boolean],
kind: besom.types.Output[String],
labelFingerprint: besom.types.Output[String],
labels: besom.types.Output[scala.Predef.Map[String, String]],
name: besom.types.Output[String],
project: besom.types.Output[String],
region: besom.types.Output[String],
requestId: besom.types.Output[scala.Option[String]],
resourceStatus: besom.types.Output[besom.api.googlenative.compute.alpha.outputs.InstantSnapshotResourceStatusResponse],
satisfiesPzs: besom.types.Output[Boolean],
selfLink: besom.types.Output[String],
selfLinkWithId: besom.types.Output[String],
sourceDisk: besom.types.Output[String],
sourceDiskId: besom.types.Output[String],
status: besom.types.Output[String],
zone: besom.types.Output[String]
) extends besom.CustomResource
object InstantSnapshot extends besom.ResourceCompanion[InstantSnapshot]:
/** Resource constructor for InstantSnapshot.
*
* @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 [[InstantSnapshotArgs]] The configuration to use to create this resource. This resource has a default configuration.
*
* @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 = InstantSnapshot(
* "my-resource",
* InstantSnapshotArgs(...), // your args
* opts(provider = myProvider)
* )
* }}}
*/
def apply(using ctx: besom.types.Context)(
name: besom.util.NonEmptyString,
args: InstantSnapshotArgs = InstantSnapshotArgs(),
opts: besom.ResourceOptsVariant.Custom ?=> besom.CustomResourceOptions = besom.CustomResourceOptions()
): besom.types.Output[InstantSnapshot] =
ctx.readOrRegisterResource[InstantSnapshot, InstantSnapshotArgs]("google-native:compute/alpha:InstantSnapshot", name, args, opts(using besom.ResourceOptsVariant.Custom))
private[besom] def typeToken: besom.types.ResourceType = "google-native:compute/alpha:InstantSnapshot"
given resourceDecoder(using besom.types.Context): besom.types.ResourceDecoder[InstantSnapshot] =
besom.internal.ResourceDecoder.derived[InstantSnapshot]
given decoder(using besom.types.Context): besom.types.Decoder[InstantSnapshot] =
besom.internal.Decoder.customResourceDecoder[InstantSnapshot]
given outputOps: {} with
extension(output: besom.types.Output[InstantSnapshot])
def urn : besom.types.Output[besom.types.URN] = output.flatMap(_.urn)
def id : besom.types.Output[besom.types.ResourceId] = output.flatMap(_.id)
def architecture : besom.types.Output[String] = output.flatMap(_.architecture)
def creationTimestamp : besom.types.Output[String] = output.flatMap(_.creationTimestamp)
def description : besom.types.Output[String] = output.flatMap(_.description)
def diskSizeGb : besom.types.Output[String] = output.flatMap(_.diskSizeGb)
def guestFlush : besom.types.Output[Boolean] = output.flatMap(_.guestFlush)
def kind : besom.types.Output[String] = output.flatMap(_.kind)
def labelFingerprint : besom.types.Output[String] = output.flatMap(_.labelFingerprint)
def labels : besom.types.Output[scala.Predef.Map[String, String]] = output.flatMap(_.labels)
def name : besom.types.Output[String] = output.flatMap(_.name)
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 resourceStatus : besom.types.Output[besom.api.googlenative.compute.alpha.outputs.InstantSnapshotResourceStatusResponse] = output.flatMap(_.resourceStatus)
def satisfiesPzs : besom.types.Output[Boolean] = output.flatMap(_.satisfiesPzs)
def selfLink : besom.types.Output[String] = output.flatMap(_.selfLink)
def selfLinkWithId : besom.types.Output[String] = output.flatMap(_.selfLinkWithId)
def sourceDisk : besom.types.Output[String] = output.flatMap(_.sourceDisk)
def sourceDiskId : besom.types.Output[String] = output.flatMap(_.sourceDiskId)
def status : besom.types.Output[String] = output.flatMap(_.status)
def zone : besom.types.Output[String] = output.flatMap(_.zone)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy