Interface EventHub.DefinitionStages.WithCaptureProviderOrCreate
-
- All Superinterfaces:
com.microsoft.azure.management.resources.fluentcore.model.Creatable<EventHub>,EventHub.DefinitionStages.WithAuthorizationRule,EventHub.DefinitionStages.WithConsumerGroup,EventHub.DefinitionStages.WithCreate,EventHub.DefinitionStages.WithPartitionCount,EventHub.DefinitionStages.WithRetentionPeriod,com.microsoft.azure.management.resources.fluentcore.arm.models.HasName,com.microsoft.azure.management.resources.fluentcore.model.Indexable
- All Known Subinterfaces:
EventHub.Definition
- Enclosing interface:
- EventHub.DefinitionStages
@Beta(V1_7_0) public static interface EventHub.DefinitionStages.WithCaptureProviderOrCreate extends EventHub.DefinitionStages.WithCreate
The stage of the event hub definition allowing to specify provider to store captured data when data capturing is enabled.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EventHub.DefinitionStages.WithCaptureEnabledDisabledwithExistingStorageAccountForCapturedData(com.microsoft.azure.management.storage.StorageAccount storageAccount, String containerName)Specifies an existing storage account to store the captured data when data capturing is enabled.EventHub.DefinitionStages.WithCaptureEnabledDisabledwithExistingStorageAccountForCapturedData(String storageAccountId, String containerName)Specifies an existing storage account to store the captured data when data capturing is enabled.EventHub.DefinitionStages.WithCaptureEnabledDisabledwithNewStorageAccountForCapturedData(com.microsoft.azure.management.resources.fluentcore.model.Creatable<com.microsoft.azure.management.storage.StorageAccount> storageAccountCreatable, String containerName)Specifies a new storage account to store the captured data when data capturing is enabled.-
Methods inherited from interface com.microsoft.azure.management.resources.fluentcore.model.Creatable
create, createAsync, createAsync
-
Methods inherited from interface com.microsoft.azure.management.eventhub.EventHub.DefinitionStages.WithAuthorizationRule
withNewListenRule, withNewManageRule, withNewSendRule
-
Methods inherited from interface com.microsoft.azure.management.eventhub.EventHub.DefinitionStages.WithConsumerGroup
withNewConsumerGroup, withNewConsumerGroup
-
Methods inherited from interface com.microsoft.azure.management.eventhub.EventHub.DefinitionStages.WithPartitionCount
withPartitionCount
-
Methods inherited from interface com.microsoft.azure.management.eventhub.EventHub.DefinitionStages.WithRetentionPeriod
withRetentionPeriodInDays
-
-
-
-
Method Detail
-
withNewStorageAccountForCapturedData
@Beta(V1_7_0) EventHub.DefinitionStages.WithCaptureEnabledDisabled withNewStorageAccountForCapturedData(com.microsoft.azure.management.resources.fluentcore.model.Creatable<com.microsoft.azure.management.storage.StorageAccount> storageAccountCreatable, String containerName)
Specifies a new storage account to store the captured data when data capturing is enabled.- Parameters:
storageAccountCreatable- creatable storage account definitioncontainerName- container to store the files containing captured data- Returns:
- next stage of the event hub definition
-
withExistingStorageAccountForCapturedData
@Beta(V1_7_0) EventHub.DefinitionStages.WithCaptureEnabledDisabled withExistingStorageAccountForCapturedData(com.microsoft.azure.management.storage.StorageAccount storageAccount, String containerName)
Specifies an existing storage account to store the captured data when data capturing is enabled.- Parameters:
storageAccount- storage accountcontainerName- an existing or new container to store the files containing captured data- Returns:
- next stage of the event hub definition
-
withExistingStorageAccountForCapturedData
@Beta(V1_7_0) EventHub.DefinitionStages.WithCaptureEnabledDisabled withExistingStorageAccountForCapturedData(String storageAccountId, String containerName)
Specifies an existing storage account to store the captured data when data capturing is enabled.- Parameters:
storageAccountId- storage account arm idcontainerName- an existing or new container to store the files containing captured data- Returns:
- next stage of the event hub definition
-
-