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; }
}
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-",
}, { async: true }));
export const firstQueueId = queues.queues[0].id;Using GetQueues
function getQueues(args: GetQueuesArgs, opts?: InvokeOptions): Promise<GetQueuesResult>function get_queues(name_prefix=None, output_file=None, opts=None)func GetQueues(ctx *Context, args *GetQueuesArgs, opts ...InvokeOption) (*GetQueuesResult, error)public static class GetQueues {
public static Task<GetQueuesResult> InvokeAsync(GetQueuesArgs args, InvokeOptions? opts = null)
}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 str A string to filter resulting queues by their name prefixs.
- output_
file str
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 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 List[str]
A list of queue names.
- queues
List[Get
Queues Queue] A list of queues. Each element contains the following attributes:
- name_
prefix str - output_
file str
Supporting Types
GetQueuesQueue
See the output API doc for this type.
See the output API doc for this type.
See the output API doc for this type.
- 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 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 float 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_ floatsize This indicates the maximum length, in bytes, of any message body sent to the queue.
- message_
retention_ floatperiod 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_ floatseconds 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 float 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
alicloudTerraform Provider.