MBrace.Azure


Configuration

Namespace: MBrace.Azure

Azure Configuration Builder. Used to specify MBrace.Azure cluster storage configuration.

Constructors

ConstructorDescription
new(...)
Signature: (storageConnectionString:string * serviceBusConnectionString:string) -> Configuration

CompiledName: .ctor

Instance members

Instance memberDescription
AssemblyContainer()
Signature: unit -> string

Azure Storage container used for Vagabond assembly dependencies.

CompiledName: set_AssemblyContainer

AssemblyContainer()
Signature: unit -> unit

Azure Storage container used for Vagabond assembly dependencies.

CompiledName: get_AssemblyContainer

CloudValueContainer()
Signature: unit -> string

Azure Storage container used for CloudValue persistence.

CompiledName: set_CloudValueContainer

CloudValueContainer()
Signature: unit -> unit

Azure Storage container used for CloudValue persistence.

CompiledName: get_CloudValueContainer

OptimizeClosureSerialization()
Signature: unit -> bool

Specifies wether the cluster should optimize closure serialization. Defaults to true.

CompiledName: set_OptimizeClosureSerialization

OptimizeClosureSerialization()
Signature: unit -> unit

Specifies wether the cluster should optimize closure serialization. Defaults to true.

CompiledName: get_OptimizeClosureSerialization

RuntimeContainer()
Signature: unit -> string

Azure Storage container used by the runtime.

CompiledName: set_RuntimeContainer

RuntimeContainer()
Signature: unit -> unit

Azure Storage container used by the runtime.

CompiledName: get_RuntimeContainer

RuntimeLogsTable()
Signature: unit -> string

Azure Storage table used by the runtime for storing logs.

CompiledName: set_RuntimeLogsTable

RuntimeLogsTable()
Signature: unit -> unit

Azure Storage table used by the runtime for storing logs.

CompiledName: get_RuntimeLogsTable

RuntimeTable()
Signature: unit -> string

Azure Storage table used by the runtime.

CompiledName: set_RuntimeTable

RuntimeTable()
Signature: unit -> unit

Azure Storage table used by the runtime.

CompiledName: get_RuntimeTable

ServiceBusAccount
Signature: string

Azure ServiceBus account name

CompiledName: get_ServiceBusAccount

ServiceBusConnectionString()
Signature: unit -> string

Azure Service Bus connection string.

CompiledName: set_ServiceBusConnectionString

ServiceBusConnectionString()
Signature: unit -> unit

Azure Service Bus connection string.

CompiledName: get_ServiceBusConnectionString

StorageAccount
Signature: string

Azure Storage account name

CompiledName: get_StorageAccount

StorageConnectionString()
Signature: unit -> string

Azure Storage connection string.

CompiledName: set_StorageConnectionString

StorageConnectionString()
Signature: unit -> unit

Azure Storage connection string.

CompiledName: get_StorageConnectionString

SuffixId()
Signature: unit -> uint16

Runtime identifier, used for runtime isolation when using the same storage/servicebus accounts. Defaults to 0.

CompiledName: set_SuffixId

SuffixId()
Signature: unit -> unit

Runtime identifier, used for runtime isolation when using the same storage/servicebus accounts. Defaults to 0.

CompiledName: get_SuffixId

UserDataContainer()
Signature: unit -> string

Azure Storage container used for user data.

CompiledName: set_UserDataContainer

UserDataContainer()
Signature: unit -> unit

Azure Storage container used for user data.

CompiledName: get_UserDataContainer

UserDataTable()
Signature: unit -> string

Azure Storage table used for user data.

CompiledName: set_UserDataTable

UserDataTable()
Signature: unit -> unit

Azure Storage table used for user data.

CompiledName: get_UserDataTable

UseSuffixId()
Signature: unit -> bool

Append runtime id to given configuration e.g. \(RuntimeQueue\)Version$Id. Defaults to false.

CompiledName: set_UseSuffixId

UseSuffixId()
Signature: unit -> unit

Append runtime id to given configuration e.g. \(RuntimeQueue\)Version$Id. Defaults to false.

CompiledName: get_UseSuffixId

UseVersionSuffix()
Signature: unit -> bool

Append version to given configuration e.g. \(RuntimeQueue\)Version. Defaults to true.

CompiledName: set_UseVersionSuffix

UseVersionSuffix()
Signature: unit -> unit

Append version to given configuration e.g. \(RuntimeQueue\)Version. Defaults to true.

CompiledName: get_UseVersionSuffix

Version()
Signature: unit -> string

Runtime version this configuration is targeting. Default to current assembly version.

CompiledName: set_Version

Version()
Signature: unit -> unit

Runtime version this configuration is targeting. Default to current assembly version.

CompiledName: get_Version

WorkItemQueue()
Signature: unit -> string

Service Bus work item queue used by the runtime.

CompiledName: set_WorkItemQueue

WorkItemQueue()
Signature: unit -> unit

Service Bus work item queue used by the runtime.

CompiledName: get_WorkItemQueue

WorkItemTopic()
Signature: unit -> string

Service Bus work item topic used by the runtime.

CompiledName: set_WorkItemTopic

WorkItemTopic()
Signature: unit -> unit

Service Bus work item topic used by the runtime.

CompiledName: get_WorkItemTopic

Static members

Static memberDescription
EnvironmentServiceBusConnectionString()
Signature: unit -> string

Gets or sets or the local environment Azure service bus connection string

CompiledName: set_EnvironmentServiceBusConnectionString

EnvironmentServiceBusConnectionString()
Signature: unit -> unit

Gets or sets or the local environment Azure service bus connection string

CompiledName: get_EnvironmentServiceBusConnectionString

EnvironmentStorageConnectionString()
Signature: unit -> string

Gets or sets or the local environment Azure storage connection string

CompiledName: set_EnvironmentStorageConnectionString

EnvironmentStorageConnectionString()
Signature: unit -> unit

Gets or sets or the local environment Azure storage connection string

CompiledName: get_EnvironmentStorageConnectionString

FromEnvironmentVariables()
Signature: unit -> Configuration

Creates a configuration object by reading connection string information from the local environment variables.

Fork me on GitHub