File tree Expand file tree Collapse file tree 1 file changed +13
-35
lines changed
src/Umbraco.StorageProviders.AzureBlob Expand file tree Collapse file tree 1 file changed +13
-35
lines changed Original file line number Diff line number Diff line change 31
31
"description" : " Configuration of Umbraco Storage Providers - Azure Blob Storage." ,
32
32
"properties" : {
33
33
"Media" : {
34
- "$ref" : " #/definitions/AzureBlobMediaFileSystemOptions "
34
+ "$ref" : " #/definitions/AzureBlobFileSystemOptions "
35
35
}
36
36
},
37
37
"patternProperties" : {
38
38
"^(?!Media$).*" : {
39
- "$ref" : " #/definitions/AzureBlobFileSystemOptions"
40
- }
41
- }
42
- },
43
- "AzureBlobMediaFileSystemOptions" : {
44
- "type" : " object" ,
45
- "description" : " The Azure Blob Media File System options." ,
46
- "required" : [
47
- " ConnectionString" ,
48
- " ContainerName"
49
- ],
50
- "properties" : {
51
- "ConnectionString" : {
52
- "type" : " string" ,
53
- "description" : " Gets or sets the storage account connection string." ,
54
- "minLength" : 1
55
- },
56
- "ContainerName" : {
57
- "type" : " string" ,
58
- "description" : " Gets or sets the container name." ,
59
- "minLength" : 1
60
- },
61
- "ContainerRootPath" : {
62
- "type" : [
63
- " null" ,
64
- " string"
65
- ],
66
- "description" : " Gets or sets the root path of the container."
67
- },
68
- "VirtualPath" : {
69
- "type" : " string" ,
70
- "description" : " Gets or sets the virtual path."
39
+ "allOf" : [
40
+ {
41
+ "$ref" : " #/definitions/AzureBlobFileSystemOptions"
42
+ },
43
+ {
44
+ "type" : " object" ,
45
+ "required" : [
46
+ " VirtualPath"
47
+ ]
48
+ }
49
+ ]
71
50
}
72
51
}
73
52
},
76
55
"description" : " The Azure Blob File System options." ,
77
56
"required" : [
78
57
" ConnectionString" ,
79
- " ContainerName" ,
80
- " VirtualPath"
58
+ " ContainerName"
81
59
],
82
60
"properties" : {
83
61
"ConnectionString" : {
You can’t perform that action at this time.
0 commit comments