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