All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.redis.v1.Cluster.scala Maven / Gradle / Ivy

There is a newer version: 0.32.0-core.0.4
Show newest version
package besom.api.googlenative.redis.v1

final case class Cluster private(
  urn: besom.types.Output[besom.types.URN],
  id: besom.types.Output[besom.types.ResourceId],
  authorizationMode: besom.types.Output[String],
  clusterId: besom.types.Output[String],
  createTime: besom.types.Output[String],
  discoveryEndpoints: besom.types.Output[scala.collection.immutable.List[besom.api.googlenative.redis.v1.outputs.DiscoveryEndpointResponse]],
  location: besom.types.Output[String],
  name: besom.types.Output[String],
  project: besom.types.Output[String],
  pscConfigs: besom.types.Output[scala.collection.immutable.List[besom.api.googlenative.redis.v1.outputs.PscConfigResponse]],
  pscConnections: besom.types.Output[scala.collection.immutable.List[besom.api.googlenative.redis.v1.outputs.PscConnectionResponse]],
  replicaCount: besom.types.Output[Int],
  requestId: besom.types.Output[scala.Option[String]],
  shardCount: besom.types.Output[Int],
  sizeGb: besom.types.Output[Int],
  state: besom.types.Output[String],
  stateInfo: besom.types.Output[besom.api.googlenative.redis.v1.outputs.StateInfoResponse],
  transitEncryptionMode: besom.types.Output[String],
  uid: besom.types.Output[String]
) extends besom.CustomResource

object Cluster extends besom.ResourceCompanion[Cluster]:
  /** Resource constructor for Cluster. 
    * 
    * @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 [[ClusterArgs]] 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 = Cluster(
    *          "my-resource",
    *          ClusterArgs(...), // your args
    *          opts(provider = myProvider)
    *        )
    *        }}}
    */
  def apply(using ctx: besom.types.Context)(
    name: besom.util.NonEmptyString,
    args: ClusterArgs,
    opts: besom.ResourceOptsVariant.Custom ?=> besom.CustomResourceOptions = besom.CustomResourceOptions()
  ): besom.types.Output[Cluster] =
    ctx.readOrRegisterResource[Cluster, ClusterArgs]("google-native:redis/v1:Cluster", name, args, opts(using besom.ResourceOptsVariant.Custom))

  private[besom] def typeToken: besom.types.ResourceType = "google-native:redis/v1:Cluster"

  given resourceDecoder(using besom.types.Context): besom.types.ResourceDecoder[Cluster] =
    besom.internal.ResourceDecoder.derived[Cluster]

  given decoder(using besom.types.Context): besom.types.Decoder[Cluster] =
    besom.internal.Decoder.customResourceDecoder[Cluster]


  given outputOps: {} with
    extension(output: besom.types.Output[Cluster])
      def urn : besom.types.Output[besom.types.URN] = output.flatMap(_.urn)
      def id : besom.types.Output[besom.types.ResourceId] = output.flatMap(_.id)
      def authorizationMode : besom.types.Output[String] = output.flatMap(_.authorizationMode)
      def clusterId : besom.types.Output[String] = output.flatMap(_.clusterId)
      def createTime : besom.types.Output[String] = output.flatMap(_.createTime)
      def discoveryEndpoints : besom.types.Output[scala.collection.immutable.List[besom.api.googlenative.redis.v1.outputs.DiscoveryEndpointResponse]] = output.flatMap(_.discoveryEndpoints)
      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 pscConfigs : besom.types.Output[scala.collection.immutable.List[besom.api.googlenative.redis.v1.outputs.PscConfigResponse]] = output.flatMap(_.pscConfigs)
      def pscConnections : besom.types.Output[scala.collection.immutable.List[besom.api.googlenative.redis.v1.outputs.PscConnectionResponse]] = output.flatMap(_.pscConnections)
      def replicaCount : besom.types.Output[Int] = output.flatMap(_.replicaCount)
      def requestId : besom.types.Output[scala.Option[String]] = output.flatMap(_.requestId)
      def shardCount : besom.types.Output[Int] = output.flatMap(_.shardCount)
      def sizeGb : besom.types.Output[Int] = output.flatMap(_.sizeGb)
      def state : besom.types.Output[String] = output.flatMap(_.state)
      def stateInfo : besom.types.Output[besom.api.googlenative.redis.v1.outputs.StateInfoResponse] = output.flatMap(_.stateInfo)
      def transitEncryptionMode : besom.types.Output[String] = output.flatMap(_.transitEncryptionMode)
      def uid : besom.types.Output[String] = output.flatMap(_.uid)





© 2015 - 2025 Weber Informatics LLC | Privacy Policy