Interface ServiceBusNamespace.UpdateStages.WithTopic
-
- All Known Subinterfaces:
ServiceBusNamespace.Update
- Enclosing interface:
- ServiceBusNamespace.UpdateStages
public static interface ServiceBusNamespace.UpdateStages.WithTopicThe stage of the Service Bus namespace update allowing to manage topics in the namespace.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ServiceBusNamespace.UpdatewithNewTopic(String name, int maxSizeInMB)Creates a topic entity in the Service Bus namespace.ServiceBusNamespace.UpdatewithoutTopic(String name)Removes a topic entity from the Service Bus namespace.
-
-
-
Method Detail
-
withNewTopic
ServiceBusNamespace.Update withNewTopic(String name, int maxSizeInMB)
Creates a topic entity in the Service Bus namespace.- Parameters:
name- topic namemaxSizeInMB- maximum size of memory allocated for the topic entity- Returns:
- next stage of the Service Bus namespace update
-
withoutTopic
ServiceBusNamespace.Update withoutTopic(String name)
Removes a topic entity from the Service Bus namespace.- Parameters:
name- topic name- Returns:
- next stage of the Service Bus namespace update
-
-