1. Packages
  2. Packages
  3. Gcore Provider
  4. API Docs
  5. getCdnResources
Viewing docs for gcore 2.0.0-alpha.15
published on Thursday, Aug 6, 2026 by g-core
Viewing docs for gcore 2.0.0-alpha.15
published on Thursday, Aug 6, 2026 by g-core

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as gcore from "@pulumi/gcore";
    
    const exampleCdnResources = gcore.getCdnResources({
        active: true,
        cname: "cname",
        deleted: true,
        enabled: true,
        isPrimary: true,
        maxCreated: "max_created",
        maxUpdated: "max_updated",
        minCreated: "min_created",
        minUpdated: "min_updated",
        name: "name",
        originGroup: 0,
        originGroupIn: "originGroup__in",
        originProtocol: "HTTP",
        rules: "rules",
        secondaryHostnames: "secondaryHostnames",
        shieldDc: "shield_dc",
        shielded: true,
        sslData: 0,
        sslDataIn: 0,
        sslEnabled: true,
        status: "active",
        suspend: true,
        suspended: true,
        vpEnabled: true,
    });
    
    import pulumi
    import pulumi_gcore as gcore
    
    example_cdn_resources = gcore.get_cdn_resources(active=True,
        cname="cname",
        deleted=True,
        enabled=True,
        is_primary=True,
        max_created="max_created",
        max_updated="max_updated",
        min_created="min_created",
        min_updated="min_updated",
        name="name",
        origin_group=0,
        origin_group_in="originGroup__in",
        origin_protocol="HTTP",
        rules="rules",
        secondary_hostnames="secondaryHostnames",
        shield_dc="shield_dc",
        shielded=True,
        ssl_data=0,
        ssl_data_in=0,
        ssl_enabled=True,
        status="active",
        suspend=True,
        suspended=True,
        vp_enabled=True)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/gcore/v2/gcore"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := gcore.GetCdnResources(ctx, &gcore.GetCdnResourcesArgs{
    			Active:             pulumi.BoolRef(true),
    			Cname:              pulumi.StringRef("cname"),
    			Deleted:            pulumi.BoolRef(true),
    			Enabled:            pulumi.BoolRef(true),
    			IsPrimary:          pulumi.BoolRef(true),
    			MaxCreated:         pulumi.StringRef("max_created"),
    			MaxUpdated:         pulumi.StringRef("max_updated"),
    			MinCreated:         pulumi.StringRef("min_created"),
    			MinUpdated:         pulumi.StringRef("min_updated"),
    			Name:               pulumi.StringRef("name"),
    			OriginGroup:        pulumi.Float64Ref(0),
    			OriginGroupIn:      pulumi.StringRef("originGroup__in"),
    			OriginProtocol:     pulumi.StringRef("HTTP"),
    			Rules:              pulumi.StringRef("rules"),
    			SecondaryHostnames: pulumi.StringRef("secondaryHostnames"),
    			ShieldDc:           pulumi.StringRef("shield_dc"),
    			Shielded:           pulumi.BoolRef(true),
    			SslData:            pulumi.Float64Ref(0),
    			SslDataIn:          pulumi.Float64Ref(0),
    			SslEnabled:         pulumi.BoolRef(true),
    			Status:             pulumi.StringRef("active"),
    			Suspend:            pulumi.BoolRef(true),
    			Suspended:          pulumi.BoolRef(true),
    			VpEnabled:          pulumi.BoolRef(true),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcore = Pulumi.Gcore;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleCdnResources = Gcore.GetCdnResources.Invoke(new()
        {
            Active = true,
            Cname = "cname",
            Deleted = true,
            Enabled = true,
            IsPrimary = true,
            MaxCreated = "max_created",
            MaxUpdated = "max_updated",
            MinCreated = "min_created",
            MinUpdated = "min_updated",
            Name = "name",
            OriginGroup = 0,
            OriginGroupIn = "originGroup__in",
            OriginProtocol = "HTTP",
            Rules = "rules",
            SecondaryHostnames = "secondaryHostnames",
            ShieldDc = "shield_dc",
            Shielded = true,
            SslData = 0,
            SslDataIn = 0,
            SslEnabled = true,
            Status = "active",
            Suspend = true,
            Suspended = true,
            VpEnabled = true,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcore.GcoreFunctions;
    import com.pulumi.gcore.inputs.GetCdnResourcesArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var exampleCdnResources = GcoreFunctions.getCdnResources(GetCdnResourcesArgs.builder()
                .active(true)
                .cname("cname")
                .deleted(true)
                .enabled(true)
                .isPrimary(true)
                .maxCreated("max_created")
                .maxUpdated("max_updated")
                .minCreated("min_created")
                .minUpdated("min_updated")
                .name("name")
                .originGroup(0)
                .originGroupIn("originGroup__in")
                .originProtocol("HTTP")
                .rules("rules")
                .secondaryHostnames("secondaryHostnames")
                .shieldDc("shield_dc")
                .shielded(true)
                .sslData(0)
                .sslDataIn(0)
                .sslEnabled(true)
                .status("active")
                .suspend(true)
                .suspended(true)
                .vpEnabled(true)
                .build());
    
        }
    }
    
    variables:
      exampleCdnResources:
        fn::invoke:
          function: gcore:getCdnResources
          arguments:
            active: true
            cname: cname
            deleted: true
            enabled: true
            isPrimary: true
            maxCreated: max_created
            maxUpdated: max_updated
            minCreated: min_created
            minUpdated: min_updated
            name: name
            originGroup: 0
            originGroupIn: originGroup__in
            originProtocol: HTTP
            rules: rules
            secondaryHostnames: secondaryHostnames
            shieldDc: shield_dc
            shielded: true
            sslData: 0
            sslDataIn: 0
            sslEnabled: true
            status: active
            suspend: true
            suspended: true
            vpEnabled: true
    
    Example coming soon!
    

    Using getCdnResources

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getCdnResources(args: GetCdnResourcesArgs, opts?: InvokeOptions): Promise<GetCdnResourcesResult>
    function getCdnResourcesOutput(args: GetCdnResourcesOutputArgs, opts?: InvokeOptions): Output<GetCdnResourcesResult>
    def get_cdn_resources(active: Optional[bool] = None,
                          cname: Optional[str] = None,
                          deleted: Optional[bool] = None,
                          enabled: Optional[bool] = None,
                          is_primary: Optional[bool] = None,
                          max_created: Optional[str] = None,
                          max_items: Optional[float] = None,
                          max_updated: Optional[str] = None,
                          min_created: Optional[str] = None,
                          min_updated: Optional[str] = None,
                          name: Optional[str] = None,
                          origin_group: Optional[float] = None,
                          origin_group_in: Optional[str] = None,
                          origin_protocol: Optional[str] = None,
                          rules: Optional[str] = None,
                          secondary_hostnames: Optional[str] = None,
                          shield_dc: Optional[str] = None,
                          shielded: Optional[bool] = None,
                          ssl_data: Optional[float] = None,
                          ssl_data_in: Optional[float] = None,
                          ssl_enabled: Optional[bool] = None,
                          status: Optional[str] = None,
                          suspend: Optional[bool] = None,
                          suspended: Optional[bool] = None,
                          vp_enabled: Optional[bool] = None,
                          opts: Optional[InvokeOptions] = None) -> GetCdnResourcesResult
    def get_cdn_resources_output(active: pulumi.Input[Optional[bool]] = None,
                          cname: pulumi.Input[Optional[str]] = None,
                          deleted: pulumi.Input[Optional[bool]] = None,
                          enabled: pulumi.Input[Optional[bool]] = None,
                          is_primary: pulumi.Input[Optional[bool]] = None,
                          max_created: pulumi.Input[Optional[str]] = None,
                          max_items: pulumi.Input[Optional[float]] = None,
                          max_updated: pulumi.Input[Optional[str]] = None,
                          min_created: pulumi.Input[Optional[str]] = None,
                          min_updated: pulumi.Input[Optional[str]] = None,
                          name: pulumi.Input[Optional[str]] = None,
                          origin_group: pulumi.Input[Optional[float]] = None,
                          origin_group_in: pulumi.Input[Optional[str]] = None,
                          origin_protocol: pulumi.Input[Optional[str]] = None,
                          rules: pulumi.Input[Optional[str]] = None,
                          secondary_hostnames: pulumi.Input[Optional[str]] = None,
                          shield_dc: pulumi.Input[Optional[str]] = None,
                          shielded: pulumi.Input[Optional[bool]] = None,
                          ssl_data: pulumi.Input[Optional[float]] = None,
                          ssl_data_in: pulumi.Input[Optional[float]] = None,
                          ssl_enabled: pulumi.Input[Optional[bool]] = None,
                          status: pulumi.Input[Optional[str]] = None,
                          suspend: pulumi.Input[Optional[bool]] = None,
                          suspended: pulumi.Input[Optional[bool]] = None,
                          vp_enabled: pulumi.Input[Optional[bool]] = None,
                          opts: Optional[InvokeOptions] = None) -> Output[GetCdnResourcesResult]
    func GetCdnResources(ctx *Context, args *GetCdnResourcesArgs, opts ...InvokeOption) (*GetCdnResourcesResult, error)
    func GetCdnResourcesOutput(ctx *Context, args *GetCdnResourcesOutputArgs, opts ...InvokeOption) GetCdnResourcesResultOutput

    > Note: This function is named GetCdnResources in the Go SDK.

    public static class GetCdnResources 
    {
        public static Task<GetCdnResourcesResult> InvokeAsync(GetCdnResourcesArgs args, InvokeOptions? opts = null)
        public static Output<GetCdnResourcesResult> Invoke(GetCdnResourcesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetCdnResourcesResult> getCdnResources(GetCdnResourcesArgs args, InvokeOptions options)
    public static Output<GetCdnResourcesResult> getCdnResources(GetCdnResourcesArgs args, InvokeOptions options)
    
    fn::invoke:
      function: gcore:index/getCdnResources:getCdnResources
      arguments:
        # arguments dictionary
    data "gcore_get_cdn_resources" "name" {
        # arguments
    }

    The following arguments are supported:

    Active bool
    Defines whether a CDN resource is activated.
    Cname string
    Deleted bool
    Enabled bool
    IsPrimary bool
    MaxCreated string
    MaxItems double
    MaxUpdated string
    MinCreated string
    MinUpdated string
    Name string
    OriginGroup double
    OriginGroupIn string
    OriginProtocol string
    Rules string
    SecondaryHostnames string
    ShieldDc string
    Shielded bool
    SslData double
    SslDataIn double
    SslEnabled bool
    Status string
    Suspend bool
    Suspended bool
    VpEnabled bool
    Active bool
    Defines whether a CDN resource is activated.
    Cname string
    Deleted bool
    Enabled bool
    IsPrimary bool
    MaxCreated string
    MaxItems float64
    MaxUpdated string
    MinCreated string
    MinUpdated string
    Name string
    OriginGroup float64
    OriginGroupIn string
    OriginProtocol string
    Rules string
    SecondaryHostnames string
    ShieldDc string
    Shielded bool
    SslData float64
    SslDataIn float64
    SslEnabled bool
    Status string
    Suspend bool
    Suspended bool
    VpEnabled bool
    active bool
    Defines whether a CDN resource is activated.
    cname string
    deleted bool
    enabled bool
    is_primary bool
    max_created string
    max_items number
    max_updated string
    min_created string
    min_updated string
    name string
    origin_group number
    origin_group_in string
    origin_protocol string
    rules string
    secondary_hostnames string
    shield_dc string
    shielded bool
    ssl_data number
    ssl_data_in number
    ssl_enabled bool
    status string
    suspend bool
    suspended bool
    vp_enabled bool
    active Boolean
    Defines whether a CDN resource is activated.
    cname String
    deleted Boolean
    enabled Boolean
    isPrimary Boolean
    maxCreated String
    maxItems Double
    maxUpdated String
    minCreated String
    minUpdated String
    name String
    originGroup Double
    originGroupIn String
    originProtocol String
    rules String
    secondaryHostnames String
    shieldDc String
    shielded Boolean
    sslData Double
    sslDataIn Double
    sslEnabled Boolean
    status String
    suspend Boolean
    suspended Boolean
    vpEnabled Boolean
    active boolean
    Defines whether a CDN resource is activated.
    cname string
    deleted boolean
    enabled boolean
    isPrimary boolean
    maxCreated string
    maxItems number
    maxUpdated string
    minCreated string
    minUpdated string
    name string
    originGroup number
    originGroupIn string
    originProtocol string
    rules string
    secondaryHostnames string
    shieldDc string
    shielded boolean
    sslData number
    sslDataIn number
    sslEnabled boolean
    status string
    suspend boolean
    suspended boolean
    vpEnabled boolean
    active bool
    Defines whether a CDN resource is activated.
    cname str
    deleted bool
    enabled bool
    is_primary bool
    max_created str
    max_items float
    max_updated str
    min_created str
    min_updated str
    name str
    origin_group float
    origin_group_in str
    origin_protocol str
    rules str
    secondary_hostnames str
    shield_dc str
    shielded bool
    ssl_data float
    ssl_data_in float
    ssl_enabled bool
    status str
    suspend bool
    suspended bool
    vp_enabled bool
    active Boolean
    Defines whether a CDN resource is activated.
    cname String
    deleted Boolean
    enabled Boolean
    isPrimary Boolean
    maxCreated String
    maxItems Number
    maxUpdated String
    minCreated String
    minUpdated String
    name String
    originGroup Number
    originGroupIn String
    originProtocol String
    rules String
    secondaryHostnames String
    shieldDc String
    shielded Boolean
    sslData Number
    sslDataIn Number
    sslEnabled Boolean
    status String
    suspend Boolean
    suspended Boolean
    vpEnabled Boolean

    getCdnResources Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Items List<GetCdnResourcesItem>
    Active bool
    Defines whether a CDN resource is activated.
    Cname string
    Deleted bool
    Enabled bool
    IsPrimary bool
    MaxCreated string
    MaxItems double
    MaxUpdated string
    MinCreated string
    MinUpdated string
    Name string
    OriginGroup double
    OriginGroupIn string
    OriginProtocol string
    Rules string
    SecondaryHostnames string
    ShieldDc string
    Shielded bool
    SslData double
    SslDataIn double
    SslEnabled bool
    Status string
    Suspend bool
    Suspended bool
    VpEnabled bool
    Id string
    The provider-assigned unique ID for this managed resource.
    Items []GetCdnResourcesItem
    Active bool
    Defines whether a CDN resource is activated.
    Cname string
    Deleted bool
    Enabled bool
    IsPrimary bool
    MaxCreated string
    MaxItems float64
    MaxUpdated string
    MinCreated string
    MinUpdated string
    Name string
    OriginGroup float64
    OriginGroupIn string
    OriginProtocol string
    Rules string
    SecondaryHostnames string
    ShieldDc string
    Shielded bool
    SslData float64
    SslDataIn float64
    SslEnabled bool
    Status string
    Suspend bool
    Suspended bool
    VpEnabled bool
    id string
    The provider-assigned unique ID for this managed resource.
    items list(object)
    active bool
    Defines whether a CDN resource is activated.
    cname string
    deleted bool
    enabled bool
    is_primary bool
    max_created string
    max_items number
    max_updated string
    min_created string
    min_updated string
    name string
    origin_group number
    origin_group_in string
    origin_protocol string
    rules string
    secondary_hostnames string
    shield_dc string
    shielded bool
    ssl_data number
    ssl_data_in number
    ssl_enabled bool
    status string
    suspend bool
    suspended bool
    vp_enabled bool
    id String
    The provider-assigned unique ID for this managed resource.
    items List<GetCdnResourcesItem>
    active Boolean
    Defines whether a CDN resource is activated.
    cname String
    deleted Boolean
    enabled Boolean
    isPrimary Boolean
    maxCreated String
    maxItems Double
    maxUpdated String
    minCreated String
    minUpdated String
    name String
    originGroup Double
    originGroupIn String
    originProtocol String
    rules String
    secondaryHostnames String
    shieldDc String
    shielded Boolean
    sslData Double
    sslDataIn Double
    sslEnabled Boolean
    status String
    suspend Boolean
    suspended Boolean
    vpEnabled Boolean
    id string
    The provider-assigned unique ID for this managed resource.
    items GetCdnResourcesItem[]
    active boolean
    Defines whether a CDN resource is activated.
    cname string
    deleted boolean
    enabled boolean
    isPrimary boolean
    maxCreated string
    maxItems number
    maxUpdated string
    minCreated string
    minUpdated string
    name string
    originGroup number
    originGroupIn string
    originProtocol string
    rules string
    secondaryHostnames string
    shieldDc string
    shielded boolean
    sslData number
    sslDataIn number
    sslEnabled boolean
    status string
    suspend boolean
    suspended boolean
    vpEnabled boolean
    id str
    The provider-assigned unique ID for this managed resource.
    items Sequence[GetCdnResourcesItem]
    active bool
    Defines whether a CDN resource is activated.
    cname str
    deleted bool
    enabled bool
    is_primary bool
    max_created str
    max_items float
    max_updated str
    min_created str
    min_updated str
    name str
    origin_group float
    origin_group_in str
    origin_protocol str
    rules str
    secondary_hostnames str
    shield_dc str
    shielded bool
    ssl_data float
    ssl_data_in float
    ssl_enabled bool
    status str
    suspend bool
    suspended bool
    vp_enabled bool
    id String
    The provider-assigned unique ID for this managed resource.
    items List<Property Map>
    active Boolean
    Defines whether a CDN resource is activated.
    cname String
    deleted Boolean
    enabled Boolean
    isPrimary Boolean
    maxCreated String
    maxItems Number
    maxUpdated String
    minCreated String
    minUpdated String
    name String
    originGroup Number
    originGroupIn String
    originProtocol String
    rules String
    secondaryHostnames String
    shieldDc String
    shielded Boolean
    sslData Number
    sslDataIn Number
    sslEnabled Boolean
    status String
    suspend Boolean
    suspended Boolean
    vpEnabled Boolean

    Supporting Types

    GetCdnResourcesItem

    Active bool
    Enables or disables a CDN resource.
    CanPurgeByUrls bool

    Defines whether the CDN resource can be used for purge by URLs feature.

    It's available only in case the CDN resource has enabled ignore_vary_header option.

    Client double
    ID of an account to which the CDN resource belongs.
    Cname string

    Delivery domains that will be used for content delivery through a CDN.

    Delivery domains should be added to your DNS settings.

    Created string
    Date of CDN resource creation.
    Deleted bool

    Defines whether CDN resource has been deleted.

    Possible values:

    • true - CDN resource is deleted.
    • false - CDN resource is not deleted.
    Description string
    Optional comment describing the CDN resource.
    Enabled bool

    Enables or disables a CDN resource change by a user.

    Possible values:

    • true - CDN resource is enabled and can be changed. Content can be delivered.
    • false - CDN resource is disabled and cannot be changed. Content can not be delivered.
    FullCustomEnabled bool

    Defines whether the CDN resource has a custom configuration.

    Possible values:

    • true - CDN resource has a custom configuration. You cannot change resource settings, except for the SSL certificate. To change other settings, contact technical support.
    • false - CDN resource has a regular configuration. You can change CDN resource settings.
    Id double
    CDN resource ID.
    IsPrimary bool

    Defines whether a CDN resource has a cache zone shared with other CDN resources.

    Possible values:

    • true - CDN resource is main and has a shared caching zone with other CDN resources, which are called reserve.
    • false - CDN resource is reserve and it has a shared caching zone with the main CDN resource. You cannot change some options, create rules, set up origin shielding and use the reserve resource for Streaming.
    • null - CDN resource does not have a shared cache zone.

    The main CDN resource is specified in the primary_resource field. It cannot be suspended unless all related reserve CDN resources are suspended.

    Name string
    CDN resource name.
    Options GetCdnResourcesItemOptions

    List of options that can be configured for the CDN resource.

    In case of null value the option is not added to the CDN resource. Option may inherit its value from the global account settings.

    OriginGroup double
    Origin group ID with which the CDN resource is associated.
    OriginGroupName string
    Origin group name.
    OriginProtocol string

    Protocol used by CDN servers to request content from an origin source.

    Possible values:

    • HTTPS - CDN servers will connect to the origin via HTTPS.
    • HTTP - CDN servers will connect to the origin via HTTP.
    • MATCH - connection protocol will be chosen automatically (content on the origin source should be available for the CDN both through HTTP and HTTPS).

    If protocol is not specified, HTTP is used to connect to an origin server. Available values: "HTTP", "HTTPS", "MATCH".

    PresetApplied bool

    Defines whether the CDN resource has a preset applied.

    Possible values:

    • true - CDN resource has a preset applied. CDN resource options included in the preset cannot be edited.
    • false - CDN resource does not have a preset applied.
    PrimaryResource double

    ID of the main CDN resource which has a shared caching zone with a reserve CDN resource.

    If the parameter is not empty, then the current CDN resource is the reserve. You cannot change some options, create rules, set up origin shielding, or use the reserve CDN resource for Streaming.

    ProxySslCa double

    ID of the trusted CA certificate used to verify an origin.

    It can be used only with "proxy_ssl_enabled": true.

    ProxySslData double

    ID of the SSL certificate used to verify an origin.

    It can be used only with "proxy_ssl_enabled": true.

    ProxySslEnabled bool

    Enables or disables SSL certificate validation of the origin server before completing any connection.

    Possible values:

    • true - Origin SSL certificate validation is enabled.
    • false - Origin SSL certificate validation is disabled.
    Rules List<string>
    Rules configured for the CDN resource.
    SecondaryHostnames List<string>

    Additional delivery domains (CNAMEs) that will be used to deliver content via the CDN.

    Up to ten additional CNAMEs are possible.

    ShieldDc string

    Name of the origin shielding location data center.

    Parameter returns null if origin shielding is disabled.

    ShieldEnabled bool

    Defines whether origin shield is active and working for the CDN resource.

    Possible values:

    • true - Origin shield is active.
    • false - Origin shield is not active.
    ShieldRoutingMap double

    Defines whether the origin shield with a dynamic location is enabled for the CDN resource.

    To manage origin shielding, you must contact customer support.

    Shielded bool

    Defines whether origin shielding feature is enabled for the resource.

    Possible values:

    • true - Origin shielding is enabled.
    • false - Origin shielding is disabled.
    SslData double

    ID of the SSL certificate linked to the CDN resource.

    Can be used only with "sslEnabled": true.

    SslEnabled bool

    Defines whether the HTTPS protocol enabled for content delivery.

    Possible values:

    • true - HTTPS is enabled.
    • false - HTTPS is disabled.
    Status string

    CDN resource status.

    Possible values:

    • active - CDN resource is active. Content is available to users.
    • suspended - CDN resource is suspended. Content is not available to users.
    • processed - CDN resource has recently been created and is currently being processed. It will take about fifteen minutes to propagate it to all locations.
    • deleted - CDN resource is deleted. Available values: "active", "suspended", "processed", "deleted".
    SuspendDate string

    Date when the CDN resource was suspended automatically if there is no traffic on it for 90 days.

    Not specified if the resource was not stopped due to lack of traffic.

    Suspended bool

    Defines whether the CDN resource has been automatically suspended because there was no traffic on it for 90 days.

    Possible values:

    • true - CDN resource is currently automatically suspended.
    • false - CDN resource is not automatically suspended.

    You can enable CDN resource using the active field. If there is no traffic on the CDN resource within seven days following activation, it will be suspended again.

    To avoid CDN resource suspension due to no traffic, contact technical support.

    Updated string
    Date of the last CDN resource update.
    VpEnabled bool

    Defines whether the CDN resource is integrated with the Streaming Platform.

    Possible values:

    • true - CDN resource is configured for Streaming Platform. Changing resource settings can affect its operation.
    • false - CDN resource is not configured for Streaming Platform.
    WaapDomainId string
    The ID of the associated WAAP domain.
    Active bool
    Enables or disables a CDN resource.
    CanPurgeByUrls bool

    Defines whether the CDN resource can be used for purge by URLs feature.

    It's available only in case the CDN resource has enabled ignore_vary_header option.

    Client float64
    ID of an account to which the CDN resource belongs.
    Cname string

    Delivery domains that will be used for content delivery through a CDN.

    Delivery domains should be added to your DNS settings.

    Created string
    Date of CDN resource creation.
    Deleted bool

    Defines whether CDN resource has been deleted.

    Possible values:

    • true - CDN resource is deleted.
    • false - CDN resource is not deleted.
    Description string
    Optional comment describing the CDN resource.
    Enabled bool

    Enables or disables a CDN resource change by a user.

    Possible values:

    • true - CDN resource is enabled and can be changed. Content can be delivered.
    • false - CDN resource is disabled and cannot be changed. Content can not be delivered.
    FullCustomEnabled bool

    Defines whether the CDN resource has a custom configuration.

    Possible values:

    • true - CDN resource has a custom configuration. You cannot change resource settings, except for the SSL certificate. To change other settings, contact technical support.
    • false - CDN resource has a regular configuration. You can change CDN resource settings.
    Id float64
    CDN resource ID.
    IsPrimary bool

    Defines whether a CDN resource has a cache zone shared with other CDN resources.

    Possible values:

    • true - CDN resource is main and has a shared caching zone with other CDN resources, which are called reserve.
    • false - CDN resource is reserve and it has a shared caching zone with the main CDN resource. You cannot change some options, create rules, set up origin shielding and use the reserve resource for Streaming.
    • null - CDN resource does not have a shared cache zone.

    The main CDN resource is specified in the primary_resource field. It cannot be suspended unless all related reserve CDN resources are suspended.

    Name string
    CDN resource name.
    Options GetCdnResourcesItemOptions

    List of options that can be configured for the CDN resource.

    In case of null value the option is not added to the CDN resource. Option may inherit its value from the global account settings.

    OriginGroup float64
    Origin group ID with which the CDN resource is associated.
    OriginGroupName string
    Origin group name.
    OriginProtocol string

    Protocol used by CDN servers to request content from an origin source.

    Possible values:

    • HTTPS - CDN servers will connect to the origin via HTTPS.
    • HTTP - CDN servers will connect to the origin via HTTP.
    • MATCH - connection protocol will be chosen automatically (content on the origin source should be available for the CDN both through HTTP and HTTPS).

    If protocol is not specified, HTTP is used to connect to an origin server. Available values: "HTTP", "HTTPS", "MATCH".

    PresetApplied bool

    Defines whether the CDN resource has a preset applied.

    Possible values:

    • true - CDN resource has a preset applied. CDN resource options included in the preset cannot be edited.
    • false - CDN resource does not have a preset applied.
    PrimaryResource float64

    ID of the main CDN resource which has a shared caching zone with a reserve CDN resource.

    If the parameter is not empty, then the current CDN resource is the reserve. You cannot change some options, create rules, set up origin shielding, or use the reserve CDN resource for Streaming.

    ProxySslCa float64

    ID of the trusted CA certificate used to verify an origin.

    It can be used only with "proxy_ssl_enabled": true.

    ProxySslData float64

    ID of the SSL certificate used to verify an origin.

    It can be used only with "proxy_ssl_enabled": true.

    ProxySslEnabled bool

    Enables or disables SSL certificate validation of the origin server before completing any connection.

    Possible values:

    • true - Origin SSL certificate validation is enabled.
    • false - Origin SSL certificate validation is disabled.
    Rules []string
    Rules configured for the CDN resource.
    SecondaryHostnames []string

    Additional delivery domains (CNAMEs) that will be used to deliver content via the CDN.

    Up to ten additional CNAMEs are possible.

    ShieldDc string

    Name of the origin shielding location data center.

    Parameter returns null if origin shielding is disabled.

    ShieldEnabled bool

    Defines whether origin shield is active and working for the CDN resource.

    Possible values:

    • true - Origin shield is active.
    • false - Origin shield is not active.
    ShieldRoutingMap float64

    Defines whether the origin shield with a dynamic location is enabled for the CDN resource.

    To manage origin shielding, you must contact customer support.

    Shielded bool

    Defines whether origin shielding feature is enabled for the resource.

    Possible values:

    • true - Origin shielding is enabled.
    • false - Origin shielding is disabled.
    SslData float64

    ID of the SSL certificate linked to the CDN resource.

    Can be used only with "sslEnabled": true.

    SslEnabled bool

    Defines whether the HTTPS protocol enabled for content delivery.

    Possible values:

    • true - HTTPS is enabled.
    • false - HTTPS is disabled.
    Status string

    CDN resource status.

    Possible values:

    • active - CDN resource is active. Content is available to users.
    • suspended - CDN resource is suspended. Content is not available to users.
    • processed - CDN resource has recently been created and is currently being processed. It will take about fifteen minutes to propagate it to all locations.
    • deleted - CDN resource is deleted. Available values: "active", "suspended", "processed", "deleted".
    SuspendDate string

    Date when the CDN resource was suspended automatically if there is no traffic on it for 90 days.

    Not specified if the resource was not stopped due to lack of traffic.

    Suspended bool

    Defines whether the CDN resource has been automatically suspended because there was no traffic on it for 90 days.

    Possible values:

    • true - CDN resource is currently automatically suspended.
    • false - CDN resource is not automatically suspended.

    You can enable CDN resource using the active field. If there is no traffic on the CDN resource within seven days following activation, it will be suspended again.

    To avoid CDN resource suspension due to no traffic, contact technical support.

    Updated string
    Date of the last CDN resource update.
    VpEnabled bool

    Defines whether the CDN resource is integrated with the Streaming Platform.

    Possible values:

    • true - CDN resource is configured for Streaming Platform. Changing resource settings can affect its operation.
    • false - CDN resource is not configured for Streaming Platform.
    WaapDomainId string
    The ID of the associated WAAP domain.
    active bool
    Enables or disables a CDN resource.
    can_purge_by_urls bool

    Defines whether the CDN resource can be used for purge by URLs feature.

    It's available only in case the CDN resource has enabled ignore_vary_header option.

    client number
    ID of an account to which the CDN resource belongs.
    cname string

    Delivery domains that will be used for content delivery through a CDN.

    Delivery domains should be added to your DNS settings.

    created string
    Date of CDN resource creation.
    deleted bool

    Defines whether CDN resource has been deleted.

    Possible values:

    • true - CDN resource is deleted.
    • false - CDN resource is not deleted.
    description string
    Optional comment describing the CDN resource.
    enabled bool

    Enables or disables a CDN resource change by a user.

    Possible values:

    • true - CDN resource is enabled and can be changed. Content can be delivered.
    • false - CDN resource is disabled and cannot be changed. Content can not be delivered.
    full_custom_enabled bool

    Defines whether the CDN resource has a custom configuration.

    Possible values:

    • true - CDN resource has a custom configuration. You cannot change resource settings, except for the SSL certificate. To change other settings, contact technical support.
    • false - CDN resource has a regular configuration. You can change CDN resource settings.
    id number
    CDN resource ID.
    is_primary bool

    Defines whether a CDN resource has a cache zone shared with other CDN resources.

    Possible values:

    • true - CDN resource is main and has a shared caching zone with other CDN resources, which are called reserve.
    • false - CDN resource is reserve and it has a shared caching zone with the main CDN resource. You cannot change some options, create rules, set up origin shielding and use the reserve resource for Streaming.
    • null - CDN resource does not have a shared cache zone.

    The main CDN resource is specified in the primary_resource field. It cannot be suspended unless all related reserve CDN resources are suspended.

    name string
    CDN resource name.
    options object

    List of options that can be configured for the CDN resource.

    In case of null value the option is not added to the CDN resource. Option may inherit its value from the global account settings.

    origin_group number
    Origin group ID with which the CDN resource is associated.
    origin_group_name string
    Origin group name.
    origin_protocol string

    Protocol used by CDN servers to request content from an origin source.

    Possible values:

    • HTTPS - CDN servers will connect to the origin via HTTPS.
    • HTTP - CDN servers will connect to the origin via HTTP.
    • MATCH - connection protocol will be chosen automatically (content on the origin source should be available for the CDN both through HTTP and HTTPS).

    If protocol is not specified, HTTP is used to connect to an origin server. Available values: "HTTP", "HTTPS", "MATCH".

    preset_applied bool

    Defines whether the CDN resource has a preset applied.

    Possible values:

    • true - CDN resource has a preset applied. CDN resource options included in the preset cannot be edited.
    • false - CDN resource does not have a preset applied.
    primary_resource number

    ID of the main CDN resource which has a shared caching zone with a reserve CDN resource.

    If the parameter is not empty, then the current CDN resource is the reserve. You cannot change some options, create rules, set up origin shielding, or use the reserve CDN resource for Streaming.

    proxy_ssl_ca number

    ID of the trusted CA certificate used to verify an origin.

    It can be used only with "proxy_ssl_enabled": true.

    proxy_ssl_data number

    ID of the SSL certificate used to verify an origin.

    It can be used only with "proxy_ssl_enabled": true.

    proxy_ssl_enabled bool

    Enables or disables SSL certificate validation of the origin server before completing any connection.

    Possible values:

    • true - Origin SSL certificate validation is enabled.
    • false - Origin SSL certificate validation is disabled.
    rules list(string)
    Rules configured for the CDN resource.
    secondary_hostnames list(string)

    Additional delivery domains (CNAMEs) that will be used to deliver content via the CDN.

    Up to ten additional CNAMEs are possible.

    shield_dc string

    Name of the origin shielding location data center.

    Parameter returns null if origin shielding is disabled.

    shield_enabled bool

    Defines whether origin shield is active and working for the CDN resource.

    Possible values:

    • true - Origin shield is active.
    • false - Origin shield is not active.
    shield_routing_map number

    Defines whether the origin shield with a dynamic location is enabled for the CDN resource.

    To manage origin shielding, you must contact customer support.

    shielded bool

    Defines whether origin shielding feature is enabled for the resource.

    Possible values:

    • true - Origin shielding is enabled.
    • false - Origin shielding is disabled.
    ssl_data number

    ID of the SSL certificate linked to the CDN resource.

    Can be used only with "sslEnabled": true.

    ssl_enabled bool

    Defines whether the HTTPS protocol enabled for content delivery.

    Possible values:

    • true - HTTPS is enabled.
    • false - HTTPS is disabled.
    status string

    CDN resource status.

    Possible values:

    • active - CDN resource is active. Content is available to users.
    • suspended - CDN resource is suspended. Content is not available to users.
    • processed - CDN resource has recently been created and is currently being processed. It will take about fifteen minutes to propagate it to all locations.
    • deleted - CDN resource is deleted. Available values: "active", "suspended", "processed", "deleted".
    suspend_date string

    Date when the CDN resource was suspended automatically if there is no traffic on it for 90 days.

    Not specified if the resource was not stopped due to lack of traffic.

    suspended bool

    Defines whether the CDN resource has been automatically suspended because there was no traffic on it for 90 days.

    Possible values:

    • true - CDN resource is currently automatically suspended.
    • false - CDN resource is not automatically suspended.

    You can enable CDN resource using the active field. If there is no traffic on the CDN resource within seven days following activation, it will be suspended again.

    To avoid CDN resource suspension due to no traffic, contact technical support.

    updated string
    Date of the last CDN resource update.
    vp_enabled bool

    Defines whether the CDN resource is integrated with the Streaming Platform.

    Possible values:

    • true - CDN resource is configured for Streaming Platform. Changing resource settings can affect its operation.
    • false - CDN resource is not configured for Streaming Platform.
    waap_domain_id string
    The ID of the associated WAAP domain.
    active Boolean
    Enables or disables a CDN resource.
    canPurgeByUrls Boolean

    Defines whether the CDN resource can be used for purge by URLs feature.

    It's available only in case the CDN resource has enabled ignore_vary_header option.

    client Double
    ID of an account to which the CDN resource belongs.
    cname String

    Delivery domains that will be used for content delivery through a CDN.

    Delivery domains should be added to your DNS settings.

    created String
    Date of CDN resource creation.
    deleted Boolean

    Defines whether CDN resource has been deleted.

    Possible values:

    • true - CDN resource is deleted.
    • false - CDN resource is not deleted.
    description String
    Optional comment describing the CDN resource.
    enabled Boolean

    Enables or disables a CDN resource change by a user.

    Possible values:

    • true - CDN resource is enabled and can be changed. Content can be delivered.
    • false - CDN resource is disabled and cannot be changed. Content can not be delivered.
    fullCustomEnabled Boolean

    Defines whether the CDN resource has a custom configuration.

    Possible values:

    • true - CDN resource has a custom configuration. You cannot change resource settings, except for the SSL certificate. To change other settings, contact technical support.
    • false - CDN resource has a regular configuration. You can change CDN resource settings.
    id Double
    CDN resource ID.
    isPrimary Boolean

    Defines whether a CDN resource has a cache zone shared with other CDN resources.

    Possible values:

    • true - CDN resource is main and has a shared caching zone with other CDN resources, which are called reserve.
    • false - CDN resource is reserve and it has a shared caching zone with the main CDN resource. You cannot change some options, create rules, set up origin shielding and use the reserve resource for Streaming.
    • null - CDN resource does not have a shared cache zone.

    The main CDN resource is specified in the primary_resource field. It cannot be suspended unless all related reserve CDN resources are suspended.

    name String
    CDN resource name.
    options GetCdnResourcesItemOptions

    List of options that can be configured for the CDN resource.

    In case of null value the option is not added to the CDN resource. Option may inherit its value from the global account settings.

    originGroup Double
    Origin group ID with which the CDN resource is associated.
    originGroupName String
    Origin group name.
    originProtocol String

    Protocol used by CDN servers to request content from an origin source.

    Possible values:

    • HTTPS - CDN servers will connect to the origin via HTTPS.
    • HTTP - CDN servers will connect to the origin via HTTP.
    • MATCH - connection protocol will be chosen automatically (content on the origin source should be available for the CDN both through HTTP and HTTPS).

    If protocol is not specified, HTTP is used to connect to an origin server. Available values: "HTTP", "HTTPS", "MATCH".

    presetApplied Boolean

    Defines whether the CDN resource has a preset applied.

    Possible values:

    • true - CDN resource has a preset applied. CDN resource options included in the preset cannot be edited.
    • false - CDN resource does not have a preset applied.
    primaryResource Double

    ID of the main CDN resource which has a shared caching zone with a reserve CDN resource.

    If the parameter is not empty, then the current CDN resource is the reserve. You cannot change some options, create rules, set up origin shielding, or use the reserve CDN resource for Streaming.

    proxySslCa Double

    ID of the trusted CA certificate used to verify an origin.

    It can be used only with "proxy_ssl_enabled": true.

    proxySslData Double

    ID of the SSL certificate used to verify an origin.

    It can be used only with "proxy_ssl_enabled": true.

    proxySslEnabled Boolean

    Enables or disables SSL certificate validation of the origin server before completing any connection.

    Possible values:

    • true - Origin SSL certificate validation is enabled.
    • false - Origin SSL certificate validation is disabled.
    rules List<String>
    Rules configured for the CDN resource.
    secondaryHostnames List<String>

    Additional delivery domains (CNAMEs) that will be used to deliver content via the CDN.

    Up to ten additional CNAMEs are possible.

    shieldDc String

    Name of the origin shielding location data center.

    Parameter returns null if origin shielding is disabled.

    shieldEnabled Boolean

    Defines whether origin shield is active and working for the CDN resource.

    Possible values:

    • true - Origin shield is active.
    • false - Origin shield is not active.
    shieldRoutingMap Double

    Defines whether the origin shield with a dynamic location is enabled for the CDN resource.

    To manage origin shielding, you must contact customer support.

    shielded Boolean

    Defines whether origin shielding feature is enabled for the resource.

    Possible values:

    • true - Origin shielding is enabled.
    • false - Origin shielding is disabled.
    sslData Double

    ID of the SSL certificate linked to the CDN resource.

    Can be used only with "sslEnabled": true.

    sslEnabled Boolean

    Defines whether the HTTPS protocol enabled for content delivery.

    Possible values:

    • true - HTTPS is enabled.
    • false - HTTPS is disabled.
    status String

    CDN resource status.

    Possible values:

    • active - CDN resource is active. Content is available to users.
    • suspended - CDN resource is suspended. Content is not available to users.
    • processed - CDN resource has recently been created and is currently being processed. It will take about fifteen minutes to propagate it to all locations.
    • deleted - CDN resource is deleted. Available values: "active", "suspended", "processed", "deleted".
    suspendDate String

    Date when the CDN resource was suspended automatically if there is no traffic on it for 90 days.

    Not specified if the resource was not stopped due to lack of traffic.

    suspended Boolean

    Defines whether the CDN resource has been automatically suspended because there was no traffic on it for 90 days.

    Possible values:

    • true - CDN resource is currently automatically suspended.
    • false - CDN resource is not automatically suspended.

    You can enable CDN resource using the active field. If there is no traffic on the CDN resource within seven days following activation, it will be suspended again.

    To avoid CDN resource suspension due to no traffic, contact technical support.

    updated String
    Date of the last CDN resource update.
    vpEnabled Boolean

    Defines whether the CDN resource is integrated with the Streaming Platform.

    Possible values:

    • true - CDN resource is configured for Streaming Platform. Changing resource settings can affect its operation.
    • false - CDN resource is not configured for Streaming Platform.
    waapDomainId String
    The ID of the associated WAAP domain.
    active boolean
    Enables or disables a CDN resource.
    canPurgeByUrls boolean

    Defines whether the CDN resource can be used for purge by URLs feature.

    It's available only in case the CDN resource has enabled ignore_vary_header option.

    client number
    ID of an account to which the CDN resource belongs.
    cname string

    Delivery domains that will be used for content delivery through a CDN.

    Delivery domains should be added to your DNS settings.

    created string
    Date of CDN resource creation.
    deleted boolean

    Defines whether CDN resource has been deleted.

    Possible values:

    • true - CDN resource is deleted.
    • false - CDN resource is not deleted.
    description string
    Optional comment describing the CDN resource.
    enabled boolean

    Enables or disables a CDN resource change by a user.

    Possible values:

    • true - CDN resource is enabled and can be changed. Content can be delivered.
    • false - CDN resource is disabled and cannot be changed. Content can not be delivered.
    fullCustomEnabled boolean

    Defines whether the CDN resource has a custom configuration.

    Possible values:

    • true - CDN resource has a custom configuration. You cannot change resource settings, except for the SSL certificate. To change other settings, contact technical support.
    • false - CDN resource has a regular configuration. You can change CDN resource settings.
    id number
    CDN resource ID.
    isPrimary boolean

    Defines whether a CDN resource has a cache zone shared with other CDN resources.

    Possible values:

    • true - CDN resource is main and has a shared caching zone with other CDN resources, which are called reserve.
    • false - CDN resource is reserve and it has a shared caching zone with the main CDN resource. You cannot change some options, create rules, set up origin shielding and use the reserve resource for Streaming.
    • null - CDN resource does not have a shared cache zone.

    The main CDN resource is specified in the primary_resource field. It cannot be suspended unless all related reserve CDN resources are suspended.

    name string
    CDN resource name.
    options GetCdnResourcesItemOptions

    List of options that can be configured for the CDN resource.

    In case of null value the option is not added to the CDN resource. Option may inherit its value from the global account settings.

    originGroup number
    Origin group ID with which the CDN resource is associated.
    originGroupName string
    Origin group name.
    originProtocol string

    Protocol used by CDN servers to request content from an origin source.

    Possible values:

    • HTTPS - CDN servers will connect to the origin via HTTPS.
    • HTTP - CDN servers will connect to the origin via HTTP.
    • MATCH - connection protocol will be chosen automatically (content on the origin source should be available for the CDN both through HTTP and HTTPS).

    If protocol is not specified, HTTP is used to connect to an origin server. Available values: "HTTP", "HTTPS", "MATCH".

    presetApplied boolean

    Defines whether the CDN resource has a preset applied.

    Possible values:

    • true - CDN resource has a preset applied. CDN resource options included in the preset cannot be edited.
    • false - CDN resource does not have a preset applied.
    primaryResource number

    ID of the main CDN resource which has a shared caching zone with a reserve CDN resource.

    If the parameter is not empty, then the current CDN resource is the reserve. You cannot change some options, create rules, set up origin shielding, or use the reserve CDN resource for Streaming.

    proxySslCa number

    ID of the trusted CA certificate used to verify an origin.

    It can be used only with "proxy_ssl_enabled": true.

    proxySslData number

    ID of the SSL certificate used to verify an origin.

    It can be used only with "proxy_ssl_enabled": true.

    proxySslEnabled boolean

    Enables or disables SSL certificate validation of the origin server before completing any connection.

    Possible values:

    • true - Origin SSL certificate validation is enabled.
    • false - Origin SSL certificate validation is disabled.
    rules string[]
    Rules configured for the CDN resource.
    secondaryHostnames string[]

    Additional delivery domains (CNAMEs) that will be used to deliver content via the CDN.

    Up to ten additional CNAMEs are possible.

    shieldDc string

    Name of the origin shielding location data center.

    Parameter returns null if origin shielding is disabled.

    shieldEnabled boolean

    Defines whether origin shield is active and working for the CDN resource.

    Possible values:

    • true - Origin shield is active.
    • false - Origin shield is not active.
    shieldRoutingMap number

    Defines whether the origin shield with a dynamic location is enabled for the CDN resource.

    To manage origin shielding, you must contact customer support.

    shielded boolean

    Defines whether origin shielding feature is enabled for the resource.

    Possible values:

    • true - Origin shielding is enabled.
    • false - Origin shielding is disabled.
    sslData number

    ID of the SSL certificate linked to the CDN resource.

    Can be used only with "sslEnabled": true.

    sslEnabled boolean

    Defines whether the HTTPS protocol enabled for content delivery.

    Possible values:

    • true - HTTPS is enabled.
    • false - HTTPS is disabled.
    status string

    CDN resource status.

    Possible values:

    • active - CDN resource is active. Content is available to users.
    • suspended - CDN resource is suspended. Content is not available to users.
    • processed - CDN resource has recently been created and is currently being processed. It will take about fifteen minutes to propagate it to all locations.
    • deleted - CDN resource is deleted. Available values: "active", "suspended", "processed", "deleted".
    suspendDate string

    Date when the CDN resource was suspended automatically if there is no traffic on it for 90 days.

    Not specified if the resource was not stopped due to lack of traffic.

    suspended boolean

    Defines whether the CDN resource has been automatically suspended because there was no traffic on it for 90 days.

    Possible values:

    • true - CDN resource is currently automatically suspended.
    • false - CDN resource is not automatically suspended.

    You can enable CDN resource using the active field. If there is no traffic on the CDN resource within seven days following activation, it will be suspended again.

    To avoid CDN resource suspension due to no traffic, contact technical support.

    updated string
    Date of the last CDN resource update.
    vpEnabled boolean

    Defines whether the CDN resource is integrated with the Streaming Platform.

    Possible values:

    • true - CDN resource is configured for Streaming Platform. Changing resource settings can affect its operation.
    • false - CDN resource is not configured for Streaming Platform.
    waapDomainId string
    The ID of the associated WAAP domain.
    active bool
    Enables or disables a CDN resource.
    can_purge_by_urls bool

    Defines whether the CDN resource can be used for purge by URLs feature.

    It's available only in case the CDN resource has enabled ignore_vary_header option.

    client float
    ID of an account to which the CDN resource belongs.
    cname str

    Delivery domains that will be used for content delivery through a CDN.

    Delivery domains should be added to your DNS settings.

    created str
    Date of CDN resource creation.
    deleted bool

    Defines whether CDN resource has been deleted.

    Possible values:

    • true - CDN resource is deleted.
    • false - CDN resource is not deleted.
    description str
    Optional comment describing the CDN resource.
    enabled bool

    Enables or disables a CDN resource change by a user.

    Possible values:

    • true - CDN resource is enabled and can be changed. Content can be delivered.
    • false - CDN resource is disabled and cannot be changed. Content can not be delivered.
    full_custom_enabled bool

    Defines whether the CDN resource has a custom configuration.

    Possible values:

    • true - CDN resource has a custom configuration. You cannot change resource settings, except for the SSL certificate. To change other settings, contact technical support.
    • false - CDN resource has a regular configuration. You can change CDN resource settings.
    id float
    CDN resource ID.
    is_primary bool

    Defines whether a CDN resource has a cache zone shared with other CDN resources.

    Possible values:

    • true - CDN resource is main and has a shared caching zone with other CDN resources, which are called reserve.
    • false - CDN resource is reserve and it has a shared caching zone with the main CDN resource. You cannot change some options, create rules, set up origin shielding and use the reserve resource for Streaming.
    • null - CDN resource does not have a shared cache zone.

    The main CDN resource is specified in the primary_resource field. It cannot be suspended unless all related reserve CDN resources are suspended.

    name str
    CDN resource name.
    options GetCdnResourcesItemOptions

    List of options that can be configured for the CDN resource.

    In case of null value the option is not added to the CDN resource. Option may inherit its value from the global account settings.

    origin_group float
    Origin group ID with which the CDN resource is associated.
    origin_group_name str
    Origin group name.
    origin_protocol str

    Protocol used by CDN servers to request content from an origin source.

    Possible values:

    • HTTPS - CDN servers will connect to the origin via HTTPS.
    • HTTP - CDN servers will connect to the origin via HTTP.
    • MATCH - connection protocol will be chosen automatically (content on the origin source should be available for the CDN both through HTTP and HTTPS).

    If protocol is not specified, HTTP is used to connect to an origin server. Available values: "HTTP", "HTTPS", "MATCH".

    preset_applied bool

    Defines whether the CDN resource has a preset applied.

    Possible values:

    • true - CDN resource has a preset applied. CDN resource options included in the preset cannot be edited.
    • false - CDN resource does not have a preset applied.
    primary_resource float

    ID of the main CDN resource which has a shared caching zone with a reserve CDN resource.

    If the parameter is not empty, then the current CDN resource is the reserve. You cannot change some options, create rules, set up origin shielding, or use the reserve CDN resource for Streaming.

    proxy_ssl_ca float

    ID of the trusted CA certificate used to verify an origin.

    It can be used only with "proxy_ssl_enabled": true.

    proxy_ssl_data float

    ID of the SSL certificate used to verify an origin.

    It can be used only with "proxy_ssl_enabled": true.

    proxy_ssl_enabled bool

    Enables or disables SSL certificate validation of the origin server before completing any connection.

    Possible values:

    • true - Origin SSL certificate validation is enabled.
    • false - Origin SSL certificate validation is disabled.
    rules Sequence[str]
    Rules configured for the CDN resource.
    secondary_hostnames Sequence[str]

    Additional delivery domains (CNAMEs) that will be used to deliver content via the CDN.

    Up to ten additional CNAMEs are possible.

    shield_dc str

    Name of the origin shielding location data center.

    Parameter returns null if origin shielding is disabled.

    shield_enabled bool

    Defines whether origin shield is active and working for the CDN resource.

    Possible values:

    • true - Origin shield is active.
    • false - Origin shield is not active.
    shield_routing_map float

    Defines whether the origin shield with a dynamic location is enabled for the CDN resource.

    To manage origin shielding, you must contact customer support.

    shielded bool

    Defines whether origin shielding feature is enabled for the resource.

    Possible values:

    • true - Origin shielding is enabled.
    • false - Origin shielding is disabled.
    ssl_data float

    ID of the SSL certificate linked to the CDN resource.

    Can be used only with "sslEnabled": true.

    ssl_enabled bool

    Defines whether the HTTPS protocol enabled for content delivery.

    Possible values:

    • true - HTTPS is enabled.
    • false - HTTPS is disabled.
    status str

    CDN resource status.

    Possible values:

    • active - CDN resource is active. Content is available to users.
    • suspended - CDN resource is suspended. Content is not available to users.
    • processed - CDN resource has recently been created and is currently being processed. It will take about fifteen minutes to propagate it to all locations.
    • deleted - CDN resource is deleted. Available values: "active", "suspended", "processed", "deleted".
    suspend_date str

    Date when the CDN resource was suspended automatically if there is no traffic on it for 90 days.

    Not specified if the resource was not stopped due to lack of traffic.

    suspended bool

    Defines whether the CDN resource has been automatically suspended because there was no traffic on it for 90 days.

    Possible values:

    • true - CDN resource is currently automatically suspended.
    • false - CDN resource is not automatically suspended.

    You can enable CDN resource using the active field. If there is no traffic on the CDN resource within seven days following activation, it will be suspended again.

    To avoid CDN resource suspension due to no traffic, contact technical support.

    updated str
    Date of the last CDN resource update.
    vp_enabled bool

    Defines whether the CDN resource is integrated with the Streaming Platform.

    Possible values:

    • true - CDN resource is configured for Streaming Platform. Changing resource settings can affect its operation.
    • false - CDN resource is not configured for Streaming Platform.
    waap_domain_id str
    The ID of the associated WAAP domain.
    active Boolean
    Enables or disables a CDN resource.
    canPurgeByUrls Boolean

    Defines whether the CDN resource can be used for purge by URLs feature.

    It's available only in case the CDN resource has enabled ignore_vary_header option.

    client Number
    ID of an account to which the CDN resource belongs.
    cname String

    Delivery domains that will be used for content delivery through a CDN.

    Delivery domains should be added to your DNS settings.

    created String
    Date of CDN resource creation.
    deleted Boolean

    Defines whether CDN resource has been deleted.

    Possible values:

    • true - CDN resource is deleted.
    • false - CDN resource is not deleted.
    description String
    Optional comment describing the CDN resource.
    enabled Boolean

    Enables or disables a CDN resource change by a user.

    Possible values:

    • true - CDN resource is enabled and can be changed. Content can be delivered.
    • false - CDN resource is disabled and cannot be changed. Content can not be delivered.
    fullCustomEnabled Boolean

    Defines whether the CDN resource has a custom configuration.

    Possible values:

    • true - CDN resource has a custom configuration. You cannot change resource settings, except for the SSL certificate. To change other settings, contact technical support.
    • false - CDN resource has a regular configuration. You can change CDN resource settings.
    id Number
    CDN resource ID.
    isPrimary Boolean

    Defines whether a CDN resource has a cache zone shared with other CDN resources.

    Possible values:

    • true - CDN resource is main and has a shared caching zone with other CDN resources, which are called reserve.
    • false - CDN resource is reserve and it has a shared caching zone with the main CDN resource. You cannot change some options, create rules, set up origin shielding and use the reserve resource for Streaming.
    • null - CDN resource does not have a shared cache zone.

    The main CDN resource is specified in the primary_resource field. It cannot be suspended unless all related reserve CDN resources are suspended.

    name String
    CDN resource name.
    options Property Map

    List of options that can be configured for the CDN resource.

    In case of null value the option is not added to the CDN resource. Option may inherit its value from the global account settings.

    originGroup Number
    Origin group ID with which the CDN resource is associated.
    originGroupName String
    Origin group name.
    originProtocol String

    Protocol used by CDN servers to request content from an origin source.

    Possible values:

    • HTTPS - CDN servers will connect to the origin via HTTPS.
    • HTTP - CDN servers will connect to the origin via HTTP.
    • MATCH - connection protocol will be chosen automatically (content on the origin source should be available for the CDN both through HTTP and HTTPS).

    If protocol is not specified, HTTP is used to connect to an origin server. Available values: "HTTP", "HTTPS", "MATCH".

    presetApplied Boolean

    Defines whether the CDN resource has a preset applied.

    Possible values:

    • true - CDN resource has a preset applied. CDN resource options included in the preset cannot be edited.
    • false - CDN resource does not have a preset applied.
    primaryResource Number

    ID of the main CDN resource which has a shared caching zone with a reserve CDN resource.

    If the parameter is not empty, then the current CDN resource is the reserve. You cannot change some options, create rules, set up origin shielding, or use the reserve CDN resource for Streaming.

    proxySslCa Number

    ID of the trusted CA certificate used to verify an origin.

    It can be used only with "proxy_ssl_enabled": true.

    proxySslData Number

    ID of the SSL certificate used to verify an origin.

    It can be used only with "proxy_ssl_enabled": true.

    proxySslEnabled Boolean

    Enables or disables SSL certificate validation of the origin server before completing any connection.

    Possible values:

    • true - Origin SSL certificate validation is enabled.
    • false - Origin SSL certificate validation is disabled.
    rules List<String>
    Rules configured for the CDN resource.
    secondaryHostnames List<String>

    Additional delivery domains (CNAMEs) that will be used to deliver content via the CDN.

    Up to ten additional CNAMEs are possible.

    shieldDc String

    Name of the origin shielding location data center.

    Parameter returns null if origin shielding is disabled.

    shieldEnabled Boolean

    Defines whether origin shield is active and working for the CDN resource.

    Possible values:

    • true - Origin shield is active.
    • false - Origin shield is not active.
    shieldRoutingMap Number

    Defines whether the origin shield with a dynamic location is enabled for the CDN resource.

    To manage origin shielding, you must contact customer support.

    shielded Boolean

    Defines whether origin shielding feature is enabled for the resource.

    Possible values:

    • true - Origin shielding is enabled.
    • false - Origin shielding is disabled.
    sslData Number

    ID of the SSL certificate linked to the CDN resource.

    Can be used only with "sslEnabled": true.

    sslEnabled Boolean

    Defines whether the HTTPS protocol enabled for content delivery.

    Possible values:

    • true - HTTPS is enabled.
    • false - HTTPS is disabled.
    status String

    CDN resource status.

    Possible values:

    • active - CDN resource is active. Content is available to users.
    • suspended - CDN resource is suspended. Content is not available to users.
    • processed - CDN resource has recently been created and is currently being processed. It will take about fifteen minutes to propagate it to all locations.
    • deleted - CDN resource is deleted. Available values: "active", "suspended", "processed", "deleted".
    suspendDate String

    Date when the CDN resource was suspended automatically if there is no traffic on it for 90 days.

    Not specified if the resource was not stopped due to lack of traffic.

    suspended Boolean

    Defines whether the CDN resource has been automatically suspended because there was no traffic on it for 90 days.

    Possible values:

    • true - CDN resource is currently automatically suspended.
    • false - CDN resource is not automatically suspended.

    You can enable CDN resource using the active field. If there is no traffic on the CDN resource within seven days following activation, it will be suspended again.

    To avoid CDN resource suspension due to no traffic, contact technical support.

    updated String
    Date of the last CDN resource update.
    vpEnabled Boolean

    Defines whether the CDN resource is integrated with the Streaming Platform.

    Possible values:

    • true - CDN resource is configured for Streaming Platform. Changing resource settings can affect its operation.
    • false - CDN resource is not configured for Streaming Platform.
    waapDomainId String
    The ID of the associated WAAP domain.

    GetCdnResourcesItemOptions

    AllowedHttpMethods GetCdnResourcesItemOptionsAllowedHttpMethods
    HTTP methods allowed for content requests from the CDN.
    BrotliCompression GetCdnResourcesItemOptionsBrotliCompression
    Compresses content with Brotli on the CDN side. CDN servers will request only uncompressed content from the origin.
    BrowserCacheSettings GetCdnResourcesItemOptionsBrowserCacheSettings

    Cache expiration time for users browsers in seconds.

    Cache expiration time is applied to the following response codes: 200, 201, 204, 206, 301, 302, 303, 304, 307, 308.

    Responses with other codes will not be cached.

    CacheHttpHeaders GetCdnResourcesItemOptionsCacheHttpHeaders

    Legacy option. Use the response_headers_hiding_policy option instead.

    HTTP Headers that must be included in the response.

    Deprecated: Deprecated

    Cors GetCdnResourcesItemOptionsCors

    Enables or disables CORS (Cross-Origin Resource Sharing) header support.

    CORS header support allows the CDN to add the Access-Control-Allow-Origin header to a response to a browser.

    CountryAcl GetCdnResourcesItemOptionsCountryAcl
    Enables control access to content for specified countries.
    DisableCache GetCdnResourcesItemOptionsDisableCache

    Legacy option. Use the edge_cache_settings option instead.

    Allows the complete disabling of content caching.

    Deprecated: Deprecated

    DisableProxyForceRanges GetCdnResourcesItemOptionsDisableProxyForceRanges
    Allows 206 responses regardless of the settings of an origin source.
    EdgeCacheSettings GetCdnResourcesItemOptionsEdgeCacheSettings

    Cache expiration time for CDN servers.

    value and default fields cannot be used simultaneously.

    Fastedge GetCdnResourcesItemOptionsFastedge

    Allows to configure FastEdge app to be called on different request/response phases.

    Note: At least one of on_request_headers, on_request_headers_after_cache, on_request_body, on_response_headers, or on_response_body must be specified.

    FetchCompressed GetCdnResourcesItemOptionsFetchCompressed

    Makes the CDN request compressed content from the origin.

    The origin server should support compression. CDN servers will not decompress your content even if a user browser does not accept compression.

    Notes:

    1. fetch_compressed is not supported with gzipON or brotli_compression or slice options enabled.
    2. fetch_compressed overrides gzipON and brotli_compression in rule. If you enable it in CDN resource and want to use gzipON and brotli_compression in a rule, you have to specify "fetch_compressed": false in the rule.
    FollowOriginRedirect GetCdnResourcesItemOptionsFollowOriginRedirect
    Enables redirection from origin. If the origin server returns a redirect, the option allows the CDN to pull the requested content from the origin server that was returned in the redirect.
    ForceReturn GetCdnResourcesItemOptionsForceReturn

    Applies custom HTTP response codes for CDN content.

    The following codes are reserved by our system and cannot be specified in this option: 408, 444, 477, 494, 495, 496, 497, 499.

    ForwardHostHeader GetCdnResourcesItemOptionsForwardHostHeader

    Forwards the Host header from a end-user request to an origin server.

    hostHeader and forward_host_header options cannot be enabled simultaneously.

    GrpcPassthrough GetCdnResourcesItemOptionsGrpcPassthrough
    Enables gRPC pass-through for the CDN resource.
    GzipOn GetCdnResourcesItemOptionsGzipOn

    Compresses content with gzip on the CDN end. CDN servers will request only uncompressed content from the origin.

    Notes:

    1. Compression with gzip is not supported with fetch_compressed or slice options enabled.
    2. fetch_compressed option in CDN resource settings overrides gzipON in rules. If you enable fetch_compressed in CDN resource and want to enable gzipON in rules, you need to specify "fetch_compressed":false for rules.
    HostHeader GetCdnResourcesItemOptionsHostHeader

    Sets the Host header that CDN servers use when request content from an origin server. Your server must be able to process requests with the chosen header.

    If the option is null, the Host Header value is equal to first CNAME.

    hostHeader and forward_host_header options cannot be enabled simultaneously.

    Http3Enabled GetCdnResourcesItemOptionsHttp3Enabled

    Enables HTTP/3 protocol for content delivery.

    http3_enabled option works only with "sslEnabled": true.

    IgnoreCookie GetCdnResourcesItemOptionsIgnoreCookie
    Defines whether the files with the Set-Cookies header are cached as one file or as different ones.
    IgnoreQueryString GetCdnResourcesItemOptionsIgnoreQueryString

    How a file with different query strings is cached: either as one object (option is enabled) or as different objects (option is disabled.)

    ignoreQueryString, query_params_whitelist and query_params_blacklist options cannot be enabled simultaneously.

    ImageStack GetCdnResourcesItemOptionsImageStack
    Transforms JPG and PNG images (for example, resize or crop) and automatically converts them to WebP or AVIF format.
    IpAddressAcl GetCdnResourcesItemOptionsIpAddressAcl

    Controls access to the CDN resource content for specific IP addresses.

    If you want to use IPs from our CDN servers IP list for IP ACL configuration, you have to independently monitor their relevance.

    We recommend you use a script for automatically update IP ACL. Read more.

    LimitBandwidth GetCdnResourcesItemOptionsLimitBandwidth
    Allows to control the download speed per connection.
    NetworkErrorLogging GetCdnResourcesItemOptionsNetworkErrorLogging

    Enables Network Error Logging (NEL) for the resource.

    When enabled, the edge instructs browsers to collect and report network errors (via the Report-To and NEL response headers), improving observability of connectivity issues for the resource.

    ProxyCacheKey GetCdnResourcesItemOptionsProxyCacheKey

    Allows you to modify your cache key. If omitted, the default value is $request_uri.

    Combine the specified variables to create a key for caching.

    • $http_x_cdn_real_host — the original Host header sent by the client. Useful for splitting cache across multiple aliases served by a single CDN resource.
    • $request_uri — the full original request URI including the query string (e.g., /path?id=1).
    • $scheme — the request scheme, either http or https.
    • $uri — the normalized request URI without the query string (e.g., /path).

    Warning: Enabling and changing this option can invalidate your current cache and affect the cache hit ratio. Furthermore, the "Purge by pattern" option will not work.

    ProxyCacheMethodsSet GetCdnResourcesItemOptionsProxyCacheMethodsSet
    Caching for POST requests along with default GET and HEAD.
    ProxyConnectTimeout GetCdnResourcesItemOptionsProxyConnectTimeout
    The time limit for establishing a connection with the origin.
    ProxyReadTimeout GetCdnResourcesItemOptionsProxyReadTimeout

    The time limit for receiving a partial response from the origin. If no response is received within this time, the connection will be closed.

    Note: When used with a WebSocket connection, this option supports values only in the range 1–20 seconds (instead of the usual 1–30 seconds).

    QueryParamsBlacklist GetCdnResourcesItemOptionsQueryParamsBlacklist

    Files with the specified query parameters are cached as one object, files with other parameters are cached as different objects.

    ignoreQueryString, query_params_whitelist and query_params_blacklist options cannot be enabled simultaneously.

    QueryParamsWhitelist GetCdnResourcesItemOptionsQueryParamsWhitelist

    Files with the specified query parameters are cached as different objects, files with other parameters are cached as one object.

    ignoreQueryString, query_params_whitelist and query_params_blacklist options cannot be enabled simultaneously.

    QueryStringForwarding GetCdnResourcesItemOptionsQueryStringForwarding
    The Query String Forwarding feature allows for the seamless transfer of parameters embedded in playlist files to the corresponding media chunk files. This functionality ensures that specific attributes, such as authentication tokens or tracking information, are consistently passed along from the playlist manifest to the individual media segments. This is particularly useful for maintaining continuity in security, analytics, and any other parameter-based operations across the entire media delivery workflow.
    RedirectHttpToHttps GetCdnResourcesItemOptionsRedirectHttpToHttps

    Enables redirect from HTTP to HTTPS.

    redirect_http_to_https and redirect_https_to_http options cannot be enabled simultaneously.

    RedirectHttpsToHttp GetCdnResourcesItemOptionsRedirectHttpsToHttp

    Enables redirect from HTTPS to HTTP.

    redirect_http_to_https and redirect_https_to_http options cannot be enabled simultaneously.

    ReferrerAcl GetCdnResourcesItemOptionsReferrerAcl
    Controls access to the CDN resource content for specified domain names.
    ResponseHeadersHidingPolicy GetCdnResourcesItemOptionsResponseHeadersHidingPolicy
    Hides HTTP headers from an origin server in the CDN response.
    Rewrite GetCdnResourcesItemOptionsRewrite
    Changes and redirects requests from the CDN to the origin. It operates according to the Nginx configuration.
    SecureKey GetCdnResourcesItemOptionsSecureKey
    Configures access with tokenized URLs. This makes impossible to access content without a valid (unexpired) token.
    Slice GetCdnResourcesItemOptionsSlice

    Requests and caches files larger than 10 MB in parts (no larger than 10 MB per part.) This reduces time to first byte.

    The option is based on the Slice module.

    Notes:

    1. Origin must support HTTP Range requests.
    2. Not supported with gzipON, brotli_compression or fetch_compressed options enabled.
    Sni GetCdnResourcesItemOptionsSni

    The hostname that is added to SNI requests from CDN servers to the origin server via HTTPS.

    SNI is generally only required if your origin uses shared hosting or does not have a dedicated IP address. If the origin server presents multiple certificates, SNI allows the origin server to know which certificate to use for the connection.

    The option works only if originProtocol parameter is HTTPS or MATCH.

    Stale GetCdnResourcesItemOptionsStale
    Serves stale cached content in case of origin unavailability.
    StaticHeaders GetCdnResourcesItemOptionsStaticHeaders

    Legacy option. Use the static_response_headers option instead.

    Custom HTTP Headers that a CDN server adds to response. Up to fifty custom HTTP Headers can be specified. May contain a header with multiple values.

    Deprecated: Deprecated

    StaticRequestHeaders GetCdnResourcesItemOptionsStaticRequestHeaders
    Custom HTTP Headers for a CDN server to add to request. Up to fifty custom HTTP Headers can be specified.
    StaticResponseHeaders GetCdnResourcesItemOptionsStaticResponseHeaders
    Custom HTTP Headers that a CDN server adds to a response.
    TlsVersions GetCdnResourcesItemOptionsTlsVersions

    List of SSL/TLS protocol versions allowed for HTTPS connections from end users to the domain.

    When the option is disabled, all protocols versions are allowed.

    UseDefaultLeChain GetCdnResourcesItemOptionsUseDefaultLeChain

    Let's Encrypt certificate chain.

    The specified chain will be used during the next Let's Encrypt certificate issue or renewal.

    UseDns01LeChallenge GetCdnResourcesItemOptionsUseDns01LeChallenge

    DNS-01 challenge to issue a Let's Encrypt certificate for the resource.

    DNS service should be activated to enable this option.

    UseRsaLeCert GetCdnResourcesItemOptionsUseRsaLeCert

    RSA Let's Encrypt certificate type for the CDN resource.

    The specified value will be used during the next Let's Encrypt certificate issue or renewal.

    UserAgentAcl GetCdnResourcesItemOptionsUserAgentAcl
    Controls access to the content for specified User-Agents.
    Waap GetCdnResourcesItemOptionsWaap
    Allows to enable WAAP (Web Application and API Protection).
    Websockets GetCdnResourcesItemOptionsWebsockets
    Enables or disables WebSockets connections to an origin server.
    AllowedHttpMethods GetCdnResourcesItemOptionsAllowedHttpMethods
    HTTP methods allowed for content requests from the CDN.
    BrotliCompression GetCdnResourcesItemOptionsBrotliCompression
    Compresses content with Brotli on the CDN side. CDN servers will request only uncompressed content from the origin.
    BrowserCacheSettings GetCdnResourcesItemOptionsBrowserCacheSettings

    Cache expiration time for users browsers in seconds.

    Cache expiration time is applied to the following response codes: 200, 201, 204, 206, 301, 302, 303, 304, 307, 308.

    Responses with other codes will not be cached.

    CacheHttpHeaders GetCdnResourcesItemOptionsCacheHttpHeaders

    Legacy option. Use the response_headers_hiding_policy option instead.

    HTTP Headers that must be included in the response.

    Deprecated: Deprecated

    Cors GetCdnResourcesItemOptionsCors

    Enables or disables CORS (Cross-Origin Resource Sharing) header support.

    CORS header support allows the CDN to add the Access-Control-Allow-Origin header to a response to a browser.

    CountryAcl GetCdnResourcesItemOptionsCountryAcl
    Enables control access to content for specified countries.
    DisableCache GetCdnResourcesItemOptionsDisableCache

    Legacy option. Use the edge_cache_settings option instead.

    Allows the complete disabling of content caching.

    Deprecated: Deprecated

    DisableProxyForceRanges GetCdnResourcesItemOptionsDisableProxyForceRanges
    Allows 206 responses regardless of the settings of an origin source.
    EdgeCacheSettings GetCdnResourcesItemOptionsEdgeCacheSettings

    Cache expiration time for CDN servers.

    value and default fields cannot be used simultaneously.

    Fastedge GetCdnResourcesItemOptionsFastedge

    Allows to configure FastEdge app to be called on different request/response phases.

    Note: At least one of on_request_headers, on_request_headers_after_cache, on_request_body, on_response_headers, or on_response_body must be specified.

    FetchCompressed GetCdnResourcesItemOptionsFetchCompressed

    Makes the CDN request compressed content from the origin.

    The origin server should support compression. CDN servers will not decompress your content even if a user browser does not accept compression.

    Notes:

    1. fetch_compressed is not supported with gzipON or brotli_compression or slice options enabled.
    2. fetch_compressed overrides gzipON and brotli_compression in rule. If you enable it in CDN resource and want to use gzipON and brotli_compression in a rule, you have to specify "fetch_compressed": false in the rule.
    FollowOriginRedirect GetCdnResourcesItemOptionsFollowOriginRedirect
    Enables redirection from origin. If the origin server returns a redirect, the option allows the CDN to pull the requested content from the origin server that was returned in the redirect.
    ForceReturn GetCdnResourcesItemOptionsForceReturn

    Applies custom HTTP response codes for CDN content.

    The following codes are reserved by our system and cannot be specified in this option: 408, 444, 477, 494, 495, 496, 497, 499.

    ForwardHostHeader GetCdnResourcesItemOptionsForwardHostHeader

    Forwards the Host header from a end-user request to an origin server.

    hostHeader and forward_host_header options cannot be enabled simultaneously.

    GrpcPassthrough GetCdnResourcesItemOptionsGrpcPassthrough
    Enables gRPC pass-through for the CDN resource.
    GzipOn GetCdnResourcesItemOptionsGzipOn

    Compresses content with gzip on the CDN end. CDN servers will request only uncompressed content from the origin.

    Notes:

    1. Compression with gzip is not supported with fetch_compressed or slice options enabled.
    2. fetch_compressed option in CDN resource settings overrides gzipON in rules. If you enable fetch_compressed in CDN resource and want to enable gzipON in rules, you need to specify "fetch_compressed":false for rules.
    HostHeader GetCdnResourcesItemOptionsHostHeader

    Sets the Host header that CDN servers use when request content from an origin server. Your server must be able to process requests with the chosen header.

    If the option is null, the Host Header value is equal to first CNAME.

    hostHeader and forward_host_header options cannot be enabled simultaneously.

    Http3Enabled GetCdnResourcesItemOptionsHttp3Enabled

    Enables HTTP/3 protocol for content delivery.

    http3_enabled option works only with "sslEnabled": true.

    IgnoreCookie GetCdnResourcesItemOptionsIgnoreCookie
    Defines whether the files with the Set-Cookies header are cached as one file or as different ones.
    IgnoreQueryString GetCdnResourcesItemOptionsIgnoreQueryString

    How a file with different query strings is cached: either as one object (option is enabled) or as different objects (option is disabled.)

    ignoreQueryString, query_params_whitelist and query_params_blacklist options cannot be enabled simultaneously.

    ImageStack GetCdnResourcesItemOptionsImageStack
    Transforms JPG and PNG images (for example, resize or crop) and automatically converts them to WebP or AVIF format.
    IpAddressAcl GetCdnResourcesItemOptionsIpAddressAcl

    Controls access to the CDN resource content for specific IP addresses.

    If you want to use IPs from our CDN servers IP list for IP ACL configuration, you have to independently monitor their relevance.

    We recommend you use a script for automatically update IP ACL. Read more.

    LimitBandwidth GetCdnResourcesItemOptionsLimitBandwidth
    Allows to control the download speed per connection.
    NetworkErrorLogging GetCdnResourcesItemOptionsNetworkErrorLogging

    Enables Network Error Logging (NEL) for the resource.

    When enabled, the edge instructs browsers to collect and report network errors (via the Report-To and NEL response headers), improving observability of connectivity issues for the resource.

    ProxyCacheKey GetCdnResourcesItemOptionsProxyCacheKey

    Allows you to modify your cache key. If omitted, the default value is $request_uri.

    Combine the specified variables to create a key for caching.

    • $http_x_cdn_real_host — the original Host header sent by the client. Useful for splitting cache across multiple aliases served by a single CDN resource.
    • $request_uri — the full original request URI including the query string (e.g., /path?id=1).
    • $scheme — the request scheme, either http or https.
    • $uri — the normalized request URI without the query string (e.g., /path).

    Warning: Enabling and changing this option can invalidate your current cache and affect the cache hit ratio. Furthermore, the "Purge by pattern" option will not work.

    ProxyCacheMethodsSet GetCdnResourcesItemOptionsProxyCacheMethodsSet
    Caching for POST requests along with default GET and HEAD.
    ProxyConnectTimeout GetCdnResourcesItemOptionsProxyConnectTimeout
    The time limit for establishing a connection with the origin.
    ProxyReadTimeout GetCdnResourcesItemOptionsProxyReadTimeout

    The time limit for receiving a partial response from the origin. If no response is received within this time, the connection will be closed.

    Note: When used with a WebSocket connection, this option supports values only in the range 1–20 seconds (instead of the usual 1–30 seconds).

    QueryParamsBlacklist GetCdnResourcesItemOptionsQueryParamsBlacklist

    Files with the specified query parameters are cached as one object, files with other parameters are cached as different objects.

    ignoreQueryString, query_params_whitelist and query_params_blacklist options cannot be enabled simultaneously.

    QueryParamsWhitelist GetCdnResourcesItemOptionsQueryParamsWhitelist

    Files with the specified query parameters are cached as different objects, files with other parameters are cached as one object.

    ignoreQueryString, query_params_whitelist and query_params_blacklist options cannot be enabled simultaneously.

    QueryStringForwarding GetCdnResourcesItemOptionsQueryStringForwarding
    The Query String Forwarding feature allows for the seamless transfer of parameters embedded in playlist files to the corresponding media chunk files. This functionality ensures that specific attributes, such as authentication tokens or tracking information, are consistently passed along from the playlist manifest to the individual media segments. This is particularly useful for maintaining continuity in security, analytics, and any other parameter-based operations across the entire media delivery workflow.
    RedirectHttpToHttps GetCdnResourcesItemOptionsRedirectHttpToHttps

    Enables redirect from HTTP to HTTPS.

    redirect_http_to_https and redirect_https_to_http options cannot be enabled simultaneously.

    RedirectHttpsToHttp GetCdnResourcesItemOptionsRedirectHttpsToHttp

    Enables redirect from HTTPS to HTTP.

    redirect_http_to_https and redirect_https_to_http options cannot be enabled simultaneously.

    ReferrerAcl GetCdnResourcesItemOptionsReferrerAcl
    Controls access to the CDN resource content for specified domain names.
    ResponseHeadersHidingPolicy GetCdnResourcesItemOptionsResponseHeadersHidingPolicy
    Hides HTTP headers from an origin server in the CDN response.
    Rewrite GetCdnResourcesItemOptionsRewrite
    Changes and redirects requests from the CDN to the origin. It operates according to the Nginx configuration.
    SecureKey GetCdnResourcesItemOptionsSecureKey
    Configures access with tokenized URLs. This makes impossible to access content without a valid (unexpired) token.
    Slice GetCdnResourcesItemOptionsSlice

    Requests and caches files larger than 10 MB in parts (no larger than 10 MB per part.) This reduces time to first byte.

    The option is based on the Slice module.

    Notes:

    1. Origin must support HTTP Range requests.
    2. Not supported with gzipON, brotli_compression or fetch_compressed options enabled.
    Sni GetCdnResourcesItemOptionsSni

    The hostname that is added to SNI requests from CDN servers to the origin server via HTTPS.

    SNI is generally only required if your origin uses shared hosting or does not have a dedicated IP address. If the origin server presents multiple certificates, SNI allows the origin server to know which certificate to use for the connection.

    The option works only if originProtocol parameter is HTTPS or MATCH.

    Stale GetCdnResourcesItemOptionsStale
    Serves stale cached content in case of origin unavailability.
    StaticHeaders GetCdnResourcesItemOptionsStaticHeaders

    Legacy option. Use the static_response_headers option instead.

    Custom HTTP Headers that a CDN server adds to response. Up to fifty custom HTTP Headers can be specified. May contain a header with multiple values.

    Deprecated: Deprecated

    StaticRequestHeaders GetCdnResourcesItemOptionsStaticRequestHeaders
    Custom HTTP Headers for a CDN server to add to request. Up to fifty custom HTTP Headers can be specified.
    StaticResponseHeaders GetCdnResourcesItemOptionsStaticResponseHeaders
    Custom HTTP Headers that a CDN server adds to a response.
    TlsVersions GetCdnResourcesItemOptionsTlsVersions

    List of SSL/TLS protocol versions allowed for HTTPS connections from end users to the domain.

    When the option is disabled, all protocols versions are allowed.

    UseDefaultLeChain GetCdnResourcesItemOptionsUseDefaultLeChain

    Let's Encrypt certificate chain.

    The specified chain will be used during the next Let's Encrypt certificate issue or renewal.

    UseDns01LeChallenge GetCdnResourcesItemOptionsUseDns01LeChallenge

    DNS-01 challenge to issue a Let's Encrypt certificate for the resource.

    DNS service should be activated to enable this option.

    UseRsaLeCert GetCdnResourcesItemOptionsUseRsaLeCert

    RSA Let's Encrypt certificate type for the CDN resource.

    The specified value will be used during the next Let's Encrypt certificate issue or renewal.

    UserAgentAcl GetCdnResourcesItemOptionsUserAgentAcl
    Controls access to the content for specified User-Agents.
    Waap GetCdnResourcesItemOptionsWaap
    Allows to enable WAAP (Web Application and API Protection).
    Websockets GetCdnResourcesItemOptionsWebsockets
    Enables or disables WebSockets connections to an origin server.
    allowed_http_methods object
    HTTP methods allowed for content requests from the CDN.
    brotli_compression object
    Compresses content with Brotli on the CDN side. CDN servers will request only uncompressed content from the origin.
    browser_cache_settings object

    Cache expiration time for users browsers in seconds.

    Cache expiration time is applied to the following response codes: 200, 201, 204, 206, 301, 302, 303, 304, 307, 308.

    Responses with other codes will not be cached.

    cache_http_headers object

    Legacy option. Use the response_headers_hiding_policy option instead.

    HTTP Headers that must be included in the response.

    Deprecated: Deprecated

    cors object

    Enables or disables CORS (Cross-Origin Resource Sharing) header support.

    CORS header support allows the CDN to add the Access-Control-Allow-Origin header to a response to a browser.

    country_acl object
    Enables control access to content for specified countries.
    disable_cache object

    Legacy option. Use the edge_cache_settings option instead.

    Allows the complete disabling of content caching.

    Deprecated: Deprecated

    disable_proxy_force_ranges object
    Allows 206 responses regardless of the settings of an origin source.
    edge_cache_settings object

    Cache expiration time for CDN servers.

    value and default fields cannot be used simultaneously.

    fastedge object

    Allows to configure FastEdge app to be called on different request/response phases.

    Note: At least one of on_request_headers, on_request_headers_after_cache, on_request_body, on_response_headers, or on_response_body must be specified.

    fetch_compressed object

    Makes the CDN request compressed content from the origin.

    The origin server should support compression. CDN servers will not decompress your content even if a user browser does not accept compression.

    Notes:

    1. fetch_compressed is not supported with gzipON or brotli_compression or slice options enabled.
    2. fetch_compressed overrides gzipON and brotli_compression in rule. If you enable it in CDN resource and want to use gzipON and brotli_compression in a rule, you have to specify "fetch_compressed": false in the rule.
    follow_origin_redirect object
    Enables redirection from origin. If the origin server returns a redirect, the option allows the CDN to pull the requested content from the origin server that was returned in the redirect.
    force_return object

    Applies custom HTTP response codes for CDN content.

    The following codes are reserved by our system and cannot be specified in this option: 408, 444, 477, 494, 495, 496, 497, 499.

    forward_host_header object

    Forwards the Host header from a end-user request to an origin server.

    hostHeader and forward_host_header options cannot be enabled simultaneously.

    grpc_passthrough object
    Enables gRPC pass-through for the CDN resource.
    gzip_on object

    Compresses content with gzip on the CDN end. CDN servers will request only uncompressed content from the origin.

    Notes:

    1. Compression with gzip is not supported with fetch_compressed or slice options enabled.
    2. fetch_compressed option in CDN resource settings overrides gzipON in rules. If you enable fetch_compressed in CDN resource and want to enable gzipON in rules, you need to specify "fetch_compressed":false for rules.
    host_header object

    Sets the Host header that CDN servers use when request content from an origin server. Your server must be able to process requests with the chosen header.

    If the option is null, the Host Header value is equal to first CNAME.

    hostHeader and forward_host_header options cannot be enabled simultaneously.

    http3_enabled object

    Enables HTTP/3 protocol for content delivery.

    http3_enabled option works only with "sslEnabled": true.

    ignore_cookie object
    Defines whether the files with the Set-Cookies header are cached as one file or as different ones.
    ignore_query_string object

    How a file with different query strings is cached: either as one object (option is enabled) or as different objects (option is disabled.)

    ignoreQueryString, query_params_whitelist and query_params_blacklist options cannot be enabled simultaneously.

    image_stack object
    Transforms JPG and PNG images (for example, resize or crop) and automatically converts them to WebP or AVIF format.
    ip_address_acl object

    Controls access to the CDN resource content for specific IP addresses.

    If you want to use IPs from our CDN servers IP list for IP ACL configuration, you have to independently monitor their relevance.

    We recommend you use a script for automatically update IP ACL. Read more.

    limit_bandwidth object
    Allows to control the download speed per connection.
    network_error_logging object

    Enables Network Error Logging (NEL) for the resource.

    When enabled, the edge instructs browsers to collect and report network errors (via the Report-To and NEL response headers), improving observability of connectivity issues for the resource.

    proxy_cache_key object

    Allows you to modify your cache key. If omitted, the default value is $request_uri.

    Combine the specified variables to create a key for caching.

    • $http_x_cdn_real_host — the original Host header sent by the client. Useful for splitting cache across multiple aliases served by a single CDN resource.
    • $request_uri — the full original request URI including the query string (e.g., /path?id=1).
    • $scheme — the request scheme, either http or https.
    • $uri — the normalized request URI without the query string (e.g., /path).

    Warning: Enabling and changing this option can invalidate your current cache and affect the cache hit ratio. Furthermore, the "Purge by pattern" option will not work.

    proxy_cache_methods_set object
    Caching for POST requests along with default GET and HEAD.
    proxy_connect_timeout object
    The time limit for establishing a connection with the origin.
    proxy_read_timeout object

    The time limit for receiving a partial response from the origin. If no response is received within this time, the connection will be closed.

    Note: When used with a WebSocket connection, this option supports values only in the range 1–20 seconds (instead of the usual 1–30 seconds).

    query_params_blacklist object

    Files with the specified query parameters are cached as one object, files with other parameters are cached as different objects.

    ignoreQueryString, query_params_whitelist and query_params_blacklist options cannot be enabled simultaneously.

    query_params_whitelist object

    Files with the specified query parameters are cached as different objects, files with other parameters are cached as one object.

    ignoreQueryString, query_params_whitelist and query_params_blacklist options cannot be enabled simultaneously.

    query_string_forwarding object
    The Query String Forwarding feature allows for the seamless transfer of parameters embedded in playlist files to the corresponding media chunk files. This functionality ensures that specific attributes, such as authentication tokens or tracking information, are consistently passed along from the playlist manifest to the individual media segments. This is particularly useful for maintaining continuity in security, analytics, and any other parameter-based operations across the entire media delivery workflow.
    redirect_http_to_https object

    Enables redirect from HTTP to HTTPS.

    redirect_http_to_https and redirect_https_to_http options cannot be enabled simultaneously.

    redirect_https_to_http object

    Enables redirect from HTTPS to HTTP.

    redirect_http_to_https and redirect_https_to_http options cannot be enabled simultaneously.

    referrer_acl object
    Controls access to the CDN resource content for specified domain names.
    response_headers_hiding_policy object
    Hides HTTP headers from an origin server in the CDN response.
    rewrite object
    Changes and redirects requests from the CDN to the origin. It operates according to the Nginx configuration.
    secure_key object
    Configures access with tokenized URLs. This makes impossible to access content without a valid (unexpired) token.
    slice object

    Requests and caches files larger than 10 MB in parts (no larger than 10 MB per part.) This reduces time to first byte.

    The option is based on the Slice module.

    Notes:

    1. Origin must support HTTP Range requests.
    2. Not supported with gzipON, brotli_compression or fetch_compressed options enabled.
    sni object

    The hostname that is added to SNI requests from CDN servers to the origin server via HTTPS.

    SNI is generally only required if your origin uses shared hosting or does not have a dedicated IP address. If the origin server presents multiple certificates, SNI allows the origin server to know which certificate to use for the connection.

    The option works only if originProtocol parameter is HTTPS or MATCH.

    stale object
    Serves stale cached content in case of origin unavailability.
    static_headers object

    Legacy option. Use the static_response_headers option instead.

    Custom HTTP Headers that a CDN server adds to response. Up to fifty custom HTTP Headers can be specified. May contain a header with multiple values.

    Deprecated: Deprecated

    static_request_headers object
    Custom HTTP Headers for a CDN server to add to request. Up to fifty custom HTTP Headers can be specified.
    static_response_headers object
    Custom HTTP Headers that a CDN server adds to a response.
    tls_versions object

    List of SSL/TLS protocol versions allowed for HTTPS connections from end users to the domain.

    When the option is disabled, all protocols versions are allowed.

    use_default_le_chain object

    Let's Encrypt certificate chain.

    The specified chain will be used during the next Let's Encrypt certificate issue or renewal.

    use_dns01_le_challenge object

    DNS-01 challenge to issue a Let's Encrypt certificate for the resource.

    DNS service should be activated to enable this option.

    use_rsa_le_cert object

    RSA Let's Encrypt certificate type for the CDN resource.

    The specified value will be used during the next Let's Encrypt certificate issue or renewal.

    user_agent_acl object
    Controls access to the content for specified User-Agents.
    waap object
    Allows to enable WAAP (Web Application and API Protection).
    websockets object
    Enables or disables WebSockets connections to an origin server.
    allowedHttpMethods GetCdnResourcesItemOptionsAllowedHttpMethods
    HTTP methods allowed for content requests from the CDN.
    brotliCompression GetCdnResourcesItemOptionsBrotliCompression
    Compresses content with Brotli on the CDN side. CDN servers will request only uncompressed content from the origin.
    browserCacheSettings GetCdnResourcesItemOptionsBrowserCacheSettings

    Cache expiration time for users browsers in seconds.

    Cache expiration time is applied to the following response codes: 200, 201, 204, 206, 301, 302, 303, 304, 307, 308.

    Responses with other codes will not be cached.

    cacheHttpHeaders GetCdnResourcesItemOptionsCacheHttpHeaders

    Legacy option. Use the response_headers_hiding_policy option instead.

    HTTP Headers that must be included in the response.

    Deprecated: Deprecated

    cors GetCdnResourcesItemOptionsCors

    Enables or disables CORS (Cross-Origin Resource Sharing) header support.

    CORS header support allows the CDN to add the Access-Control-Allow-Origin header to a response to a browser.

    countryAcl GetCdnResourcesItemOptionsCountryAcl
    Enables control access to content for specified countries.
    disableCache GetCdnResourcesItemOptionsDisableCache

    Legacy option. Use the edge_cache_settings option instead.

    Allows the complete disabling of content caching.

    Deprecated: Deprecated

    disableProxyForceRanges GetCdnResourcesItemOptionsDisableProxyForceRanges
    Allows 206 responses regardless of the settings of an origin source.
    edgeCacheSettings GetCdnResourcesItemOptionsEdgeCacheSettings

    Cache expiration time for CDN servers.

    value and default fields cannot be used simultaneously.

    fastedge GetCdnResourcesItemOptionsFastedge

    Allows to configure FastEdge app to be called on different request/response phases.

    Note: At least one of on_request_headers, on_request_headers_after_cache, on_request_body, on_response_headers, or on_response_body must be specified.

    fetchCompressed GetCdnResourcesItemOptionsFetchCompressed

    Makes the CDN request compressed content from the origin.

    The origin server should support compression. CDN servers will not decompress your content even if a user browser does not accept compression.

    Notes:

    1. fetch_compressed is not supported with gzipON or brotli_compression or slice options enabled.
    2. fetch_compressed overrides gzipON and brotli_compression in rule. If you enable it in CDN resource and want to use gzipON and brotli_compression in a rule, you have to specify "fetch_compressed": false in the rule.
    followOriginRedirect GetCdnResourcesItemOptionsFollowOriginRedirect
    Enables redirection from origin. If the origin server returns a redirect, the option allows the CDN to pull the requested content from the origin server that was returned in the redirect.
    forceReturn GetCdnResourcesItemOptionsForceReturn

    Applies custom HTTP response codes for CDN content.

    The following codes are reserved by our system and cannot be specified in this option: 408, 444, 477, 494, 495, 496, 497, 499.

    forwardHostHeader GetCdnResourcesItemOptionsForwardHostHeader

    Forwards the Host header from a end-user request to an origin server.

    hostHeader and forward_host_header options cannot be enabled simultaneously.

    grpcPassthrough GetCdnResourcesItemOptionsGrpcPassthrough
    Enables gRPC pass-through for the CDN resource.
    gzipOn GetCdnResourcesItemOptionsGzipOn

    Compresses content with gzip on the CDN end. CDN servers will request only uncompressed content from the origin.

    Notes:

    1. Compression with gzip is not supported with fetch_compressed or slice options enabled.
    2. fetch_compressed option in CDN resource settings overrides gzipON in rules. If you enable fetch_compressed in CDN resource and want to enable gzipON in rules, you need to specify "fetch_compressed":false for rules.
    hostHeader GetCdnResourcesItemOptionsHostHeader

    Sets the Host header that CDN servers use when request content from an origin server. Your server must be able to process requests with the chosen header.

    If the option is null, the Host Header value is equal to first CNAME.

    hostHeader and forward_host_header options cannot be enabled simultaneously.

    http3Enabled GetCdnResourcesItemOptionsHttp3Enabled

    Enables HTTP/3 protocol for content delivery.

    http3_enabled option works only with "sslEnabled": true.

    ignoreCookie GetCdnResourcesItemOptionsIgnoreCookie
    Defines whether the files with the Set-Cookies header are cached as one file or as different ones.
    ignoreQueryString GetCdnResourcesItemOptionsIgnoreQueryString

    How a file with different query strings is cached: either as one object (option is enabled) or as different objects (option is disabled.)

    ignoreQueryString, query_params_whitelist and query_params_blacklist options cannot be enabled simultaneously.

    imageStack GetCdnResourcesItemOptionsImageStack
    Transforms JPG and PNG images (for example, resize or crop) and automatically converts them to WebP or AVIF format.
    ipAddressAcl GetCdnResourcesItemOptionsIpAddressAcl

    Controls access to the CDN resource content for specific IP addresses.

    If you want to use IPs from our CDN servers IP list for IP ACL configuration, you have to independently monitor their relevance.

    We recommend you use a script for automatically update IP ACL. Read more.

    limitBandwidth GetCdnResourcesItemOptionsLimitBandwidth
    Allows to control the download speed per connection.
    networkErrorLogging GetCdnResourcesItemOptionsNetworkErrorLogging

    Enables Network Error Logging (NEL) for the resource.

    When enabled, the edge instructs browsers to collect and report network errors (via the Report-To and NEL response headers), improving observability of connectivity issues for the resource.

    proxyCacheKey GetCdnResourcesItemOptionsProxyCacheKey

    Allows you to modify your cache key. If omitted, the default value is $request_uri.

    Combine the specified variables to create a key for caching.

    • $http_x_cdn_real_host — the original Host header sent by the client. Useful for splitting cache across multiple aliases served by a single CDN resource.
    • $request_uri — the full original request URI including the query string (e.g., /path?id=1).
    • $scheme — the request scheme, either http or https.
    • $uri — the normalized request URI without the query string (e.g., /path).

    Warning: Enabling and changing this option can invalidate your current cache and affect the cache hit ratio. Furthermore, the "Purge by pattern" option will not work.

    proxyCacheMethodsSet GetCdnResourcesItemOptionsProxyCacheMethodsSet
    Caching for POST requests along with default GET and HEAD.
    proxyConnectTimeout GetCdnResourcesItemOptionsProxyConnectTimeout
    The time limit for establishing a connection with the origin.
    proxyReadTimeout GetCdnResourcesItemOptionsProxyReadTimeout

    The time limit for receiving a partial response from the origin. If no response is received within this time, the connection will be closed.

    Note: When used with a WebSocket connection, this option supports values only in the range 1–20 seconds (instead of the usual 1–30 seconds).

    queryParamsBlacklist GetCdnResourcesItemOptionsQueryParamsBlacklist

    Files with the specified query parameters are cached as one object, files with other parameters are cached as different objects.

    ignoreQueryString, query_params_whitelist and query_params_blacklist options cannot be enabled simultaneously.

    queryParamsWhitelist GetCdnResourcesItemOptionsQueryParamsWhitelist

    Files with the specified query parameters are cached as different objects, files with other parameters are cached as one object.

    ignoreQueryString, query_params_whitelist and query_params_blacklist options cannot be enabled simultaneously.

    queryStringForwarding GetCdnResourcesItemOptionsQueryStringForwarding
    The Query String Forwarding feature allows for the seamless transfer of parameters embedded in playlist files to the corresponding media chunk files. This functionality ensures that specific attributes, such as authentication tokens or tracking information, are consistently passed along from the playlist manifest to the individual media segments. This is particularly useful for maintaining continuity in security, analytics, and any other parameter-based operations across the entire media delivery workflow.
    redirectHttpToHttps GetCdnResourcesItemOptionsRedirectHttpToHttps

    Enables redirect from HTTP to HTTPS.

    redirect_http_to_https and redirect_https_to_http options cannot be enabled simultaneously.

    redirectHttpsToHttp GetCdnResourcesItemOptionsRedirectHttpsToHttp

    Enables redirect from HTTPS to HTTP.

    redirect_http_to_https and redirect_https_to_http options cannot be enabled simultaneously.

    referrerAcl GetCdnResourcesItemOptionsReferrerAcl
    Controls access to the CDN resource content for specified domain names.
    responseHeadersHidingPolicy GetCdnResourcesItemOptionsResponseHeadersHidingPolicy
    Hides HTTP headers from an origin server in the CDN response.
    rewrite GetCdnResourcesItemOptionsRewrite
    Changes and redirects requests from the CDN to the origin. It operates according to the Nginx configuration.
    secureKey GetCdnResourcesItemOptionsSecureKey
    Configures access with tokenized URLs. This makes impossible to access content without a valid (unexpired) token.
    slice GetCdnResourcesItemOptionsSlice

    Requests and caches files larger than 10 MB in parts (no larger than 10 MB per part.) This reduces time to first byte.

    The option is based on the Slice module.

    Notes:

    1. Origin must support HTTP Range requests.
    2. Not supported with gzipON, brotli_compression or fetch_compressed options enabled.
    sni GetCdnResourcesItemOptionsSni

    The hostname that is added to SNI requests from CDN servers to the origin server via HTTPS.

    SNI is generally only required if your origin uses shared hosting or does not have a dedicated IP address. If the origin server presents multiple certificates, SNI allows the origin server to know which certificate to use for the connection.

    The option works only if originProtocol parameter is HTTPS or MATCH.

    stale GetCdnResourcesItemOptionsStale
    Serves stale cached content in case of origin unavailability.
    staticHeaders GetCdnResourcesItemOptionsStaticHeaders

    Legacy option. Use the static_response_headers option instead.

    Custom HTTP Headers that a CDN server adds to response. Up to fifty custom HTTP Headers can be specified. May contain a header with multiple values.

    Deprecated: Deprecated

    staticRequestHeaders GetCdnResourcesItemOptionsStaticRequestHeaders
    Custom HTTP Headers for a CDN server to add to request. Up to fifty custom HTTP Headers can be specified.
    staticResponseHeaders GetCdnResourcesItemOptionsStaticResponseHeaders
    Custom HTTP Headers that a CDN server adds to a response.
    tlsVersions GetCdnResourcesItemOptionsTlsVersions

    List of SSL/TLS protocol versions allowed for HTTPS connections from end users to the domain.

    When the option is disabled, all protocols versions are allowed.

    useDefaultLeChain GetCdnResourcesItemOptionsUseDefaultLeChain

    Let's Encrypt certificate chain.

    The specified chain will be used during the next Let's Encrypt certificate issue or renewal.

    useDns01LeChallenge GetCdnResourcesItemOptionsUseDns01LeChallenge

    DNS-01 challenge to issue a Let's Encrypt certificate for the resource.

    DNS service should be activated to enable this option.

    useRsaLeCert GetCdnResourcesItemOptionsUseRsaLeCert

    RSA Let's Encrypt certificate type for the CDN resource.

    The specified value will be used during the next Let's Encrypt certificate issue or renewal.

    userAgentAcl GetCdnResourcesItemOptionsUserAgentAcl
    Controls access to the content for specified User-Agents.
    waap GetCdnResourcesItemOptionsWaap
    Allows to enable WAAP (Web Application and API Protection).
    websockets GetCdnResourcesItemOptionsWebsockets
    Enables or disables WebSockets connections to an origin server.
    allowedHttpMethods GetCdnResourcesItemOptionsAllowedHttpMethods
    HTTP methods allowed for content requests from the CDN.
    brotliCompression GetCdnResourcesItemOptionsBrotliCompression
    Compresses content with Brotli on the CDN side. CDN servers will request only uncompressed content from the origin.
    browserCacheSettings GetCdnResourcesItemOptionsBrowserCacheSettings

    Cache expiration time for users browsers in seconds.

    Cache expiration time is applied to the following response codes: 200, 201, 204, 206, 301, 302, 303, 304, 307, 308.

    Responses with other codes will not be cached.

    cacheHttpHeaders GetCdnResourcesItemOptionsCacheHttpHeaders

    Legacy option. Use the response_headers_hiding_policy option instead.

    HTTP Headers that must be included in the response.

    Deprecated: Deprecated

    cors GetCdnResourcesItemOptionsCors

    Enables or disables CORS (Cross-Origin Resource Sharing) header support.

    CORS header support allows the CDN to add the Access-Control-Allow-Origin header to a response to a browser.

    countryAcl GetCdnResourcesItemOptionsCountryAcl
    Enables control access to content for specified countries.
    disableCache GetCdnResourcesItemOptionsDisableCache

    Legacy option. Use the edge_cache_settings option instead.

    Allows the complete disabling of content caching.

    Deprecated: Deprecated

    disableProxyForceRanges GetCdnResourcesItemOptionsDisableProxyForceRanges
    Allows 206 responses regardless of the settings of an origin source.
    edgeCacheSettings GetCdnResourcesItemOptionsEdgeCacheSettings

    Cache expiration time for CDN servers.

    value and default fields cannot be used simultaneously.

    fastedge GetCdnResourcesItemOptionsFastedge

    Allows to configure FastEdge app to be called on different request/response phases.

    Note: At least one of on_request_headers, on_request_headers_after_cache, on_request_body, on_response_headers, or on_response_body must be specified.

    fetchCompressed GetCdnResourcesItemOptionsFetchCompressed

    Makes the CDN request compressed content from the origin.

    The origin server should support compression. CDN servers will not decompress your content even if a user browser does not accept compression.

    Notes:

    1. fetch_compressed is not supported with gzipON or brotli_compression or slice options enabled.
    2. fetch_compressed overrides gzipON and brotli_compression in rule. If you enable it in CDN resource and want to use gzipON and brotli_compression in a rule, you have to specify "fetch_compressed": false in the rule.
    followOriginRedirect GetCdnResourcesItemOptionsFollowOriginRedirect
    Enables redirection from origin. If the origin server returns a redirect, the option allows the CDN to pull the requested content from the origin server that was returned in the redirect.
    forceReturn GetCdnResourcesItemOptionsForceReturn

    Applies custom HTTP response codes for CDN content.

    The following codes are reserved by our system and cannot be specified in this option: 408, 444, 477, 494, 495, 496, 497, 499.

    forwardHostHeader GetCdnResourcesItemOptionsForwardHostHeader

    Forwards the Host header from a end-user request to an origin server.

    hostHeader and forward_host_header options cannot be enabled simultaneously.

    grpcPassthrough GetCdnResourcesItemOptionsGrpcPassthrough
    Enables gRPC pass-through for the CDN resource.
    gzipOn GetCdnResourcesItemOptionsGzipOn

    Compresses content with gzip on the CDN end. CDN servers will request only uncompressed content from the origin.

    Notes:

    1. Compression with gzip is not supported with fetch_compressed or slice options enabled.
    2. fetch_compressed option in CDN resource settings overrides gzipON in rules. If you enable fetch_compressed in CDN resource and want to enable gzipON in rules, you need to specify "fetch_compressed":false for rules.
    hostHeader GetCdnResourcesItemOptionsHostHeader

    Sets the Host header that CDN servers use when request content from an origin server. Your server must be able to process requests with the chosen header.

    If the option is null, the Host Header value is equal to first CNAME.

    hostHeader and forward_host_header options cannot be enabled simultaneously.

    http3Enabled GetCdnResourcesItemOptionsHttp3Enabled

    Enables HTTP/3 protocol for content delivery.

    http3_enabled option works only with "sslEnabled": true.

    ignoreCookie GetCdnResourcesItemOptionsIgnoreCookie
    Defines whether the files with the Set-Cookies header are cached as one file or as different ones.
    ignoreQueryString GetCdnResourcesItemOptionsIgnoreQueryString

    How a file with different query strings is cached: either as one object (option is enabled) or as different objects (option is disabled.)

    ignoreQueryString, query_params_whitelist and query_params_blacklist options cannot be enabled simultaneously.

    imageStack GetCdnResourcesItemOptionsImageStack
    Transforms JPG and PNG images (for example, resize or crop) and automatically converts them to WebP or AVIF format.
    ipAddressAcl GetCdnResourcesItemOptionsIpAddressAcl

    Controls access to the CDN resource content for specific IP addresses.

    If you want to use IPs from our CDN servers IP list for IP ACL configuration, you have to independently monitor their relevance.

    We recommend you use a script for automatically update IP ACL. Read more.

    limitBandwidth GetCdnResourcesItemOptionsLimitBandwidth
    Allows to control the download speed per connection.
    networkErrorLogging GetCdnResourcesItemOptionsNetworkErrorLogging

    Enables Network Error Logging (NEL) for the resource.

    When enabled, the edge instructs browsers to collect and report network errors (via the Report-To and NEL response headers), improving observability of connectivity issues for the resource.

    proxyCacheKey GetCdnResourcesItemOptionsProxyCacheKey

    Allows you to modify your cache key. If omitted, the default value is $request_uri.

    Combine the specified variables to create a key for caching.

    • $http_x_cdn_real_host — the original Host header sent by the client. Useful for splitting cache across multiple aliases served by a single CDN resource.
    • $request_uri — the full original request URI including the query string (e.g., /path?id=1).
    • $scheme — the request scheme, either http or https.
    • $uri — the normalized request URI without the query string (e.g., /path).

    Warning: Enabling and changing this option can invalidate your current cache and affect the cache hit ratio. Furthermore, the "Purge by pattern" option will not work.

    proxyCacheMethodsSet GetCdnResourcesItemOptionsProxyCacheMethodsSet
    Caching for POST requests along with default GET and HEAD.
    proxyConnectTimeout GetCdnResourcesItemOptionsProxyConnectTimeout
    The time limit for establishing a connection with the origin.
    proxyReadTimeout GetCdnResourcesItemOptionsProxyReadTimeout

    The time limit for receiving a partial response from the origin. If no response is received within this time, the connection will be closed.

    Note: When used with a WebSocket connection, this option supports values only in the range 1–20 seconds (instead of the usual 1–30 seconds).

    queryParamsBlacklist GetCdnResourcesItemOptionsQueryParamsBlacklist

    Files with the specified query parameters are cached as one object, files with other parameters are cached as different objects.

    ignoreQueryString, query_params_whitelist and query_params_blacklist options cannot be enabled simultaneously.

    queryParamsWhitelist GetCdnResourcesItemOptionsQueryParamsWhitelist

    Files with the specified query parameters are cached as different objects, files with other parameters are cached as one object.

    ignoreQueryString, query_params_whitelist and query_params_blacklist options cannot be enabled simultaneously.

    queryStringForwarding GetCdnResourcesItemOptionsQueryStringForwarding
    The Query String Forwarding feature allows for the seamless transfer of parameters embedded in playlist files to the corresponding media chunk files. This functionality ensures that specific attributes, such as authentication tokens or tracking information, are consistently passed along from the playlist manifest to the individual media segments. This is particularly useful for maintaining continuity in security, analytics, and any other parameter-based operations across the entire media delivery workflow.
    redirectHttpToHttps GetCdnResourcesItemOptionsRedirectHttpToHttps

    Enables redirect from HTTP to HTTPS.

    redirect_http_to_https and redirect_https_to_http options cannot be enabled simultaneously.

    redirectHttpsToHttp GetCdnResourcesItemOptionsRedirectHttpsToHttp

    Enables redirect from HTTPS to HTTP.

    redirect_http_to_https and redirect_https_to_http options cannot be enabled simultaneously.

    referrerAcl GetCdnResourcesItemOptionsReferrerAcl
    Controls access to the CDN resource content for specified domain names.
    responseHeadersHidingPolicy GetCdnResourcesItemOptionsResponseHeadersHidingPolicy
    Hides HTTP headers from an origin server in the CDN response.
    rewrite GetCdnResourcesItemOptionsRewrite
    Changes and redirects requests from the CDN to the origin. It operates according to the Nginx configuration.
    secureKey GetCdnResourcesItemOptionsSecureKey
    Configures access with tokenized URLs. This makes impossible to access content without a valid (unexpired) token.
    slice GetCdnResourcesItemOptionsSlice

    Requests and caches files larger than 10 MB in parts (no larger than 10 MB per part.) This reduces time to first byte.

    The option is based on the Slice module.

    Notes:

    1. Origin must support HTTP Range requests.
    2. Not supported with gzipON, brotli_compression or fetch_compressed options enabled.
    sni GetCdnResourcesItemOptionsSni

    The hostname that is added to SNI requests from CDN servers to the origin server via HTTPS.

    SNI is generally only required if your origin uses shared hosting or does not have a dedicated IP address. If the origin server presents multiple certificates, SNI allows the origin server to know which certificate to use for the connection.

    The option works only if originProtocol parameter is HTTPS or MATCH.

    stale GetCdnResourcesItemOptionsStale
    Serves stale cached content in case of origin unavailability.
    staticHeaders GetCdnResourcesItemOptionsStaticHeaders

    Legacy option. Use the static_response_headers option instead.

    Custom HTTP Headers that a CDN server adds to response. Up to fifty custom HTTP Headers can be specified. May contain a header with multiple values.

    Deprecated: Deprecated

    staticRequestHeaders GetCdnResourcesItemOptionsStaticRequestHeaders
    Custom HTTP Headers for a CDN server to add to request. Up to fifty custom HTTP Headers can be specified.
    staticResponseHeaders GetCdnResourcesItemOptionsStaticResponseHeaders
    Custom HTTP Headers that a CDN server adds to a response.
    tlsVersions GetCdnResourcesItemOptionsTlsVersions

    List of SSL/TLS protocol versions allowed for HTTPS connections from end users to the domain.

    When the option is disabled, all protocols versions are allowed.

    useDefaultLeChain GetCdnResourcesItemOptionsUseDefaultLeChain

    Let's Encrypt certificate chain.

    The specified chain will be used during the next Let's Encrypt certificate issue or renewal.

    useDns01LeChallenge GetCdnResourcesItemOptionsUseDns01LeChallenge

    DNS-01 challenge to issue a Let's Encrypt certificate for the resource.

    DNS service should be activated to enable this option.

    useRsaLeCert GetCdnResourcesItemOptionsUseRsaLeCert

    RSA Let's Encrypt certificate type for the CDN resource.

    The specified value will be used during the next Let's Encrypt certificate issue or renewal.

    userAgentAcl GetCdnResourcesItemOptionsUserAgentAcl
    Controls access to the content for specified User-Agents.
    waap GetCdnResourcesItemOptionsWaap
    Allows to enable WAAP (Web Application and API Protection).
    websockets GetCdnResourcesItemOptionsWebsockets
    Enables or disables WebSockets connections to an origin server.
    allowed_http_methods GetCdnResourcesItemOptionsAllowedHttpMethods
    HTTP methods allowed for content requests from the CDN.
    brotli_compression GetCdnResourcesItemOptionsBrotliCompression
    Compresses content with Brotli on the CDN side. CDN servers will request only uncompressed content from the origin.
    browser_cache_settings GetCdnResourcesItemOptionsBrowserCacheSettings

    Cache expiration time for users browsers in seconds.

    Cache expiration time is applied to the following response codes: 200, 201, 204, 206, 301, 302, 303, 304, 307, 308.

    Responses with other codes will not be cached.

    cache_http_headers GetCdnResourcesItemOptionsCacheHttpHeaders

    Legacy option. Use the response_headers_hiding_policy option instead.

    HTTP Headers that must be included in the response.

    Deprecated: Deprecated

    cors GetCdnResourcesItemOptionsCors

    Enables or disables CORS (Cross-Origin Resource Sharing) header support.

    CORS header support allows the CDN to add the Access-Control-Allow-Origin header to a response to a browser.

    country_acl GetCdnResourcesItemOptionsCountryAcl
    Enables control access to content for specified countries.
    disable_cache GetCdnResourcesItemOptionsDisableCache

    Legacy option. Use the edge_cache_settings option instead.

    Allows the complete disabling of content caching.

    Deprecated: Deprecated

    disable_proxy_force_ranges GetCdnResourcesItemOptionsDisableProxyForceRanges
    Allows 206 responses regardless of the settings of an origin source.
    edge_cache_settings GetCdnResourcesItemOptionsEdgeCacheSettings

    Cache expiration time for CDN servers.

    value and default fields cannot be used simultaneously.

    fastedge GetCdnResourcesItemOptionsFastedge

    Allows to configure FastEdge app to be called on different request/response phases.

    Note: At least one of on_request_headers, on_request_headers_after_cache, on_request_body, on_response_headers, or on_response_body must be specified.

    fetch_compressed GetCdnResourcesItemOptionsFetchCompressed

    Makes the CDN request compressed content from the origin.

    The origin server should support compression. CDN servers will not decompress your content even if a user browser does not accept compression.

    Notes:

    1. fetch_compressed is not supported with gzipON or brotli_compression or slice options enabled.
    2. fetch_compressed overrides gzipON and brotli_compression in rule. If you enable it in CDN resource and want to use gzipON and brotli_compression in a rule, you have to specify "fetch_compressed": false in the rule.
    follow_origin_redirect GetCdnResourcesItemOptionsFollowOriginRedirect
    Enables redirection from origin. If the origin server returns a redirect, the option allows the CDN to pull the requested content from the origin server that was returned in the redirect.
    force_return GetCdnResourcesItemOptionsForceReturn

    Applies custom HTTP response codes for CDN content.

    The following codes are reserved by our system and cannot be specified in this option: 408, 444, 477, 494, 495, 496, 497, 499.

    forward_host_header GetCdnResourcesItemOptionsForwardHostHeader

    Forwards the Host header from a end-user request to an origin server.

    hostHeader and forward_host_header options cannot be enabled simultaneously.

    grpc_passthrough GetCdnResourcesItemOptionsGrpcPassthrough
    Enables gRPC pass-through for the CDN resource.
    gzip_on GetCdnResourcesItemOptionsGzipOn

    Compresses content with gzip on the CDN end. CDN servers will request only uncompressed content from the origin.

    Notes:

    1. Compression with gzip is not supported with fetch_compressed or slice options enabled.
    2. fetch_compressed option in CDN resource settings overrides gzipON in rules. If you enable fetch_compressed in CDN resource and want to enable gzipON in rules, you need to specify "fetch_compressed":false for rules.
    host_header GetCdnResourcesItemOptionsHostHeader

    Sets the Host header that CDN servers use when request content from an origin server. Your server must be able to process requests with the chosen header.

    If the option is null, the Host Header value is equal to first CNAME.

    hostHeader and forward_host_header options cannot be enabled simultaneously.

    http3_enabled GetCdnResourcesItemOptionsHttp3Enabled

    Enables HTTP/3 protocol for content delivery.

    http3_enabled option works only with "sslEnabled": true.

    ignore_cookie GetCdnResourcesItemOptionsIgnoreCookie
    Defines whether the files with the Set-Cookies header are cached as one file or as different ones.
    ignore_query_string GetCdnResourcesItemOptionsIgnoreQueryString

    How a file with different query strings is cached: either as one object (option is enabled) or as different objects (option is disabled.)

    ignoreQueryString, query_params_whitelist and query_params_blacklist options cannot be enabled simultaneously.

    image_stack GetCdnResourcesItemOptionsImageStack
    Transforms JPG and PNG images (for example, resize or crop) and automatically converts them to WebP or AVIF format.
    ip_address_acl GetCdnResourcesItemOptionsIpAddressAcl

    Controls access to the CDN resource content for specific IP addresses.

    If you want to use IPs from our CDN servers IP list for IP ACL configuration, you have to independently monitor their relevance.

    We recommend you use a script for automatically update IP ACL. Read more.

    limit_bandwidth GetCdnResourcesItemOptionsLimitBandwidth
    Allows to control the download speed per connection.
    network_error_logging GetCdnResourcesItemOptionsNetworkErrorLogging

    Enables Network Error Logging (NEL) for the resource.

    When enabled, the edge instructs browsers to collect and report network errors (via the Report-To and NEL response headers), improving observability of connectivity issues for the resource.

    proxy_cache_key GetCdnResourcesItemOptionsProxyCacheKey

    Allows you to modify your cache key. If omitted, the default value is $request_uri.

    Combine the specified variables to create a key for caching.

    • $http_x_cdn_real_host — the original Host header sent by the client. Useful for splitting cache across multiple aliases served by a single CDN resource.
    • $request_uri — the full original request URI including the query string (e.g., /path?id=1).
    • $scheme — the request scheme, either http or https.
    • $uri — the normalized request URI without the query string (e.g., /path).

    Warning: Enabling and changing this option can invalidate your current cache and affect the cache hit ratio. Furthermore, the "Purge by pattern" option will not work.

    proxy_cache_methods_set GetCdnResourcesItemOptionsProxyCacheMethodsSet
    Caching for POST requests along with default GET and HEAD.
    proxy_connect_timeout GetCdnResourcesItemOptionsProxyConnectTimeout
    The time limit for establishing a connection with the origin.
    proxy_read_timeout GetCdnResourcesItemOptionsProxyReadTimeout

    The time limit for receiving a partial response from the origin. If no response is received within this time, the connection will be closed.

    Note: When used with a WebSocket connection, this option supports values only in the range 1–20 seconds (instead of the usual 1–30 seconds).

    query_params_blacklist GetCdnResourcesItemOptionsQueryParamsBlacklist

    Files with the specified query parameters are cached as one object, files with other parameters are cached as different objects.

    ignoreQueryString, query_params_whitelist and query_params_blacklist options cannot be enabled simultaneously.

    query_params_whitelist GetCdnResourcesItemOptionsQueryParamsWhitelist

    Files with the specified query parameters are cached as different objects, files with other parameters are cached as one object.

    ignoreQueryString, query_params_whitelist and query_params_blacklist options cannot be enabled simultaneously.

    query_string_forwarding GetCdnResourcesItemOptionsQueryStringForwarding
    The Query String Forwarding feature allows for the seamless transfer of parameters embedded in playlist files to the corresponding media chunk files. This functionality ensures that specific attributes, such as authentication tokens or tracking information, are consistently passed along from the playlist manifest to the individual media segments. This is particularly useful for maintaining continuity in security, analytics, and any other parameter-based operations across the entire media delivery workflow.
    redirect_http_to_https GetCdnResourcesItemOptionsRedirectHttpToHttps

    Enables redirect from HTTP to HTTPS.

    redirect_http_to_https and redirect_https_to_http options cannot be enabled simultaneously.

    redirect_https_to_http GetCdnResourcesItemOptionsRedirectHttpsToHttp

    Enables redirect from HTTPS to HTTP.

    redirect_http_to_https and redirect_https_to_http options cannot be enabled simultaneously.

    referrer_acl GetCdnResourcesItemOptionsReferrerAcl
    Controls access to the CDN resource content for specified domain names.
    response_headers_hiding_policy GetCdnResourcesItemOptionsResponseHeadersHidingPolicy
    Hides HTTP headers from an origin server in the CDN response.
    rewrite GetCdnResourcesItemOptionsRewrite
    Changes and redirects requests from the CDN to the origin. It operates according to the Nginx configuration.
    secure_key GetCdnResourcesItemOptionsSecureKey
    Configures access with tokenized URLs. This makes impossible to access content without a valid (unexpired) token.
    slice GetCdnResourcesItemOptionsSlice

    Requests and caches files larger than 10 MB in parts (no larger than 10 MB per part.) This reduces time to first byte.

    The option is based on the Slice module.

    Notes:

    1. Origin must support HTTP Range requests.
    2. Not supported with gzipON, brotli_compression or fetch_compressed options enabled.
    sni GetCdnResourcesItemOptionsSni

    The hostname that is added to SNI requests from CDN servers to the origin server via HTTPS.

    SNI is generally only required if your origin uses shared hosting or does not have a dedicated IP address. If the origin server presents multiple certificates, SNI allows the origin server to know which certificate to use for the connection.

    The option works only if originProtocol parameter is HTTPS or MATCH.

    stale GetCdnResourcesItemOptionsStale
    Serves stale cached content in case of origin unavailability.
    static_headers GetCdnResourcesItemOptionsStaticHeaders

    Legacy option. Use the static_response_headers option instead.

    Custom HTTP Headers that a CDN server adds to response. Up to fifty custom HTTP Headers can be specified. May contain a header with multiple values.

    Deprecated: Deprecated

    static_request_headers GetCdnResourcesItemOptionsStaticRequestHeaders
    Custom HTTP Headers for a CDN server to add to request. Up to fifty custom HTTP Headers can be specified.
    static_response_headers GetCdnResourcesItemOptionsStaticResponseHeaders
    Custom HTTP Headers that a CDN server adds to a response.
    tls_versions GetCdnResourcesItemOptionsTlsVersions

    List of SSL/TLS protocol versions allowed for HTTPS connections from end users to the domain.

    When the option is disabled, all protocols versions are allowed.

    use_default_le_chain GetCdnResourcesItemOptionsUseDefaultLeChain

    Let's Encrypt certificate chain.

    The specified chain will be used during the next Let's Encrypt certificate issue or renewal.

    use_dns01_le_challenge GetCdnResourcesItemOptionsUseDns01LeChallenge

    DNS-01 challenge to issue a Let's Encrypt certificate for the resource.

    DNS service should be activated to enable this option.

    use_rsa_le_cert GetCdnResourcesItemOptionsUseRsaLeCert

    RSA Let's Encrypt certificate type for the CDN resource.

    The specified value will be used during the next Let's Encrypt certificate issue or renewal.

    user_agent_acl GetCdnResourcesItemOptionsUserAgentAcl
    Controls access to the content for specified User-Agents.
    waap GetCdnResourcesItemOptionsWaap
    Allows to enable WAAP (Web Application and API Protection).
    websockets GetCdnResourcesItemOptionsWebsockets
    Enables or disables WebSockets connections to an origin server.
    allowedHttpMethods Property Map
    HTTP methods allowed for content requests from the CDN.
    brotliCompression Property Map
    Compresses content with Brotli on the CDN side. CDN servers will request only uncompressed content from the origin.
    browserCacheSettings Property Map

    Cache expiration time for users browsers in seconds.

    Cache expiration time is applied to the following response codes: 200, 201, 204, 206, 301, 302, 303, 304, 307, 308.

    Responses with other codes will not be cached.

    cacheHttpHeaders Property Map

    Legacy option. Use the response_headers_hiding_policy option instead.

    HTTP Headers that must be included in the response.

    Deprecated: Deprecated

    cors Property Map

    Enables or disables CORS (Cross-Origin Resource Sharing) header support.

    CORS header support allows the CDN to add the Access-Control-Allow-Origin header to a response to a browser.

    countryAcl Property Map
    Enables control access to content for specified countries.
    disableCache Property Map

    Legacy option. Use the edge_cache_settings option instead.

    Allows the complete disabling of content caching.

    Deprecated: Deprecated

    disableProxyForceRanges Property Map
    Allows 206 responses regardless of the settings of an origin source.
    edgeCacheSettings Property Map

    Cache expiration time for CDN servers.

    value and default fields cannot be used simultaneously.

    fastedge Property Map

    Allows to configure FastEdge app to be called on different request/response phases.

    Note: At least one of on_request_headers, on_request_headers_after_cache, on_request_body, on_response_headers, or on_response_body must be specified.

    fetchCompressed Property Map

    Makes the CDN request compressed content from the origin.

    The origin server should support compression. CDN servers will not decompress your content even if a user browser does not accept compression.

    Notes:

    1. fetch_compressed is not supported with gzipON or brotli_compression or slice options enabled.
    2. fetch_compressed overrides gzipON and brotli_compression in rule. If you enable it in CDN resource and want to use gzipON and brotli_compression in a rule, you have to specify "fetch_compressed": false in the rule.
    followOriginRedirect Property Map
    Enables redirection from origin. If the origin server returns a redirect, the option allows the CDN to pull the requested content from the origin server that was returned in the redirect.
    forceReturn Property Map

    Applies custom HTTP response codes for CDN content.

    The following codes are reserved by our system and cannot be specified in this option: 408, 444, 477, 494, 495, 496, 497, 499.

    forwardHostHeader Property Map

    Forwards the Host header from a end-user request to an origin server.

    hostHeader and forward_host_header options cannot be enabled simultaneously.

    grpcPassthrough Property Map
    Enables gRPC pass-through for the CDN resource.
    gzipOn Property Map

    Compresses content with gzip on the CDN end. CDN servers will request only uncompressed content from the origin.

    Notes:

    1. Compression with gzip is not supported with fetch_compressed or slice options enabled.
    2. fetch_compressed option in CDN resource settings overrides gzipON in rules. If you enable fetch_compressed in CDN resource and want to enable gzipON in rules, you need to specify "fetch_compressed":false for rules.
    hostHeader Property Map

    Sets the Host header that CDN servers use when request content from an origin server. Your server must be able to process requests with the chosen header.

    If the option is null, the Host Header value is equal to first CNAME.

    hostHeader and forward_host_header options cannot be enabled simultaneously.

    http3Enabled Property Map

    Enables HTTP/3 protocol for content delivery.

    http3_enabled option works only with "sslEnabled": true.

    ignoreCookie Property Map
    Defines whether the files with the Set-Cookies header are cached as one file or as different ones.
    ignoreQueryString Property Map

    How a file with different query strings is cached: either as one object (option is enabled) or as different objects (option is disabled.)

    ignoreQueryString, query_params_whitelist and query_params_blacklist options cannot be enabled simultaneously.

    imageStack Property Map
    Transforms JPG and PNG images (for example, resize or crop) and automatically converts them to WebP or AVIF format.
    ipAddressAcl Property Map

    Controls access to the CDN resource content for specific IP addresses.

    If you want to use IPs from our CDN servers IP list for IP ACL configuration, you have to independently monitor their relevance.

    We recommend you use a script for automatically update IP ACL. Read more.

    limitBandwidth Property Map
    Allows to control the download speed per connection.
    networkErrorLogging Property Map

    Enables Network Error Logging (NEL) for the resource.

    When enabled, the edge instructs browsers to collect and report network errors (via the Report-To and NEL response headers), improving observability of connectivity issues for the resource.

    proxyCacheKey Property Map

    Allows you to modify your cache key. If omitted, the default value is $request_uri.

    Combine the specified variables to create a key for caching.

    • $http_x_cdn_real_host — the original Host header sent by the client. Useful for splitting cache across multiple aliases served by a single CDN resource.
    • $request_uri — the full original request URI including the query string (e.g., /path?id=1).
    • $scheme — the request scheme, either http or https.
    • $uri — the normalized request URI without the query string (e.g., /path).

    Warning: Enabling and changing this option can invalidate your current cache and affect the cache hit ratio. Furthermore, the "Purge by pattern" option will not work.

    proxyCacheMethodsSet Property Map
    Caching for POST requests along with default GET and HEAD.
    proxyConnectTimeout Property Map
    The time limit for establishing a connection with the origin.
    proxyReadTimeout Property Map

    The time limit for receiving a partial response from the origin. If no response is received within this time, the connection will be closed.

    Note: When used with a WebSocket connection, this option supports values only in the range 1–20 seconds (instead of the usual 1–30 seconds).

    queryParamsBlacklist Property Map

    Files with the specified query parameters are cached as one object, files with other parameters are cached as different objects.

    ignoreQueryString, query_params_whitelist and query_params_blacklist options cannot be enabled simultaneously.

    queryParamsWhitelist Property Map

    Files with the specified query parameters are cached as different objects, files with other parameters are cached as one object.

    ignoreQueryString, query_params_whitelist and query_params_blacklist options cannot be enabled simultaneously.

    queryStringForwarding Property Map
    The Query String Forwarding feature allows for the seamless transfer of parameters embedded in playlist files to the corresponding media chunk files. This functionality ensures that specific attributes, such as authentication tokens or tracking information, are consistently passed along from the playlist manifest to the individual media segments. This is particularly useful for maintaining continuity in security, analytics, and any other parameter-based operations across the entire media delivery workflow.
    redirectHttpToHttps Property Map

    Enables redirect from HTTP to HTTPS.

    redirect_http_to_https and redirect_https_to_http options cannot be enabled simultaneously.

    redirectHttpsToHttp Property Map

    Enables redirect from HTTPS to HTTP.

    redirect_http_to_https and redirect_https_to_http options cannot be enabled simultaneously.

    referrerAcl Property Map
    Controls access to the CDN resource content for specified domain names.
    responseHeadersHidingPolicy Property Map
    Hides HTTP headers from an origin server in the CDN response.
    rewrite Property Map
    Changes and redirects requests from the CDN to the origin. It operates according to the Nginx configuration.
    secureKey Property Map
    Configures access with tokenized URLs. This makes impossible to access content without a valid (unexpired) token.
    slice Property Map

    Requests and caches files larger than 10 MB in parts (no larger than 10 MB per part.) This reduces time to first byte.

    The option is based on the Slice module.

    Notes:

    1. Origin must support HTTP Range requests.
    2. Not supported with gzipON, brotli_compression or fetch_compressed options enabled.
    sni Property Map

    The hostname that is added to SNI requests from CDN servers to the origin server via HTTPS.

    SNI is generally only required if your origin uses shared hosting or does not have a dedicated IP address. If the origin server presents multiple certificates, SNI allows the origin server to know which certificate to use for the connection.

    The option works only if originProtocol parameter is HTTPS or MATCH.

    stale Property Map
    Serves stale cached content in case of origin unavailability.
    staticHeaders Property Map

    Legacy option. Use the static_response_headers option instead.

    Custom HTTP Headers that a CDN server adds to response. Up to fifty custom HTTP Headers can be specified. May contain a header with multiple values.

    Deprecated: Deprecated

    staticRequestHeaders Property Map
    Custom HTTP Headers for a CDN server to add to request. Up to fifty custom HTTP Headers can be specified.
    staticResponseHeaders Property Map
    Custom HTTP Headers that a CDN server adds to a response.
    tlsVersions Property Map

    List of SSL/TLS protocol versions allowed for HTTPS connections from end users to the domain.

    When the option is disabled, all protocols versions are allowed.

    useDefaultLeChain Property Map

    Let's Encrypt certificate chain.

    The specified chain will be used during the next Let's Encrypt certificate issue or renewal.

    useDns01LeChallenge Property Map

    DNS-01 challenge to issue a Let's Encrypt certificate for the resource.

    DNS service should be activated to enable this option.

    useRsaLeCert Property Map

    RSA Let's Encrypt certificate type for the CDN resource.

    The specified value will be used during the next Let's Encrypt certificate issue or renewal.

    userAgentAcl Property Map
    Controls access to the content for specified User-Agents.
    waap Property Map
    Allows to enable WAAP (Web Application and API Protection).
    websockets Property Map
    Enables or disables WebSockets connections to an origin server.

    GetCdnResourcesItemOptionsAllowedHttpMethods

    Enabled bool
    Controls the option state.
    Values List<string>
    Enabled bool
    Controls the option state.
    Values []string
    enabled bool
    Controls the option state.
    values list(string)
    enabled Boolean
    Controls the option state.
    values List<String>
    enabled boolean
    Controls the option state.
    values string[]
    enabled bool
    Controls the option state.
    values Sequence[str]
    enabled Boolean
    Controls the option state.
    values List<String>

    GetCdnResourcesItemOptionsBrotliCompression

    Enabled bool
    Controls the option state.
    Values List<string>

    Allows to select the content types you want to compress.

    text/html is a mandatory content type.

    Enabled bool
    Controls the option state.
    Values []string

    Allows to select the content types you want to compress.

    text/html is a mandatory content type.

    enabled bool
    Controls the option state.
    values list(string)

    Allows to select the content types you want to compress.

    text/html is a mandatory content type.

    enabled Boolean
    Controls the option state.
    values List<String>

    Allows to select the content types you want to compress.

    text/html is a mandatory content type.

    enabled boolean
    Controls the option state.
    values string[]

    Allows to select the content types you want to compress.

    text/html is a mandatory content type.

    enabled bool
    Controls the option state.
    values Sequence[str]

    Allows to select the content types you want to compress.

    text/html is a mandatory content type.

    enabled Boolean
    Controls the option state.
    values List<String>

    Allows to select the content types you want to compress.

    text/html is a mandatory content type.

    GetCdnResourcesItemOptionsBrowserCacheSettings

    Enabled bool
    Controls the option state.
    Value string

    Set the cache expiration time to '0s' to disable caching.

    The maximum duration is any equivalent to 1y.

    Enabled bool
    Controls the option state.
    Value string

    Set the cache expiration time to '0s' to disable caching.

    The maximum duration is any equivalent to 1y.

    enabled bool
    Controls the option state.
    value string

    Set the cache expiration time to '0s' to disable caching.

    The maximum duration is any equivalent to 1y.

    enabled Boolean
    Controls the option state.
    value String

    Set the cache expiration time to '0s' to disable caching.

    The maximum duration is any equivalent to 1y.

    enabled boolean
    Controls the option state.
    value string

    Set the cache expiration time to '0s' to disable caching.

    The maximum duration is any equivalent to 1y.

    enabled bool
    Controls the option state.
    value str

    Set the cache expiration time to '0s' to disable caching.

    The maximum duration is any equivalent to 1y.

    enabled Boolean
    Controls the option state.
    value String

    Set the cache expiration time to '0s' to disable caching.

    The maximum duration is any equivalent to 1y.

    GetCdnResourcesItemOptionsCacheHttpHeaders

    Enabled bool
    Controls the option state.
    Values List<string>
    Enabled bool
    Controls the option state.
    Values []string
    enabled bool
    Controls the option state.
    values list(string)
    enabled Boolean
    Controls the option state.
    values List<String>
    enabled boolean
    Controls the option state.
    values string[]
    enabled bool
    Controls the option state.
    values Sequence[str]
    enabled Boolean
    Controls the option state.
    values List<String>

    GetCdnResourcesItemOptionsCors

    Always bool
    Defines whether the Access-Control-Allow-Origin header should be added to a response from CDN regardless of response code.
    Enabled bool

    Controls the option state.

    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    Values List<string>

    Value of the Access-Control-Allow-Origin header.

    Possible values:

    • Adds * as the Access-Control-Allow-Origin header value - Content will be uploaded for requests from any domain. "value": ["*"]
    • Adds "$http_origin" as the Access-Control-Allow-Origin header value if the origin matches one of the listed domains - Content will be uploaded only for requests from the domains specified in the field. "value": ["domain.com", "second.dom.com"]
    • Adds "$http_origin" as the Access-Control-Allow-Origin header value - Content will be uploaded for requests from any domain, and the domain from which the request was sent will be added to the "Access-Control-Allow-Origin" header in the response. "value": ["$http_origin"]
    Always bool
    Defines whether the Access-Control-Allow-Origin header should be added to a response from CDN regardless of response code.
    Enabled bool

    Controls the option state.

    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    Values []string

    Value of the Access-Control-Allow-Origin header.

    Possible values:

    • Adds * as the Access-Control-Allow-Origin header value - Content will be uploaded for requests from any domain. "value": ["*"]
    • Adds "$http_origin" as the Access-Control-Allow-Origin header value if the origin matches one of the listed domains - Content will be uploaded only for requests from the domains specified in the field. "value": ["domain.com", "second.dom.com"]
    • Adds "$http_origin" as the Access-Control-Allow-Origin header value - Content will be uploaded for requests from any domain, and the domain from which the request was sent will be added to the "Access-Control-Allow-Origin" header in the response. "value": ["$http_origin"]
    always bool
    Defines whether the Access-Control-Allow-Origin header should be added to a response from CDN regardless of response code.
    enabled bool

    Controls the option state.

    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    values list(string)

    Value of the Access-Control-Allow-Origin header.

    Possible values:

    • Adds * as the Access-Control-Allow-Origin header value - Content will be uploaded for requests from any domain. "value": ["*"]
    • Adds "$http_origin" as the Access-Control-Allow-Origin header value if the origin matches one of the listed domains - Content will be uploaded only for requests from the domains specified in the field. "value": ["domain.com", "second.dom.com"]
    • Adds "$http_origin" as the Access-Control-Allow-Origin header value - Content will be uploaded for requests from any domain, and the domain from which the request was sent will be added to the "Access-Control-Allow-Origin" header in the response. "value": ["$http_origin"]
    always Boolean
    Defines whether the Access-Control-Allow-Origin header should be added to a response from CDN regardless of response code.
    enabled Boolean

    Controls the option state.

    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    values List<String>

    Value of the Access-Control-Allow-Origin header.

    Possible values:

    • Adds * as the Access-Control-Allow-Origin header value - Content will be uploaded for requests from any domain. "value": ["*"]
    • Adds "$http_origin" as the Access-Control-Allow-Origin header value if the origin matches one of the listed domains - Content will be uploaded only for requests from the domains specified in the field. "value": ["domain.com", "second.dom.com"]
    • Adds "$http_origin" as the Access-Control-Allow-Origin header value - Content will be uploaded for requests from any domain, and the domain from which the request was sent will be added to the "Access-Control-Allow-Origin" header in the response. "value": ["$http_origin"]
    always boolean
    Defines whether the Access-Control-Allow-Origin header should be added to a response from CDN regardless of response code.
    enabled boolean

    Controls the option state.

    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    values string[]

    Value of the Access-Control-Allow-Origin header.

    Possible values:

    • Adds * as the Access-Control-Allow-Origin header value - Content will be uploaded for requests from any domain. "value": ["*"]
    • Adds "$http_origin" as the Access-Control-Allow-Origin header value if the origin matches one of the listed domains - Content will be uploaded only for requests from the domains specified in the field. "value": ["domain.com", "second.dom.com"]
    • Adds "$http_origin" as the Access-Control-Allow-Origin header value - Content will be uploaded for requests from any domain, and the domain from which the request was sent will be added to the "Access-Control-Allow-Origin" header in the response. "value": ["$http_origin"]
    always bool
    Defines whether the Access-Control-Allow-Origin header should be added to a response from CDN regardless of response code.
    enabled bool

    Controls the option state.

    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    values Sequence[str]

    Value of the Access-Control-Allow-Origin header.

    Possible values:

    • Adds * as the Access-Control-Allow-Origin header value - Content will be uploaded for requests from any domain. "value": ["*"]
    • Adds "$http_origin" as the Access-Control-Allow-Origin header value if the origin matches one of the listed domains - Content will be uploaded only for requests from the domains specified in the field. "value": ["domain.com", "second.dom.com"]
    • Adds "$http_origin" as the Access-Control-Allow-Origin header value - Content will be uploaded for requests from any domain, and the domain from which the request was sent will be added to the "Access-Control-Allow-Origin" header in the response. "value": ["$http_origin"]
    always Boolean
    Defines whether the Access-Control-Allow-Origin header should be added to a response from CDN regardless of response code.
    enabled Boolean

    Controls the option state.

    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    values List<String>

    Value of the Access-Control-Allow-Origin header.

    Possible values:

    • Adds * as the Access-Control-Allow-Origin header value - Content will be uploaded for requests from any domain. "value": ["*"]
    • Adds "$http_origin" as the Access-Control-Allow-Origin header value if the origin matches one of the listed domains - Content will be uploaded only for requests from the domains specified in the field. "value": ["domain.com", "second.dom.com"]
    • Adds "$http_origin" as the Access-Control-Allow-Origin header value - Content will be uploaded for requests from any domain, and the domain from which the request was sent will be added to the "Access-Control-Allow-Origin" header in the response. "value": ["$http_origin"]

    GetCdnResourcesItemOptionsCountryAcl

    Enabled bool
    Controls the option state.
    ExceptedValues List<string>

    List of countries according to ISO-3166-1.

    The meaning of the parameter depends on policy_type value:

    • allow - List of countries for which access is prohibited.
    • deny - List of countries for which access is allowed.
    PolicyType string

    Defines the type of CDN resource access policy.

    Possible values:

    • allow - Access is allowed for all the countries except for those specified in excepted_values field.
    • deny - Access is denied for all the countries except for those specified in excepted_values field. Available values: "allow", "deny".
    Enabled bool
    Controls the option state.
    ExceptedValues []string

    List of countries according to ISO-3166-1.

    The meaning of the parameter depends on policy_type value:

    • allow - List of countries for which access is prohibited.
    • deny - List of countries for which access is allowed.
    PolicyType string

    Defines the type of CDN resource access policy.

    Possible values:

    • allow - Access is allowed for all the countries except for those specified in excepted_values field.
    • deny - Access is denied for all the countries except for those specified in excepted_values field. Available values: "allow", "deny".
    enabled bool
    Controls the option state.
    excepted_values list(string)

    List of countries according to ISO-3166-1.

    The meaning of the parameter depends on policy_type value:

    • allow - List of countries for which access is prohibited.
    • deny - List of countries for which access is allowed.
    policy_type string

    Defines the type of CDN resource access policy.

    Possible values:

    • allow - Access is allowed for all the countries except for those specified in excepted_values field.
    • deny - Access is denied for all the countries except for those specified in excepted_values field. Available values: "allow", "deny".
    enabled Boolean
    Controls the option state.
    exceptedValues List<String>

    List of countries according to ISO-3166-1.

    The meaning of the parameter depends on policy_type value:

    • allow - List of countries for which access is prohibited.
    • deny - List of countries for which access is allowed.
    policyType String

    Defines the type of CDN resource access policy.

    Possible values:

    • allow - Access is allowed for all the countries except for those specified in excepted_values field.
    • deny - Access is denied for all the countries except for those specified in excepted_values field. Available values: "allow", "deny".
    enabled boolean
    Controls the option state.
    exceptedValues string[]

    List of countries according to ISO-3166-1.

    The meaning of the parameter depends on policy_type value:

    • allow - List of countries for which access is prohibited.
    • deny - List of countries for which access is allowed.
    policyType string

    Defines the type of CDN resource access policy.

    Possible values:

    • allow - Access is allowed for all the countries except for those specified in excepted_values field.
    • deny - Access is denied for all the countries except for those specified in excepted_values field. Available values: "allow", "deny".
    enabled bool
    Controls the option state.
    excepted_values Sequence[str]

    List of countries according to ISO-3166-1.

    The meaning of the parameter depends on policy_type value:

    • allow - List of countries for which access is prohibited.
    • deny - List of countries for which access is allowed.
    policy_type str

    Defines the type of CDN resource access policy.

    Possible values:

    • allow - Access is allowed for all the countries except for those specified in excepted_values field.
    • deny - Access is denied for all the countries except for those specified in excepted_values field. Available values: "allow", "deny".
    enabled Boolean
    Controls the option state.
    exceptedValues List<String>

    List of countries according to ISO-3166-1.

    The meaning of the parameter depends on policy_type value:

    • allow - List of countries for which access is prohibited.
    • deny - List of countries for which access is allowed.
    policyType String

    Defines the type of CDN resource access policy.

    Possible values:

    • allow - Access is allowed for all the countries except for those specified in excepted_values field.
    • deny - Access is denied for all the countries except for those specified in excepted_values field. Available values: "allow", "deny".

    GetCdnResourcesItemOptionsDisableCache

    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - content caching is disabled.
    • false - content caching is enabled.
    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - content caching is disabled.
    • false - content caching is enabled.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - content caching is disabled.
    • false - content caching is enabled.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - content caching is disabled.
    • false - content caching is enabled.
    enabled boolean
    Controls the option state.
    value boolean
    Possible values:

    • true - content caching is disabled.
    • false - content caching is enabled.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - content caching is disabled.
    • false - content caching is enabled.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - content caching is disabled.
    • false - content caching is enabled.

    GetCdnResourcesItemOptionsDisableProxyForceRanges

    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled boolean
    Controls the option state.
    value boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.

    GetCdnResourcesItemOptionsEdgeCacheSettings

    CustomValues Dictionary<string, string>
    A MAP object representing the caching time in seconds for a response with a specific response code.
    Default string

    Enables content caching according to the origin cache settings.

    The value is applied to the following response codes 200, 201, 204, 206, 301, 302, 303, 304, 307, 308, if an origin server does not have caching HTTP headers.

    Responses with other codes will not be cached.

    The maximum duration is any equivalent to 1y.

    Enabled bool

    Controls the option state.

    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    Value string

    Caching time.

    The value is applied to the following response codes: 200, 206, 301, 302. Responses with codes 4xx, 5xx will not be cached.

    Use 0s to disable caching.

    The maximum duration is any equivalent to 1y.

    CustomValues map[string]string
    A MAP object representing the caching time in seconds for a response with a specific response code.
    Default string

    Enables content caching according to the origin cache settings.

    The value is applied to the following response codes 200, 201, 204, 206, 301, 302, 303, 304, 307, 308, if an origin server does not have caching HTTP headers.

    Responses with other codes will not be cached.

    The maximum duration is any equivalent to 1y.

    Enabled bool

    Controls the option state.

    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    Value string

    Caching time.

    The value is applied to the following response codes: 200, 206, 301, 302. Responses with codes 4xx, 5xx will not be cached.

    Use 0s to disable caching.

    The maximum duration is any equivalent to 1y.

    custom_values map(string)
    A MAP object representing the caching time in seconds for a response with a specific response code.
    default string

    Enables content caching according to the origin cache settings.

    The value is applied to the following response codes 200, 201, 204, 206, 301, 302, 303, 304, 307, 308, if an origin server does not have caching HTTP headers.

    Responses with other codes will not be cached.

    The maximum duration is any equivalent to 1y.

    enabled bool

    Controls the option state.

    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    value string

    Caching time.

    The value is applied to the following response codes: 200, 206, 301, 302. Responses with codes 4xx, 5xx will not be cached.

    Use 0s to disable caching.

    The maximum duration is any equivalent to 1y.

    customValues Map<String,String>
    A MAP object representing the caching time in seconds for a response with a specific response code.
    default_ String

    Enables content caching according to the origin cache settings.

    The value is applied to the following response codes 200, 201, 204, 206, 301, 302, 303, 304, 307, 308, if an origin server does not have caching HTTP headers.

    Responses with other codes will not be cached.

    The maximum duration is any equivalent to 1y.

    enabled Boolean

    Controls the option state.

    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    value String

    Caching time.

    The value is applied to the following response codes: 200, 206, 301, 302. Responses with codes 4xx, 5xx will not be cached.

    Use 0s to disable caching.

    The maximum duration is any equivalent to 1y.

    customValues {[key: string]: string}
    A MAP object representing the caching time in seconds for a response with a specific response code.
    default string

    Enables content caching according to the origin cache settings.

    The value is applied to the following response codes 200, 201, 204, 206, 301, 302, 303, 304, 307, 308, if an origin server does not have caching HTTP headers.

    Responses with other codes will not be cached.

    The maximum duration is any equivalent to 1y.

    enabled boolean

    Controls the option state.

    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    value string

    Caching time.

    The value is applied to the following response codes: 200, 206, 301, 302. Responses with codes 4xx, 5xx will not be cached.

    Use 0s to disable caching.

    The maximum duration is any equivalent to 1y.

    custom_values Mapping[str, str]
    A MAP object representing the caching time in seconds for a response with a specific response code.
    default str

    Enables content caching according to the origin cache settings.

    The value is applied to the following response codes 200, 201, 204, 206, 301, 302, 303, 304, 307, 308, if an origin server does not have caching HTTP headers.

    Responses with other codes will not be cached.

    The maximum duration is any equivalent to 1y.

    enabled bool

    Controls the option state.

    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    value str

    Caching time.

    The value is applied to the following response codes: 200, 206, 301, 302. Responses with codes 4xx, 5xx will not be cached.

    Use 0s to disable caching.

    The maximum duration is any equivalent to 1y.

    customValues Map<String>
    A MAP object representing the caching time in seconds for a response with a specific response code.
    default String

    Enables content caching according to the origin cache settings.

    The value is applied to the following response codes 200, 201, 204, 206, 301, 302, 303, 304, 307, 308, if an origin server does not have caching HTTP headers.

    Responses with other codes will not be cached.

    The maximum duration is any equivalent to 1y.

    enabled Boolean

    Controls the option state.

    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    value String

    Caching time.

    The value is applied to the following response codes: 200, 206, 301, 302. Responses with codes 4xx, 5xx will not be cached.

    Use 0s to disable caching.

    The maximum duration is any equivalent to 1y.

    GetCdnResourcesItemOptionsFastedge

    Enabled bool
    Controls the option state.
    OnRequestBody GetCdnResourcesItemOptionsFastedgeOnRequestBody
    Allows to configure FastEdge application that will be called to handle request body as soon as CDN receives incoming HTTP request.
    OnRequestHeaders GetCdnResourcesItemOptionsFastedgeOnRequestHeaders
    Allows to configure FastEdge application that will be called to handle request headers as soon as CDN receives incoming HTTP request, before cache.
    OnRequestHeadersAfterCache GetCdnResourcesItemOptionsFastedgeOnRequestHeadersAfterCache
    Allows to configure FastEdge application that will be called to handle request headers as soon as CDN receives incoming HTTP request, after cache.
    OnResponseBody GetCdnResourcesItemOptionsFastedgeOnResponseBody
    Allows to configure FastEdge application that will be called to handle response body before CDN sends the HTTP response.
    OnResponseHeaders GetCdnResourcesItemOptionsFastedgeOnResponseHeaders
    Allows to configure FastEdge application that will be called to handle response headers before CDN sends the HTTP response.
    Enabled bool
    Controls the option state.
    OnRequestBody GetCdnResourcesItemOptionsFastedgeOnRequestBody
    Allows to configure FastEdge application that will be called to handle request body as soon as CDN receives incoming HTTP request.
    OnRequestHeaders GetCdnResourcesItemOptionsFastedgeOnRequestHeaders
    Allows to configure FastEdge application that will be called to handle request headers as soon as CDN receives incoming HTTP request, before cache.
    OnRequestHeadersAfterCache GetCdnResourcesItemOptionsFastedgeOnRequestHeadersAfterCache
    Allows to configure FastEdge application that will be called to handle request headers as soon as CDN receives incoming HTTP request, after cache.
    OnResponseBody GetCdnResourcesItemOptionsFastedgeOnResponseBody
    Allows to configure FastEdge application that will be called to handle response body before CDN sends the HTTP response.
    OnResponseHeaders GetCdnResourcesItemOptionsFastedgeOnResponseHeaders
    Allows to configure FastEdge application that will be called to handle response headers before CDN sends the HTTP response.
    enabled bool
    Controls the option state.
    on_request_body object
    Allows to configure FastEdge application that will be called to handle request body as soon as CDN receives incoming HTTP request.
    on_request_headers object
    Allows to configure FastEdge application that will be called to handle request headers as soon as CDN receives incoming HTTP request, before cache.
    on_request_headers_after_cache object
    Allows to configure FastEdge application that will be called to handle request headers as soon as CDN receives incoming HTTP request, after cache.
    on_response_body object
    Allows to configure FastEdge application that will be called to handle response body before CDN sends the HTTP response.
    on_response_headers object
    Allows to configure FastEdge application that will be called to handle response headers before CDN sends the HTTP response.
    enabled Boolean
    Controls the option state.
    onRequestBody GetCdnResourcesItemOptionsFastedgeOnRequestBody
    Allows to configure FastEdge application that will be called to handle request body as soon as CDN receives incoming HTTP request.
    onRequestHeaders GetCdnResourcesItemOptionsFastedgeOnRequestHeaders
    Allows to configure FastEdge application that will be called to handle request headers as soon as CDN receives incoming HTTP request, before cache.
    onRequestHeadersAfterCache GetCdnResourcesItemOptionsFastedgeOnRequestHeadersAfterCache
    Allows to configure FastEdge application that will be called to handle request headers as soon as CDN receives incoming HTTP request, after cache.
    onResponseBody GetCdnResourcesItemOptionsFastedgeOnResponseBody
    Allows to configure FastEdge application that will be called to handle response body before CDN sends the HTTP response.
    onResponseHeaders GetCdnResourcesItemOptionsFastedgeOnResponseHeaders
    Allows to configure FastEdge application that will be called to handle response headers before CDN sends the HTTP response.
    enabled boolean
    Controls the option state.
    onRequestBody GetCdnResourcesItemOptionsFastedgeOnRequestBody
    Allows to configure FastEdge application that will be called to handle request body as soon as CDN receives incoming HTTP request.
    onRequestHeaders GetCdnResourcesItemOptionsFastedgeOnRequestHeaders
    Allows to configure FastEdge application that will be called to handle request headers as soon as CDN receives incoming HTTP request, before cache.
    onRequestHeadersAfterCache GetCdnResourcesItemOptionsFastedgeOnRequestHeadersAfterCache
    Allows to configure FastEdge application that will be called to handle request headers as soon as CDN receives incoming HTTP request, after cache.
    onResponseBody GetCdnResourcesItemOptionsFastedgeOnResponseBody
    Allows to configure FastEdge application that will be called to handle response body before CDN sends the HTTP response.
    onResponseHeaders GetCdnResourcesItemOptionsFastedgeOnResponseHeaders
    Allows to configure FastEdge application that will be called to handle response headers before CDN sends the HTTP response.
    enabled bool
    Controls the option state.
    on_request_body GetCdnResourcesItemOptionsFastedgeOnRequestBody
    Allows to configure FastEdge application that will be called to handle request body as soon as CDN receives incoming HTTP request.
    on_request_headers GetCdnResourcesItemOptionsFastedgeOnRequestHeaders
    Allows to configure FastEdge application that will be called to handle request headers as soon as CDN receives incoming HTTP request, before cache.
    on_request_headers_after_cache GetCdnResourcesItemOptionsFastedgeOnRequestHeadersAfterCache
    Allows to configure FastEdge application that will be called to handle request headers as soon as CDN receives incoming HTTP request, after cache.
    on_response_body GetCdnResourcesItemOptionsFastedgeOnResponseBody
    Allows to configure FastEdge application that will be called to handle response body before CDN sends the HTTP response.
    on_response_headers GetCdnResourcesItemOptionsFastedgeOnResponseHeaders
    Allows to configure FastEdge application that will be called to handle response headers before CDN sends the HTTP response.
    enabled Boolean
    Controls the option state.
    onRequestBody Property Map
    Allows to configure FastEdge application that will be called to handle request body as soon as CDN receives incoming HTTP request.
    onRequestHeaders Property Map
    Allows to configure FastEdge application that will be called to handle request headers as soon as CDN receives incoming HTTP request, before cache.
    onRequestHeadersAfterCache Property Map
    Allows to configure FastEdge application that will be called to handle request headers as soon as CDN receives incoming HTTP request, after cache.
    onResponseBody Property Map
    Allows to configure FastEdge application that will be called to handle response body before CDN sends the HTTP response.
    onResponseHeaders Property Map
    Allows to configure FastEdge application that will be called to handle response headers before CDN sends the HTTP response.

    GetCdnResourcesItemOptionsFastedgeOnRequestBody

    AppId string
    The ID of the application in FastEdge.
    Enabled bool
    Determines if the FastEdge application should be called whenever HTTP request headers are received.
    ExecuteOnEdge bool
    Determines if the request should be executed at the edge nodes.
    ExecuteOnShield bool
    Determines if the request should be executed at the shield nodes.
    InterruptOnError bool
    Determines if the request execution should be interrupted when an error occurs.
    AppId string
    The ID of the application in FastEdge.
    Enabled bool
    Determines if the FastEdge application should be called whenever HTTP request headers are received.
    ExecuteOnEdge bool
    Determines if the request should be executed at the edge nodes.
    ExecuteOnShield bool
    Determines if the request should be executed at the shield nodes.
    InterruptOnError bool
    Determines if the request execution should be interrupted when an error occurs.
    app_id string
    The ID of the application in FastEdge.
    enabled bool
    Determines if the FastEdge application should be called whenever HTTP request headers are received.
    execute_on_edge bool
    Determines if the request should be executed at the edge nodes.
    execute_on_shield bool
    Determines if the request should be executed at the shield nodes.
    interrupt_on_error bool
    Determines if the request execution should be interrupted when an error occurs.
    appId String
    The ID of the application in FastEdge.
    enabled Boolean
    Determines if the FastEdge application should be called whenever HTTP request headers are received.
    executeOnEdge Boolean
    Determines if the request should be executed at the edge nodes.
    executeOnShield Boolean
    Determines if the request should be executed at the shield nodes.
    interruptOnError Boolean
    Determines if the request execution should be interrupted when an error occurs.
    appId string
    The ID of the application in FastEdge.
    enabled boolean
    Determines if the FastEdge application should be called whenever HTTP request headers are received.
    executeOnEdge boolean
    Determines if the request should be executed at the edge nodes.
    executeOnShield boolean
    Determines if the request should be executed at the shield nodes.
    interruptOnError boolean
    Determines if the request execution should be interrupted when an error occurs.
    app_id str
    The ID of the application in FastEdge.
    enabled bool
    Determines if the FastEdge application should be called whenever HTTP request headers are received.
    execute_on_edge bool
    Determines if the request should be executed at the edge nodes.
    execute_on_shield bool
    Determines if the request should be executed at the shield nodes.
    interrupt_on_error bool
    Determines if the request execution should be interrupted when an error occurs.
    appId String
    The ID of the application in FastEdge.
    enabled Boolean
    Determines if the FastEdge application should be called whenever HTTP request headers are received.
    executeOnEdge Boolean
    Determines if the request should be executed at the edge nodes.
    executeOnShield Boolean
    Determines if the request should be executed at the shield nodes.
    interruptOnError Boolean
    Determines if the request execution should be interrupted when an error occurs.

    GetCdnResourcesItemOptionsFastedgeOnRequestHeaders

    AppId string
    The ID of the application in FastEdge.
    Enabled bool
    Determines if the FastEdge application should be called whenever HTTP request headers are received.
    ExecuteOnEdge bool
    Determines if the request should be executed at the edge nodes.
    ExecuteOnShield bool
    Determines if the request should be executed at the shield nodes.
    InterruptOnError bool
    Determines if the request execution should be interrupted when an error occurs.
    AppId string
    The ID of the application in FastEdge.
    Enabled bool
    Determines if the FastEdge application should be called whenever HTTP request headers are received.
    ExecuteOnEdge bool
    Determines if the request should be executed at the edge nodes.
    ExecuteOnShield bool
    Determines if the request should be executed at the shield nodes.
    InterruptOnError bool
    Determines if the request execution should be interrupted when an error occurs.
    app_id string
    The ID of the application in FastEdge.
    enabled bool
    Determines if the FastEdge application should be called whenever HTTP request headers are received.
    execute_on_edge bool
    Determines if the request should be executed at the edge nodes.
    execute_on_shield bool
    Determines if the request should be executed at the shield nodes.
    interrupt_on_error bool
    Determines if the request execution should be interrupted when an error occurs.
    appId String
    The ID of the application in FastEdge.
    enabled Boolean
    Determines if the FastEdge application should be called whenever HTTP request headers are received.
    executeOnEdge Boolean
    Determines if the request should be executed at the edge nodes.
    executeOnShield Boolean
    Determines if the request should be executed at the shield nodes.
    interruptOnError Boolean
    Determines if the request execution should be interrupted when an error occurs.
    appId string
    The ID of the application in FastEdge.
    enabled boolean
    Determines if the FastEdge application should be called whenever HTTP request headers are received.
    executeOnEdge boolean
    Determines if the request should be executed at the edge nodes.
    executeOnShield boolean
    Determines if the request should be executed at the shield nodes.
    interruptOnError boolean
    Determines if the request execution should be interrupted when an error occurs.
    app_id str
    The ID of the application in FastEdge.
    enabled bool
    Determines if the FastEdge application should be called whenever HTTP request headers are received.
    execute_on_edge bool
    Determines if the request should be executed at the edge nodes.
    execute_on_shield bool
    Determines if the request should be executed at the shield nodes.
    interrupt_on_error bool
    Determines if the request execution should be interrupted when an error occurs.
    appId String
    The ID of the application in FastEdge.
    enabled Boolean
    Determines if the FastEdge application should be called whenever HTTP request headers are received.
    executeOnEdge Boolean
    Determines if the request should be executed at the edge nodes.
    executeOnShield Boolean
    Determines if the request should be executed at the shield nodes.
    interruptOnError Boolean
    Determines if the request execution should be interrupted when an error occurs.

    GetCdnResourcesItemOptionsFastedgeOnRequestHeadersAfterCache

    AppId string
    The ID of the application in FastEdge.
    Enabled bool
    Determines if the FastEdge application should be called whenever HTTP request headers are received.
    ExecuteOnEdge bool
    Determines if the request should be executed at the edge nodes.
    ExecuteOnShield bool
    Determines if the request should be executed at the shield nodes.
    InterruptOnError bool
    Determines if the request execution should be interrupted when an error occurs.
    AppId string
    The ID of the application in FastEdge.
    Enabled bool
    Determines if the FastEdge application should be called whenever HTTP request headers are received.
    ExecuteOnEdge bool
    Determines if the request should be executed at the edge nodes.
    ExecuteOnShield bool
    Determines if the request should be executed at the shield nodes.
    InterruptOnError bool
    Determines if the request execution should be interrupted when an error occurs.
    app_id string
    The ID of the application in FastEdge.
    enabled bool
    Determines if the FastEdge application should be called whenever HTTP request headers are received.
    execute_on_edge bool
    Determines if the request should be executed at the edge nodes.
    execute_on_shield bool
    Determines if the request should be executed at the shield nodes.
    interrupt_on_error bool
    Determines if the request execution should be interrupted when an error occurs.
    appId String
    The ID of the application in FastEdge.
    enabled Boolean
    Determines if the FastEdge application should be called whenever HTTP request headers are received.
    executeOnEdge Boolean
    Determines if the request should be executed at the edge nodes.
    executeOnShield Boolean
    Determines if the request should be executed at the shield nodes.
    interruptOnError Boolean
    Determines if the request execution should be interrupted when an error occurs.
    appId string
    The ID of the application in FastEdge.
    enabled boolean
    Determines if the FastEdge application should be called whenever HTTP request headers are received.
    executeOnEdge boolean
    Determines if the request should be executed at the edge nodes.
    executeOnShield boolean
    Determines if the request should be executed at the shield nodes.
    interruptOnError boolean
    Determines if the request execution should be interrupted when an error occurs.
    app_id str
    The ID of the application in FastEdge.
    enabled bool
    Determines if the FastEdge application should be called whenever HTTP request headers are received.
    execute_on_edge bool
    Determines if the request should be executed at the edge nodes.
    execute_on_shield bool
    Determines if the request should be executed at the shield nodes.
    interrupt_on_error bool
    Determines if the request execution should be interrupted when an error occurs.
    appId String
    The ID of the application in FastEdge.
    enabled Boolean
    Determines if the FastEdge application should be called whenever HTTP request headers are received.
    executeOnEdge Boolean
    Determines if the request should be executed at the edge nodes.
    executeOnShield Boolean
    Determines if the request should be executed at the shield nodes.
    interruptOnError Boolean
    Determines if the request execution should be interrupted when an error occurs.

    GetCdnResourcesItemOptionsFastedgeOnResponseBody

    AppId string
    The ID of the application in FastEdge.
    Enabled bool
    Determines if the FastEdge application should be called whenever HTTP request headers are received.
    ExecuteOnEdge bool
    Determines if the request should be executed at the edge nodes.
    ExecuteOnShield bool
    Determines if the request should be executed at the shield nodes.
    InterruptOnError bool
    Determines if the request execution should be interrupted when an error occurs.
    AppId string
    The ID of the application in FastEdge.
    Enabled bool
    Determines if the FastEdge application should be called whenever HTTP request headers are received.
    ExecuteOnEdge bool
    Determines if the request should be executed at the edge nodes.
    ExecuteOnShield bool
    Determines if the request should be executed at the shield nodes.
    InterruptOnError bool
    Determines if the request execution should be interrupted when an error occurs.
    app_id string
    The ID of the application in FastEdge.
    enabled bool
    Determines if the FastEdge application should be called whenever HTTP request headers are received.
    execute_on_edge bool
    Determines if the request should be executed at the edge nodes.
    execute_on_shield bool
    Determines if the request should be executed at the shield nodes.
    interrupt_on_error bool
    Determines if the request execution should be interrupted when an error occurs.
    appId String
    The ID of the application in FastEdge.
    enabled Boolean
    Determines if the FastEdge application should be called whenever HTTP request headers are received.
    executeOnEdge Boolean
    Determines if the request should be executed at the edge nodes.
    executeOnShield Boolean
    Determines if the request should be executed at the shield nodes.
    interruptOnError Boolean
    Determines if the request execution should be interrupted when an error occurs.
    appId string
    The ID of the application in FastEdge.
    enabled boolean
    Determines if the FastEdge application should be called whenever HTTP request headers are received.
    executeOnEdge boolean
    Determines if the request should be executed at the edge nodes.
    executeOnShield boolean
    Determines if the request should be executed at the shield nodes.
    interruptOnError boolean
    Determines if the request execution should be interrupted when an error occurs.
    app_id str
    The ID of the application in FastEdge.
    enabled bool
    Determines if the FastEdge application should be called whenever HTTP request headers are received.
    execute_on_edge bool
    Determines if the request should be executed at the edge nodes.
    execute_on_shield bool
    Determines if the request should be executed at the shield nodes.
    interrupt_on_error bool
    Determines if the request execution should be interrupted when an error occurs.
    appId String
    The ID of the application in FastEdge.
    enabled Boolean
    Determines if the FastEdge application should be called whenever HTTP request headers are received.
    executeOnEdge Boolean
    Determines if the request should be executed at the edge nodes.
    executeOnShield Boolean
    Determines if the request should be executed at the shield nodes.
    interruptOnError Boolean
    Determines if the request execution should be interrupted when an error occurs.

    GetCdnResourcesItemOptionsFastedgeOnResponseHeaders

    AppId string
    The ID of the application in FastEdge.
    Enabled bool
    Determines if the FastEdge application should be called whenever HTTP request headers are received.
    ExecuteOnEdge bool
    Determines if the request should be executed at the edge nodes.
    ExecuteOnShield bool
    Determines if the request should be executed at the shield nodes.
    InterruptOnError bool
    Determines if the request execution should be interrupted when an error occurs.
    AppId string
    The ID of the application in FastEdge.
    Enabled bool
    Determines if the FastEdge application should be called whenever HTTP request headers are received.
    ExecuteOnEdge bool
    Determines if the request should be executed at the edge nodes.
    ExecuteOnShield bool
    Determines if the request should be executed at the shield nodes.
    InterruptOnError bool
    Determines if the request execution should be interrupted when an error occurs.
    app_id string
    The ID of the application in FastEdge.
    enabled bool
    Determines if the FastEdge application should be called whenever HTTP request headers are received.
    execute_on_edge bool
    Determines if the request should be executed at the edge nodes.
    execute_on_shield bool
    Determines if the request should be executed at the shield nodes.
    interrupt_on_error bool
    Determines if the request execution should be interrupted when an error occurs.
    appId String
    The ID of the application in FastEdge.
    enabled Boolean
    Determines if the FastEdge application should be called whenever HTTP request headers are received.
    executeOnEdge Boolean
    Determines if the request should be executed at the edge nodes.
    executeOnShield Boolean
    Determines if the request should be executed at the shield nodes.
    interruptOnError Boolean
    Determines if the request execution should be interrupted when an error occurs.
    appId string
    The ID of the application in FastEdge.
    enabled boolean
    Determines if the FastEdge application should be called whenever HTTP request headers are received.
    executeOnEdge boolean
    Determines if the request should be executed at the edge nodes.
    executeOnShield boolean
    Determines if the request should be executed at the shield nodes.
    interruptOnError boolean
    Determines if the request execution should be interrupted when an error occurs.
    app_id str
    The ID of the application in FastEdge.
    enabled bool
    Determines if the FastEdge application should be called whenever HTTP request headers are received.
    execute_on_edge bool
    Determines if the request should be executed at the edge nodes.
    execute_on_shield bool
    Determines if the request should be executed at the shield nodes.
    interrupt_on_error bool
    Determines if the request execution should be interrupted when an error occurs.
    appId String
    The ID of the application in FastEdge.
    enabled Boolean
    Determines if the FastEdge application should be called whenever HTTP request headers are received.
    executeOnEdge Boolean
    Determines if the request should be executed at the edge nodes.
    executeOnShield Boolean
    Determines if the request should be executed at the shield nodes.
    interruptOnError Boolean
    Determines if the request execution should be interrupted when an error occurs.

    GetCdnResourcesItemOptionsFetchCompressed

    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled boolean
    Controls the option state.
    value boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.

    GetCdnResourcesItemOptionsFollowOriginRedirect

    Codes List<double>
    Redirect status code that the origin server returns.
    Enabled bool

    Controls the option state.

    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    Codes []float64
    Redirect status code that the origin server returns.
    Enabled bool

    Controls the option state.

    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    codes list(number)
    Redirect status code that the origin server returns.
    enabled bool

    Controls the option state.

    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    codes List<Double>
    Redirect status code that the origin server returns.
    enabled Boolean

    Controls the option state.

    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    codes number[]
    Redirect status code that the origin server returns.
    enabled boolean

    Controls the option state.

    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    codes Sequence[float]
    Redirect status code that the origin server returns.
    enabled bool

    Controls the option state.

    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    codes List<Number>
    Redirect status code that the origin server returns.
    enabled Boolean

    Controls the option state.

    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.

    GetCdnResourcesItemOptionsForceReturn

    Body string
    URL for redirection or text.
    Code double
    Status code value.
    Enabled bool
    Controls the option state.
    TimeInterval GetCdnResourcesItemOptionsForceReturnTimeInterval
    Controls the time at which a custom HTTP response code should be applied. By default, a custom HTTP response code is applied at any time.
    Body string
    URL for redirection or text.
    Code float64
    Status code value.
    Enabled bool
    Controls the option state.
    TimeInterval GetCdnResourcesItemOptionsForceReturnTimeInterval
    Controls the time at which a custom HTTP response code should be applied. By default, a custom HTTP response code is applied at any time.
    body string
    URL for redirection or text.
    code number
    Status code value.
    enabled bool
    Controls the option state.
    time_interval object
    Controls the time at which a custom HTTP response code should be applied. By default, a custom HTTP response code is applied at any time.
    body String
    URL for redirection or text.
    code Double
    Status code value.
    enabled Boolean
    Controls the option state.
    timeInterval GetCdnResourcesItemOptionsForceReturnTimeInterval
    Controls the time at which a custom HTTP response code should be applied. By default, a custom HTTP response code is applied at any time.
    body string
    URL for redirection or text.
    code number
    Status code value.
    enabled boolean
    Controls the option state.
    timeInterval GetCdnResourcesItemOptionsForceReturnTimeInterval
    Controls the time at which a custom HTTP response code should be applied. By default, a custom HTTP response code is applied at any time.
    body str
    URL for redirection or text.
    code float
    Status code value.
    enabled bool
    Controls the option state.
    time_interval GetCdnResourcesItemOptionsForceReturnTimeInterval
    Controls the time at which a custom HTTP response code should be applied. By default, a custom HTTP response code is applied at any time.
    body String
    URL for redirection or text.
    code Number
    Status code value.
    enabled Boolean
    Controls the option state.
    timeInterval Property Map
    Controls the time at which a custom HTTP response code should be applied. By default, a custom HTTP response code is applied at any time.

    GetCdnResourcesItemOptionsForceReturnTimeInterval

    EndTime string
    Time until which a custom HTTP response code should be applied. Indicated in 24-hour format.
    StartTime string
    Time from which a custom HTTP response code should be applied. Indicated in 24-hour format.
    TimeZone string
    Time zone used to calculate time.
    EndTime string
    Time until which a custom HTTP response code should be applied. Indicated in 24-hour format.
    StartTime string
    Time from which a custom HTTP response code should be applied. Indicated in 24-hour format.
    TimeZone string
    Time zone used to calculate time.
    end_time string
    Time until which a custom HTTP response code should be applied. Indicated in 24-hour format.
    start_time string
    Time from which a custom HTTP response code should be applied. Indicated in 24-hour format.
    time_zone string
    Time zone used to calculate time.
    endTime String
    Time until which a custom HTTP response code should be applied. Indicated in 24-hour format.
    startTime String
    Time from which a custom HTTP response code should be applied. Indicated in 24-hour format.
    timeZone String
    Time zone used to calculate time.
    endTime string
    Time until which a custom HTTP response code should be applied. Indicated in 24-hour format.
    startTime string
    Time from which a custom HTTP response code should be applied. Indicated in 24-hour format.
    timeZone string
    Time zone used to calculate time.
    end_time str
    Time until which a custom HTTP response code should be applied. Indicated in 24-hour format.
    start_time str
    Time from which a custom HTTP response code should be applied. Indicated in 24-hour format.
    time_zone str
    Time zone used to calculate time.
    endTime String
    Time until which a custom HTTP response code should be applied. Indicated in 24-hour format.
    startTime String
    Time from which a custom HTTP response code should be applied. Indicated in 24-hour format.
    timeZone String
    Time zone used to calculate time.

    GetCdnResourcesItemOptionsForwardHostHeader

    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled boolean
    Controls the option state.
    value boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.

    GetCdnResourcesItemOptionsGrpcPassthrough

    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled boolean
    Controls the option state.
    value boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.

    GetCdnResourcesItemOptionsGzipOn

    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled boolean
    Controls the option state.
    value boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.

    GetCdnResourcesItemOptionsHostHeader

    Enabled bool
    Controls the option state.
    Value string
    Host Header value.
    Enabled bool
    Controls the option state.
    Value string
    Host Header value.
    enabled bool
    Controls the option state.
    value string
    Host Header value.
    enabled Boolean
    Controls the option state.
    value String
    Host Header value.
    enabled boolean
    Controls the option state.
    value string
    Host Header value.
    enabled bool
    Controls the option state.
    value str
    Host Header value.
    enabled Boolean
    Controls the option state.
    value String
    Host Header value.

    GetCdnResourcesItemOptionsHttp3Enabled

    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled boolean
    Controls the option state.
    value boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.

    GetCdnResourcesItemOptionsIgnoreCookie

    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - Option is enabled, files with cookies are cached as one file.
    • false - Option is disabled, files with cookies are cached as different files.
    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - Option is enabled, files with cookies are cached as one file.
    • false - Option is disabled, files with cookies are cached as different files.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - Option is enabled, files with cookies are cached as one file.
    • false - Option is disabled, files with cookies are cached as different files.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - Option is enabled, files with cookies are cached as one file.
    • false - Option is disabled, files with cookies are cached as different files.
    enabled boolean
    Controls the option state.
    value boolean
    Possible values:

    • true - Option is enabled, files with cookies are cached as one file.
    • false - Option is disabled, files with cookies are cached as different files.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - Option is enabled, files with cookies are cached as one file.
    • false - Option is disabled, files with cookies are cached as different files.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - Option is enabled, files with cookies are cached as one file.
    • false - Option is disabled, files with cookies are cached as different files.

    GetCdnResourcesItemOptionsIgnoreQueryString

    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled boolean
    Controls the option state.
    value boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.

    GetCdnResourcesItemOptionsImageStack

    AvifEnabled bool
    Enables or disables automatic conversion of JPEG and PNG images to AVI format.
    Enabled bool
    Controls the option state.
    PngLossless bool
    Enables or disables compression without quality loss for PNG format.
    Quality double
    Defines quality settings for JPG and PNG images. The higher the value, the better the image quality, and the larger the file size after conversion.
    WebpEnabled bool
    Enables or disables automatic conversion of JPEG and PNG images to WebP format.
    AvifEnabled bool
    Enables or disables automatic conversion of JPEG and PNG images to AVI format.
    Enabled bool
    Controls the option state.
    PngLossless bool
    Enables or disables compression without quality loss for PNG format.
    Quality float64
    Defines quality settings for JPG and PNG images. The higher the value, the better the image quality, and the larger the file size after conversion.
    WebpEnabled bool
    Enables or disables automatic conversion of JPEG and PNG images to WebP format.
    avif_enabled bool
    Enables or disables automatic conversion of JPEG and PNG images to AVI format.
    enabled bool
    Controls the option state.
    png_lossless bool
    Enables or disables compression without quality loss for PNG format.
    quality number
    Defines quality settings for JPG and PNG images. The higher the value, the better the image quality, and the larger the file size after conversion.
    webp_enabled bool
    Enables or disables automatic conversion of JPEG and PNG images to WebP format.
    avifEnabled Boolean
    Enables or disables automatic conversion of JPEG and PNG images to AVI format.
    enabled Boolean
    Controls the option state.
    pngLossless Boolean
    Enables or disables compression without quality loss for PNG format.
    quality Double
    Defines quality settings for JPG and PNG images. The higher the value, the better the image quality, and the larger the file size after conversion.
    webpEnabled Boolean
    Enables or disables automatic conversion of JPEG and PNG images to WebP format.
    avifEnabled boolean
    Enables or disables automatic conversion of JPEG and PNG images to AVI format.
    enabled boolean
    Controls the option state.
    pngLossless boolean
    Enables or disables compression without quality loss for PNG format.
    quality number
    Defines quality settings for JPG and PNG images. The higher the value, the better the image quality, and the larger the file size after conversion.
    webpEnabled boolean
    Enables or disables automatic conversion of JPEG and PNG images to WebP format.
    avif_enabled bool
    Enables or disables automatic conversion of JPEG and PNG images to AVI format.
    enabled bool
    Controls the option state.
    png_lossless bool
    Enables or disables compression without quality loss for PNG format.
    quality float
    Defines quality settings for JPG and PNG images. The higher the value, the better the image quality, and the larger the file size after conversion.
    webp_enabled bool
    Enables or disables automatic conversion of JPEG and PNG images to WebP format.
    avifEnabled Boolean
    Enables or disables automatic conversion of JPEG and PNG images to AVI format.
    enabled Boolean
    Controls the option state.
    pngLossless Boolean
    Enables or disables compression without quality loss for PNG format.
    quality Number
    Defines quality settings for JPG and PNG images. The higher the value, the better the image quality, and the larger the file size after conversion.
    webpEnabled Boolean
    Enables or disables automatic conversion of JPEG and PNG images to WebP format.

    GetCdnResourcesItemOptionsIpAddressAcl

    Enabled bool
    Controls the option state.
    ExceptedValues List<string>

    List of IP addresses with a subnet mask.

    The meaning of the parameter depends on policy_type value:

    • allow - List of IP addresses for which access is prohibited.
    • deny - List of IP addresses for which access is allowed.

    Examples:

    • 192.168.3.2/32
    • 2a03:d000:2980:7::8/128
    PolicyType string

    IP access policy type.

    Possible values:

    • allow - Allow access to all IPs except IPs specified in "excepted_values" field.
    • deny - Deny access to all IPs except IPs specified in "excepted_values" field. Available values: "allow", "deny".
    Enabled bool
    Controls the option state.
    ExceptedValues []string

    List of IP addresses with a subnet mask.

    The meaning of the parameter depends on policy_type value:

    • allow - List of IP addresses for which access is prohibited.
    • deny - List of IP addresses for which access is allowed.

    Examples:

    • 192.168.3.2/32
    • 2a03:d000:2980:7::8/128
    PolicyType string

    IP access policy type.

    Possible values:

    • allow - Allow access to all IPs except IPs specified in "excepted_values" field.
    • deny - Deny access to all IPs except IPs specified in "excepted_values" field. Available values: "allow", "deny".
    enabled bool
    Controls the option state.
    excepted_values list(string)

    List of IP addresses with a subnet mask.

    The meaning of the parameter depends on policy_type value:

    • allow - List of IP addresses for which access is prohibited.
    • deny - List of IP addresses for which access is allowed.

    Examples:

    • 192.168.3.2/32
    • 2a03:d000:2980:7::8/128
    policy_type string

    IP access policy type.

    Possible values:

    • allow - Allow access to all IPs except IPs specified in "excepted_values" field.
    • deny - Deny access to all IPs except IPs specified in "excepted_values" field. Available values: "allow", "deny".
    enabled Boolean
    Controls the option state.
    exceptedValues List<String>

    List of IP addresses with a subnet mask.

    The meaning of the parameter depends on policy_type value:

    • allow - List of IP addresses for which access is prohibited.
    • deny - List of IP addresses for which access is allowed.

    Examples:

    • 192.168.3.2/32
    • 2a03:d000:2980:7::8/128
    policyType String

    IP access policy type.

    Possible values:

    • allow - Allow access to all IPs except IPs specified in "excepted_values" field.
    • deny - Deny access to all IPs except IPs specified in "excepted_values" field. Available values: "allow", "deny".
    enabled boolean
    Controls the option state.
    exceptedValues string[]

    List of IP addresses with a subnet mask.

    The meaning of the parameter depends on policy_type value:

    • allow - List of IP addresses for which access is prohibited.
    • deny - List of IP addresses for which access is allowed.

    Examples:

    • 192.168.3.2/32
    • 2a03:d000:2980:7::8/128
    policyType string

    IP access policy type.

    Possible values:

    • allow - Allow access to all IPs except IPs specified in "excepted_values" field.
    • deny - Deny access to all IPs except IPs specified in "excepted_values" field. Available values: "allow", "deny".
    enabled bool
    Controls the option state.
    excepted_values Sequence[str]

    List of IP addresses with a subnet mask.

    The meaning of the parameter depends on policy_type value:

    • allow - List of IP addresses for which access is prohibited.
    • deny - List of IP addresses for which access is allowed.

    Examples:

    • 192.168.3.2/32
    • 2a03:d000:2980:7::8/128
    policy_type str

    IP access policy type.

    Possible values:

    • allow - Allow access to all IPs except IPs specified in "excepted_values" field.
    • deny - Deny access to all IPs except IPs specified in "excepted_values" field. Available values: "allow", "deny".
    enabled Boolean
    Controls the option state.
    exceptedValues List<String>

    List of IP addresses with a subnet mask.

    The meaning of the parameter depends on policy_type value:

    • allow - List of IP addresses for which access is prohibited.
    • deny - List of IP addresses for which access is allowed.

    Examples:

    • 192.168.3.2/32
    • 2a03:d000:2980:7::8/128
    policyType String

    IP access policy type.

    Possible values:

    • allow - Allow access to all IPs except IPs specified in "excepted_values" field.
    • deny - Deny access to all IPs except IPs specified in "excepted_values" field. Available values: "allow", "deny".

    GetCdnResourcesItemOptionsLimitBandwidth

    Buffer double
    Amount of downloaded data after which the user will be rate limited.
    Enabled bool
    Controls the option state.
    LimitType string

    Method of controlling the download speed per connection.

    Possible values:

    • static - Use speed and buffer fields to set the download speed limit.
    • dynamic - Use query strings speed and buffer to set the download speed limit.

    For example, when requesting content at the link

    http://cdn.example.com/video.mp4?speed=50k&buffer=500k
    

    the download speed will be limited to 50kB/s after 500 kB. Available values: "static", "dynamic".

    Speed double
    Maximum download speed per connection.
    Buffer float64
    Amount of downloaded data after which the user will be rate limited.
    Enabled bool
    Controls the option state.
    LimitType string

    Method of controlling the download speed per connection.

    Possible values:

    • static - Use speed and buffer fields to set the download speed limit.
    • dynamic - Use query strings speed and buffer to set the download speed limit.

    For example, when requesting content at the link

    http://cdn.example.com/video.mp4?speed=50k&buffer=500k
    

    the download speed will be limited to 50kB/s after 500 kB. Available values: "static", "dynamic".

    Speed float64
    Maximum download speed per connection.
    buffer number
    Amount of downloaded data after which the user will be rate limited.
    enabled bool
    Controls the option state.
    limit_type string

    Method of controlling the download speed per connection.

    Possible values:

    • static - Use speed and buffer fields to set the download speed limit.
    • dynamic - Use query strings speed and buffer to set the download speed limit.

    For example, when requesting content at the link

    http://cdn.example.com/video.mp4?speed=50k&buffer=500k
    

    the download speed will be limited to 50kB/s after 500 kB. Available values: "static", "dynamic".

    speed number
    Maximum download speed per connection.
    buffer Double
    Amount of downloaded data after which the user will be rate limited.
    enabled Boolean
    Controls the option state.
    limitType String

    Method of controlling the download speed per connection.

    Possible values:

    • static - Use speed and buffer fields to set the download speed limit.
    • dynamic - Use query strings speed and buffer to set the download speed limit.

    For example, when requesting content at the link

    http://cdn.example.com/video.mp4?speed=50k&buffer=500k
    

    the download speed will be limited to 50kB/s after 500 kB. Available values: "static", "dynamic".

    speed Double
    Maximum download speed per connection.
    buffer number
    Amount of downloaded data after which the user will be rate limited.
    enabled boolean
    Controls the option state.
    limitType string

    Method of controlling the download speed per connection.

    Possible values:

    • static - Use speed and buffer fields to set the download speed limit.
    • dynamic - Use query strings speed and buffer to set the download speed limit.

    For example, when requesting content at the link

    http://cdn.example.com/video.mp4?speed=50k&buffer=500k
    

    the download speed will be limited to 50kB/s after 500 kB. Available values: "static", "dynamic".

    speed number
    Maximum download speed per connection.
    buffer float
    Amount of downloaded data after which the user will be rate limited.
    enabled bool
    Controls the option state.
    limit_type str

    Method of controlling the download speed per connection.

    Possible values:

    • static - Use speed and buffer fields to set the download speed limit.
    • dynamic - Use query strings speed and buffer to set the download speed limit.

    For example, when requesting content at the link

    http://cdn.example.com/video.mp4?speed=50k&buffer=500k
    

    the download speed will be limited to 50kB/s after 500 kB. Available values: "static", "dynamic".

    speed float
    Maximum download speed per connection.
    buffer Number
    Amount of downloaded data after which the user will be rate limited.
    enabled Boolean
    Controls the option state.
    limitType String

    Method of controlling the download speed per connection.

    Possible values:

    • static - Use speed and buffer fields to set the download speed limit.
    • dynamic - Use query strings speed and buffer to set the download speed limit.

    For example, when requesting content at the link

    http://cdn.example.com/video.mp4?speed=50k&buffer=500k
    

    the download speed will be limited to 50kB/s after 500 kB. Available values: "static", "dynamic".

    speed Number
    Maximum download speed per connection.

    GetCdnResourcesItemOptionsNetworkErrorLogging

    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled boolean
    Controls the option state.
    value boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.

    GetCdnResourcesItemOptionsProxyCacheKey

    Enabled bool
    Controls the option state.
    Value string
    Key for caching.
    Enabled bool
    Controls the option state.
    Value string
    Key for caching.
    enabled bool
    Controls the option state.
    value string
    Key for caching.
    enabled Boolean
    Controls the option state.
    value String
    Key for caching.
    enabled boolean
    Controls the option state.
    value string
    Key for caching.
    enabled bool
    Controls the option state.
    value str
    Key for caching.
    enabled Boolean
    Controls the option state.
    value String
    Key for caching.

    GetCdnResourcesItemOptionsProxyCacheMethodsSet

    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled boolean
    Controls the option state.
    value boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.

    GetCdnResourcesItemOptionsProxyConnectTimeout

    Enabled bool
    Controls the option state.
    Value string

    Timeout value in seconds.

    Supported range: 1s - 5s.

    Enabled bool
    Controls the option state.
    Value string

    Timeout value in seconds.

    Supported range: 1s - 5s.

    enabled bool
    Controls the option state.
    value string

    Timeout value in seconds.

    Supported range: 1s - 5s.

    enabled Boolean
    Controls the option state.
    value String

    Timeout value in seconds.

    Supported range: 1s - 5s.

    enabled boolean
    Controls the option state.
    value string

    Timeout value in seconds.

    Supported range: 1s - 5s.

    enabled bool
    Controls the option state.
    value str

    Timeout value in seconds.

    Supported range: 1s - 5s.

    enabled Boolean
    Controls the option state.
    value String

    Timeout value in seconds.

    Supported range: 1s - 5s.

    GetCdnResourcesItemOptionsProxyReadTimeout

    Enabled bool
    Controls the option state.
    Value string

    Timeout value in seconds.

    Supported range: 1s - 30s.

    Enabled bool
    Controls the option state.
    Value string

    Timeout value in seconds.

    Supported range: 1s - 30s.

    enabled bool
    Controls the option state.
    value string

    Timeout value in seconds.

    Supported range: 1s - 30s.

    enabled Boolean
    Controls the option state.
    value String

    Timeout value in seconds.

    Supported range: 1s - 30s.

    enabled boolean
    Controls the option state.
    value string

    Timeout value in seconds.

    Supported range: 1s - 30s.

    enabled bool
    Controls the option state.
    value str

    Timeout value in seconds.

    Supported range: 1s - 30s.

    enabled Boolean
    Controls the option state.
    value String

    Timeout value in seconds.

    Supported range: 1s - 30s.

    GetCdnResourcesItemOptionsQueryParamsBlacklist

    Enabled bool
    Controls the option state.
    Values List<string>
    List of query parameters.
    Enabled bool
    Controls the option state.
    Values []string
    List of query parameters.
    enabled bool
    Controls the option state.
    values list(string)
    List of query parameters.
    enabled Boolean
    Controls the option state.
    values List<String>
    List of query parameters.
    enabled boolean
    Controls the option state.
    values string[]
    List of query parameters.
    enabled bool
    Controls the option state.
    values Sequence[str]
    List of query parameters.
    enabled Boolean
    Controls the option state.
    values List<String>
    List of query parameters.

    GetCdnResourcesItemOptionsQueryParamsWhitelist

    Enabled bool
    Controls the option state.
    Values List<string>
    List of query parameters.
    Enabled bool
    Controls the option state.
    Values []string
    List of query parameters.
    enabled bool
    Controls the option state.
    values list(string)
    List of query parameters.
    enabled Boolean
    Controls the option state.
    values List<String>
    List of query parameters.
    enabled boolean
    Controls the option state.
    values string[]
    List of query parameters.
    enabled bool
    Controls the option state.
    values Sequence[str]
    List of query parameters.
    enabled Boolean
    Controls the option state.
    values List<String>
    List of query parameters.

    GetCdnResourcesItemOptionsQueryStringForwarding

    Enabled bool
    Controls the option state.
    ForwardExceptKeys List<string>
    The forward_except_keys field provides a mechanism to exclude specific parameters from being forwarded from playlist files to media chunk files. By listing certain keys in this field, you can ensure that these parameters are omitted during the forwarding process. This is particularly useful for preventing sensitive or irrelevant information from being included in requests for media chunks, thereby enhancing security and optimizing performance.
    ForwardFromFileTypes List<string>
    The forward_from_files_types field specifies the types of playlist files from which parameters will be extracted and forwarded. This typically includes formats that list multiple media chunk references, such as HLS and DASH playlists. Parameters associated with these playlist files (like query strings or headers) will be propagated to the chunks they reference.
    ForwardOnlyKeys List<string>
    The forward_only_keys field allows for granular control over which specific parameters are forwarded from playlist files to media chunk files. By specifying certain keys, only those parameters will be propagated, ensuring that only relevant information is passed along. This is particularly useful for security and performance optimization, as it prevents unnecessary or sensitive data from being included in requests for media chunks.
    ForwardToFileTypes List<string>
    The field specifies the types of media chunk files to which parameters, extracted from playlist files, will be forwarded. These refer to the actual segments of media content that are delivered to viewers. Ensuring the correct parameters are forwarded to these files is crucial for maintaining the integrity of the streaming session.
    Enabled bool
    Controls the option state.
    ForwardExceptKeys []string
    The forward_except_keys field provides a mechanism to exclude specific parameters from being forwarded from playlist files to media chunk files. By listing certain keys in this field, you can ensure that these parameters are omitted during the forwarding process. This is particularly useful for preventing sensitive or irrelevant information from being included in requests for media chunks, thereby enhancing security and optimizing performance.
    ForwardFromFileTypes []string
    The forward_from_files_types field specifies the types of playlist files from which parameters will be extracted and forwarded. This typically includes formats that list multiple media chunk references, such as HLS and DASH playlists. Parameters associated with these playlist files (like query strings or headers) will be propagated to the chunks they reference.
    ForwardOnlyKeys []string
    The forward_only_keys field allows for granular control over which specific parameters are forwarded from playlist files to media chunk files. By specifying certain keys, only those parameters will be propagated, ensuring that only relevant information is passed along. This is particularly useful for security and performance optimization, as it prevents unnecessary or sensitive data from being included in requests for media chunks.
    ForwardToFileTypes []string
    The field specifies the types of media chunk files to which parameters, extracted from playlist files, will be forwarded. These refer to the actual segments of media content that are delivered to viewers. Ensuring the correct parameters are forwarded to these files is crucial for maintaining the integrity of the streaming session.
    enabled bool
    Controls the option state.
    forward_except_keys list(string)
    The forward_except_keys field provides a mechanism to exclude specific parameters from being forwarded from playlist files to media chunk files. By listing certain keys in this field, you can ensure that these parameters are omitted during the forwarding process. This is particularly useful for preventing sensitive or irrelevant information from being included in requests for media chunks, thereby enhancing security and optimizing performance.
    forward_from_file_types list(string)
    The forward_from_files_types field specifies the types of playlist files from which parameters will be extracted and forwarded. This typically includes formats that list multiple media chunk references, such as HLS and DASH playlists. Parameters associated with these playlist files (like query strings or headers) will be propagated to the chunks they reference.
    forward_only_keys list(string)
    The forward_only_keys field allows for granular control over which specific parameters are forwarded from playlist files to media chunk files. By specifying certain keys, only those parameters will be propagated, ensuring that only relevant information is passed along. This is particularly useful for security and performance optimization, as it prevents unnecessary or sensitive data from being included in requests for media chunks.
    forward_to_file_types list(string)
    The field specifies the types of media chunk files to which parameters, extracted from playlist files, will be forwarded. These refer to the actual segments of media content that are delivered to viewers. Ensuring the correct parameters are forwarded to these files is crucial for maintaining the integrity of the streaming session.
    enabled Boolean
    Controls the option state.
    forwardExceptKeys List<String>
    The forward_except_keys field provides a mechanism to exclude specific parameters from being forwarded from playlist files to media chunk files. By listing certain keys in this field, you can ensure that these parameters are omitted during the forwarding process. This is particularly useful for preventing sensitive or irrelevant information from being included in requests for media chunks, thereby enhancing security and optimizing performance.
    forwardFromFileTypes List<String>
    The forward_from_files_types field specifies the types of playlist files from which parameters will be extracted and forwarded. This typically includes formats that list multiple media chunk references, such as HLS and DASH playlists. Parameters associated with these playlist files (like query strings or headers) will be propagated to the chunks they reference.
    forwardOnlyKeys List<String>
    The forward_only_keys field allows for granular control over which specific parameters are forwarded from playlist files to media chunk files. By specifying certain keys, only those parameters will be propagated, ensuring that only relevant information is passed along. This is particularly useful for security and performance optimization, as it prevents unnecessary or sensitive data from being included in requests for media chunks.
    forwardToFileTypes List<String>
    The field specifies the types of media chunk files to which parameters, extracted from playlist files, will be forwarded. These refer to the actual segments of media content that are delivered to viewers. Ensuring the correct parameters are forwarded to these files is crucial for maintaining the integrity of the streaming session.
    enabled boolean
    Controls the option state.
    forwardExceptKeys string[]
    The forward_except_keys field provides a mechanism to exclude specific parameters from being forwarded from playlist files to media chunk files. By listing certain keys in this field, you can ensure that these parameters are omitted during the forwarding process. This is particularly useful for preventing sensitive or irrelevant information from being included in requests for media chunks, thereby enhancing security and optimizing performance.
    forwardFromFileTypes string[]
    The forward_from_files_types field specifies the types of playlist files from which parameters will be extracted and forwarded. This typically includes formats that list multiple media chunk references, such as HLS and DASH playlists. Parameters associated with these playlist files (like query strings or headers) will be propagated to the chunks they reference.
    forwardOnlyKeys string[]
    The forward_only_keys field allows for granular control over which specific parameters are forwarded from playlist files to media chunk files. By specifying certain keys, only those parameters will be propagated, ensuring that only relevant information is passed along. This is particularly useful for security and performance optimization, as it prevents unnecessary or sensitive data from being included in requests for media chunks.
    forwardToFileTypes string[]
    The field specifies the types of media chunk files to which parameters, extracted from playlist files, will be forwarded. These refer to the actual segments of media content that are delivered to viewers. Ensuring the correct parameters are forwarded to these files is crucial for maintaining the integrity of the streaming session.
    enabled bool
    Controls the option state.
    forward_except_keys Sequence[str]
    The forward_except_keys field provides a mechanism to exclude specific parameters from being forwarded from playlist files to media chunk files. By listing certain keys in this field, you can ensure that these parameters are omitted during the forwarding process. This is particularly useful for preventing sensitive or irrelevant information from being included in requests for media chunks, thereby enhancing security and optimizing performance.
    forward_from_file_types Sequence[str]
    The forward_from_files_types field specifies the types of playlist files from which parameters will be extracted and forwarded. This typically includes formats that list multiple media chunk references, such as HLS and DASH playlists. Parameters associated with these playlist files (like query strings or headers) will be propagated to the chunks they reference.
    forward_only_keys Sequence[str]
    The forward_only_keys field allows for granular control over which specific parameters are forwarded from playlist files to media chunk files. By specifying certain keys, only those parameters will be propagated, ensuring that only relevant information is passed along. This is particularly useful for security and performance optimization, as it prevents unnecessary or sensitive data from being included in requests for media chunks.
    forward_to_file_types Sequence[str]
    The field specifies the types of media chunk files to which parameters, extracted from playlist files, will be forwarded. These refer to the actual segments of media content that are delivered to viewers. Ensuring the correct parameters are forwarded to these files is crucial for maintaining the integrity of the streaming session.
    enabled Boolean
    Controls the option state.
    forwardExceptKeys List<String>
    The forward_except_keys field provides a mechanism to exclude specific parameters from being forwarded from playlist files to media chunk files. By listing certain keys in this field, you can ensure that these parameters are omitted during the forwarding process. This is particularly useful for preventing sensitive or irrelevant information from being included in requests for media chunks, thereby enhancing security and optimizing performance.
    forwardFromFileTypes List<String>
    The forward_from_files_types field specifies the types of playlist files from which parameters will be extracted and forwarded. This typically includes formats that list multiple media chunk references, such as HLS and DASH playlists. Parameters associated with these playlist files (like query strings or headers) will be propagated to the chunks they reference.
    forwardOnlyKeys List<String>
    The forward_only_keys field allows for granular control over which specific parameters are forwarded from playlist files to media chunk files. By specifying certain keys, only those parameters will be propagated, ensuring that only relevant information is passed along. This is particularly useful for security and performance optimization, as it prevents unnecessary or sensitive data from being included in requests for media chunks.
    forwardToFileTypes List<String>
    The field specifies the types of media chunk files to which parameters, extracted from playlist files, will be forwarded. These refer to the actual segments of media content that are delivered to viewers. Ensuring the correct parameters are forwarded to these files is crucial for maintaining the integrity of the streaming session.

    GetCdnResourcesItemOptionsRedirectHttpToHttps

    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled boolean
    Controls the option state.
    value boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.

    GetCdnResourcesItemOptionsRedirectHttpsToHttp

    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled boolean
    Controls the option state.
    value boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.

    GetCdnResourcesItemOptionsReferrerAcl

    Enabled bool
    Controls the option state.
    ExceptedValues List<string>

    List of domain names or wildcard domains (without protocol: http:// or https://.)

    The meaning of the parameter depends on policy_type value:

    • allow - List of domain names for which access is prohibited.
    • deny - List of IP domain names for which access is allowed.

    Examples:

    • example.com
    • *.example.com
    PolicyType string

    Policy type.

    Possible values:

    • allow - Allow access to all domain names except the domain names specified in excepted_values field.
    • deny - Deny access to all domain names except the domain names specified in excepted_values field. Available values: "allow", "deny".
    Enabled bool
    Controls the option state.
    ExceptedValues []string

    List of domain names or wildcard domains (without protocol: http:// or https://.)

    The meaning of the parameter depends on policy_type value:

    • allow - List of domain names for which access is prohibited.
    • deny - List of IP domain names for which access is allowed.

    Examples:

    • example.com
    • *.example.com
    PolicyType string

    Policy type.

    Possible values:

    • allow - Allow access to all domain names except the domain names specified in excepted_values field.
    • deny - Deny access to all domain names except the domain names specified in excepted_values field. Available values: "allow", "deny".
    enabled bool
    Controls the option state.
    excepted_values list(string)

    List of domain names or wildcard domains (without protocol: http:// or https://.)

    The meaning of the parameter depends on policy_type value:

    • allow - List of domain names for which access is prohibited.
    • deny - List of IP domain names for which access is allowed.

    Examples:

    • example.com
    • *.example.com
    policy_type string

    Policy type.

    Possible values:

    • allow - Allow access to all domain names except the domain names specified in excepted_values field.
    • deny - Deny access to all domain names except the domain names specified in excepted_values field. Available values: "allow", "deny".
    enabled Boolean
    Controls the option state.
    exceptedValues List<String>

    List of domain names or wildcard domains (without protocol: http:// or https://.)

    The meaning of the parameter depends on policy_type value:

    • allow - List of domain names for which access is prohibited.
    • deny - List of IP domain names for which access is allowed.

    Examples:

    • example.com
    • *.example.com
    policyType String

    Policy type.

    Possible values:

    • allow - Allow access to all domain names except the domain names specified in excepted_values field.
    • deny - Deny access to all domain names except the domain names specified in excepted_values field. Available values: "allow", "deny".
    enabled boolean
    Controls the option state.
    exceptedValues string[]

    List of domain names or wildcard domains (without protocol: http:// or https://.)

    The meaning of the parameter depends on policy_type value:

    • allow - List of domain names for which access is prohibited.
    • deny - List of IP domain names for which access is allowed.

    Examples:

    • example.com
    • *.example.com
    policyType string

    Policy type.

    Possible values:

    • allow - Allow access to all domain names except the domain names specified in excepted_values field.
    • deny - Deny access to all domain names except the domain names specified in excepted_values field. Available values: "allow", "deny".
    enabled bool
    Controls the option state.
    excepted_values Sequence[str]

    List of domain names or wildcard domains (without protocol: http:// or https://.)

    The meaning of the parameter depends on policy_type value:

    • allow - List of domain names for which access is prohibited.
    • deny - List of IP domain names for which access is allowed.

    Examples:

    • example.com
    • *.example.com
    policy_type str

    Policy type.

    Possible values:

    • allow - Allow access to all domain names except the domain names specified in excepted_values field.
    • deny - Deny access to all domain names except the domain names specified in excepted_values field. Available values: "allow", "deny".
    enabled Boolean
    Controls the option state.
    exceptedValues List<String>

    List of domain names or wildcard domains (without protocol: http:// or https://.)

    The meaning of the parameter depends on policy_type value:

    • allow - List of domain names for which access is prohibited.
    • deny - List of IP domain names for which access is allowed.

    Examples:

    • example.com
    • *.example.com
    policyType String

    Policy type.

    Possible values:

    • allow - Allow access to all domain names except the domain names specified in excepted_values field.
    • deny - Deny access to all domain names except the domain names specified in excepted_values field. Available values: "allow", "deny".

    GetCdnResourcesItemOptionsResponseHeadersHidingPolicy

    Enabled bool
    Controls the option state.
    Excepteds List<string>

    List of HTTP headers.

    Parameter meaning depends on the value of the mode field:

    • show - List of HTTP headers to hide from response.
    • hide - List of HTTP headers to include in response. Other HTTP headers will be hidden.

    The following headers are required and cannot be hidden from response:

    • Connection
    • Content-Length
    • Content-Type
    • Date
    • Server
    Mode string

    How HTTP headers are hidden from the response.

    Possible values:

    • show - Hide only HTTP headers listed in the excepted field.
    • hide - Hide all HTTP headers except headers listed in the "excepted" field. Available values: "hide", "show".
    Enabled bool
    Controls the option state.
    Excepteds []string

    List of HTTP headers.

    Parameter meaning depends on the value of the mode field:

    • show - List of HTTP headers to hide from response.
    • hide - List of HTTP headers to include in response. Other HTTP headers will be hidden.

    The following headers are required and cannot be hidden from response:

    • Connection
    • Content-Length
    • Content-Type
    • Date
    • Server
    Mode string

    How HTTP headers are hidden from the response.

    Possible values:

    • show - Hide only HTTP headers listed in the excepted field.
    • hide - Hide all HTTP headers except headers listed in the "excepted" field. Available values: "hide", "show".
    enabled bool
    Controls the option state.
    excepteds list(string)

    List of HTTP headers.

    Parameter meaning depends on the value of the mode field:

    • show - List of HTTP headers to hide from response.
    • hide - List of HTTP headers to include in response. Other HTTP headers will be hidden.

    The following headers are required and cannot be hidden from response:

    • Connection
    • Content-Length
    • Content-Type
    • Date
    • Server
    mode string

    How HTTP headers are hidden from the response.

    Possible values:

    • show - Hide only HTTP headers listed in the excepted field.
    • hide - Hide all HTTP headers except headers listed in the "excepted" field. Available values: "hide", "show".
    enabled Boolean
    Controls the option state.
    excepteds List<String>

    List of HTTP headers.

    Parameter meaning depends on the value of the mode field:

    • show - List of HTTP headers to hide from response.
    • hide - List of HTTP headers to include in response. Other HTTP headers will be hidden.

    The following headers are required and cannot be hidden from response:

    • Connection
    • Content-Length
    • Content-Type
    • Date
    • Server
    mode String

    How HTTP headers are hidden from the response.

    Possible values:

    • show - Hide only HTTP headers listed in the excepted field.
    • hide - Hide all HTTP headers except headers listed in the "excepted" field. Available values: "hide", "show".
    enabled boolean
    Controls the option state.
    excepteds string[]

    List of HTTP headers.

    Parameter meaning depends on the value of the mode field:

    • show - List of HTTP headers to hide from response.
    • hide - List of HTTP headers to include in response. Other HTTP headers will be hidden.

    The following headers are required and cannot be hidden from response:

    • Connection
    • Content-Length
    • Content-Type
    • Date
    • Server
    mode string

    How HTTP headers are hidden from the response.

    Possible values:

    • show - Hide only HTTP headers listed in the excepted field.
    • hide - Hide all HTTP headers except headers listed in the "excepted" field. Available values: "hide", "show".
    enabled bool
    Controls the option state.
    excepteds Sequence[str]

    List of HTTP headers.

    Parameter meaning depends on the value of the mode field:

    • show - List of HTTP headers to hide from response.
    • hide - List of HTTP headers to include in response. Other HTTP headers will be hidden.

    The following headers are required and cannot be hidden from response:

    • Connection
    • Content-Length
    • Content-Type
    • Date
    • Server
    mode str

    How HTTP headers are hidden from the response.

    Possible values:

    • show - Hide only HTTP headers listed in the excepted field.
    • hide - Hide all HTTP headers except headers listed in the "excepted" field. Available values: "hide", "show".
    enabled Boolean
    Controls the option state.
    excepteds List<String>

    List of HTTP headers.

    Parameter meaning depends on the value of the mode field:

    • show - List of HTTP headers to hide from response.
    • hide - List of HTTP headers to include in response. Other HTTP headers will be hidden.

    The following headers are required and cannot be hidden from response:

    • Connection
    • Content-Length
    • Content-Type
    • Date
    • Server
    mode String

    How HTTP headers are hidden from the response.

    Possible values:

    • show - Hide only HTTP headers listed in the excepted field.
    • hide - Hide all HTTP headers except headers listed in the "excepted" field. Available values: "hide", "show".

    GetCdnResourcesItemOptionsRewrite

    Body string
    Path for the Rewrite option.
    Enabled bool

    Controls the option state.

    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    Flag string

    Flag for the Rewrite option.

    Possible values:

    • last - Stop processing the current set of ngx_http_rewrite_module directives and start a search for a new location matching changed URI.
    • break - Stop processing the current set of the Rewrite option.
    • redirect - Return a temporary redirect with the 302 code; used when a replacement string does not start with http://, https://, or $scheme.
    • permanent - Return a permanent redirect with the 301 code. Available values: "break", "last", "redirect", "permanent".
    Body string
    Path for the Rewrite option.
    Enabled bool

    Controls the option state.

    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    Flag string

    Flag for the Rewrite option.

    Possible values:

    • last - Stop processing the current set of ngx_http_rewrite_module directives and start a search for a new location matching changed URI.
    • break - Stop processing the current set of the Rewrite option.
    • redirect - Return a temporary redirect with the 302 code; used when a replacement string does not start with http://, https://, or $scheme.
    • permanent - Return a permanent redirect with the 301 code. Available values: "break", "last", "redirect", "permanent".
    body string
    Path for the Rewrite option.
    enabled bool

    Controls the option state.

    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    flag string

    Flag for the Rewrite option.

    Possible values:

    • last - Stop processing the current set of ngx_http_rewrite_module directives and start a search for a new location matching changed URI.
    • break - Stop processing the current set of the Rewrite option.
    • redirect - Return a temporary redirect with the 302 code; used when a replacement string does not start with http://, https://, or $scheme.
    • permanent - Return a permanent redirect with the 301 code. Available values: "break", "last", "redirect", "permanent".
    body String
    Path for the Rewrite option.
    enabled Boolean

    Controls the option state.

    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    flag String

    Flag for the Rewrite option.

    Possible values:

    • last - Stop processing the current set of ngx_http_rewrite_module directives and start a search for a new location matching changed URI.
    • break - Stop processing the current set of the Rewrite option.
    • redirect - Return a temporary redirect with the 302 code; used when a replacement string does not start with http://, https://, or $scheme.
    • permanent - Return a permanent redirect with the 301 code. Available values: "break", "last", "redirect", "permanent".
    body string
    Path for the Rewrite option.
    enabled boolean

    Controls the option state.

    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    flag string

    Flag for the Rewrite option.

    Possible values:

    • last - Stop processing the current set of ngx_http_rewrite_module directives and start a search for a new location matching changed URI.
    • break - Stop processing the current set of the Rewrite option.
    • redirect - Return a temporary redirect with the 302 code; used when a replacement string does not start with http://, https://, or $scheme.
    • permanent - Return a permanent redirect with the 301 code. Available values: "break", "last", "redirect", "permanent".
    body str
    Path for the Rewrite option.
    enabled bool

    Controls the option state.

    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    flag str

    Flag for the Rewrite option.

    Possible values:

    • last - Stop processing the current set of ngx_http_rewrite_module directives and start a search for a new location matching changed URI.
    • break - Stop processing the current set of the Rewrite option.
    • redirect - Return a temporary redirect with the 302 code; used when a replacement string does not start with http://, https://, or $scheme.
    • permanent - Return a permanent redirect with the 301 code. Available values: "break", "last", "redirect", "permanent".
    body String
    Path for the Rewrite option.
    enabled Boolean

    Controls the option state.

    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    flag String

    Flag for the Rewrite option.

    Possible values:

    • last - Stop processing the current set of ngx_http_rewrite_module directives and start a search for a new location matching changed URI.
    • break - Stop processing the current set of the Rewrite option.
    • redirect - Return a temporary redirect with the 302 code; used when a replacement string does not start with http://, https://, or $scheme.
    • permanent - Return a permanent redirect with the 301 code. Available values: "break", "last", "redirect", "permanent".

    GetCdnResourcesItemOptionsSecureKey

    Enabled bool
    Controls the option state.
    Key string
    Key generated on your side that will be used for URL signing.
    Type double

    Type of URL signing.

    Possible types:

    • Type 0 - Includes end user IP to secure token generation.
    • Type 2 - Excludes end user IP from secure token generation. Available values: 0, 2.
    Enabled bool
    Controls the option state.
    Key string
    Key generated on your side that will be used for URL signing.
    Type float64

    Type of URL signing.

    Possible types:

    • Type 0 - Includes end user IP to secure token generation.
    • Type 2 - Excludes end user IP from secure token generation. Available values: 0, 2.
    enabled bool
    Controls the option state.
    key string
    Key generated on your side that will be used for URL signing.
    type number

    Type of URL signing.

    Possible types:

    • Type 0 - Includes end user IP to secure token generation.
    • Type 2 - Excludes end user IP from secure token generation. Available values: 0, 2.
    enabled Boolean
    Controls the option state.
    key String
    Key generated on your side that will be used for URL signing.
    type Double

    Type of URL signing.

    Possible types:

    • Type 0 - Includes end user IP to secure token generation.
    • Type 2 - Excludes end user IP from secure token generation. Available values: 0, 2.
    enabled boolean
    Controls the option state.
    key string
    Key generated on your side that will be used for URL signing.
    type number

    Type of URL signing.

    Possible types:

    • Type 0 - Includes end user IP to secure token generation.
    • Type 2 - Excludes end user IP from secure token generation. Available values: 0, 2.
    enabled bool
    Controls the option state.
    key str
    Key generated on your side that will be used for URL signing.
    type float

    Type of URL signing.

    Possible types:

    • Type 0 - Includes end user IP to secure token generation.
    • Type 2 - Excludes end user IP from secure token generation. Available values: 0, 2.
    enabled Boolean
    Controls the option state.
    key String
    Key generated on your side that will be used for URL signing.
    type Number

    Type of URL signing.

    Possible types:

    • Type 0 - Includes end user IP to secure token generation.
    • Type 2 - Excludes end user IP from secure token generation. Available values: 0, 2.

    GetCdnResourcesItemOptionsSlice

    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled boolean
    Controls the option state.
    value boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.

    GetCdnResourcesItemOptionsSni

    CustomHostname string
    Custom SNI hostname.
    Enabled bool

    Controls the option state.

    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    SniType string

    SNI (Server Name Indication) type.

    Possible values:

    • dynamic - SNI hostname depends on hostHeader and forward_host_header options. It has several possible combinations:
      • If the hostHeader option is enabled and specified, SNI hostname matches the Host header.
      • If the forward_host_header option is enabled and has true value, SNI hostname matches the Host header used in the request made to a CDN.
      • If the hostHeader and forward_host_header options are disabled, SNI hostname matches the primary CNAME.
    • custom - custom SNI hostname is in use. Available values: "dynamic", "custom".
    CustomHostname string
    Custom SNI hostname.
    Enabled bool

    Controls the option state.

    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    SniType string

    SNI (Server Name Indication) type.

    Possible values:

    • dynamic - SNI hostname depends on hostHeader and forward_host_header options. It has several possible combinations:
      • If the hostHeader option is enabled and specified, SNI hostname matches the Host header.
      • If the forward_host_header option is enabled and has true value, SNI hostname matches the Host header used in the request made to a CDN.
      • If the hostHeader and forward_host_header options are disabled, SNI hostname matches the primary CNAME.
    • custom - custom SNI hostname is in use. Available values: "dynamic", "custom".
    custom_hostname string
    Custom SNI hostname.
    enabled bool

    Controls the option state.

    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    sni_type string

    SNI (Server Name Indication) type.

    Possible values:

    • dynamic - SNI hostname depends on hostHeader and forward_host_header options. It has several possible combinations:
      • If the hostHeader option is enabled and specified, SNI hostname matches the Host header.
      • If the forward_host_header option is enabled and has true value, SNI hostname matches the Host header used in the request made to a CDN.
      • If the hostHeader and forward_host_header options are disabled, SNI hostname matches the primary CNAME.
    • custom - custom SNI hostname is in use. Available values: "dynamic", "custom".
    customHostname String
    Custom SNI hostname.
    enabled Boolean

    Controls the option state.

    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    sniType String

    SNI (Server Name Indication) type.

    Possible values:

    • dynamic - SNI hostname depends on hostHeader and forward_host_header options. It has several possible combinations:
      • If the hostHeader option is enabled and specified, SNI hostname matches the Host header.
      • If the forward_host_header option is enabled and has true value, SNI hostname matches the Host header used in the request made to a CDN.
      • If the hostHeader and forward_host_header options are disabled, SNI hostname matches the primary CNAME.
    • custom - custom SNI hostname is in use. Available values: "dynamic", "custom".
    customHostname string
    Custom SNI hostname.
    enabled boolean

    Controls the option state.

    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    sniType string

    SNI (Server Name Indication) type.

    Possible values:

    • dynamic - SNI hostname depends on hostHeader and forward_host_header options. It has several possible combinations:
      • If the hostHeader option is enabled and specified, SNI hostname matches the Host header.
      • If the forward_host_header option is enabled and has true value, SNI hostname matches the Host header used in the request made to a CDN.
      • If the hostHeader and forward_host_header options are disabled, SNI hostname matches the primary CNAME.
    • custom - custom SNI hostname is in use. Available values: "dynamic", "custom".
    custom_hostname str
    Custom SNI hostname.
    enabled bool

    Controls the option state.

    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    sni_type str

    SNI (Server Name Indication) type.

    Possible values:

    • dynamic - SNI hostname depends on hostHeader and forward_host_header options. It has several possible combinations:
      • If the hostHeader option is enabled and specified, SNI hostname matches the Host header.
      • If the forward_host_header option is enabled and has true value, SNI hostname matches the Host header used in the request made to a CDN.
      • If the hostHeader and forward_host_header options are disabled, SNI hostname matches the primary CNAME.
    • custom - custom SNI hostname is in use. Available values: "dynamic", "custom".
    customHostname String
    Custom SNI hostname.
    enabled Boolean

    Controls the option state.

    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    sniType String

    SNI (Server Name Indication) type.

    Possible values:

    • dynamic - SNI hostname depends on hostHeader and forward_host_header options. It has several possible combinations:
      • If the hostHeader option is enabled and specified, SNI hostname matches the Host header.
      • If the forward_host_header option is enabled and has true value, SNI hostname matches the Host header used in the request made to a CDN.
      • If the hostHeader and forward_host_header options are disabled, SNI hostname matches the primary CNAME.
    • custom - custom SNI hostname is in use. Available values: "dynamic", "custom".

    GetCdnResourcesItemOptionsStale

    Enabled bool
    Controls the option state.
    Values List<string>
    Defines list of errors for which "Always online" option is applied.
    Enabled bool
    Controls the option state.
    Values []string
    Defines list of errors for which "Always online" option is applied.
    enabled bool
    Controls the option state.
    values list(string)
    Defines list of errors for which "Always online" option is applied.
    enabled Boolean
    Controls the option state.
    values List<String>
    Defines list of errors for which "Always online" option is applied.
    enabled boolean
    Controls the option state.
    values string[]
    Defines list of errors for which "Always online" option is applied.
    enabled bool
    Controls the option state.
    values Sequence[str]
    Defines list of errors for which "Always online" option is applied.
    enabled Boolean
    Controls the option state.
    values List<String>
    Defines list of errors for which "Always online" option is applied.

    GetCdnResourcesItemOptionsStaticHeaders

    Enabled bool
    Controls the option state.
    Value string

    A MAP for static headers in a format of header_name: header_value.

    Restrictions:

    • Header name - Maximum 128 symbols, may contain Latin letters (A-Z, a-z), numbers (0-9), dashes, and underscores.
    • Header value - Maximum 512 symbols, may contain letters (a-z), numbers (0-9), spaces, and symbols (`~!@#%%^&*()-_=+ /|";:?.,><{}[]). Must start with a letter, number, asterisk or {.
    Enabled bool
    Controls the option state.
    Value string

    A MAP for static headers in a format of header_name: header_value.

    Restrictions:

    • Header name - Maximum 128 symbols, may contain Latin letters (A-Z, a-z), numbers (0-9), dashes, and underscores.
    • Header value - Maximum 512 symbols, may contain letters (a-z), numbers (0-9), spaces, and symbols (`~!@#%%^&*()-_=+ /|";:?.,><{}[]). Must start with a letter, number, asterisk or {.
    enabled bool
    Controls the option state.
    value string

    A MAP for static headers in a format of header_name: header_value.

    Restrictions:

    • Header name - Maximum 128 symbols, may contain Latin letters (A-Z, a-z), numbers (0-9), dashes, and underscores.
    • Header value - Maximum 512 symbols, may contain letters (a-z), numbers (0-9), spaces, and symbols (`~!@#%%^&*()-_=+ /|";:?.,><{}[]). Must start with a letter, number, asterisk or {.
    enabled Boolean
    Controls the option state.
    value String

    A MAP for static headers in a format of header_name: header_value.

    Restrictions:

    • Header name - Maximum 128 symbols, may contain Latin letters (A-Z, a-z), numbers (0-9), dashes, and underscores.
    • Header value - Maximum 512 symbols, may contain letters (a-z), numbers (0-9), spaces, and symbols (`~!@#%%^&*()-_=+ /|";:?.,><{}[]). Must start with a letter, number, asterisk or {.
    enabled boolean
    Controls the option state.
    value string

    A MAP for static headers in a format of header_name: header_value.

    Restrictions:

    • Header name - Maximum 128 symbols, may contain Latin letters (A-Z, a-z), numbers (0-9), dashes, and underscores.
    • Header value - Maximum 512 symbols, may contain letters (a-z), numbers (0-9), spaces, and symbols (`~!@#%%^&*()-_=+ /|";:?.,><{}[]). Must start with a letter, number, asterisk or {.
    enabled bool
    Controls the option state.
    value str

    A MAP for static headers in a format of header_name: header_value.

    Restrictions:

    • Header name - Maximum 128 symbols, may contain Latin letters (A-Z, a-z), numbers (0-9), dashes, and underscores.
    • Header value - Maximum 512 symbols, may contain letters (a-z), numbers (0-9), spaces, and symbols (`~!@#%%^&*()-_=+ /|";:?.,><{}[]). Must start with a letter, number, asterisk or {.
    enabled Boolean
    Controls the option state.
    value String

    A MAP for static headers in a format of header_name: header_value.

    Restrictions:

    • Header name - Maximum 128 symbols, may contain Latin letters (A-Z, a-z), numbers (0-9), dashes, and underscores.
    • Header value - Maximum 512 symbols, may contain letters (a-z), numbers (0-9), spaces, and symbols (`~!@#%%^&*()-_=+ /|";:?.,><{}[]). Must start with a letter, number, asterisk or {.

    GetCdnResourcesItemOptionsStaticRequestHeaders

    Enabled bool
    Controls the option state.
    Value Dictionary<string, string>

    A MAP for static headers in a format of header_name: header_value.

    Restrictions:

    • Header name - Maximum 255 symbols, may contain Latin letters (A-Z, a-z), numbers (0-9), dashes, and underscores.
    • Header value - Maximum 512 symbols, may contain letters (a-z), numbers (0-9), spaces, and symbols (`~!@#%%^&*()-_=+ /|";:?.,><{}[]). Must start with a letter, number, asterisk or {.
    Enabled bool
    Controls the option state.
    Value map[string]string

    A MAP for static headers in a format of header_name: header_value.

    Restrictions:

    • Header name - Maximum 255 symbols, may contain Latin letters (A-Z, a-z), numbers (0-9), dashes, and underscores.
    • Header value - Maximum 512 symbols, may contain letters (a-z), numbers (0-9), spaces, and symbols (`~!@#%%^&*()-_=+ /|";:?.,><{}[]). Must start with a letter, number, asterisk or {.
    enabled bool
    Controls the option state.
    value map(string)

    A MAP for static headers in a format of header_name: header_value.

    Restrictions:

    • Header name - Maximum 255 symbols, may contain Latin letters (A-Z, a-z), numbers (0-9), dashes, and underscores.
    • Header value - Maximum 512 symbols, may contain letters (a-z), numbers (0-9), spaces, and symbols (`~!@#%%^&*()-_=+ /|";:?.,><{}[]). Must start with a letter, number, asterisk or {.
    enabled Boolean
    Controls the option state.
    value Map<String,String>

    A MAP for static headers in a format of header_name: header_value.

    Restrictions:

    • Header name - Maximum 255 symbols, may contain Latin letters (A-Z, a-z), numbers (0-9), dashes, and underscores.
    • Header value - Maximum 512 symbols, may contain letters (a-z), numbers (0-9), spaces, and symbols (`~!@#%%^&*()-_=+ /|";:?.,><{}[]). Must start with a letter, number, asterisk or {.
    enabled boolean
    Controls the option state.
    value {[key: string]: string}

    A MAP for static headers in a format of header_name: header_value.

    Restrictions:

    • Header name - Maximum 255 symbols, may contain Latin letters (A-Z, a-z), numbers (0-9), dashes, and underscores.
    • Header value - Maximum 512 symbols, may contain letters (a-z), numbers (0-9), spaces, and symbols (`~!@#%%^&*()-_=+ /|";:?.,><{}[]). Must start with a letter, number, asterisk or {.
    enabled bool
    Controls the option state.
    value Mapping[str, str]

    A MAP for static headers in a format of header_name: header_value.

    Restrictions:

    • Header name - Maximum 255 symbols, may contain Latin letters (A-Z, a-z), numbers (0-9), dashes, and underscores.
    • Header value - Maximum 512 symbols, may contain letters (a-z), numbers (0-9), spaces, and symbols (`~!@#%%^&*()-_=+ /|";:?.,><{}[]). Must start with a letter, number, asterisk or {.
    enabled Boolean
    Controls the option state.
    value Map<String>

    A MAP for static headers in a format of header_name: header_value.

    Restrictions:

    • Header name - Maximum 255 symbols, may contain Latin letters (A-Z, a-z), numbers (0-9), dashes, and underscores.
    • Header value - Maximum 512 symbols, may contain letters (a-z), numbers (0-9), spaces, and symbols (`~!@#%%^&*()-_=+ /|";:?.,><{}[]). Must start with a letter, number, asterisk or {.

    GetCdnResourcesItemOptionsStaticResponseHeaders

    enabled bool
    Controls the option state.
    values list(object)
    enabled Boolean
    Controls the option state.
    values List<Property Map>

    GetCdnResourcesItemOptionsStaticResponseHeadersValue

    Always bool
    Defines whether the header will be added to a response from CDN regardless of response code.
    Name string

    HTTP Header name.

    Restrictions:

    • Maximum 128 symbols.
    • Latin letters (A-Z, a-z,) numbers (0-9,) dashes, and underscores only.
    Values List<string>

    Header value.

    Restrictions:

    • Maximum 512 symbols.
    • Letters (a-z), numbers (0-9), spaces, and symbols (`~!@#%%^&*()-_=+ /|";:?.,><{}[]).
    • Must start with a letter, number, asterisk or {.
    • Multiple values can be added.
    Always bool
    Defines whether the header will be added to a response from CDN regardless of response code.
    Name string

    HTTP Header name.

    Restrictions:

    • Maximum 128 symbols.
    • Latin letters (A-Z, a-z,) numbers (0-9,) dashes, and underscores only.
    Values []string

    Header value.

    Restrictions:

    • Maximum 512 symbols.
    • Letters (a-z), numbers (0-9), spaces, and symbols (`~!@#%%^&*()-_=+ /|";:?.,><{}[]).
    • Must start with a letter, number, asterisk or {.
    • Multiple values can be added.
    always bool
    Defines whether the header will be added to a response from CDN regardless of response code.
    name string

    HTTP Header name.

    Restrictions:

    • Maximum 128 symbols.
    • Latin letters (A-Z, a-z,) numbers (0-9,) dashes, and underscores only.
    values list(string)

    Header value.

    Restrictions:

    • Maximum 512 symbols.
    • Letters (a-z), numbers (0-9), spaces, and symbols (`~!@#%%^&*()-_=+ /|";:?.,><{}[]).
    • Must start with a letter, number, asterisk or {.
    • Multiple values can be added.
    always Boolean
    Defines whether the header will be added to a response from CDN regardless of response code.
    name String

    HTTP Header name.

    Restrictions:

    • Maximum 128 symbols.
    • Latin letters (A-Z, a-z,) numbers (0-9,) dashes, and underscores only.
    values List<String>

    Header value.

    Restrictions:

    • Maximum 512 symbols.
    • Letters (a-z), numbers (0-9), spaces, and symbols (`~!@#%%^&*()-_=+ /|";:?.,><{}[]).
    • Must start with a letter, number, asterisk or {.
    • Multiple values can be added.
    always boolean
    Defines whether the header will be added to a response from CDN regardless of response code.
    name string

    HTTP Header name.

    Restrictions:

    • Maximum 128 symbols.
    • Latin letters (A-Z, a-z,) numbers (0-9,) dashes, and underscores only.
    values string[]

    Header value.

    Restrictions:

    • Maximum 512 symbols.
    • Letters (a-z), numbers (0-9), spaces, and symbols (`~!@#%%^&*()-_=+ /|";:?.,><{}[]).
    • Must start with a letter, number, asterisk or {.
    • Multiple values can be added.
    always bool
    Defines whether the header will be added to a response from CDN regardless of response code.
    name str

    HTTP Header name.

    Restrictions:

    • Maximum 128 symbols.
    • Latin letters (A-Z, a-z,) numbers (0-9,) dashes, and underscores only.
    values Sequence[str]

    Header value.

    Restrictions:

    • Maximum 512 symbols.
    • Letters (a-z), numbers (0-9), spaces, and symbols (`~!@#%%^&*()-_=+ /|";:?.,><{}[]).
    • Must start with a letter, number, asterisk or {.
    • Multiple values can be added.
    always Boolean
    Defines whether the header will be added to a response from CDN regardless of response code.
    name String

    HTTP Header name.

    Restrictions:

    • Maximum 128 symbols.
    • Latin letters (A-Z, a-z,) numbers (0-9,) dashes, and underscores only.
    values List<String>

    Header value.

    Restrictions:

    • Maximum 512 symbols.
    • Letters (a-z), numbers (0-9), spaces, and symbols (`~!@#%%^&*()-_=+ /|";:?.,><{}[]).
    • Must start with a letter, number, asterisk or {.
    • Multiple values can be added.

    GetCdnResourcesItemOptionsTlsVersions

    Enabled bool
    Controls the option state.
    Values List<string>
    List of SSL/TLS protocol versions (case sensitive).
    Enabled bool
    Controls the option state.
    Values []string
    List of SSL/TLS protocol versions (case sensitive).
    enabled bool
    Controls the option state.
    values list(string)
    List of SSL/TLS protocol versions (case sensitive).
    enabled Boolean
    Controls the option state.
    values List<String>
    List of SSL/TLS protocol versions (case sensitive).
    enabled boolean
    Controls the option state.
    values string[]
    List of SSL/TLS protocol versions (case sensitive).
    enabled bool
    Controls the option state.
    values Sequence[str]
    List of SSL/TLS protocol versions (case sensitive).
    enabled Boolean
    Controls the option state.
    values List<String>
    List of SSL/TLS protocol versions (case sensitive).

    GetCdnResourcesItemOptionsUseDefaultLeChain

    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - Default Let's Encrypt certificate chain. This is a deprecated version, use it only for compatibilities with Android devices 7.1.1 or lower.
    • false - Alternative Let's Encrypt certificate chain.
    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - Default Let's Encrypt certificate chain. This is a deprecated version, use it only for compatibilities with Android devices 7.1.1 or lower.
    • false - Alternative Let's Encrypt certificate chain.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - Default Let's Encrypt certificate chain. This is a deprecated version, use it only for compatibilities with Android devices 7.1.1 or lower.
    • false - Alternative Let's Encrypt certificate chain.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - Default Let's Encrypt certificate chain. This is a deprecated version, use it only for compatibilities with Android devices 7.1.1 or lower.
    • false - Alternative Let's Encrypt certificate chain.
    enabled boolean
    Controls the option state.
    value boolean
    Possible values:

    • true - Default Let's Encrypt certificate chain. This is a deprecated version, use it only for compatibilities with Android devices 7.1.1 or lower.
    • false - Alternative Let's Encrypt certificate chain.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - Default Let's Encrypt certificate chain. This is a deprecated version, use it only for compatibilities with Android devices 7.1.1 or lower.
    • false - Alternative Let's Encrypt certificate chain.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - Default Let's Encrypt certificate chain. This is a deprecated version, use it only for compatibilities with Android devices 7.1.1 or lower.
    • false - Alternative Let's Encrypt certificate chain.

    GetCdnResourcesItemOptionsUseDns01LeChallenge

    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - DNS-01 challenge is used to issue Let's Encrypt certificate.
    • false - HTTP-01 challenge is used to issue Let's Encrypt certificate.
    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - DNS-01 challenge is used to issue Let's Encrypt certificate.
    • false - HTTP-01 challenge is used to issue Let's Encrypt certificate.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - DNS-01 challenge is used to issue Let's Encrypt certificate.
    • false - HTTP-01 challenge is used to issue Let's Encrypt certificate.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - DNS-01 challenge is used to issue Let's Encrypt certificate.
    • false - HTTP-01 challenge is used to issue Let's Encrypt certificate.
    enabled boolean
    Controls the option state.
    value boolean
    Possible values:

    • true - DNS-01 challenge is used to issue Let's Encrypt certificate.
    • false - HTTP-01 challenge is used to issue Let's Encrypt certificate.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - DNS-01 challenge is used to issue Let's Encrypt certificate.
    • false - HTTP-01 challenge is used to issue Let's Encrypt certificate.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - DNS-01 challenge is used to issue Let's Encrypt certificate.
    • false - HTTP-01 challenge is used to issue Let's Encrypt certificate.

    GetCdnResourcesItemOptionsUseRsaLeCert

    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - RSA Let's Encrypt certificate.
    • false - ECDSA Let's Encrypt certificate.
    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - RSA Let's Encrypt certificate.
    • false - ECDSA Let's Encrypt certificate.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - RSA Let's Encrypt certificate.
    • false - ECDSA Let's Encrypt certificate.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - RSA Let's Encrypt certificate.
    • false - ECDSA Let's Encrypt certificate.
    enabled boolean
    Controls the option state.
    value boolean
    Possible values:

    • true - RSA Let's Encrypt certificate.
    • false - ECDSA Let's Encrypt certificate.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - RSA Let's Encrypt certificate.
    • false - ECDSA Let's Encrypt certificate.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - RSA Let's Encrypt certificate.
    • false - ECDSA Let's Encrypt certificate.

    GetCdnResourcesItemOptionsUserAgentAcl

    Enabled bool
    Controls the option state.
    ExceptedValues List<string>

    List of User-Agents that will be allowed/denied.

    The meaning of the parameter depends on policy_type:

    • allow - List of User-Agents for which access is prohibited.
    • deny - List of User-Agents for which access is allowed.

    You can provide exact User-Agent strings or regular expressions. Regular expressions must start with ~ (case-sensitive) or ~* (case-insensitive).

    Use an empty string "" to allow/deny access when the User-Agent header is empty.

    PolicyType string

    User-Agents policy type.

    Possible values:

    • allow - Allow access for all User-Agents except specified in excepted_values field.
    • deny - Deny access for all User-Agents except specified in excepted_values field. Available values: "allow", "deny".
    Enabled bool
    Controls the option state.
    ExceptedValues []string

    List of User-Agents that will be allowed/denied.

    The meaning of the parameter depends on policy_type:

    • allow - List of User-Agents for which access is prohibited.
    • deny - List of User-Agents for which access is allowed.

    You can provide exact User-Agent strings or regular expressions. Regular expressions must start with ~ (case-sensitive) or ~* (case-insensitive).

    Use an empty string "" to allow/deny access when the User-Agent header is empty.

    PolicyType string

    User-Agents policy type.

    Possible values:

    • allow - Allow access for all User-Agents except specified in excepted_values field.
    • deny - Deny access for all User-Agents except specified in excepted_values field. Available values: "allow", "deny".
    enabled bool
    Controls the option state.
    excepted_values list(string)

    List of User-Agents that will be allowed/denied.

    The meaning of the parameter depends on policy_type:

    • allow - List of User-Agents for which access is prohibited.
    • deny - List of User-Agents for which access is allowed.

    You can provide exact User-Agent strings or regular expressions. Regular expressions must start with ~ (case-sensitive) or ~* (case-insensitive).

    Use an empty string "" to allow/deny access when the User-Agent header is empty.

    policy_type string

    User-Agents policy type.

    Possible values:

    • allow - Allow access for all User-Agents except specified in excepted_values field.
    • deny - Deny access for all User-Agents except specified in excepted_values field. Available values: "allow", "deny".
    enabled Boolean
    Controls the option state.
    exceptedValues List<String>

    List of User-Agents that will be allowed/denied.

    The meaning of the parameter depends on policy_type:

    • allow - List of User-Agents for which access is prohibited.
    • deny - List of User-Agents for which access is allowed.

    You can provide exact User-Agent strings or regular expressions. Regular expressions must start with ~ (case-sensitive) or ~* (case-insensitive).

    Use an empty string "" to allow/deny access when the User-Agent header is empty.

    policyType String

    User-Agents policy type.

    Possible values:

    • allow - Allow access for all User-Agents except specified in excepted_values field.
    • deny - Deny access for all User-Agents except specified in excepted_values field. Available values: "allow", "deny".
    enabled boolean
    Controls the option state.
    exceptedValues string[]

    List of User-Agents that will be allowed/denied.

    The meaning of the parameter depends on policy_type:

    • allow - List of User-Agents for which access is prohibited.
    • deny - List of User-Agents for which access is allowed.

    You can provide exact User-Agent strings or regular expressions. Regular expressions must start with ~ (case-sensitive) or ~* (case-insensitive).

    Use an empty string "" to allow/deny access when the User-Agent header is empty.

    policyType string

    User-Agents policy type.

    Possible values:

    • allow - Allow access for all User-Agents except specified in excepted_values field.
    • deny - Deny access for all User-Agents except specified in excepted_values field. Available values: "allow", "deny".
    enabled bool
    Controls the option state.
    excepted_values Sequence[str]

    List of User-Agents that will be allowed/denied.

    The meaning of the parameter depends on policy_type:

    • allow - List of User-Agents for which access is prohibited.
    • deny - List of User-Agents for which access is allowed.

    You can provide exact User-Agent strings or regular expressions. Regular expressions must start with ~ (case-sensitive) or ~* (case-insensitive).

    Use an empty string "" to allow/deny access when the User-Agent header is empty.

    policy_type str

    User-Agents policy type.

    Possible values:

    • allow - Allow access for all User-Agents except specified in excepted_values field.
    • deny - Deny access for all User-Agents except specified in excepted_values field. Available values: "allow", "deny".
    enabled Boolean
    Controls the option state.
    exceptedValues List<String>

    List of User-Agents that will be allowed/denied.

    The meaning of the parameter depends on policy_type:

    • allow - List of User-Agents for which access is prohibited.
    • deny - List of User-Agents for which access is allowed.

    You can provide exact User-Agent strings or regular expressions. Regular expressions must start with ~ (case-sensitive) or ~* (case-insensitive).

    Use an empty string "" to allow/deny access when the User-Agent header is empty.

    policyType String

    User-Agents policy type.

    Possible values:

    • allow - Allow access for all User-Agents except specified in excepted_values field.
    • deny - Deny access for all User-Agents except specified in excepted_values field. Available values: "allow", "deny".

    GetCdnResourcesItemOptionsWaap

    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled boolean
    Controls the option state.
    value boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.

    GetCdnResourcesItemOptionsWebsockets

    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    Enabled bool
    Controls the option state.
    Value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled boolean
    Controls the option state.
    value boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled bool
    Controls the option state.
    value bool
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.
    enabled Boolean
    Controls the option state.
    value Boolean
    Possible values:

    • true - Option is enabled.
    • false - Option is disabled.

    Package Details

    Repository
    gcore g-core/terraform-provider-gcore
    License
    Notes
    This Pulumi package is based on the gcore Terraform Provider.
    Viewing docs for gcore 2.0.0-alpha.15
    published on Thursday, Aug 6, 2026 by g-core

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial