@pulumiverse/scaleway
Version:
A Pulumi package for creating and managing Scaleway cloud resources.
85 lines (84 loc) • 2.31 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Gets information about SQS for a Project
*
* ## Examples
*
* ### Basic
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as scaleway from "@pulumi/scaleway";
*
* // For default project
* const main = scaleway.mnq.getSqs({});
* // For specific project
* const forProject = scaleway.mnq.getSqs({
* projectId: mainScalewayAccountProject.id,
* });
* ```
*/
/** @deprecated scaleway.index/getmnqsqs.getMnqSqs has been deprecated in favor of scaleway.mnq/getsqs.getSqs */
export declare function getMnqSqs(args?: GetMnqSqsArgs, opts?: pulumi.InvokeOptions): Promise<GetMnqSqsResult>;
/**
* A collection of arguments for invoking getMnqSqs.
*/
export interface GetMnqSqsArgs {
/**
* `projectId`) The ID of the Project in which SQS is enabled.
*/
projectId?: string;
/**
* `region`). The region in which SQS is enabled.
*/
region?: string;
}
/**
* A collection of values returned by getMnqSqs.
*/
export interface GetMnqSqsResult {
/**
* The endpoint of the SQS service for this Project.
*/
readonly endpoint: string;
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly projectId?: string;
readonly region?: string;
}
/**
* Gets information about SQS for a Project
*
* ## Examples
*
* ### Basic
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as scaleway from "@pulumi/scaleway";
*
* // For default project
* const main = scaleway.mnq.getSqs({});
* // For specific project
* const forProject = scaleway.mnq.getSqs({
* projectId: mainScalewayAccountProject.id,
* });
* ```
*/
/** @deprecated scaleway.index/getmnqsqs.getMnqSqs has been deprecated in favor of scaleway.mnq/getsqs.getSqs */
export declare function getMnqSqsOutput(args?: GetMnqSqsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetMnqSqsResult>;
/**
* A collection of arguments for invoking getMnqSqs.
*/
export interface GetMnqSqsOutputArgs {
/**
* `projectId`) The ID of the Project in which SQS is enabled.
*/
projectId?: pulumi.Input<string>;
/**
* `region`). The region in which SQS is enabled.
*/
region?: pulumi.Input<string>;
}