Scaleway v1.20.0 published on Monday, Nov 4, 2024 by pulumiverse
scaleway.getMnqSqs
Explore with Pulumi AI
Gets information about SQS for a Project
Examples
Basic
import * as pulumi from "@pulumi/pulumi";
import * as scaleway from "@pulumi/scaleway";
// For default project
const main = scaleway.getMnqSqs({});
// For specific project
const forProject = scaleway.getMnqSqs({
projectId: mainScalewayAccountProject.id,
});
import pulumi
import pulumi_scaleway as scaleway
# For default project
main = scaleway.get_mnq_sqs()
# For specific project
for_project = scaleway.get_mnq_sqs(project_id=main_scaleway_account_project["id"])
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// For default project
_, err := scaleway.LookupMnqSqs(ctx, &scaleway.LookupMnqSqsArgs{}, nil)
if err != nil {
return err
}
// For specific project
_, err = scaleway.LookupMnqSqs(ctx, &scaleway.LookupMnqSqsArgs{
ProjectId: pulumi.StringRef(mainScalewayAccountProject.Id),
}, 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(() =>
{
// For default project
var main = Scaleway.GetMnqSqs.Invoke();
// For specific project
var forProject = Scaleway.GetMnqSqs.Invoke(new()
{
ProjectId = mainScalewayAccountProject.Id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scaleway.ScalewayFunctions;
import com.pulumi.scaleway.inputs.GetMnqSqsArgs;
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) {
// For default project
final var main = ScalewayFunctions.getMnqSqs();
// For specific project
final var forProject = ScalewayFunctions.getMnqSqs(GetMnqSqsArgs.builder()
.projectId(mainScalewayAccountProject.id())
.build());
}
}
variables:
# For default project
main:
fn::invoke:
Function: scaleway:getMnqSqs
Arguments: {}
# For specific project
forProject:
fn::invoke:
Function: scaleway:getMnqSqs
Arguments:
projectId: ${mainScalewayAccountProject.id}
Using getMnqSqs
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 getMnqSqs(args: GetMnqSqsArgs, opts?: InvokeOptions): Promise<GetMnqSqsResult>
function getMnqSqsOutput(args: GetMnqSqsOutputArgs, opts?: InvokeOptions): Output<GetMnqSqsResult>
def get_mnq_sqs(project_id: Optional[str] = None,
region: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetMnqSqsResult
def get_mnq_sqs_output(project_id: Optional[pulumi.Input[str]] = None,
region: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetMnqSqsResult]
func LookupMnqSqs(ctx *Context, args *LookupMnqSqsArgs, opts ...InvokeOption) (*LookupMnqSqsResult, error)
func LookupMnqSqsOutput(ctx *Context, args *LookupMnqSqsOutputArgs, opts ...InvokeOption) LookupMnqSqsResultOutput
> Note: This function is named LookupMnqSqs
in the Go SDK.
public static class GetMnqSqs
{
public static Task<GetMnqSqsResult> InvokeAsync(GetMnqSqsArgs args, InvokeOptions? opts = null)
public static Output<GetMnqSqsResult> Invoke(GetMnqSqsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetMnqSqsResult> getMnqSqs(GetMnqSqsArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: scaleway:index/getMnqSqs:getMnqSqs
arguments:
# arguments dictionary
The following arguments are supported:
- project_
id str project_id
) The ID of the Project in which SQS is enabled.- region str
region
). The region in which SQS is enabled.
getMnqSqs Result
The following output properties are available:
- endpoint str
- The endpoint of the SQS service for this Project.
- id str
- The provider-assigned unique ID for this managed resource.
- project_
id str - region str
Package Details
- Repository
- scaleway pulumiverse/pulumi-scaleway
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scaleway
Terraform Provider.