src.index.PropertyActivation.scala Maven / Gradle / Ivy
The newest version!
package besom.api.akamai
final case class PropertyActivation private(
urn: besom.types.Output[besom.types.URN],
id: besom.types.Output[besom.types.ResourceId],
activationId: besom.types.Output[String],
autoAcknowledgeRuleWarnings: besom.types.Output[scala.Option[Boolean]],
complianceRecord: besom.types.Output[scala.Option[besom.api.akamai.outputs.PropertyActivationComplianceRecord]],
contacts: besom.types.Output[scala.collection.immutable.List[String]],
errors: besom.types.Output[String],
network: besom.types.Output[scala.Option[String]],
note: besom.types.Output[scala.Option[String]],
propertyId: besom.types.Output[String],
ruleErrors: besom.types.Output[scala.collection.immutable.List[besom.api.akamai.outputs.PropertyActivationRuleError]],
status: besom.types.Output[String],
timeouts: besom.types.Output[scala.Option[besom.api.akamai.outputs.PropertyActivationTimeouts]],
version: besom.types.Output[Int],
warnings: besom.types.Output[String]
) extends besom.CustomResource
object PropertyActivation extends besom.ResourceCompanion[PropertyActivation]:
/** Resource constructor for PropertyActivation.
*
* @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 [[PropertyActivationArgs]] 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 = PropertyActivation(
* "my-resource",
* PropertyActivationArgs(...), // your args
* opts(provider = myProvider)
* )
* }}}
*/
def apply(using ctx: besom.types.Context)(
name: besom.util.NonEmptyString,
args: PropertyActivationArgs,
opts: besom.ResourceOptsVariant.Custom ?=> besom.CustomResourceOptions = besom.CustomResourceOptions()
): besom.types.Output[PropertyActivation] =
ctx.readOrRegisterResource[PropertyActivation, PropertyActivationArgs]("akamai:index/propertyActivation:PropertyActivation", name, args, opts(using besom.ResourceOptsVariant.Custom))
private[besom] def typeToken: besom.types.ResourceType = "akamai:index/propertyActivation:PropertyActivation"
given resourceDecoder(using besom.types.Context): besom.types.ResourceDecoder[PropertyActivation] =
besom.internal.ResourceDecoder.derived[PropertyActivation]
given decoder(using besom.types.Context): besom.types.Decoder[PropertyActivation] =
besom.internal.Decoder.customResourceDecoder[PropertyActivation]
given outputOps: {} with
extension(output: besom.types.Output[PropertyActivation])
def urn : besom.types.Output[besom.types.URN] = output.flatMap(_.urn)
def id : besom.types.Output[besom.types.ResourceId] = output.flatMap(_.id)
def activationId : besom.types.Output[String] = output.flatMap(_.activationId)
def autoAcknowledgeRuleWarnings : besom.types.Output[scala.Option[Boolean]] = output.flatMap(_.autoAcknowledgeRuleWarnings)
def complianceRecord : besom.types.Output[scala.Option[besom.api.akamai.outputs.PropertyActivationComplianceRecord]] = output.flatMap(_.complianceRecord)
def contacts : besom.types.Output[scala.collection.immutable.List[String]] = output.flatMap(_.contacts)
def errors : besom.types.Output[String] = output.flatMap(_.errors)
def network : besom.types.Output[scala.Option[String]] = output.flatMap(_.network)
def note : besom.types.Output[scala.Option[String]] = output.flatMap(_.note)
def propertyId : besom.types.Output[String] = output.flatMap(_.propertyId)
def ruleErrors : besom.types.Output[scala.collection.immutable.List[besom.api.akamai.outputs.PropertyActivationRuleError]] = output.flatMap(_.ruleErrors)
def status : besom.types.Output[String] = output.flatMap(_.status)
def timeouts : besom.types.Output[scala.Option[besom.api.akamai.outputs.PropertyActivationTimeouts]] = output.flatMap(_.timeouts)
def version : besom.types.Output[Int] = output.flatMap(_.version)
def warnings : besom.types.Output[String] = output.flatMap(_.warnings)