GetQueueResult

data class GetQueueResult(val accessedAt: String, val autoDeleteOnIdle: String? = null, val azureApiVersion: String, val countDetails: MessageCountDetailsResponse, val createdAt: String, val deadLetteringOnMessageExpiration: Boolean? = null, val defaultMessageTimeToLive: String? = null, val duplicateDetectionHistoryTimeWindow: String? = null, val enableBatchedOperations: Boolean? = null, val enableExpress: Boolean? = null, val enablePartitioning: Boolean? = null, val forwardDeadLetteredMessagesTo: String? = null, val forwardTo: String? = null, val id: String, val location: String, val lockDuration: String? = null, val maxDeliveryCount: Int? = null, val maxMessageSizeInKilobytes: Double? = null, val maxSizeInMegabytes: Int? = null, val messageCount: Double, val name: String, val requiresDuplicateDetection: Boolean? = null, val requiresSession: Boolean? = null, val sizeInBytes: Double, val status: String? = null, val systemData: SystemDataResponse, val type: String, val updatedAt: String)

Description of queue Resource.

Constructors

Link copied to clipboard
constructor(accessedAt: String, autoDeleteOnIdle: String? = null, azureApiVersion: String, countDetails: MessageCountDetailsResponse, createdAt: String, deadLetteringOnMessageExpiration: Boolean? = null, defaultMessageTimeToLive: String? = null, duplicateDetectionHistoryTimeWindow: String? = null, enableBatchedOperations: Boolean? = null, enableExpress: Boolean? = null, enablePartitioning: Boolean? = null, forwardDeadLetteredMessagesTo: String? = null, forwardTo: String? = null, id: String, location: String, lockDuration: String? = null, maxDeliveryCount: Int? = null, maxMessageSizeInKilobytes: Double? = null, maxSizeInMegabytes: Int? = null, messageCount: Double, name: String, requiresDuplicateDetection: Boolean? = null, requiresSession: Boolean? = null, sizeInBytes: Double, status: String? = null, systemData: SystemDataResponse, type: String, updatedAt: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Last time a message was sent, or the last time there was a receive request to this queue.

Link copied to clipboard

ISO 8061 timeSpan idle interval after which the queue is automatically deleted. The minimum duration is 5 minutes.

Link copied to clipboard

The Azure API version of the resource.

Link copied to clipboard

Message Count Details.

Link copied to clipboard

The exact time the message was created.

Link copied to clipboard

A value that indicates whether this queue has dead letter support when a message expires.

Link copied to clipboard

ISO 8601 default message timespan to live value. This is the duration after which the message expires, starting from when the message is sent to Service Bus. This is the default value used when TimeToLive is not set on a message itself.

Link copied to clipboard

ISO 8601 timeSpan structure that defines the duration of the duplicate detection history. The default value is 10 minutes.

Link copied to clipboard

Value that indicates whether server-side batched operations are enabled.

Link copied to clipboard
val enableExpress: Boolean? = null

A value that indicates whether Express Entities are enabled. An express queue holds a message in memory temporarily before writing it to persistent storage.

Link copied to clipboard

A value that indicates whether the queue is to be partitioned across multiple message brokers.

Link copied to clipboard

Queue/Topic name to forward the Dead Letter message

Link copied to clipboard
val forwardTo: String? = null

Queue/Topic name to forward the messages

Link copied to clipboard
val id: String

Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}

Link copied to clipboard

The geo-location where the resource lives

Link copied to clipboard
val lockDuration: String? = null

ISO 8601 timespan duration of a peek-lock; that is, the amount of time that the message is locked for other receivers. The maximum value for LockDuration is 5 minutes; the default value is 1 minute.

Link copied to clipboard
val maxDeliveryCount: Int? = null

The maximum delivery count. A message is automatically deadlettered after this number of deliveries. default value is 10.

Link copied to clipboard

Maximum size (in KB) of the message payload that can be accepted by the queue. This property is only used in Premium today and default is 1024.

Link copied to clipboard
val maxSizeInMegabytes: Int? = null

The maximum size of the queue in megabytes, which is the size of memory allocated for the queue. Default is 1024.

Link copied to clipboard

The number of messages in the queue.

Link copied to clipboard

The name of the resource

Link copied to clipboard

A value indicating if this queue requires duplicate detection.

Link copied to clipboard

A value that indicates whether the queue supports the concept of sessions.

Link copied to clipboard

The size of the queue, in bytes.

Link copied to clipboard
val status: String? = null

Enumerates the possible values for the status of a messaging entity.

Link copied to clipboard

The system meta data relating to this resource.

Link copied to clipboard

The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"

Link copied to clipboard

The exact time the message was updated.