SubscriptionLens

implicit
class SubscriptionLens[UpperPB](_l: Lens[UpperPB, Subscription]) extends ObjectLens[UpperPB, Subscription]
class ObjectLens[UpperPB, Subscription]
trait Lens[UpperPB, Subscription]
class Object
trait Matchable
class Any

Value members

Concrete methods

def ackDeadlineSeconds: Lens[UpperPB, Int]
def bigqueryConfig: Lens[UpperPB, BigQueryConfig]
def detached: Lens[UpperPB, Boolean]
def enableExactlyOnceDelivery: Lens[UpperPB, Boolean]
def enableMessageOrdering: Lens[UpperPB, Boolean]
def filter: Lens[UpperPB, String]
def labels: Lens[UpperPB, Map[String, String]]
def messageRetentionDuration: Lens[UpperPB, Duration]
def name: Lens[UpperPB, String]
def optionalBigqueryConfig: Lens[UpperPB, Option[BigQueryConfig]]
def optionalDeadLetterPolicy: Lens[UpperPB, Option[DeadLetterPolicy]]
def optionalExpirationPolicy: Lens[UpperPB, Option[ExpirationPolicy]]
def optionalMessageRetentionDuration: Lens[UpperPB, Option[Duration]]
def optionalPushConfig: Lens[UpperPB, Option[PushConfig]]
def optionalRetryPolicy: Lens[UpperPB, Option[RetryPolicy]]
def optionalTopicMessageRetentionDuration: Lens[UpperPB, Option[Duration]]
def pushConfig: Lens[UpperPB, PushConfig]
def retainAckedMessages: Lens[UpperPB, Boolean]
def retryPolicy: Lens[UpperPB, RetryPolicy]
def state: Lens[UpperPB, State]
def topic: Lens[UpperPB, String]
def topicMessageRetentionDuration: Lens[UpperPB, Duration]

Inherited methods

def :=(a: Subscription): () => UpperPB

alias to set

alias to set

Inherited from
Lens
def compose[B](other: Lens[Subscription, B]): Lens[UpperPB, B]

Composes two lenses, this enables nesting.

Composes two lenses, this enables nesting.

If our field of type A has a sub-field of type B, then given a lens for it (other: Lens[A, B]) we can create a single lens from Container to B.

Inherited from
Lens
def field[A](getter: Subscription => A)(setter: (Subscription, A) => Subscription): Lens[UpperPB, A]

Creates a sub-lens

Creates a sub-lens

Inherited from
ObjectLens
def field[A](lens: Lens[Subscription, A]): Lens[UpperPB, A]

Creates a sub-lens

Creates a sub-lens

Inherited from
ObjectLens
override
def get(u: UpperPB): Subscription
Definition Classes
ObjectLens -> Lens
Inherited from
ObjectLens
def modify(f: Subscription => Subscription): () => UpperPB

Represent an update operator (like x.y += 1 )

Represent an update operator (like x.y += 1 )

Inherited from
Lens
override
def set(c: Subscription): () => UpperPB
Definition Classes
ObjectLens -> Lens
Inherited from
ObjectLens
def setIfDefined(aOpt: Option[Subscription]): () => UpperPB

Optional assignment.

Optional assignment.

Given a Some[A], assign the Some's value to the field. Given None, the container is unchanged.

Inherited from
Lens
def update(ms: Lens[Subscription, Subscription] => () => Subscription*): () => UpperPB
Inherited from
ObjectLens
def zip[B](other: Lens[UpperPB, B]): Lens[UpperPB, (Subscription, B)]

Given two lenses with the same origin, returns a new lens that can mutate both values represented by both lenses through a tuple.

Given two lenses with the same origin, returns a new lens that can mutate both values represented by both lenses through a tuple.

Inherited from
Lens