yellowgrid-api-ts 3.2.143 → 3.2.144
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api.ts +4 -0
- package/dist/api.d.ts +4 -0
- package/docs/RecordingBackupAzureModel.md +2 -0
- package/package.json +1 -1
package/api.ts
CHANGED
package/dist/api.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
|
|
|
9
9
|
**name** | **string** | Storage Account Name | [optional] [default to undefined]
|
|
10
10
|
**key** | **string** | Storage Account Key | [optional] [default to undefined]
|
|
11
11
|
**connection_string** | **string** | Storage Account Connection String | [optional] [default to undefined]
|
|
12
|
+
**sasUrl** | **string** | SAS Url | [optional] [default to undefined]
|
|
12
13
|
**recordings_path** | **string** | Recordings Path | [optional] [default to undefined]
|
|
13
14
|
|
|
14
15
|
## Example
|
|
@@ -20,6 +21,7 @@ const instance: RecordingBackupAzureModel = {
|
|
|
20
21
|
name,
|
|
21
22
|
key,
|
|
22
23
|
connection_string,
|
|
24
|
+
sasUrl,
|
|
23
25
|
recordings_path,
|
|
24
26
|
};
|
|
25
27
|
```
|