示例#1
0
 public static ApiResult DeleteConsumerGroup(string subscriptionId, string keyvaultName, string resourceGroup, string resourceGroupLocation, string eventHubNamespace, string eventHubName, string consumerGroupName, string inputType, string clientId, string tenantId, string secretPrefix)
 {
     using (EventHubUtil eventHubUtil = new EventHubUtil(subscriptionId, resourceGroupLocation, keyvaultName, clientId, tenantId, secretPrefix))
     {
         return(eventHubUtil.DeleteConsumerGroup(resourceGroup, eventHubNamespace, eventHubName, consumerGroupName, inputType));
     }
 }
示例#2
0
        public static ApiResult CreateConsumerGroup(string subscriptionId, string keyvaultName, string resourceGroup, string resourceGroupLocation, string eventHubNamespace, string eventHubName, string consumerGroupName, bool isIotHub, string clientId, string tenantId, string secretPrefix)
        {
            EventHubUtil eventHubUtil = new EventHubUtil(subscriptionId, resourceGroupLocation, keyvaultName, clientId, tenantId, secretPrefix);

            return(eventHubUtil.CreateConsumerGroup(resourceGroup, eventHubNamespace, eventHubName, consumerGroupName, isIotHub));
        }