Interface ServiceBusProvisioner


public interface ServiceBusProvisioner
An interface to provision Service Bus entity resources.
  • Method Details

    • provisionQueue

      @Deprecated void provisionQueue(String namespace, String queue)
      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 void provisionTopic(String namespace, String topic)
      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

      void provisionQueue(String namespace, String queue, ServiceBusQueueProperties queueProperties)
      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

      void provisionTopic(String namespace, String topic, 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.
      topicProperties - the topic properties of the Service Bus.
    • provisionSubscription

      @Deprecated void provisionSubscription(String namespace, String topic, String subscription)
      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.