proto_docs/google/api/auth.rb in google-cloud-service_usage-v1-1.1.0 vs proto_docs/google/api/auth.rb in google-cloud-service_usage-v1-1.2.0

- old
+ new

@@ -82,15 +82,21 @@ # Specifies a location to extract JWT from an API request. # @!attribute [rw] header # @return [::String] # Specifies HTTP header name to extract JWT token. + # + # Note: The following fields are mutually exclusive: `header`, `query`, `cookie`. If a field in that set is populated, all other fields in the set will automatically be cleared. # @!attribute [rw] query # @return [::String] # Specifies URL query parameter name to extract JWT token. + # + # Note: The following fields are mutually exclusive: `query`, `header`, `cookie`. If a field in that set is populated, all other fields in the set will automatically be cleared. # @!attribute [rw] cookie # @return [::String] # Specifies cookie name to extract JWT token. + # + # Note: The following fields are mutually exclusive: `cookie`, `header`, `query`. If a field in that set is populated, all other fields in the set will automatically be cleared. # @!attribute [rw] value_prefix # @return [::String] # The value prefix. The value format is "value_prefix\\{token}" # Only applies to "in" header type. Must be empty for "in" query type. # If not empty, the header value has to match (case sensitive) this prefix.