@@ -11,18 +11,20 @@ class ContentDeliveryCloudflareProperties(
11
11
var urlPrefix : String? = null ,
12
12
var zoneId : String? = null ,
13
13
@DocProperty(
14
- " If cache is filled with specific Origin header, it can be purged only if the purge request " +
15
- " specifies the same Origin header. Here you can specify comma separated list of origins." +
16
- " \n " +
17
- " e.g. `https://example.com,https://example2.com`" +
18
- " \n\n " +
19
- " Read more in the Cloudflare " +
20
- " [docs](https://developers.cloudflare.com/cache/how-to/purge-cache/purge-by-single-file/)." ,
14
+ description =
15
+ " If cache is filled with specific Origin header, it can be purged only if the purge request " +
16
+ " specifies the same Origin header. Here you can specify comma separated list of origins." +
17
+ " \n " +
18
+ " e.g. `https://example.com,https://example2.com`" +
19
+ " \n\n " +
20
+ " Read more in the Cloudflare " +
21
+ " [docs](https://developers.cloudflare.com/cache/how-to/purge-cache/purge-by-single-file/)." ,
21
22
)
22
23
var origins : String? = null ,
23
24
@DocProperty(
24
- " Number of paths to purge in one request. " +
25
- " (Cloudflare limit is 30 now, but it might be subject to change)" ,
25
+ description =
26
+ " Number of paths to purge in one request. " +
27
+ " (Cloudflare limit is 30 now, but it might be subject to change)" ,
26
28
)
27
29
var maxFilesPerRequest : Int = 30 ,
28
30
) : ContentDeliveryPurgingConfig {
0 commit comments