接口 SidecarOuterClass.IstioIngressListenerOrBuilder

    • 方法概要

      所有方法 实例方法 抽象方法 
      修饰符和类型 方法 说明
      java.lang.String getBind()
      The IP to which the listener should be bound.
      com.google.protobuf.ByteString getBindBytes()
      The IP to which the listener should be bound.
      SidecarOuterClass.CaptureMode getCaptureMode()
      The captureMode option dictates how traffic to the listener is expected to be captured (or not).
      int getCaptureModeValue()
      The captureMode option dictates how traffic to the listener is expected to be captured (or not).
      java.lang.String getDefaultEndpoint()
      The IP endpoint or Unix domain socket to which traffic should be forwarded to.
      com.google.protobuf.ByteString getDefaultEndpointBytes()
      The IP endpoint or Unix domain socket to which traffic should be forwarded to.
      GatewayOuterClass.Port getPort()
      The port associated with the listener.
      GatewayOuterClass.PortOrBuilder getPortOrBuilder()
      The port associated with the listener.
      boolean hasPort()
      The port associated with the listener.
      • 从接口继承的方法 com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • 从接口继承的方法 com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • 方法详细资料

      • hasPort

        boolean hasPort()
         The port associated with the listener.
         
        .istio.networking.v1alpha3.Port port = 1 [(.google.api.field_behavior) = REQUIRED];
        返回:
        Whether the port field is set.
      • getPort

        GatewayOuterClass.Port getPort()
         The port associated with the listener.
         
        .istio.networking.v1alpha3.Port port = 1 [(.google.api.field_behavior) = REQUIRED];
        返回:
        The port.
      • getPortOrBuilder

        GatewayOuterClass.PortOrBuilder getPortOrBuilder()
         The port associated with the listener.
         
        .istio.networking.v1alpha3.Port port = 1 [(.google.api.field_behavior) = REQUIRED];
      • getBind

        java.lang.String getBind()
         The IP to which the listener should be bound. Must be in the
         format `x.x.x.x`. Unix domain socket addresses are not allowed in
         the bind field for ingress listeners. If omitted, Istio will
         automatically configure the defaults based on imported services
         and the workload instances to which this configuration is applied
         to.
         
        string bind = 2;
        返回:
        The bind.
      • getBindBytes

        com.google.protobuf.ByteString getBindBytes()
         The IP to which the listener should be bound. Must be in the
         format `x.x.x.x`. Unix domain socket addresses are not allowed in
         the bind field for ingress listeners. If omitted, Istio will
         automatically configure the defaults based on imported services
         and the workload instances to which this configuration is applied
         to.
         
        string bind = 2;
        返回:
        The bytes for bind.
      • getCaptureModeValue

        int getCaptureModeValue()
         The captureMode option dictates how traffic to the listener is
         expected to be captured (or not).
         
        .istio.networking.v1alpha3.CaptureMode capture_mode = 3;
        返回:
        The enum numeric value on the wire for captureMode.
      • getCaptureMode

        SidecarOuterClass.CaptureMode getCaptureMode()
         The captureMode option dictates how traffic to the listener is
         expected to be captured (or not).
         
        .istio.networking.v1alpha3.CaptureMode capture_mode = 3;
        返回:
        The captureMode.
      • getDefaultEndpoint

        java.lang.String getDefaultEndpoint()
         The IP endpoint or Unix domain socket to which
         traffic should be forwarded to. This configuration can be used to
         redirect traffic arriving at the bind `IP:Port` on the sidecar to a `localhost:port`
         or Unix domain socket where the application workload instance is listening for
         connections. Arbitrary IPs are not supported. Format should be one of `127.0.0.1:PORT`, `0.0.0.0:PORT`
         (which will forward to the instance IP), or `unix:///path/to/socket`
         
        string default_endpoint = 4 [(.google.api.field_behavior) = REQUIRED];
        返回:
        The defaultEndpoint.
      • getDefaultEndpointBytes

        com.google.protobuf.ByteString getDefaultEndpointBytes()
         The IP endpoint or Unix domain socket to which
         traffic should be forwarded to. This configuration can be used to
         redirect traffic arriving at the bind `IP:Port` on the sidecar to a `localhost:port`
         or Unix domain socket where the application workload instance is listening for
         connections. Arbitrary IPs are not supported. Format should be one of `127.0.0.1:PORT`, `0.0.0.0:PORT`
         (which will forward to the instance IP), or `unix:///path/to/socket`
         
        string default_endpoint = 4 [(.google.api.field_behavior) = REQUIRED];
        返回:
        The bytes for defaultEndpoint.