
src.datamigration.v1.PrivateConnection.scala Maven / Gradle / Ivy
package besom.api.googlenative.datamigration.v1
final case class PrivateConnection private(
urn: besom.types.Output[besom.types.URN],
id: besom.types.Output[besom.types.ResourceId],
createTime: besom.types.Output[String],
displayName: besom.types.Output[String],
error: besom.types.Output[besom.api.googlenative.datamigration.v1.outputs.StatusResponse],
labels: besom.types.Output[scala.Predef.Map[String, String]],
location: besom.types.Output[String],
name: besom.types.Output[String],
privateConnectionId: besom.types.Output[String],
project: besom.types.Output[String],
requestId: besom.types.Output[scala.Option[String]],
skipValidation: besom.types.Output[scala.Option[Boolean]],
state: besom.types.Output[String],
updateTime: besom.types.Output[String],
vpcPeeringConfig: besom.types.Output[besom.api.googlenative.datamigration.v1.outputs.VpcPeeringConfigResponse]
) extends besom.CustomResource
object PrivateConnection extends besom.ResourceCompanion[PrivateConnection]:
/** Resource constructor for PrivateConnection.
*
* @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 [[PrivateConnectionArgs]] 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 = PrivateConnection(
* "my-resource",
* PrivateConnectionArgs(...), // your args
* opts(provider = myProvider)
* )
* }}}
*/
def apply(using ctx: besom.types.Context)(
name: besom.util.NonEmptyString,
args: PrivateConnectionArgs,
opts: besom.ResourceOptsVariant.Custom ?=> besom.CustomResourceOptions = besom.CustomResourceOptions()
): besom.types.Output[PrivateConnection] =
ctx.readOrRegisterResource[PrivateConnection, PrivateConnectionArgs]("google-native:datamigration/v1:PrivateConnection", name, args, opts(using besom.ResourceOptsVariant.Custom))
private[besom] def typeToken: besom.types.ResourceType = "google-native:datamigration/v1:PrivateConnection"
given resourceDecoder(using besom.types.Context): besom.types.ResourceDecoder[PrivateConnection] =
besom.internal.ResourceDecoder.derived[PrivateConnection]
given decoder(using besom.types.Context): besom.types.Decoder[PrivateConnection] =
besom.internal.Decoder.customResourceDecoder[PrivateConnection]
given outputOps: {} with
extension(output: besom.types.Output[PrivateConnection])
def urn : besom.types.Output[besom.types.URN] = output.flatMap(_.urn)
def id : besom.types.Output[besom.types.ResourceId] = output.flatMap(_.id)
def createTime : besom.types.Output[String] = output.flatMap(_.createTime)
def displayName : besom.types.Output[String] = output.flatMap(_.displayName)
def error : besom.types.Output[besom.api.googlenative.datamigration.v1.outputs.StatusResponse] = output.flatMap(_.error)
def labels : besom.types.Output[scala.Predef.Map[String, String]] = output.flatMap(_.labels)
def location : besom.types.Output[String] = output.flatMap(_.location)
def name : besom.types.Output[String] = output.flatMap(_.name)
def privateConnectionId : besom.types.Output[String] = output.flatMap(_.privateConnectionId)
def project : besom.types.Output[String] = output.flatMap(_.project)
def requestId : besom.types.Output[scala.Option[String]] = output.flatMap(_.requestId)
def skipValidation : besom.types.Output[scala.Option[Boolean]] = output.flatMap(_.skipValidation)
def state : besom.types.Output[String] = output.flatMap(_.state)
def updateTime : besom.types.Output[String] = output.flatMap(_.updateTime)
def vpcPeeringConfig : besom.types.Output[besom.api.googlenative.datamigration.v1.outputs.VpcPeeringConfigResponse] = output.flatMap(_.vpcPeeringConfig)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy