EventHub.DefinitionStages.WithCaptureProviderOrCreate Interface

Implements

public static interface EventHub.DefinitionStages.WithCaptureProviderOrCreate
extends WithCreate

The stage of the event hub definition allowing to specify provider to store captured data when data capturing is enabled.

Method Summary

Modifier and Type Method and Description
abstract WithCaptureEnabledDisabled withExistingStorageAccountForCapturedData(StorageAccount storageAccount, String containerName)

Specifies an existing storage account to store the captured data when data capturing is enabled.

abstract WithCaptureEnabledDisabled withExistingStorageAccountForCapturedData(String storageAccountId, String containerName)

Specifies an existing storage account to store the captured data when data capturing is enabled.

abstract WithCaptureEnabledDisabled withNewStorageAccountForCapturedData(Creatable<StorageAccount> storageAccountCreatable, String containerName)

Specifies a new storage account to store the captured data when data capturing is enabled.

Method Details

withExistingStorageAccountForCapturedData

public abstract EventHub.DefinitionStages.WithCaptureEnabledDisabled withExistingStorageAccountForCapturedData(StorageAccount storageAccount, String containerName)

Specifies an existing storage account to store the captured data when data capturing is enabled.

Parameters:

storageAccount - storage account
containerName - an existing or new container to store the files containing captured data

Returns:

next stage of the event hub definition

withExistingStorageAccountForCapturedData

public abstract 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 id
containerName - an existing or new container to store the files containing captured data

Returns:

next stage of the event hub definition

withNewStorageAccountForCapturedData

public abstract EventHub.DefinitionStages.WithCaptureEnabledDisabled withNewStorageAccountForCapturedData(Creatable storageAccountCreatable, String containerName)

Specifies a new storage account to store the captured data when data capturing is enabled.

Parameters:

storageAccountCreatable - creatable storage account definition
containerName - container to store the files containing captured data

Returns:

next stage of the event hub definition

Applies to