Scaleway v1.25.0 published on Saturday, Mar 22, 2025 by pulumiverse
scaleway.loadbalancers.getRoutes
Explore with Pulumi AI
Gets information about multiple Load Balancer routes.
For more information, see the main documentation or API documentation.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as scaleway from "@pulumi/scaleway";
// Find routes that share the same frontend ID
const byFrontendID = scaleway.loadbalancers.getRoutes({
frontendId: frt01.id,
});
// Find routes by frontend ID and zone
const myKey = scaleway.loadbalancers.getRoutes({
frontendId: "11111111-1111-1111-1111-111111111111",
zone: "fr-par-2",
});
import pulumi
import pulumi_scaleway as scaleway
# Find routes that share the same frontend ID
by_frontend_id = scaleway.loadbalancers.get_routes(frontend_id=frt01["id"])
# Find routes by frontend ID and zone
my_key = scaleway.loadbalancers.get_routes(frontend_id="11111111-1111-1111-1111-111111111111",
zone="fr-par-2")
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/loadbalancers"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// Find routes that share the same frontend ID
_, err := loadbalancers.GetRoutes(ctx, &loadbalancers.GetRoutesArgs{
FrontendId: pulumi.StringRef(frt01.Id),
}, nil)
if err != nil {
return err
}
// Find routes by frontend ID and zone
_, err = loadbalancers.GetRoutes(ctx, &loadbalancers.GetRoutesArgs{
FrontendId: pulumi.StringRef("11111111-1111-1111-1111-111111111111"),
Zone: pulumi.StringRef("fr-par-2"),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scaleway = Pulumi.Scaleway;
return await Deployment.RunAsync(() =>
{
// Find routes that share the same frontend ID
var byFrontendID = Scaleway.Loadbalancers.GetRoutes.Invoke(new()
{
FrontendId = frt01.Id,
});
// Find routes by frontend ID and zone
var myKey = Scaleway.Loadbalancers.GetRoutes.Invoke(new()
{
FrontendId = "11111111-1111-1111-1111-111111111111",
Zone = "fr-par-2",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scaleway.loadbalancers.LoadbalancersFunctions;
import com.pulumi.scaleway.loadbalancers.inputs.GetRoutesArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
// Find routes that share the same frontend ID
final var byFrontendID = LoadbalancersFunctions.getRoutes(GetRoutesArgs.builder()
.frontendId(frt01.id())
.build());
// Find routes by frontend ID and zone
final var myKey = LoadbalancersFunctions.getRoutes(GetRoutesArgs.builder()
.frontendId("11111111-1111-1111-1111-111111111111")
.zone("fr-par-2")
.build());
}
}
variables:
# Find routes that share the same frontend ID
byFrontendID:
fn::invoke:
function: scaleway:loadbalancers:getRoutes
arguments:
frontendId: ${frt01.id}
# Find routes by frontend ID and zone
myKey:
fn::invoke:
function: scaleway:loadbalancers:getRoutes
arguments:
frontendId: 11111111-1111-1111-1111-111111111111
zone: fr-par-2
Using getRoutes
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getRoutes(args: GetRoutesArgs, opts?: InvokeOptions): Promise<GetRoutesResult>
function getRoutesOutput(args: GetRoutesOutputArgs, opts?: InvokeOptions): Output<GetRoutesResult>
def get_routes(frontend_id: Optional[str] = None,
project_id: Optional[str] = None,
zone: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetRoutesResult
def get_routes_output(frontend_id: Optional[pulumi.Input[str]] = None,
project_id: Optional[pulumi.Input[str]] = None,
zone: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetRoutesResult]
func GetRoutes(ctx *Context, args *GetRoutesArgs, opts ...InvokeOption) (*GetRoutesResult, error)
func GetRoutesOutput(ctx *Context, args *GetRoutesOutputArgs, opts ...InvokeOption) GetRoutesResultOutput
> Note: This function is named GetRoutes
in the Go SDK.
public static class GetRoutes
{
public static Task<GetRoutesResult> InvokeAsync(GetRoutesArgs args, InvokeOptions? opts = null)
public static Output<GetRoutesResult> Invoke(GetRoutesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetRoutesResult> getRoutes(GetRoutesArgs args, InvokeOptions options)
public static Output<GetRoutesResult> getRoutes(GetRoutesArgs args, InvokeOptions options)
fn::invoke:
function: scaleway:loadbalancers/getRoutes:getRoutes
arguments:
# arguments dictionary
The following arguments are supported:
- Frontend
Id string - The frontend ID (the origin of the redirection), to filter for. Routes with a matching frontend ID are listed.
- Project
Id string - Zone string
zone
) The zone in which the routes exist.
- Frontend
Id string - The frontend ID (the origin of the redirection), to filter for. Routes with a matching frontend ID are listed.
- Project
Id string - Zone string
zone
) The zone in which the routes exist.
- frontend
Id String - The frontend ID (the origin of the redirection), to filter for. Routes with a matching frontend ID are listed.
- project
Id String - zone String
zone
) The zone in which the routes exist.
- frontend
Id string - The frontend ID (the origin of the redirection), to filter for. Routes with a matching frontend ID are listed.
- project
Id string - zone string
zone
) The zone in which the routes exist.
- frontend_
id str - The frontend ID (the origin of the redirection), to filter for. Routes with a matching frontend ID are listed.
- project_
id str - zone str
zone
) The zone in which the routes exist.
- frontend
Id String - The frontend ID (the origin of the redirection), to filter for. Routes with a matching frontend ID are listed.
- project
Id String - zone String
zone
) The zone in which the routes exist.
getRoutes Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Organization
Id string - Project
Id string - Routes
List<Pulumiverse.
Scaleway. Loadbalancers. Outputs. Get Routes Route> - List of retrieved routes
- Zone string
- Frontend
Id string
- Id string
- The provider-assigned unique ID for this managed resource.
- Organization
Id string - Project
Id string - Routes
[]Get
Routes Route - List of retrieved routes
- Zone string
- Frontend
Id string
- id String
- The provider-assigned unique ID for this managed resource.
- organization
Id String - project
Id String - routes
List<Get
Routes Route> - List of retrieved routes
- zone String
- frontend
Id String
- id string
- The provider-assigned unique ID for this managed resource.
- organization
Id string - project
Id string - routes
Get
Routes Route[] - List of retrieved routes
- zone string
- frontend
Id string
- id str
- The provider-assigned unique ID for this managed resource.
- organization_
id str - project_
id str - routes
Sequence[Get
Routes Route] - List of retrieved routes
- zone str
- frontend_
id str
- id String
- The provider-assigned unique ID for this managed resource.
- organization
Id String - project
Id String - routes List<Property Map>
- List of retrieved routes
- zone String
- frontend
Id String
Supporting Types
GetRoutesRoute
- Backend
Id string - The backend ID to redirect to
- Created
At string - The date on which the route was created (RFC 3339 format).
- Frontend
Id string - The frontend ID (the origin of the redirection), to filter for. Routes with a matching frontend ID are listed.
- Id string
- The associated route ID.
- Match
Host stringHeader - Specifies the host of the server to which the request is being sent.
- Match
Sni string - Server Name Indication TLS extension field from an incoming connection made via an SSL/TLS transport layer.
- Update
At string - The date on which the route was last updated (RFC 3339 format).
- Backend
Id string - The backend ID to redirect to
- Created
At string - The date on which the route was created (RFC 3339 format).
- Frontend
Id string - The frontend ID (the origin of the redirection), to filter for. Routes with a matching frontend ID are listed.
- Id string
- The associated route ID.
- Match
Host stringHeader - Specifies the host of the server to which the request is being sent.
- Match
Sni string - Server Name Indication TLS extension field from an incoming connection made via an SSL/TLS transport layer.
- Update
At string - The date on which the route was last updated (RFC 3339 format).
- backend
Id String - The backend ID to redirect to
- created
At String - The date on which the route was created (RFC 3339 format).
- frontend
Id String - The frontend ID (the origin of the redirection), to filter for. Routes with a matching frontend ID are listed.
- id String
- The associated route ID.
- match
Host StringHeader - Specifies the host of the server to which the request is being sent.
- match
Sni String - Server Name Indication TLS extension field from an incoming connection made via an SSL/TLS transport layer.
- update
At String - The date on which the route was last updated (RFC 3339 format).
- backend
Id string - The backend ID to redirect to
- created
At string - The date on which the route was created (RFC 3339 format).
- frontend
Id string - The frontend ID (the origin of the redirection), to filter for. Routes with a matching frontend ID are listed.
- id string
- The associated route ID.
- match
Host stringHeader - Specifies the host of the server to which the request is being sent.
- match
Sni string - Server Name Indication TLS extension field from an incoming connection made via an SSL/TLS transport layer.
- update
At string - The date on which the route was last updated (RFC 3339 format).
- backend_
id str - The backend ID to redirect to
- created_
at str - The date on which the route was created (RFC 3339 format).
- frontend_
id str - The frontend ID (the origin of the redirection), to filter for. Routes with a matching frontend ID are listed.
- id str
- The associated route ID.
- match_
host_ strheader - Specifies the host of the server to which the request is being sent.
- match_
sni str - Server Name Indication TLS extension field from an incoming connection made via an SSL/TLS transport layer.
- update_
at str - The date on which the route was last updated (RFC 3339 format).
- backend
Id String - The backend ID to redirect to
- created
At String - The date on which the route was created (RFC 3339 format).
- frontend
Id String - The frontend ID (the origin of the redirection), to filter for. Routes with a matching frontend ID are listed.
- id String
- The associated route ID.
- match
Host StringHeader - Specifies the host of the server to which the request is being sent.
- match
Sni String - Server Name Indication TLS extension field from an incoming connection made via an SSL/TLS transport layer.
- update
At String - The date on which the route was last updated (RFC 3339 format).
Package Details
- Repository
- scaleway pulumiverse/pulumi-scaleway
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scaleway
Terraform Provider.