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

src.identitytoolkit.v2.GetTenantIamPolicyArgs.scala Maven / Gradle / Ivy

package besom.api.googlenative.identitytoolkit.v2

final case class GetTenantIamPolicyArgs private(
  project: besom.types.Output[scala.Option[String]],
  tenantId: besom.types.Output[String]
)

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

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy