Alibaba Cloud
getQueues
This data source provides a list of MNS queues in an Alibaba Cloud account according to the specified parameters.
Example Usage
using Pulumi;
using AliCloud = Pulumi.AliCloud;
class MyStack : Stack
{
public MyStack()
{
var queues = Output.Create(AliCloud.Mns.GetQueues.InvokeAsync(new AliCloud.Mns.GetQueuesArgs
{
NamePrefix = "tf-",
}));
this.FirstQueueId = queues.Apply(queues => queues.Queues?[0]?.Id);
}
[Output("firstQueueId")]
public Output<string> FirstQueueId { get; set; }
}
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/mns"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
queues, err := mns.GetQueues(ctx, &mns.GetQueuesArgs{
NamePrefix: pulumi.StringRef("tf-"),
}, nil)
if err != nil {
return err
}
ctx.Export("firstQueueId", queues.Queues[0].Id)
return nil
})
}
Coming soon!
import pulumi
import pulumi_alicloud as alicloud
queues = alicloud.mns.get_queues(name_prefix="tf-")
pulumi.export("firstQueueId", queues.queues[0].id)
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const queues = pulumi.output(alicloud.mns.getQueues({
namePrefix: "tf-",
}));
export const firstQueueId = queues.queues[0].id;
Coming soon!
Using getQueues
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 getQueues(args: GetQueuesArgs, opts?: InvokeOptions): Promise<GetQueuesResult>
function getQueuesOutput(args: GetQueuesOutputArgs, opts?: InvokeOptions): Output<GetQueuesResult>
def get_queues(name_prefix: Optional[str] = None,
output_file: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetQueuesResult
def get_queues_output(name_prefix: Optional[pulumi.Input[str]] = None,
output_file: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetQueuesResult]
func GetQueues(ctx *Context, args *GetQueuesArgs, opts ...InvokeOption) (*GetQueuesResult, error)
func GetQueuesOutput(ctx *Context, args *GetQueuesOutputArgs, opts ...InvokeOption) GetQueuesResultOutput
> Note: This function is named GetQueues
in the Go SDK.
public static class GetQueues
{
public static Task<GetQueuesResult> InvokeAsync(GetQueuesArgs args, InvokeOptions? opts = null)
public static Output<GetQueuesResult> Invoke(GetQueuesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetQueuesResult> getQueues(GetQueuesArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
Fn::Invoke:
Function: alicloud:mns/getQueues:getQueues
Arguments:
# Arguments dictionary
The following arguments are supported:
- Name
Prefix string A string to filter resulting queues by their name prefixs.
- Output
File string
- Name
Prefix string A string to filter resulting queues by their name prefixs.
- Output
File string
- name
Prefix String A string to filter resulting queues by their name prefixs.
- output
File String
- name
Prefix string A string to filter resulting queues by their name prefixs.
- output
File string
- name_
prefix str A string to filter resulting queues by their name prefixs.
- output_
file str
- name
Prefix String A string to filter resulting queues by their name prefixs.
- output
File String
getQueues Result
The following output properties are available:
- Id string
The provider-assigned unique ID for this managed resource.
- Names List<string>
A list of queue names.
- Queues
List<Pulumi.
Ali Cloud. Mns. Outputs. Get Queues Queue> A list of queues. Each element contains the following attributes:
- Name
Prefix string - Output
File string
- Id string
The provider-assigned unique ID for this managed resource.
- Names []string
A list of queue names.
- Queues
[]Get
Queues Queue A list of queues. Each element contains the following attributes:
- Name
Prefix string - Output
File string
- id String
The provider-assigned unique ID for this managed resource.
- names
List
A list of queue names.
- queues
List
Queues Queue> A list of queues. Each element contains the following attributes:
- name
Prefix String - output
File String
- id string
The provider-assigned unique ID for this managed resource.
- names string[]
A list of queue names.
- queues
Get
Queues Queue[] A list of queues. Each element contains the following attributes:
- name
Prefix string - output
File string
- id str
The provider-assigned unique ID for this managed resource.
- names Sequence[str]
A list of queue names.
- queues
Sequence[Get
Queues Queue] A list of queues. Each element contains the following attributes:
- name_
prefix str - output_
file str
- id String
The provider-assigned unique ID for this managed resource.
- names
List
A list of queue names.
- queues
List
A list of queues. Each element contains the following attributes:
- name
Prefix String - output
File String
Supporting Types
GetQueuesQueue
- Delay
Seconds int This attribute defines the length of time, in seconds, after which every message sent to the queue is dequeued.
- Id string
The id of the queue, The value is set to
name
.- Maximum
Message intSize This indicates the maximum length, in bytes, of any message body sent to the queue.
- Message
Retention intPeriod Messages are deleted from the queue after a specified length of time, whether they have been activated or not. This attribute defines the viability period, in seconds, for every message in the queue.
- Name string
The name of the queue
- Polling
Wait intSeconds Long polling is measured in seconds. When this attribute is set to 0, long polling is disabled. When it is not set to 0, long polling is enabled and message dequeue requests will be processed only when valid messages are received or when long polling times out.
- Visibility
Timeouts int Dequeued messages change from active (visible) status to inactive (invisible) status. This attribute defines the length of time, in seconds, that messages remain invisible. Messages return to active status after the set period.
- Delay
Seconds int This attribute defines the length of time, in seconds, after which every message sent to the queue is dequeued.
- Id string
The id of the queue, The value is set to
name
.- Maximum
Message intSize This indicates the maximum length, in bytes, of any message body sent to the queue.
- Message
Retention intPeriod Messages are deleted from the queue after a specified length of time, whether they have been activated or not. This attribute defines the viability period, in seconds, for every message in the queue.
- Name string
The name of the queue
- Polling
Wait intSeconds Long polling is measured in seconds. When this attribute is set to 0, long polling is disabled. When it is not set to 0, long polling is enabled and message dequeue requests will be processed only when valid messages are received or when long polling times out.
- Visibility
Timeouts int Dequeued messages change from active (visible) status to inactive (invisible) status. This attribute defines the length of time, in seconds, that messages remain invisible. Messages return to active status after the set period.
- delay
Seconds Integer This attribute defines the length of time, in seconds, after which every message sent to the queue is dequeued.
- id String
The id of the queue, The value is set to
name
.- maximum
Message IntegerSize This indicates the maximum length, in bytes, of any message body sent to the queue.
- message
Retention IntegerPeriod Messages are deleted from the queue after a specified length of time, whether they have been activated or not. This attribute defines the viability period, in seconds, for every message in the queue.
- name String
The name of the queue
- polling
Wait IntegerSeconds Long polling is measured in seconds. When this attribute is set to 0, long polling is disabled. When it is not set to 0, long polling is enabled and message dequeue requests will be processed only when valid messages are received or when long polling times out.
- visibility
Timeouts Integer Dequeued messages change from active (visible) status to inactive (invisible) status. This attribute defines the length of time, in seconds, that messages remain invisible. Messages return to active status after the set period.
- delay
Seconds number This attribute defines the length of time, in seconds, after which every message sent to the queue is dequeued.
- id string
The id of the queue, The value is set to
name
.- maximum
Message numberSize This indicates the maximum length, in bytes, of any message body sent to the queue.
- message
Retention numberPeriod Messages are deleted from the queue after a specified length of time, whether they have been activated or not. This attribute defines the viability period, in seconds, for every message in the queue.
- name string
The name of the queue
- polling
Wait numberSeconds Long polling is measured in seconds. When this attribute is set to 0, long polling is disabled. When it is not set to 0, long polling is enabled and message dequeue requests will be processed only when valid messages are received or when long polling times out.
- visibility
Timeouts number Dequeued messages change from active (visible) status to inactive (invisible) status. This attribute defines the length of time, in seconds, that messages remain invisible. Messages return to active status after the set period.
- delay_
seconds int This attribute defines the length of time, in seconds, after which every message sent to the queue is dequeued.
- id str
The id of the queue, The value is set to
name
.- maximum_
message_ intsize This indicates the maximum length, in bytes, of any message body sent to the queue.
- message_
retention_ intperiod Messages are deleted from the queue after a specified length of time, whether they have been activated or not. This attribute defines the viability period, in seconds, for every message in the queue.
- name str
The name of the queue
- polling_
wait_ intseconds Long polling is measured in seconds. When this attribute is set to 0, long polling is disabled. When it is not set to 0, long polling is enabled and message dequeue requests will be processed only when valid messages are received or when long polling times out.
- visibility_
timeouts int Dequeued messages change from active (visible) status to inactive (invisible) status. This attribute defines the length of time, in seconds, that messages remain invisible. Messages return to active status after the set period.
- delay
Seconds Number This attribute defines the length of time, in seconds, after which every message sent to the queue is dequeued.
- id String
The id of the queue, The value is set to
name
.- maximum
Message NumberSize This indicates the maximum length, in bytes, of any message body sent to the queue.
- message
Retention NumberPeriod Messages are deleted from the queue after a specified length of time, whether they have been activated or not. This attribute defines the viability period, in seconds, for every message in the queue.
- name String
The name of the queue
- polling
Wait NumberSeconds Long polling is measured in seconds. When this attribute is set to 0, long polling is disabled. When it is not set to 0, long polling is enabled and message dequeue requests will be processed only when valid messages are received or when long polling times out.
- visibility
Timeouts Number Dequeued messages change from active (visible) status to inactive (invisible) status. This attribute defines the length of time, in seconds, that messages remain invisible. Messages return to active status after the set period.
Package Details
- Repository
- https://github.com/pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
alicloud
Terraform Provider.