UpdateListener
Updates the specified listener of the specified application load balancer.
- TypeScript
- Python
import {
cloudApi,
decodeMessage,
serviceClients,
Session,
waitForOperation,
} from "@yandex-cloud/nodejs-sdk";
const LoadBalancer = cloudApi.apploadbalancer.load_balancer.LoadBalancer;
const UpdateListenerRequest =
cloudApi.apploadbalancer.load_balancer_service.UpdateListenerRequest;
(async () => {
const authToken = process.env["YC_OAUTH_TOKEN"];
const session = new Session({ oauthToken: authToken });
const client = session.client(serviceClients.LoadBalancerServiceClient);
const operation = await client.updateListener(
UpdateListenerRequest.fromPartial({
loadBalancerId: "loadBalancerId",
// updateMask: {
// paths: ["paths"]
// },
listenerSpec: {
name: "name",
// endpointSpecs: [{
// addressSpecs: [{
// externalIpv4AddressSpec: {
// address: "address"
// },
// internalIpv4AddressSpec: {
// address: "address",
// subnetId: "subnetId"
// },
// externalIpv6AddressSpec: {
// address: "address"
// }
// }],
// ports: [0]
// }],
// http: {
// handler: {
// httpRouterId: "httpRouterId",
// http2Options: {
// maxConcurrentStreams: 0
// },
// allowHttp10: true,
// rewriteRequestId: true
// },
// redirects: {
// httpToHttps: true
// }
// },
// tls: {
// defaultHandler: {
// httpHandler: {
// httpRouterId: "httpRouterId",
// http2Options: {
// maxConcurrentStreams: 0
// },
// allowHttp10: true,
// rewriteRequestId: true
// },
// streamHandler: {
// backendGroupId: "backendGroupId",
// idleTimeout: {
// seconds: 0,
// nanos: 0
// }
// },
// certificateIds: ["certificateIds"]
// },
// sniHandlers: [{
// name: "name",
// serverNames: ["serverNames"],
// handler: {
// httpHandler: {
// httpRouterId: "httpRouterId",
// http2Options: {
// maxConcurrentStreams: 0
// },
// allowHttp10: true,
// rewriteRequestId: true
// },
// streamHandler: {
// backendGroupId: "backendGroupId",
// idleTimeout: {
// seconds: 0,
// nanos: 0
// }
// },
// certificateIds: ["certificateIds"]
// }
// }]
// },
// stream: {
// handler: {
// backendGroupId: "backendGroupId",
// idleTimeout: {
// seconds: 0,
// nanos: 0
// }
// }
// }
},
})
);
const finishedOp = await waitForOperation(operation, session);
if (finishedOp.response) {
const result = decodeMessage<typeof LoadBalancer>(finishedOp.response);
console.log(result);
}
})();
import os
import grpc
import yandexcloud
from yandex.cloud.apploadbalancer.v1.load_balancer_service_pb2 import AddressSpec
from yandex.cloud.apploadbalancer.v1.load_balancer_service_pb2 import EndpointSpec
from yandex.cloud.apploadbalancer.v1.load_balancer_service_pb2 import ExternalIpv4AddressSpec
from yandex.cloud.apploadbalancer.v1.load_balancer_service_pb2 import ExternalIpv6AddressSpec
from yandex.cloud.apploadbalancer.v1.load_balancer_pb2 import Http2Options
from yandex.cloud.apploadbalancer.v1.load_balancer_pb2 import HttpHandler
from yandex.cloud.apploadbalancer.v1.load_balancer_pb2 import HttpListener
from yandex.cloud.apploadbalancer.v1.load_balancer_service_pb2 import InternalIpv4AddressSpec
from yandex.cloud.apploadbalancer.v1.load_balancer_service_pb2 import ListenerSpec
from yandex.cloud.apploadbalancer.v1.load_balancer_pb2 import LoadBalancer
from yandex.cloud.apploadbalancer.v1.load_balancer_service_pb2_grpc import LoadBalancerServiceStub
from yandex.cloud.apploadbalancer.v1.load_balancer_pb2 import Redirects
from yandex.cloud.apploadbalancer.v1.load_balancer_pb2 import SniMatch
from yandex.cloud.apploadbalancer.v1.load_balancer_pb2 import StreamHandler
from yandex.cloud.apploadbalancer.v1.load_balancer_pb2 import StreamListener
from yandex.cloud.apploadbalancer.v1.load_balancer_pb2 import TlsHandler
from yandex.cloud.apploadbalancer.v1.load_balancer_pb2 import TlsListener
from yandex.cloud.apploadbalancer.v1.load_balancer_service_pb2 import UpdateListenerMetadata
from yandex.cloud.apploadbalancer.v1.load_balancer_service_pb2 import UpdateListenerRequest
token = os.getenv("YC_OAUTH_TOKEN")
sdk = yandexcloud.SDK(token=token)
service = sdk.client(LoadBalancerServiceStub)
operation = service.UpdateListener(
UpdateListenerRequest(
load_balancer_id="loadBalancerId",
# update_mask = FieldMask.FromJsonString("field1,field2"),
listener_spec=ListenerSpec(
name="name",
# endpoint_specs = [EndpointSpec(
# address_specs = [AddressSpec(
# external_ipv_4_address_spec = ExternalIpv4AddressSpec(
# address = "address"
# ),
# internal_ipv_4_address_spec = InternalIpv4AddressSpec(
# address = "address",
# subnet_id = "subnetId"
# ),
# external_ipv_6_address_spec = ExternalIpv6AddressSpec(
# address = "address"
# )
# )],
# ports = [0]
# )],
# http = HttpListener(
# handler = HttpHandler(
# http_router_id = "httpRouterId",
# http_2_options = Http2Options(
# max_concurrent_streams = 0
# ),
# allow_http_10 = true,
# rewrite_request_id = true
# ),
# redirects = Redirects(
# http_to_https = true
# )
# ),
# tls = TlsListener(
# default_handler = TlsHandler(
# http_handler = HttpHandler(
# http_router_id = "httpRouterId",
# http_2_options = Http2Options(
# max_concurrent_streams = 0
# ),
# allow_http_10 = true,
# rewrite_request_id = true
# ),
# stream_handler = StreamHandler(
# backend_group_id = "backendGroupId",
# idle_timeout = Duration(
# seconds = 0,
# nanos = 0
# )
# ),
# certificate_ids = ["certificateIds"]
# ),
# sni_handlers = [SniMatch(
# name = "name",
# server_names = ["serverNames"],
# handler = TlsHandler(
# http_handler = HttpHandler(
# http_router_id = "httpRouterId",
# http_2_options = Http2Options(
# max_concurrent_streams = 0
# ),
# allow_http_10 = true,
# rewrite_request_id = true
# ),
# stream_handler = StreamHandler(
# backend_group_id = "backendGroupId",
# idle_timeout = Duration(
# seconds = 0,
# nanos = 0
# )
# ),
# certificate_ids = ["certificateIds"]
# )
# )]
# ),
# stream = StreamListener(
# handler = StreamHandler(
# backend_group_id = "backendGroupId",
# idle_timeout = Duration(
# seconds = 0,
# nanos = 0
# )
# )
# )
),
)
)
operation_result = sdk.wait_operation_and_get_result(
operation,
response_type=LoadBalancer,
meta_type=UpdateListenerMetadata,
)
print(operation_result)
UpdateListenerRequest
loadBalancerId
: string
ID of the application load balancer to update the listener in.
updateMask
: google.protobuf.FieldMask
Field mask that specifies which attributes of the listener should be updated.
listenerSpec
: ListenerSpec
New attributes of the listener.
ListenerSpec
name
: string
Name of the listener. The name is unique within the application load balancer.
endpointSpecs
: EndpointSpec
Endpoints of the listener.
Endpoints are defined by their IP addresses and ports.
One of listener
Listener type and settings.
http
: HttpListenerUnencrypted HTTP listener settings.
tls
: TlsListenerTLS-encrypted HTTP or TCP stream listener settings.
All handlers within a listener (TlsListener.default_handler and TlsListener.sni_handlers) must be of one type, HttpHandler or StreamHandler. Mixing HTTP and TCP stream traffic in a TLS-encrypted listener is not supported.
stream
: StreamListenerUnencrypted stream (TCP) listener settings.
EndpointSpec
addressSpecs
: AddressSpec
Endpoint public (external) and internal addresses.
ports
: int64
Endpoint ports.
HttpListener
An HTTP listener resource.
handler
: HttpHandler
Settings for handling HTTP requests.
Only one of handler
and redirects can be specified.
redirects
: Redirects
Redirects settings.
Only one of redirects
and handler can be specified.
TlsListener
TLS-encrypted (HTTP or TCP stream) listener resource.
defaultHandler
: TlsHandler
Settings for handling requests by default, with Server Name Indication (SNI) not matching any of the sni_handlers.
sniHandlers
: SniMatch
Settings for handling requests with Server Name Indication (SNI) matching one of SniMatch.server_names values.
StreamListener
A stream (TCP) listener resource.
handler
: StreamHandler
Settings for handling stream (TCP) requests.
AddressSpec
One of addressSpec
Endpoint address of one of the types: public (external) IPv4 address, internal IPv4 address, public IPv6 address.
externalIpv4AddressSpec
: ExternalIpv4AddressSpecPublic IPv4 endpoint address.
internalIpv4AddressSpec
: InternalIpv4AddressSpecInternal IPv4 endpoint address.
To enable the use of listeners with internal addresses, contact support.
externalIpv6AddressSpec
: ExternalIpv6AddressSpecPublic IPv6 endpoint address.
HttpHandler
An HTTP handler resource.
httpRouterId
: string
ID of the HTTP router processing requests. For details about the concept, see documentation.
To get the list of all available HTTP routers, make a HttpRouterService.List request.
One of protocolSettings
Protocol settings.
For HTTPS (HTTP over TLS) connections, settings are applied to the protocol negotiated using TLS ALPN extension.
http2Options
: Http2OptionsHTTP/2 settings.
If specified, incoming HTTP/2 requests are supported by the listener.
allowHttp10
: boolEnables support for incoming HTTP/1.0 and HTTP/1.1 requests and disables it for HTTP/2 requests.
rewriteRequestId
: bool
When unset, will preserve the incoming x-request-id header, otherwise would rewrite it with a new value.
Redirects
A listener redirects resource.
httpToHttps
: bool
Redirects all unencrypted HTTP requests to the same URI with scheme changed to https
.
The setting has the same effect as a single, catch-all HttpRoute
with RedirectAction.replace_scheme set to https
.
TlsHandler
A TLS-encrypted (HTTP or TCP stream) handler resource.
One of handler
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.
SniMatch
A SNI handler resource.
name
: string
Name of the SNI handler.
serverNames
: string
Server names that are matched by the SNI handler.
handler
: TlsHandler
Settings for handling requests with Server Name Indication (SNI) matching one of server_names values.
StreamHandler
A stream (TCP) handler resource.
backendGroupId
: string
ID of the backend group processing requests. For details about the concept, see documentation.
The backend group type, specified via BackendGroup.backend, must be stream
.
To get the list of all available backend groups, make a BackendGroupService.List request.
idleTimeout
: google.protobuf.Duration
The idle timeout is duration during which no data is transmitted or received on either the upstream or downstream connection. If not configured, the default idle timeout is 1 hour. Setting it to 0 disables the timeout.
ExternalIpv4AddressSpec
address
: string
IPv4 address.
InternalIpv4AddressSpec
address
: string
IPv4 address.
subnetId
: string
ID of the subnet that the address belongs to.
ExternalIpv6AddressSpec
address
: string
IPv6 address.
Http2Options
An HTTP/2 options resource.
maxConcurrentStreams
: int64
Maximum number of concurrent HTTP/2 streams in a connection.
Operation
An Operation resource. For more information, see Operation.
id
: string
ID of the operation.
description
: string
Description of the operation. 0-256 characters long.
createdAt
: google.protobuf.Timestamp
Creation timestamp.
createdBy
: string
ID of the user or service account who initiated the operation.
modifiedAt
: google.protobuf.Timestamp
The time when the Operation resource was last modified.
done
: bool
If the value is false
, it means the operation is still in progress.
If true
, the operation is completed, and either error
or response
is available.
metadata
: google.protobuf.Any
Service-specific metadata associated with the operation. It typically contains the ID of the target resource that the operation is performed on. Any method that returns a long-running operation should document the metadata type, if any.
One of result
The operation result.
If done == false
and there was no failure detected, neither error
nor response
is set.
If done == false
and there was a failure detected, error
is set.
If done == true
, exactly one of error
or response
is set.
error
: google.rpc.StatusThe error result of the operation in case of failure or cancellation.
response
: google.protobuf.AnyThe normal response of the operation in case of success.
If the original method returns no data on success, such as Delete, the response is google.protobuf.Empty. If the original method is the standard Create/Update, the response should be the target resource of the operation. Any method that returns a long-running operation should document the response type, if any.