Packages

p

com.google.api

backend

package backend

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Type Members

  1. final case class Backend(rules: Seq[BackendRule] = _root_.scala.Seq.empty, unknownFields: UnknownFieldSet = _root_.scalapb.UnknownFieldSet.empty) extends GeneratedMessage with Updatable[Backend] with Product with Serializable

    Backend defines the backend configuration for a service.

    Backend defines the backend configuration for a service.

    rules

    A list of API backend rules that apply to individual API methods. **NOTE:** All service configuration rules follow "last one wins" order.

    Annotations
    @SerialVersionUID()
  2. final case class BackendRule(selector: String = "", address: String = "", deadline: Double = 0.0, minDeadline: Double = 0.0, operationDeadline: Double = 0.0, pathTranslation: PathTranslation = com.google.api.backend.BackendRule.PathTranslation.PATH_TRANSLATION_UNSPECIFIED, authentication: BackendRule.Authentication = com.google.api.backend.BackendRule.Authentication.Empty, unknownFields: UnknownFieldSet = _root_.scalapb.UnknownFieldSet.empty) extends GeneratedMessage with Updatable[BackendRule] with Product with Serializable

    A backend rule provides configuration for an individual API element.

    A backend rule provides configuration for an individual API element.

    selector

    Selects the methods to which this rule applies. Refer to [selector][google.api.DocumentationRule.selector] for syntax details.

    address

    The address of the API backend.

    deadline

    The number of seconds to wait for a response from a request. The default deadline for gRPC is infinite (no deadline) and HTTP requests is 5 seconds.

    minDeadline

    Minimum deadline in seconds needed for this method. Calls having deadline value lower than this will be rejected.

    operationDeadline

    The number of seconds to wait for the completion of a long running operation. The default is no deadline.

    Annotations
    @SerialVersionUID()

Value Members

  1. object Backend extends GeneratedMessageCompanion[Backend] with JavaProtoSupport[Backend, api.Backend] with Serializable
  2. object BackendProto extends GeneratedFileObject
  3. object BackendRule extends GeneratedMessageCompanion[BackendRule] with JavaProtoSupport[BackendRule, api.BackendRule] with Serializable

Ungrouped