
src.compute.beta.ServiceAttachment.scala Maven / Gradle / Ivy
package besom.api.googlenative.compute.beta
final case class ServiceAttachment private(
urn: besom.types.Output[besom.types.URN],
id: besom.types.Output[besom.types.ResourceId],
connectedEndpoints: besom.types.Output[scala.collection.immutable.List[besom.api.googlenative.compute.beta.outputs.ServiceAttachmentConnectedEndpointResponse]],
connectionPreference: besom.types.Output[String],
consumerAcceptLists: besom.types.Output[scala.collection.immutable.List[besom.api.googlenative.compute.beta.outputs.ServiceAttachmentConsumerProjectLimitResponse]],
consumerRejectLists: besom.types.Output[scala.collection.immutable.List[String]],
creationTimestamp: besom.types.Output[String],
description: besom.types.Output[String],
domainNames: besom.types.Output[scala.collection.immutable.List[String]],
enableProxyProtocol: besom.types.Output[Boolean],
fingerprint: besom.types.Output[String],
kind: besom.types.Output[String],
name: besom.types.Output[String],
natSubnets: besom.types.Output[scala.collection.immutable.List[String]],
producerForwardingRule: besom.types.Output[String],
project: besom.types.Output[String],
pscServiceAttachmentId: besom.types.Output[besom.api.googlenative.compute.beta.outputs.Uint128Response],
reconcileConnections: besom.types.Output[Boolean],
region: besom.types.Output[String],
requestId: besom.types.Output[scala.Option[String]],
selfLink: besom.types.Output[String],
targetService: besom.types.Output[String],
tunnelingConfig: besom.types.Output[besom.api.googlenative.compute.beta.outputs.ServiceAttachmentTunnelingConfigResponse]
) extends besom.CustomResource
object ServiceAttachment extends besom.ResourceCompanion[ServiceAttachment]:
/** Resource constructor for ServiceAttachment.
*
* @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 [[ServiceAttachmentArgs]] 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 = ServiceAttachment(
* "my-resource",
* ServiceAttachmentArgs(...), // your args
* opts(provider = myProvider)
* )
* }}}
*/
def apply(using ctx: besom.types.Context)(
name: besom.util.NonEmptyString,
args: ServiceAttachmentArgs,
opts: besom.ResourceOptsVariant.Custom ?=> besom.CustomResourceOptions = besom.CustomResourceOptions()
): besom.types.Output[ServiceAttachment] =
ctx.readOrRegisterResource[ServiceAttachment, ServiceAttachmentArgs]("google-native:compute/beta:ServiceAttachment", name, args, opts(using besom.ResourceOptsVariant.Custom))
private[besom] def typeToken: besom.types.ResourceType = "google-native:compute/beta:ServiceAttachment"
given resourceDecoder(using besom.types.Context): besom.types.ResourceDecoder[ServiceAttachment] =
besom.internal.ResourceDecoder.derived[ServiceAttachment]
given decoder(using besom.types.Context): besom.types.Decoder[ServiceAttachment] =
besom.internal.Decoder.customResourceDecoder[ServiceAttachment]
given outputOps: {} with
extension(output: besom.types.Output[ServiceAttachment])
def urn : besom.types.Output[besom.types.URN] = output.flatMap(_.urn)
def id : besom.types.Output[besom.types.ResourceId] = output.flatMap(_.id)
def connectedEndpoints : besom.types.Output[scala.collection.immutable.List[besom.api.googlenative.compute.beta.outputs.ServiceAttachmentConnectedEndpointResponse]] = output.flatMap(_.connectedEndpoints)
def connectionPreference : besom.types.Output[String] = output.flatMap(_.connectionPreference)
def consumerAcceptLists : besom.types.Output[scala.collection.immutable.List[besom.api.googlenative.compute.beta.outputs.ServiceAttachmentConsumerProjectLimitResponse]] = output.flatMap(_.consumerAcceptLists)
def consumerRejectLists : besom.types.Output[scala.collection.immutable.List[String]] = output.flatMap(_.consumerRejectLists)
def creationTimestamp : besom.types.Output[String] = output.flatMap(_.creationTimestamp)
def description : besom.types.Output[String] = output.flatMap(_.description)
def domainNames : besom.types.Output[scala.collection.immutable.List[String]] = output.flatMap(_.domainNames)
def enableProxyProtocol : besom.types.Output[Boolean] = output.flatMap(_.enableProxyProtocol)
def fingerprint : besom.types.Output[String] = output.flatMap(_.fingerprint)
def kind : besom.types.Output[String] = output.flatMap(_.kind)
def name : besom.types.Output[String] = output.flatMap(_.name)
def natSubnets : besom.types.Output[scala.collection.immutable.List[String]] = output.flatMap(_.natSubnets)
def producerForwardingRule : besom.types.Output[String] = output.flatMap(_.producerForwardingRule)
def project : besom.types.Output[String] = output.flatMap(_.project)
def pscServiceAttachmentId : besom.types.Output[besom.api.googlenative.compute.beta.outputs.Uint128Response] = output.flatMap(_.pscServiceAttachmentId)
def reconcileConnections : besom.types.Output[Boolean] = output.flatMap(_.reconcileConnections)
def region : besom.types.Output[String] = output.flatMap(_.region)
def requestId : besom.types.Output[scala.Option[String]] = output.flatMap(_.requestId)
def selfLink : besom.types.Output[String] = output.flatMap(_.selfLink)
def targetService : besom.types.Output[String] = output.flatMap(_.targetService)
def tunnelingConfig : besom.types.Output[besom.api.googlenative.compute.beta.outputs.ServiceAttachmentTunnelingConfigResponse] = output.flatMap(_.tunnelingConfig)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy