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

src.cloudbuild.v2.Connection.scala Maven / Gradle / Ivy

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

final case class Connection private(
  urn: besom.types.Output[besom.types.URN],
  id: besom.types.Output[besom.types.ResourceId],
  annotations: besom.types.Output[scala.Predef.Map[String, String]],
  connectionId: besom.types.Output[String],
  createTime: besom.types.Output[String],
  disabled: besom.types.Output[Boolean],
  etag: besom.types.Output[String],
  githubConfig: besom.types.Output[besom.api.googlenative.cloudbuild.v2.outputs.GitHubConfigResponse],
  githubEnterpriseConfig: besom.types.Output[besom.api.googlenative.cloudbuild.v2.outputs.GoogleDevtoolsCloudbuildV2GitHubEnterpriseConfigResponse],
  gitlabConfig: besom.types.Output[besom.api.googlenative.cloudbuild.v2.outputs.GoogleDevtoolsCloudbuildV2GitLabConfigResponse],
  installationState: besom.types.Output[besom.api.googlenative.cloudbuild.v2.outputs.InstallationStateResponse],
  location: besom.types.Output[String],
  name: besom.types.Output[String],
  project: besom.types.Output[String],
  reconciling: besom.types.Output[Boolean],
  updateTime: besom.types.Output[String]
) extends besom.CustomResource

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

  private[besom] def typeToken: besom.types.ResourceType = "google-native:cloudbuild/v2:Connection"

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

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


  given outputOps: {} with
    extension(output: besom.types.Output[Connection])
      def urn : besom.types.Output[besom.types.URN] = output.flatMap(_.urn)
      def id : besom.types.Output[besom.types.ResourceId] = output.flatMap(_.id)
      def annotations : besom.types.Output[scala.Predef.Map[String, String]] = output.flatMap(_.annotations)
      def connectionId : besom.types.Output[String] = output.flatMap(_.connectionId)
      def createTime : besom.types.Output[String] = output.flatMap(_.createTime)
      def disabled : besom.types.Output[Boolean] = output.flatMap(_.disabled)
      def etag : besom.types.Output[String] = output.flatMap(_.etag)
      def githubConfig : besom.types.Output[besom.api.googlenative.cloudbuild.v2.outputs.GitHubConfigResponse] = output.flatMap(_.githubConfig)
      def githubEnterpriseConfig : besom.types.Output[besom.api.googlenative.cloudbuild.v2.outputs.GoogleDevtoolsCloudbuildV2GitHubEnterpriseConfigResponse] = output.flatMap(_.githubEnterpriseConfig)
      def gitlabConfig : besom.types.Output[besom.api.googlenative.cloudbuild.v2.outputs.GoogleDevtoolsCloudbuildV2GitLabConfigResponse] = output.flatMap(_.gitlabConfig)
      def installationState : besom.types.Output[besom.api.googlenative.cloudbuild.v2.outputs.InstallationStateResponse] = output.flatMap(_.installationState)
      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 reconciling : besom.types.Output[Boolean] = output.flatMap(_.reconciling)
      def updateTime : besom.types.Output[String] = output.flatMap(_.updateTime)





© 2015 - 2025 Weber Informatics LLC | Privacy Policy