Compartir a través de


ServiceBusNamespace Interface

Implements

public interface ServiceBusNamespace
extends GroupableResource<ServiceBusManager,SBNamespaceInner>, Refreshable<ServiceBusNamespace>, Updatable<Update>

An immutable client-side representation of an Azure Service Bus namespace.

Method Summary

Modifier and Type Method and Description
abstract NamespaceAuthorizationRules authorizationRules()

Gets entry point to manage authorization rules for the Service Bus namespace.

abstract OffsetDateTime createdAt()

Gets time the namespace was created.

abstract String dnsLabel()

Gets the relative DNS name of the Service Bus namespace.

abstract String fqdn()

Gets the fully qualified domain name (FQDN) of the Service Bus namespace.

abstract Queues queues()

Gets entry point to manage queue entities in the Service Bus namespace.

abstract NamespaceSku sku()

Gets SKU.

abstract Topics topics()

Gets entry point to manage topics entities in the Service Bus namespace.

abstract OffsetDateTime updatedAt()

Gets time the namespace was updated.

Method Details

authorizationRules

public abstract NamespaceAuthorizationRules authorizationRules()

Gets entry point to manage authorization rules for the Service Bus namespace.

Returns:

entry point to manage authorization rules for the Service Bus namespace

createdAt

public abstract OffsetDateTime createdAt()

Gets time the namespace was created.

Returns:

time the namespace was created

dnsLabel

public abstract String dnsLabel()

Gets the relative DNS name of the Service Bus namespace.

Returns:

the relative DNS name of the Service Bus namespace

fqdn

public abstract String fqdn()

Gets the fully qualified domain name (FQDN) of the Service Bus namespace.

Returns:

fully qualified domain name (FQDN) of the Service Bus namespace

queues

public abstract Queues queues()

Gets entry point to manage queue entities in the Service Bus namespace.

Returns:

entry point to manage queue entities in the Service Bus namespace

sku

public abstract NamespaceSku sku()

Gets SKU.

Returns:

sku value

topics

public abstract Topics topics()

Gets entry point to manage topics entities in the Service Bus namespace.

Returns:

entry point to manage topics entities in the Service Bus namespace

updatedAt

public abstract OffsetDateTime updatedAt()

Gets time the namespace was updated.

Returns:

time the namespace was updated

Applies to