Class: Google::Apis::ComputeBeta::BackendBucketCdnPolicy
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::BackendBucketCdnPolicy
- Defined in:
- generated/google/apis/compute_beta/classes.rb,
generated/google/apis/compute_beta/representations.rb,
generated/google/apis/compute_beta/representations.rb
Overview
Message containing Cloud CDN configuration for a backend bucket.
Instance Attribute Summary collapse
-
#signed_url_cache_max_age_sec ⇒ Fixnum
Number of seconds up to which the response to a signed URL request will be cached in the CDN.
-
#signed_url_key_names ⇒ Array<String>
[Output Only] Names of the keys currently configured for Cloud CDN Signed URL on this backend bucket.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BackendBucketCdnPolicy
constructor
A new instance of BackendBucketCdnPolicy.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ BackendBucketCdnPolicy
Returns a new instance of BackendBucketCdnPolicy
2169 2170 2171 |
# File 'generated/google/apis/compute_beta/classes.rb', line 2169 def initialize(**args) update!(**args) end |
Instance Attribute Details
#signed_url_cache_max_age_sec ⇒ Fixnum
Number of seconds up to which the response to a signed URL request will be
cached in the CDN. After this time period, the Signed URL will be revalidated
before being served. Defaults to 1hr (3600s). If this field is set, Cloud CDN
will internally act as though all responses from this bucket had a ?Cache-
Control: public, max-age=[TTL]? header, regardless of any existing Cache-
Control header. The actual headers served in responses will not be altered.
Corresponds to the JSON property signedUrlCacheMaxAgeSec
2161 2162 2163 |
# File 'generated/google/apis/compute_beta/classes.rb', line 2161 def signed_url_cache_max_age_sec @signed_url_cache_max_age_sec end |
#signed_url_key_names ⇒ Array<String>
[Output Only] Names of the keys currently configured for Cloud CDN Signed URL
on this backend bucket.
Corresponds to the JSON property signedUrlKeyNames
2167 2168 2169 |
# File 'generated/google/apis/compute_beta/classes.rb', line 2167 def signed_url_key_names @signed_url_key_names end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2174 2175 2176 2177 |
# File 'generated/google/apis/compute_beta/classes.rb', line 2174 def update!(**args) @signed_url_cache_max_age_sec = args[:signed_url_cache_max_age_sec] if args.key?(:signed_url_cache_max_age_sec) @signed_url_key_names = args[:signed_url_key_names] if args.key?(:signed_url_key_names) end |