Interface EventHub.UpdateStages.WithConsumerGroup
-
- All Known Subinterfaces:
EventHub.Update
- Enclosing interface:
- EventHub.UpdateStages
@Beta(V1_7_0) public static interface EventHub.UpdateStages.WithConsumerGroupThe stage of the event hub update allowing to add consumer group for event hub.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EventHub.UpdatewithNewConsumerGroup(String name)Specifies that a new consumer group should be created for the event hub.EventHub.UpdatewithNewConsumerGroup(String name, String metadata)Specifies that a new consumer group should be created for the event hub.EventHub.UpdatewithoutConsumerGroup(String name)Specifies that a consumer group associated with the event hub should be deleted.
-
-
-
Method Detail
-
withNewConsumerGroup
@Beta(V1_7_0) EventHub.Update withNewConsumerGroup(String name)
Specifies that a new consumer group should be created for the event hub.- Parameters:
name- group name- Returns:
- next stage of the event hub update
-
withNewConsumerGroup
@Beta(V1_7_0) EventHub.Update withNewConsumerGroup(String name, String metadata)
Specifies that a new consumer group should be created for the event hub.- Parameters:
name- group namemetadata- group metadata- Returns:
- next stage of the event hub update
-
withoutConsumerGroup
@Beta(V1_7_0) EventHub.Update withoutConsumerGroup(String name)
Specifies that a consumer group associated with the event hub should be deleted.- Parameters:
name- group name- Returns:
- next stage of the event hub update
-
-