src.notebooks.v1.GetRuntimeIamPolicyResult.scala Maven / Gradle / Ivy
The newest version!
package besom.api.googlenative.notebooks.v1
final case class GetRuntimeIamPolicyResult private(
bindings: scala.collection.immutable.List[besom.api.googlenative.notebooks.v1.outputs.BindingResponse],
etag: String,
version: Int
)
object GetRuntimeIamPolicyResult :
given decoder(using besom.types.Context): besom.types.Decoder[GetRuntimeIamPolicyResult] =
besom.internal.Decoder.derived[GetRuntimeIamPolicyResult]
given outputOps: {} with
extension(output: besom.types.Output[GetRuntimeIamPolicyResult])
def bindings : besom.types.Output[scala.collection.immutable.List[besom.api.googlenative.notebooks.v1.outputs.BindingResponse]] = output.map(_.bindings)
def etag : besom.types.Output[String] = output.map(_.etag)
def version : besom.types.Output[Int] = output.map(_.version)
given optionOutputOps: {} with
extension(output: besom.types.Output[scala.Option[GetRuntimeIamPolicyResult]])
def bindings : besom.types.Output[scala.Option[scala.collection.immutable.List[besom.api.googlenative.notebooks.v1.outputs.BindingResponse]]] = output.map(_.map(_.bindings))
def etag : besom.types.Output[scala.Option[String]] = output.map(_.map(_.etag))
def version : besom.types.Output[scala.Option[Int]] = output.map(_.map(_.version))
© 2015 - 2025 Weber Informatics LLC | Privacy Policy