
src.gkebackup.v1.GetBackupPlanArgs.scala Maven / Gradle / Ivy
package besom.api.googlenative.gkebackup.v1
final case class GetBackupPlanArgs private(
backupPlanId: besom.types.Output[String],
location: besom.types.Output[String],
project: besom.types.Output[scala.Option[String]]
)
object GetBackupPlanArgs:
def apply(
backupPlanId: besom.types.Input[String],
location: besom.types.Input[String],
project: besom.types.Input.Optional[String] = scala.None
)(using besom.types.Context): GetBackupPlanArgs =
new GetBackupPlanArgs(
backupPlanId = backupPlanId.asOutput(isSecret = false),
location = location.asOutput(isSecret = false),
project = project.asOptionOutput(isSecret = false)
)
given encoder(using besom.types.Context): besom.types.Encoder[GetBackupPlanArgs] =
besom.internal.Encoder.derived[GetBackupPlanArgs]
given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[GetBackupPlanArgs] =
besom.internal.ArgsEncoder.derived[GetBackupPlanArgs]
© 2015 - 2025 Weber Informatics LLC | Privacy Policy