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