AzureStorageEmulatorResource
Handle TypeScript
interface AzureStorageEmulatorResource extends IComputeResource, IResource, IResourceWithArgs, IResourceWithEndpoints, IResourceWithEnvironment, IResourceWithProbes, IResourceWithWaitSupport { withApiVersionCheck(enable?: boolean): AzureStorageEmulatorResource; withBlobPort(port: number): AzureStorageEmulatorResource; withDataBindMount( path?: string, isReadOnly?: boolean): AzureStorageEmulatorResource; withDataVolume( name?: string, isReadOnly?: boolean): AzureStorageEmulatorResource; withQueuePort(port: number): AzureStorageEmulatorResource; withTablePort(port: number): AzureStorageEmulatorResource;} 6 members
Methods
method
withApiVersionCheck builder Configures whether the emulator checks API version validity
withApiVersionCheck(enable?: boolean): AzureStorageEmulatorResourceParameters
enable boolean optional = True Returns
AzureStorageEmulatorResource method
withBlobPort builder Sets the host port for blob requests on the storage emulator
withBlobPort(port: number): AzureStorageEmulatorResourceParameters
port number Returns
AzureStorageEmulatorResource method
withDataBindMount builder Adds a bind mount for the data folder to an Azure Storage emulator resource
withDataBindMount( path?: string, isReadOnly?: boolean): AzureStorageEmulatorResourceParameters
path string optional isReadOnly boolean optional = False Returns
AzureStorageEmulatorResource method
withDataVolume builder Adds a named volume for the data folder to an Azure Storage emulator resource
withDataVolume( name?: string, isReadOnly?: boolean): AzureStorageEmulatorResourceParameters
name string optional isReadOnly boolean optional = False Returns
AzureStorageEmulatorResource method
withQueuePort builder Sets the host port for queue requests on the storage emulator
withQueuePort(port: number): AzureStorageEmulatorResourceParameters
port number Returns
AzureStorageEmulatorResource method
withTablePort builder Sets the host port for table requests on the storage emulator
withTablePort(port: number): AzureStorageEmulatorResourceParameters
port number Returns
AzureStorageEmulatorResource