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