src.index.Provider.scala Maven / Gradle / Ivy
The newest version!
package besom.api.akamai
final case class Provider private(
urn: besom.types.Output[besom.types.URN],
id: besom.types.Output[besom.types.ResourceId],
cacheEnabled: besom.types.Output[scala.Option[Boolean]],
config: besom.types.Output[scala.Option[besom.api.akamai.outputs.ProviderConfig]],
configSection: besom.types.Output[scala.Option[String]],
edgerc: besom.types.Output[scala.Option[String]],
requestLimit: besom.types.Output[scala.Option[Int]],
retryDisabled: besom.types.Output[scala.Option[Boolean]],
retryMax: besom.types.Output[scala.Option[Int]],
retryWaitMax: besom.types.Output[scala.Option[Int]],
retryWaitMin: besom.types.Output[scala.Option[Int]]
) extends besom.ProviderResource
object Provider extends besom.ResourceCompanion[Provider]:
/** Resource constructor for Provider.
*
* @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 [[ProviderArgs]] 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 = Provider(
* "my-resource",
* ProviderArgs(...), // your args
* opts(provider = myProvider)
* )
* }}}
*/
def apply(using ctx: besom.types.Context)(
name: besom.util.NonEmptyString,
args: ProviderArgs = ProviderArgs(),
opts: besom.ResourceOptsVariant.Custom ?=> besom.CustomResourceOptions = besom.CustomResourceOptions()
): besom.types.Output[Provider] =
ctx.readOrRegisterResource[Provider, ProviderArgs]("pulumi:providers:akamai", name, args, opts(using besom.ResourceOptsVariant.Custom))
private[besom] def typeToken: besom.types.ResourceType = "pulumi:providers:akamai"
given resourceDecoder(using besom.types.Context): besom.types.ResourceDecoder[Provider] =
besom.internal.ResourceDecoder.derived[Provider]
given decoder(using besom.types.Context): besom.types.Decoder[Provider] =
besom.internal.Decoder.customResourceDecoder[Provider]
given outputOps: {} with
extension(output: besom.types.Output[Provider])
def urn : besom.types.Output[besom.types.URN] = output.flatMap(_.urn)
def id : besom.types.Output[besom.types.ResourceId] = output.flatMap(_.id)
def cacheEnabled : besom.types.Output[scala.Option[Boolean]] = output.flatMap(_.cacheEnabled)
def config : besom.types.Output[scala.Option[besom.api.akamai.outputs.ProviderConfig]] = output.flatMap(_.config)
def configSection : besom.types.Output[scala.Option[String]] = output.flatMap(_.configSection)
def edgerc : besom.types.Output[scala.Option[String]] = output.flatMap(_.edgerc)
def requestLimit : besom.types.Output[scala.Option[Int]] = output.flatMap(_.requestLimit)
def retryDisabled : besom.types.Output[scala.Option[Boolean]] = output.flatMap(_.retryDisabled)
def retryMax : besom.types.Output[scala.Option[Int]] = output.flatMap(_.retryMax)
def retryWaitMax : besom.types.Output[scala.Option[Int]] = output.flatMap(_.retryWaitMax)
def retryWaitMin : besom.types.Output[scala.Option[Int]] = output.flatMap(_.retryWaitMin)