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
Copy file name to clipboardExpand all lines: clients/service_networking/lib/google_api/service_networking/v1/model/backend_rule.ex
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,7 @@ defmodule GoogleApi.ServiceNetworking.V1.Model.BackendRule do
25
25
* `deadline` (*type:* `float()`, *default:* `nil`) - The number of seconds to wait for a response from a request. The default varies based on the request protocol and deployment environment.
26
26
* `disableAuth` (*type:* `boolean()`, *default:* `nil`) - When disable_auth is true, a JWT ID token won't be generated and the original "Authorization" HTTP header will be preserved. If the header is used to carry the original token and is expected by the backend, this field must be set to true to preserve the header.
27
27
* `jwtAudience` (*type:* `String.t`, *default:* `nil`) - The JWT audience is used when generating a JWT ID token for the backend. This ID token will be added in the HTTP "authorization" header, and sent to the backend.
28
+
* `loadBalancingPolicy` (*type:* `String.t`, *default:* `nil`) - The load balancing policy used for connection to the application backend. Defined as an arbitrary string to accomondate custom load balancing policies supported by the underlying channel, but suggest most users use one of the standard policies, such as the default, "RoundRobin".
28
29
* `minDeadline` (*type:* `float()`, *default:* `nil`) - Deprecated, do not use.
29
30
* `operationDeadline` (*type:* `float()`, *default:* `nil`) - The number of seconds to wait for the completion of a long running operation. The default is no deadline.
30
31
* `overridesByRequestProtocol` (*type:* `%{optional(String.t) => GoogleApi.ServiceNetworking.V1.Model.BackendRule.t}`, *default:* `nil`) - The map between request protocol and the backend address.
@@ -40,6 +41,7 @@ defmodule GoogleApi.ServiceNetworking.V1.Model.BackendRule do
40
41
:deadline=>float()|nil,
41
42
:disableAuth=>boolean()|nil,
42
43
:jwtAudience=>String.t()|nil,
44
+
:loadBalancingPolicy=>String.t()|nil,
43
45
:minDeadline=>float()|nil,
44
46
:operationDeadline=>float()|nil,
45
47
:overridesByRequestProtocol=>
@@ -53,6 +55,7 @@ defmodule GoogleApi.ServiceNetworking.V1.Model.BackendRule do
0 commit comments