You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description="Will be used to reference a listener and will replace display name in the future. Currently uses <protocol>-<port> as the name if no display name is given.",
38
38
)
39
-
port: Optional[Any] =Field(default=None, description="Port number where we listen for traffic")
The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors).
29
29
"""
30
30
31
-
code: Optional[Any] =Field(
31
+
code: Optional[StrictInt] =Field(
32
32
default=None,
33
33
description="The status code, which should be an enum value of [google.rpc.Code][google.rpc.Code].",
0 commit comments