Show / Hide Table of Contents

Class BackendBucketCdnPolicyCacheKeyPolicy

Message containing what to include in the cache key for a request for Cloud CDN.

Inheritance
System.Object
BackendBucketCdnPolicyCacheKeyPolicy
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Compute.v1.Data
Assembly: Google.Apis.Compute.v1.dll
Syntax
public class BackendBucketCdnPolicyCacheKeyPolicy : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

IncludeHttpHeaders

Allows HTTP request headers (by name) to be used in the cache key.

Declaration
[JsonProperty("includeHttpHeaders")]
public virtual IList<string> IncludeHttpHeaders { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

QueryStringWhitelist

Names of query string parameters to include in cache keys. Default parameters are always included. '&amp;' and '=' will be percent encoded and not treated as delimiters.

Declaration
[JsonProperty("queryStringWhitelist")]
public virtual IList<string> QueryStringWhitelist { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Implements

IDirectResponseSchema
In This Article
Back to top