Application Load Balancer API, gRPC: LoadBalancerService.UpdateSniMatch
Updates the specified SNI handler of the specified listener.
This request does not allow to update TlsListener.defaultHandler. Make an UpdateListener request instead.
gRPC request
rpc UpdateSniMatch (UpdateSniMatchRequest) returns (operation.Operation)
UpdateSniMatchRequest
{
"loadBalancerId": "string",
"listenerName": "string",
"name": "string",
"updateMask": "google.protobuf.FieldMask",
"serverNames": [
"string"
],
"handler": {
// Includes only one of the fields `httpHandler`, `streamHandler`
"httpHandler": {
"httpRouterId": "string",
// Includes only one of the fields `http2Options`, `allowHttp10`
"http2Options": {
"maxConcurrentStreams": "int64"
},
"allowHttp10": "bool",
// end of the list of possible fields
"rewriteRequestId": "bool"
},
"streamHandler": {
"backendGroupId": "string",
"idleTimeout": "google.protobuf.Duration"
},
// end of the list of possible fields
"certificateIds": [
"string"
]
}
}
Field |
Description |
loadBalancerId |
string Required field. ID of the application load balancer to update the SNI handler in. |
listenerName |
string Required field. Name of the listener to update the SNI handler in. |
name |
string Required field. Name of the SNI handler to update. |
updateMask |
Field mask that specifies which attributes of the SNI handler should be updated. |
serverNames[] |
string New server names that are matched by the SNI handler. Existing set of server names is completely replaced by the provided set, so if you just want
|
handler |
Required field. New settings for handling requests with Server Name Indication (SNI) matching one of |
TlsHandler
A TLS-encrypted (HTTP or TCP stream) handler resource.
Field |
Description |
httpHandler |
HTTP handler. Includes only one of the fields Settings for handling requests. |
streamHandler |
Stream (TCP) handler. Includes only one of the fields Settings for handling requests. |
certificateIds[] |
string ID's of the TLS server certificates from Certificate Manager. RSA and ECDSA certificates are supported, and only the first certificate of each type is used. |
HttpHandler
An HTTP handler resource.
Field |
Description |
httpRouterId |
string ID of the HTTP router processing requests. For details about the concept, see To get the list of all available HTTP routers, make a HttpRouterService.List request. |
http2Options |
HTTP/2 settings. If specified, incoming HTTP/2 requests are supported by the listener. Includes only one of the fields Protocol settings. For HTTPS (HTTP over TLS) connections, settings are applied to the protocol |
allowHttp10 |
bool Enables support for incoming HTTP/1.0 and HTTP/1.1 requests and disables it for HTTP/2 requests. Includes only one of the fields Protocol settings. For HTTPS (HTTP over TLS) connections, settings are applied to the protocol |
rewriteRequestId |
bool When unset, will preserve the incoming x-request-id header, otherwise would rewrite it with a new value. |
Http2Options
An HTTP/2 options resource.
Field |
Description |
maxConcurrentStreams |
int64 Maximum number of concurrent HTTP/2 streams in a connection. |
StreamHandler
A stream (TCP) handler resource.
Field |
Description |
backendGroupId |
string Required field. ID of the backend group processing requests. For details about the concept, see The backend group type, specified via BackendGroup.backend, must be To get the list of all available backend groups, make a BackendGroupService.List request. |
idleTimeout |
The idle timeout is duration during which no data is transmitted or received on either the upstream or downstream connection. |
operation.Operation
{
"id": "string",
"description": "string",
"createdAt": "google.protobuf.Timestamp",
"createdBy": "string",
"modifiedAt": "google.protobuf.Timestamp",
"done": "bool",
"metadata": {
"loadBalancerId": "string",
"listenerName": "string",
"sniMatchName": "string"
},
// Includes only one of the fields `error`, `response`
"error": "google.rpc.Status",
"response": "google.protobuf.Empty"
// end of the list of possible fields
}
An Operation resource. For more information, see Operation.
Field |
Description |
id |
string ID of the operation. |
description |
string Description of the operation. 0-256 characters long. |
createdAt |
Creation timestamp. |
createdBy |
string ID of the user or service account who initiated the operation. |
modifiedAt |
The time when the Operation resource was last modified. |
done |
bool If the value is |
metadata |
Service-specific metadata associated with the operation. |
error |
The error result of the operation in case of failure or cancellation. Includes only one of the fields The operation result. |
response |
The normal response of the operation in case of success. Includes only one of the fields The operation result. |
UpdateSniMatchMetadata
Field |
Description |
loadBalancerId |
string ID of the application load balancer that the SNI handler is being updated in. |
listenerName |
string Name of the listener that the SNI handler is being updated in. |
sniMatchName |
string Name of the SNI handler that is being updated. |