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

src.iam.v1.GetProviderArgs.scala Maven / Gradle / Ivy

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

final case class GetProviderArgs private(
  location: besom.types.Output[String],
  project: besom.types.Output[scala.Option[String]],
  providerId: besom.types.Output[String],
  workloadIdentityPoolId: besom.types.Output[String]
)

object GetProviderArgs:
  def apply(
    location: besom.types.Input[String],
    project: besom.types.Input.Optional[String] = scala.None,
    providerId: besom.types.Input[String],
    workloadIdentityPoolId: besom.types.Input[String]
  )(using besom.types.Context): GetProviderArgs =
    new GetProviderArgs(
      location = location.asOutput(isSecret = false),
      project = project.asOptionOutput(isSecret = false),
      providerId = providerId.asOutput(isSecret = false),
      workloadIdentityPoolId = workloadIdentityPoolId.asOutput(isSecret = false)
    )

  given encoder(using besom.types.Context): besom.types.Encoder[GetProviderArgs] =
    besom.internal.Encoder.derived[GetProviderArgs]
  given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[GetProviderArgs] =
    besom.internal.ArgsEncoder.derived[GetProviderArgs]






© 2015 - 2025 Weber Informatics LLC | Privacy Policy