BlobStorageService class
Defines an blob storage service connection.
- Extends
Blob |
Creates a new BlobStorageService instance. |
connection |
Connection string for blob storage. |
container | (Optional) container name. |
id | Unique Id for the service. |
name | Friendly name for the service. |
resource |
Resource group for azure. |
service |
Name of the service. |
subscription |
Subscription ID for azure. |
tenant |
Tenant ID for azure. |
type |
decrypt(string, (value: string, secret: string) => string) | Decrypt properties on this service. |
encrypt(string, (value: string, secret: string) => string) | Encrypt properties on this service. |
toJSON() | Creates a JSON based version of the model for saving to disk. |
Creates a new BlobStorageService instance.
new BlobStorageService(source?: IBlobStorageService)
Parameters
- source
- IBlobStorageService
(Optional) JSON based service definition.
Connection string for blob storage.
connectionString: string
Property Value
string
(Optional) container name.
container: string
Property Value
string
Friendly name for the service.
name: string
Property Value
string
Inherited From ConnectedService.name
Resource group for azure.
resourceGroup: string
Property Value
string
Inherited From AzureService.resourceGroup
Name of the service.
serviceName: string
Property Value
string
Inherited From AzureService.serviceName
Subscription ID for azure.
subscriptionId: string
Property Value
string
Inherited From AzureService.subscriptionId
Decrypt properties on this service.
function decrypt(secret: string, decryptString: (value: string, secret: string) => string)
Parameters
- secret
-
string
Secret to use to decrypt.
- decryptString
-
(value: string, secret: string) => string
Function called to decrypt an individual value.
Encrypt properties on this service.
function encrypt(secret: string, encryptString: (value: string, secret: string) => string)
Parameters
- secret
-
string
Secret to use to encrypt.
- encryptString
-
(value: string, secret: string) => string
Function called to encrypt an individual value.
Creates a JSON based version of the model for saving to disk.
function toJSON(): IConnectedService
Returns
An IConnectedService JSON.
Inherited From ConnectedService.toJSON