
src.privateca.v1.Certificate.scala Maven / Gradle / Ivy
package besom.api.googlenative.privateca.v1
final case class Certificate private(
urn: besom.types.Output[besom.types.URN],
id: besom.types.Output[besom.types.ResourceId],
caPoolId: besom.types.Output[String],
certificateDescription: besom.types.Output[besom.api.googlenative.privateca.v1.outputs.CertificateDescriptionResponse],
certificateId: besom.types.Output[scala.Option[String]],
certificateTemplate: besom.types.Output[String],
config: besom.types.Output[besom.api.googlenative.privateca.v1.outputs.CertificateConfigResponse],
createTime: besom.types.Output[String],
issuerCertificateAuthority: besom.types.Output[String],
issuingCertificateAuthorityId: besom.types.Output[scala.Option[String]],
labels: besom.types.Output[scala.Predef.Map[String, String]],
lifetime: besom.types.Output[String],
location: besom.types.Output[String],
name: besom.types.Output[String],
pemCertificate: besom.types.Output[String],
pemCertificateChain: besom.types.Output[scala.collection.immutable.List[String]],
pemCsr: besom.types.Output[String],
project: besom.types.Output[String],
requestId: besom.types.Output[scala.Option[String]],
revocationDetails: besom.types.Output[besom.api.googlenative.privateca.v1.outputs.RevocationDetailsResponse],
subjectMode: besom.types.Output[String],
updateTime: besom.types.Output[String]
) extends besom.CustomResource
object Certificate extends besom.ResourceCompanion[Certificate]:
/** Resource constructor for Certificate.
*
* @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 [[CertificateArgs]] 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 = Certificate(
* "my-resource",
* CertificateArgs(...), // your args
* opts(provider = myProvider)
* )
* }}}
*/
def apply(using ctx: besom.types.Context)(
name: besom.util.NonEmptyString,
args: CertificateArgs,
opts: besom.ResourceOptsVariant.Custom ?=> besom.CustomResourceOptions = besom.CustomResourceOptions()
): besom.types.Output[Certificate] =
ctx.readOrRegisterResource[Certificate, CertificateArgs]("google-native:privateca/v1:Certificate", name, args, opts(using besom.ResourceOptsVariant.Custom))
private[besom] def typeToken: besom.types.ResourceType = "google-native:privateca/v1:Certificate"
given resourceDecoder(using besom.types.Context): besom.types.ResourceDecoder[Certificate] =
besom.internal.ResourceDecoder.derived[Certificate]
given decoder(using besom.types.Context): besom.types.Decoder[Certificate] =
besom.internal.Decoder.customResourceDecoder[Certificate]
given outputOps: {} with
extension(output: besom.types.Output[Certificate])
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 certificateDescription : besom.types.Output[besom.api.googlenative.privateca.v1.outputs.CertificateDescriptionResponse] = output.flatMap(_.certificateDescription)
def certificateId : besom.types.Output[scala.Option[String]] = output.flatMap(_.certificateId)
def certificateTemplate : besom.types.Output[String] = output.flatMap(_.certificateTemplate)
def config : besom.types.Output[besom.api.googlenative.privateca.v1.outputs.CertificateConfigResponse] = output.flatMap(_.config)
def createTime : besom.types.Output[String] = output.flatMap(_.createTime)
def issuerCertificateAuthority : besom.types.Output[String] = output.flatMap(_.issuerCertificateAuthority)
def issuingCertificateAuthorityId : besom.types.Output[scala.Option[String]] = output.flatMap(_.issuingCertificateAuthorityId)
def labels : besom.types.Output[scala.Predef.Map[String, String]] = output.flatMap(_.labels)
def lifetime : besom.types.Output[String] = output.flatMap(_.lifetime)
def location : besom.types.Output[String] = output.flatMap(_.location)
def name : besom.types.Output[String] = output.flatMap(_.name)
def pemCertificate : besom.types.Output[String] = output.flatMap(_.pemCertificate)
def pemCertificateChain : besom.types.Output[scala.collection.immutable.List[String]] = output.flatMap(_.pemCertificateChain)
def pemCsr : besom.types.Output[String] = output.flatMap(_.pemCsr)
def project : besom.types.Output[String] = output.flatMap(_.project)
def requestId : besom.types.Output[scala.Option[String]] = output.flatMap(_.requestId)
def revocationDetails : besom.types.Output[besom.api.googlenative.privateca.v1.outputs.RevocationDetailsResponse] = output.flatMap(_.revocationDetails)
def subjectMode : besom.types.Output[String] = output.flatMap(_.subjectMode)
def updateTime : besom.types.Output[String] = output.flatMap(_.updateTime)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy