From f1bb5d213f4ba6486ebe06d1c2791cb001ea3967 Mon Sep 17 00:00:00 2001 From: Iryna <100072177+IrynaSabinina@users.noreply.github.com> Date: Thu, 21 Aug 2025 11:35:00 +0200 Subject: [PATCH] Update view of Parameters list in v1 styled as a list of parameters (bullet points) instead of raw inline text. --- src/v1/function-builder.ts | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/src/v1/function-builder.ts b/src/v1/function-builder.ts index e70f26166..7dd894b4f 100644 --- a/src/v1/function-builder.ts +++ b/src/v1/function-builder.ts @@ -265,17 +265,25 @@ export function region( /** * Configure runtime options for the function. * @param runtimeOptions Object with optional fields: - * 1. `memory`: amount of memory to allocate to the function, possible values + * + * + * • `memory`: amount of memory to allocate to the function, possible values * are: '128MB', '256MB', '512MB', '1GB', '2GB', '4GB', and '8GB'. - * 2. `timeoutSeconds`: timeout for the function in seconds, possible values are + * + * • `timeoutSeconds`: timeout for the function in seconds, possible values are * 0 to 540. - * 3. `failurePolicy`: failure policy of the function, with boolean `true` being + * + * • `failurePolicy`: failure policy of the function, with boolean `true` being * equivalent to providing an empty retry object. - * 4. `vpcConnector`: id of a VPC connector in same project and region. - * 5. `vpcConnectorEgressSettings`: when a vpcConnector is set, control which + * + * • `vpcConnector`: id of a VPC connector in same project and region. + * + * • `vpcConnectorEgressSettings`: when a vpcConnector is set, control which * egress traffic is sent through the vpcConnector. - * 6. `serviceAccount`: Specific service account for the function. - * 7. `ingressSettings`: ingress settings for the function, which control where a HTTPS + * + * • `serviceAccount`: Specific service account for the function. + * + * • `ingressSettings`: ingress settings for the function, which control where a HTTPS * function can be called from. * * Value must not be null.