Reference documentation and code samples for the Compute V1 Client class CacheMode.
Specifies the cache setting for all responses from this backend. The possible values are: USE_ORIGIN_HEADERS Requires the origin to set valid caching headers to cache content. Responses without these headers will not be cached at Google's edge, and will require a full trip to the origin on every request, potentially impacting performance and increasing load on the origin server. FORCE_CACHE_ALL Cache all content, ignoring any "private", "no-store" or "no-cache" directives in Cache-Control response headers. Warning: this may result in Cloud CDN caching private, per-user (user identifiable) content. CACHE_ALL_STATIC Automatically cache static content, including common image formats, media (video and audio), and web assets (JavaScript and CSS). Requests and responses that are marked as uncacheable, as well as dynamic content (including HTML), will not be cached. If no value is provided for cdnPolicy.cacheMode, it defaults to CACHE_ALL_STATIC.
Protobuf type google.cloud.compute.v1.BackendBucketCdnPolicy.CacheMode
Namespace
Google \ Cloud \ Compute \ V1 \ BackendBucketCdnPolicyMethods
static::name
Parameter | |
---|---|
Name | Description |
value |
mixed
|
static::value
Parameter | |
---|---|
Name | Description |
name |
mixed
|
Constants
UNDEFINED_CACHE_MODE
Value: 0
A value indicating that the enum field is not set.
Generated from protobuf enum UNDEFINED_CACHE_MODE = 0;
CACHE_ALL_STATIC
Value: 355027945
Automatically cache static content, including common image formats, media (video and audio), and web assets (JavaScript and CSS). Requests and responses that are marked as uncacheable, as well as dynamic content (including HTML), will not be cached.
Generated from protobuf enum CACHE_ALL_STATIC = 355027945;
FORCE_CACHE_ALL
Value: 486026928
Cache all content, ignoring any "private", "no-store" or "no-cache" directives in Cache-Control response headers. Warning: this may result in Cloud CDN caching private, per-user (user identifiable) content.
Generated from protobuf enum FORCE_CACHE_ALL = 486026928;
INVALID_CACHE_MODE
Value: 381295560
Generated from protobuf enum INVALID_CACHE_MODE = 381295560;
USE_ORIGIN_HEADERS
Value: 55380261
Requires the origin to set valid caching headers to cache content. Responses without these headers will not be cached at Google's edge, and will require a full trip to the origin on every request, potentially impacting performance and increasing load on the origin server.
Generated from protobuf enum USE_ORIGIN_HEADERS = 55380261;