We recommend using Azure Native.
Azure Classic v6.2.0 published on Friday, Sep 27, 2024 by Pulumi
azure.servicebus.getQueue
Explore with Pulumi AI
Use this data source to access information about an existing Service Bus Queue.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = azure.servicebus.getQueue({
name: "existing",
namespaceId: "existing",
});
export const id = example.then(example => example.id);
import pulumi
import pulumi_azure as azure
example = azure.servicebus.get_queue(name="existing",
namespace_id="existing")
pulumi.export("id", example.id)
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/servicebus"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := servicebus.LookupQueue(ctx, &servicebus.LookupQueueArgs{
Name: "existing",
NamespaceId: pulumi.StringRef("existing"),
}, nil)
if err != nil {
return err
}
ctx.Export("id", example.Id)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var example = Azure.ServiceBus.GetQueue.Invoke(new()
{
Name = "existing",
NamespaceId = "existing",
});
return new Dictionary<string, object?>
{
["id"] = example.Apply(getQueueResult => getQueueResult.Id),
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.servicebus.ServicebusFunctions;
import com.pulumi.azure.servicebus.inputs.GetQueueArgs;
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) {
final var example = ServicebusFunctions.getQueue(GetQueueArgs.builder()
.name("existing")
.namespaceId("existing")
.build());
ctx.export("id", example.applyValue(getQueueResult -> getQueueResult.id()));
}
}
variables:
example:
fn::invoke:
Function: azure:servicebus:getQueue
Arguments:
name: existing
namespaceId: existing
outputs:
id: ${example.id}
Using getQueue
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 getQueue(args: GetQueueArgs, opts?: InvokeOptions): Promise<GetQueueResult>
function getQueueOutput(args: GetQueueOutputArgs, opts?: InvokeOptions): Output<GetQueueResult>
def get_queue(name: Optional[str] = None,
namespace_id: Optional[str] = None,
namespace_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetQueueResult
def get_queue_output(name: Optional[pulumi.Input[str]] = None,
namespace_id: Optional[pulumi.Input[str]] = None,
namespace_name: Optional[pulumi.Input[str]] = None,
resource_group_name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetQueueResult]
func LookupQueue(ctx *Context, args *LookupQueueArgs, opts ...InvokeOption) (*LookupQueueResult, error)
func LookupQueueOutput(ctx *Context, args *LookupQueueOutputArgs, opts ...InvokeOption) LookupQueueResultOutput
> Note: This function is named LookupQueue
in the Go SDK.
public static class GetQueue
{
public static Task<GetQueueResult> InvokeAsync(GetQueueArgs args, InvokeOptions? opts = null)
public static Output<GetQueueResult> Invoke(GetQueueInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetQueueResult> getQueue(GetQueueArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: azure:servicebus/getQueue:getQueue
arguments:
# arguments dictionary
The following arguments are supported:
- Name string
- The name of this Service Bus Queue.
- Namespace
Id string - The ID of the ServiceBus Namespace where the Service Bus Queue exists.
- Namespace
Name string - Resource
Group stringName
- Name string
- The name of this Service Bus Queue.
- Namespace
Id string - The ID of the ServiceBus Namespace where the Service Bus Queue exists.
- Namespace
Name string - Resource
Group stringName
- name String
- The name of this Service Bus Queue.
- namespace
Id String - The ID of the ServiceBus Namespace where the Service Bus Queue exists.
- namespace
Name String - resource
Group StringName
- name string
- The name of this Service Bus Queue.
- namespace
Id string - The ID of the ServiceBus Namespace where the Service Bus Queue exists.
- namespace
Name string - resource
Group stringName
- name str
- The name of this Service Bus Queue.
- namespace_
id str - The ID of the ServiceBus Namespace where the Service Bus Queue exists.
- namespace_
name str - resource_
group_ strname
- name String
- The name of this Service Bus Queue.
- namespace
Id String - The ID of the ServiceBus Namespace where the Service Bus Queue exists.
- namespace
Name String - resource
Group StringName
getQueue Result
The following output properties are available:
- Auto
Delete stringOn Idle - The ISO 8601 timespan duration of the idle interval after which the Queue is automatically deleted, minimum of 5 minutes.
- Dead
Lettering boolOn Message Expiration - Boolean flag which controls whether the Queue has dead letter support when a message expires.
- Default
Message stringTtl - The ISO 8601 timespan duration of the TTL of messages sent to this queue. This is the default value used when TTL is not set on a message itself.
- Duplicate
Detection stringHistory Time Window - The ISO 8601 timespan duration during which duplicates can be detected.
- Enable
Batched boolOperations - Boolean flag which controls whether server-side batched operations are enabled.
- Enable
Express bool - Boolean flag which controls whether Express Entities are enabled. An express queue holds a message in memory temporarily before writing it to persistent storage.
- Enable
Partitioning bool - Boolean flag which controls whether to enable the queue to be partitioned across multiple message brokers.
- Forward
Dead stringLettered Messages To - The name of a Queue or Topic to automatically forward dead lettered messages to.
- Forward
To string - The name of a Queue or Topic to automatically forward messages to. Please see the documentation for more information.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lock
Duration string - The ISO 8601 timespan duration of a peek-lock; that is, the amount of time that the message is locked for other receivers.
- Max
Delivery intCount - Integer value which controls when a message is automatically dead lettered.
- Max
Size intIn Megabytes - Integer value which controls the size of memory allocated for the queue. For supported values see the "Queue or topic size" section of Service Bus Quotas.
- Name string
- Requires
Duplicate boolDetection - Boolean flag which controls whether the Queue requires duplicate detection.
- Requires
Session bool - Boolean flag which controls whether the Queue requires sessions. This will allow ordered handling of unbounded sequences of related messages. With sessions enabled a queue can guarantee first-in-first-out delivery of messages.
- Status string
- The status of the Queue. Possible values are
Active
,Creating
,Deleting
,Disabled
,ReceiveDisabled
,Renaming
,SendDisabled
,Unknown
. - Namespace
Id string - Namespace
Name string - Resource
Group stringName
- Auto
Delete stringOn Idle - The ISO 8601 timespan duration of the idle interval after which the Queue is automatically deleted, minimum of 5 minutes.
- Dead
Lettering boolOn Message Expiration - Boolean flag which controls whether the Queue has dead letter support when a message expires.
- Default
Message stringTtl - The ISO 8601 timespan duration of the TTL of messages sent to this queue. This is the default value used when TTL is not set on a message itself.
- Duplicate
Detection stringHistory Time Window - The ISO 8601 timespan duration during which duplicates can be detected.
- Enable
Batched boolOperations - Boolean flag which controls whether server-side batched operations are enabled.
- Enable
Express bool - Boolean flag which controls whether Express Entities are enabled. An express queue holds a message in memory temporarily before writing it to persistent storage.
- Enable
Partitioning bool - Boolean flag which controls whether to enable the queue to be partitioned across multiple message brokers.
- Forward
Dead stringLettered Messages To - The name of a Queue or Topic to automatically forward dead lettered messages to.
- Forward
To string - The name of a Queue or Topic to automatically forward messages to. Please see the documentation for more information.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lock
Duration string - The ISO 8601 timespan duration of a peek-lock; that is, the amount of time that the message is locked for other receivers.
- Max
Delivery intCount - Integer value which controls when a message is automatically dead lettered.
- Max
Size intIn Megabytes - Integer value which controls the size of memory allocated for the queue. For supported values see the "Queue or topic size" section of Service Bus Quotas.
- Name string
- Requires
Duplicate boolDetection - Boolean flag which controls whether the Queue requires duplicate detection.
- Requires
Session bool - Boolean flag which controls whether the Queue requires sessions. This will allow ordered handling of unbounded sequences of related messages. With sessions enabled a queue can guarantee first-in-first-out delivery of messages.
- Status string
- The status of the Queue. Possible values are
Active
,Creating
,Deleting
,Disabled
,ReceiveDisabled
,Renaming
,SendDisabled
,Unknown
. - Namespace
Id string - Namespace
Name string - Resource
Group stringName
- auto
Delete StringOn Idle - The ISO 8601 timespan duration of the idle interval after which the Queue is automatically deleted, minimum of 5 minutes.
- dead
Lettering BooleanOn Message Expiration - Boolean flag which controls whether the Queue has dead letter support when a message expires.
- default
Message StringTtl - The ISO 8601 timespan duration of the TTL of messages sent to this queue. This is the default value used when TTL is not set on a message itself.
- duplicate
Detection StringHistory Time Window - The ISO 8601 timespan duration during which duplicates can be detected.
- enable
Batched BooleanOperations - Boolean flag which controls whether server-side batched operations are enabled.
- enable
Express Boolean - Boolean flag which controls whether Express Entities are enabled. An express queue holds a message in memory temporarily before writing it to persistent storage.
- enable
Partitioning Boolean - Boolean flag which controls whether to enable the queue to be partitioned across multiple message brokers.
- forward
Dead StringLettered Messages To - The name of a Queue or Topic to automatically forward dead lettered messages to.
- forward
To String - The name of a Queue or Topic to automatically forward messages to. Please see the documentation for more information.
- id String
- The provider-assigned unique ID for this managed resource.
- lock
Duration String - The ISO 8601 timespan duration of a peek-lock; that is, the amount of time that the message is locked for other receivers.
- max
Delivery IntegerCount - Integer value which controls when a message is automatically dead lettered.
- max
Size IntegerIn Megabytes - Integer value which controls the size of memory allocated for the queue. For supported values see the "Queue or topic size" section of Service Bus Quotas.
- name String
- requires
Duplicate BooleanDetection - Boolean flag which controls whether the Queue requires duplicate detection.
- requires
Session Boolean - Boolean flag which controls whether the Queue requires sessions. This will allow ordered handling of unbounded sequences of related messages. With sessions enabled a queue can guarantee first-in-first-out delivery of messages.
- status String
- The status of the Queue. Possible values are
Active
,Creating
,Deleting
,Disabled
,ReceiveDisabled
,Renaming
,SendDisabled
,Unknown
. - namespace
Id String - namespace
Name String - resource
Group StringName
- auto
Delete stringOn Idle - The ISO 8601 timespan duration of the idle interval after which the Queue is automatically deleted, minimum of 5 minutes.
- dead
Lettering booleanOn Message Expiration - Boolean flag which controls whether the Queue has dead letter support when a message expires.
- default
Message stringTtl - The ISO 8601 timespan duration of the TTL of messages sent to this queue. This is the default value used when TTL is not set on a message itself.
- duplicate
Detection stringHistory Time Window - The ISO 8601 timespan duration during which duplicates can be detected.
- enable
Batched booleanOperations - Boolean flag which controls whether server-side batched operations are enabled.
- enable
Express boolean - Boolean flag which controls whether Express Entities are enabled. An express queue holds a message in memory temporarily before writing it to persistent storage.
- enable
Partitioning boolean - Boolean flag which controls whether to enable the queue to be partitioned across multiple message brokers.
- forward
Dead stringLettered Messages To - The name of a Queue or Topic to automatically forward dead lettered messages to.
- forward
To string - The name of a Queue or Topic to automatically forward messages to. Please see the documentation for more information.
- id string
- The provider-assigned unique ID for this managed resource.
- lock
Duration string - The ISO 8601 timespan duration of a peek-lock; that is, the amount of time that the message is locked for other receivers.
- max
Delivery numberCount - Integer value which controls when a message is automatically dead lettered.
- max
Size numberIn Megabytes - Integer value which controls the size of memory allocated for the queue. For supported values see the "Queue or topic size" section of Service Bus Quotas.
- name string
- requires
Duplicate booleanDetection - Boolean flag which controls whether the Queue requires duplicate detection.
- requires
Session boolean - Boolean flag which controls whether the Queue requires sessions. This will allow ordered handling of unbounded sequences of related messages. With sessions enabled a queue can guarantee first-in-first-out delivery of messages.
- status string
- The status of the Queue. Possible values are
Active
,Creating
,Deleting
,Disabled
,ReceiveDisabled
,Renaming
,SendDisabled
,Unknown
. - namespace
Id string - namespace
Name string - resource
Group stringName
- auto_
delete_ stron_ idle - The ISO 8601 timespan duration of the idle interval after which the Queue is automatically deleted, minimum of 5 minutes.
- dead_
lettering_ boolon_ message_ expiration - Boolean flag which controls whether the Queue has dead letter support when a message expires.
- default_
message_ strttl - The ISO 8601 timespan duration of the TTL of messages sent to this queue. This is the default value used when TTL is not set on a message itself.
- duplicate_
detection_ strhistory_ time_ window - The ISO 8601 timespan duration during which duplicates can be detected.
- enable_
batched_ booloperations - Boolean flag which controls whether server-side batched operations are enabled.
- enable_
express bool - Boolean flag which controls whether Express Entities are enabled. An express queue holds a message in memory temporarily before writing it to persistent storage.
- enable_
partitioning bool - Boolean flag which controls whether to enable the queue to be partitioned across multiple message brokers.
- forward_
dead_ strlettered_ messages_ to - The name of a Queue or Topic to automatically forward dead lettered messages to.
- forward_
to str - The name of a Queue or Topic to automatically forward messages to. Please see the documentation for more information.
- id str
- The provider-assigned unique ID for this managed resource.
- lock_
duration str - The ISO 8601 timespan duration of a peek-lock; that is, the amount of time that the message is locked for other receivers.
- max_
delivery_ intcount - Integer value which controls when a message is automatically dead lettered.
- max_
size_ intin_ megabytes - Integer value which controls the size of memory allocated for the queue. For supported values see the "Queue or topic size" section of Service Bus Quotas.
- name str
- requires_
duplicate_ booldetection - Boolean flag which controls whether the Queue requires duplicate detection.
- requires_
session bool - Boolean flag which controls whether the Queue requires sessions. This will allow ordered handling of unbounded sequences of related messages. With sessions enabled a queue can guarantee first-in-first-out delivery of messages.
- status str
- The status of the Queue. Possible values are
Active
,Creating
,Deleting
,Disabled
,ReceiveDisabled
,Renaming
,SendDisabled
,Unknown
. - namespace_
id str - namespace_
name str - resource_
group_ strname
- auto
Delete StringOn Idle - The ISO 8601 timespan duration of the idle interval after which the Queue is automatically deleted, minimum of 5 minutes.
- dead
Lettering BooleanOn Message Expiration - Boolean flag which controls whether the Queue has dead letter support when a message expires.
- default
Message StringTtl - The ISO 8601 timespan duration of the TTL of messages sent to this queue. This is the default value used when TTL is not set on a message itself.
- duplicate
Detection StringHistory Time Window - The ISO 8601 timespan duration during which duplicates can be detected.
- enable
Batched BooleanOperations - Boolean flag which controls whether server-side batched operations are enabled.
- enable
Express Boolean - Boolean flag which controls whether Express Entities are enabled. An express queue holds a message in memory temporarily before writing it to persistent storage.
- enable
Partitioning Boolean - Boolean flag which controls whether to enable the queue to be partitioned across multiple message brokers.
- forward
Dead StringLettered Messages To - The name of a Queue or Topic to automatically forward dead lettered messages to.
- forward
To String - The name of a Queue or Topic to automatically forward messages to. Please see the documentation for more information.
- id String
- The provider-assigned unique ID for this managed resource.
- lock
Duration String - The ISO 8601 timespan duration of a peek-lock; that is, the amount of time that the message is locked for other receivers.
- max
Delivery NumberCount - Integer value which controls when a message is automatically dead lettered.
- max
Size NumberIn Megabytes - Integer value which controls the size of memory allocated for the queue. For supported values see the "Queue or topic size" section of Service Bus Quotas.
- name String
- requires
Duplicate BooleanDetection - Boolean flag which controls whether the Queue requires duplicate detection.
- requires
Session Boolean - Boolean flag which controls whether the Queue requires sessions. This will allow ordered handling of unbounded sequences of related messages. With sessions enabled a queue can guarantee first-in-first-out delivery of messages.
- status String
- The status of the Queue. Possible values are
Active
,Creating
,Deleting
,Disabled
,ReceiveDisabled
,Renaming
,SendDisabled
,Unknown
. - namespace
Id String - namespace
Name String - resource
Group StringName
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurerm
Terraform Provider.