
src.compute.alpha.TargetHttpsProxy.scala Maven / Gradle / Ivy
package besom.api.googlenative.compute.alpha
final case class TargetHttpsProxy private(
urn: besom.types.Output[besom.types.URN],
id: besom.types.Output[besom.types.ResourceId],
authentication: besom.types.Output[String],
authorization: besom.types.Output[String],
authorizationPolicy: besom.types.Output[String],
certificateMap: besom.types.Output[String],
creationTimestamp: besom.types.Output[String],
description: besom.types.Output[String],
fingerprint: besom.types.Output[String],
httpFilters: besom.types.Output[scala.collection.immutable.List[String]],
httpKeepAliveTimeoutSec: besom.types.Output[Int],
kind: besom.types.Output[String],
name: besom.types.Output[String],
project: besom.types.Output[String],
proxyBind: besom.types.Output[Boolean],
quicOverride: besom.types.Output[String],
region: besom.types.Output[String],
requestId: besom.types.Output[scala.Option[String]],
selfLink: besom.types.Output[String],
selfLinkWithId: besom.types.Output[String],
serverTlsPolicy: besom.types.Output[String],
sslCertificates: besom.types.Output[scala.collection.immutable.List[String]],
sslPolicy: besom.types.Output[String],
urlMap: besom.types.Output[String]
) extends besom.CustomResource
object TargetHttpsProxy extends besom.ResourceCompanion[TargetHttpsProxy]:
/** Resource constructor for TargetHttpsProxy.
*
* @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 [[TargetHttpsProxyArgs]] 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 = TargetHttpsProxy(
* "my-resource",
* TargetHttpsProxyArgs(...), // your args
* opts(provider = myProvider)
* )
* }}}
*/
def apply(using ctx: besom.types.Context)(
name: besom.util.NonEmptyString,
args: TargetHttpsProxyArgs = TargetHttpsProxyArgs(),
opts: besom.ResourceOptsVariant.Custom ?=> besom.CustomResourceOptions = besom.CustomResourceOptions()
): besom.types.Output[TargetHttpsProxy] =
ctx.readOrRegisterResource[TargetHttpsProxy, TargetHttpsProxyArgs]("google-native:compute/alpha:TargetHttpsProxy", name, args, opts(using besom.ResourceOptsVariant.Custom))
private[besom] def typeToken: besom.types.ResourceType = "google-native:compute/alpha:TargetHttpsProxy"
given resourceDecoder(using besom.types.Context): besom.types.ResourceDecoder[TargetHttpsProxy] =
besom.internal.ResourceDecoder.derived[TargetHttpsProxy]
given decoder(using besom.types.Context): besom.types.Decoder[TargetHttpsProxy] =
besom.internal.Decoder.customResourceDecoder[TargetHttpsProxy]
given outputOps: {} with
extension(output: besom.types.Output[TargetHttpsProxy])
def urn : besom.types.Output[besom.types.URN] = output.flatMap(_.urn)
def id : besom.types.Output[besom.types.ResourceId] = output.flatMap(_.id)
def authentication : besom.types.Output[String] = output.flatMap(_.authentication)
def authorization : besom.types.Output[String] = output.flatMap(_.authorization)
def authorizationPolicy : besom.types.Output[String] = output.flatMap(_.authorizationPolicy)
def certificateMap : besom.types.Output[String] = output.flatMap(_.certificateMap)
def creationTimestamp : besom.types.Output[String] = output.flatMap(_.creationTimestamp)
def description : besom.types.Output[String] = output.flatMap(_.description)
def fingerprint : besom.types.Output[String] = output.flatMap(_.fingerprint)
def httpFilters : besom.types.Output[scala.collection.immutable.List[String]] = output.flatMap(_.httpFilters)
def httpKeepAliveTimeoutSec : besom.types.Output[Int] = output.flatMap(_.httpKeepAliveTimeoutSec)
def kind : besom.types.Output[String] = output.flatMap(_.kind)
def name : besom.types.Output[String] = output.flatMap(_.name)
def project : besom.types.Output[String] = output.flatMap(_.project)
def proxyBind : besom.types.Output[Boolean] = output.flatMap(_.proxyBind)
def quicOverride : besom.types.Output[String] = output.flatMap(_.quicOverride)
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 selfLinkWithId : besom.types.Output[String] = output.flatMap(_.selfLinkWithId)
def serverTlsPolicy : besom.types.Output[String] = output.flatMap(_.serverTlsPolicy)
def sslCertificates : besom.types.Output[scala.collection.immutable.List[String]] = output.flatMap(_.sslCertificates)
def sslPolicy : besom.types.Output[String] = output.flatMap(_.sslPolicy)
def urlMap : besom.types.Output[String] = output.flatMap(_.urlMap)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy