Interface ServiceBusProvisioner
public interface ServiceBusProvisioner
An interface to provision Service Bus entity resources.
-
Method Summary
Modifier and TypeMethodDescriptionvoidprovisionQueue(String namespace, String queue) Deprecated.voidprovisionQueue(String namespace, String queue, ServiceBusQueueProperties queueProperties) Provision the namespace and queue of the Service Bus.voidprovisionSubscription(String namespace, String topic, String subscription) Deprecated.voidprovisionSubscription(String namespace, String topic, String subscription, ServiceBusTopicProperties topicProperties) Provision the namespace and topic of the Service Bus.voidprovisionTopic(String namespace, String topic) Deprecated.voidprovisionTopic(String namespace, String topic, ServiceBusTopicProperties topicProperties) Provision the namespace and topic of the Service Bus.
-
Method Details
-
provisionQueue
Deprecated.Provision the namespace and queue of the Service Bus.- Parameters:
namespace- the namespace of the Service Bus.queue- the queue of the Service Bus.
-
provisionTopic
Deprecated.Provision the namespace and topic of the Service Bus.- Parameters:
namespace- the namespace of the Service Bus.topic- the topic of the Service Bus.
-
provisionQueue
Provision the namespace and queue of the Service Bus.- Parameters:
namespace- the namespace of the Service Bus.queue- the queue of the Service Bus.queueProperties- the queue properties of the Service Bus.
-
provisionTopic
Provision the namespace and topic of the Service Bus.- Parameters:
namespace- the namespace of the Service Bus.topic- the topic of the Service Bus.topicProperties- the topic properties of the Service Bus.
-
provisionSubscription
Deprecated.Provision the namespace and topic of the Service Bus.- Parameters:
namespace- the namespace of the Service Bus.topic- the topic of the Service Bus.subscription- the subscription of the topic.
-
provisionSubscription
void provisionSubscription(String namespace, String topic, String subscription, ServiceBusTopicProperties topicProperties) Provision the namespace and topic of the Service Bus.- Parameters:
namespace- the namespace of the Service Bus.topic- the topic of the Service Bus.subscription- the subscription of the topic.topicProperties- the topic properties of the Service Bus.
-
provisionQueue(String, String, ServiceBusQueueProperties)instead.