• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2020 Google LLC
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     https://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 // Generated by the protocol buffer compiler.  DO NOT EDIT!
17 // source: google/cloud/compute/v1/compute.proto
18 
19 package com.google.cloud.compute.v1;
20 
21 public interface BackendServiceCdnPolicyOrBuilder
22     extends
23     // @@protoc_insertion_point(interface_extends:google.cloud.compute.v1.BackendServiceCdnPolicy)
24     com.google.protobuf.MessageOrBuilder {
25 
26   /**
27    *
28    *
29    * <pre>
30    * Bypass the cache when the specified request headers are matched - e.g. Pragma or Authorization headers. Up to 5 headers can be specified. The cache is bypassed for all cdnPolicy.cacheMode settings.
31    * </pre>
32    *
33    * <code>
34    * repeated .google.cloud.compute.v1.BackendServiceCdnPolicyBypassCacheOnRequestHeader bypass_cache_on_request_headers = 486203082;
35    * </code>
36    */
37   java.util.List<com.google.cloud.compute.v1.BackendServiceCdnPolicyBypassCacheOnRequestHeader>
getBypassCacheOnRequestHeadersList()38       getBypassCacheOnRequestHeadersList();
39   /**
40    *
41    *
42    * <pre>
43    * Bypass the cache when the specified request headers are matched - e.g. Pragma or Authorization headers. Up to 5 headers can be specified. The cache is bypassed for all cdnPolicy.cacheMode settings.
44    * </pre>
45    *
46    * <code>
47    * repeated .google.cloud.compute.v1.BackendServiceCdnPolicyBypassCacheOnRequestHeader bypass_cache_on_request_headers = 486203082;
48    * </code>
49    */
50   com.google.cloud.compute.v1.BackendServiceCdnPolicyBypassCacheOnRequestHeader
getBypassCacheOnRequestHeaders(int index)51       getBypassCacheOnRequestHeaders(int index);
52   /**
53    *
54    *
55    * <pre>
56    * Bypass the cache when the specified request headers are matched - e.g. Pragma or Authorization headers. Up to 5 headers can be specified. The cache is bypassed for all cdnPolicy.cacheMode settings.
57    * </pre>
58    *
59    * <code>
60    * repeated .google.cloud.compute.v1.BackendServiceCdnPolicyBypassCacheOnRequestHeader bypass_cache_on_request_headers = 486203082;
61    * </code>
62    */
getBypassCacheOnRequestHeadersCount()63   int getBypassCacheOnRequestHeadersCount();
64   /**
65    *
66    *
67    * <pre>
68    * Bypass the cache when the specified request headers are matched - e.g. Pragma or Authorization headers. Up to 5 headers can be specified. The cache is bypassed for all cdnPolicy.cacheMode settings.
69    * </pre>
70    *
71    * <code>
72    * repeated .google.cloud.compute.v1.BackendServiceCdnPolicyBypassCacheOnRequestHeader bypass_cache_on_request_headers = 486203082;
73    * </code>
74    */
75   java.util.List<
76           ? extends
77               com.google.cloud.compute.v1
78                   .BackendServiceCdnPolicyBypassCacheOnRequestHeaderOrBuilder>
getBypassCacheOnRequestHeadersOrBuilderList()79       getBypassCacheOnRequestHeadersOrBuilderList();
80   /**
81    *
82    *
83    * <pre>
84    * Bypass the cache when the specified request headers are matched - e.g. Pragma or Authorization headers. Up to 5 headers can be specified. The cache is bypassed for all cdnPolicy.cacheMode settings.
85    * </pre>
86    *
87    * <code>
88    * repeated .google.cloud.compute.v1.BackendServiceCdnPolicyBypassCacheOnRequestHeader bypass_cache_on_request_headers = 486203082;
89    * </code>
90    */
91   com.google.cloud.compute.v1.BackendServiceCdnPolicyBypassCacheOnRequestHeaderOrBuilder
getBypassCacheOnRequestHeadersOrBuilder(int index)92       getBypassCacheOnRequestHeadersOrBuilder(int index);
93 
94   /**
95    *
96    *
97    * <pre>
98    * The CacheKeyPolicy for this CdnPolicy.
99    * </pre>
100    *
101    * <code>optional .google.cloud.compute.v1.CacheKeyPolicy cache_key_policy = 159263727;</code>
102    *
103    * @return Whether the cacheKeyPolicy field is set.
104    */
hasCacheKeyPolicy()105   boolean hasCacheKeyPolicy();
106   /**
107    *
108    *
109    * <pre>
110    * The CacheKeyPolicy for this CdnPolicy.
111    * </pre>
112    *
113    * <code>optional .google.cloud.compute.v1.CacheKeyPolicy cache_key_policy = 159263727;</code>
114    *
115    * @return The cacheKeyPolicy.
116    */
getCacheKeyPolicy()117   com.google.cloud.compute.v1.CacheKeyPolicy getCacheKeyPolicy();
118   /**
119    *
120    *
121    * <pre>
122    * The CacheKeyPolicy for this CdnPolicy.
123    * </pre>
124    *
125    * <code>optional .google.cloud.compute.v1.CacheKeyPolicy cache_key_policy = 159263727;</code>
126    */
getCacheKeyPolicyOrBuilder()127   com.google.cloud.compute.v1.CacheKeyPolicyOrBuilder getCacheKeyPolicyOrBuilder();
128 
129   /**
130    *
131    *
132    * <pre>
133    * 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.
134    * Check the CacheMode enum for the list of possible values.
135    * </pre>
136    *
137    * <code>optional string cache_mode = 28877888;</code>
138    *
139    * @return Whether the cacheMode field is set.
140    */
hasCacheMode()141   boolean hasCacheMode();
142   /**
143    *
144    *
145    * <pre>
146    * 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.
147    * Check the CacheMode enum for the list of possible values.
148    * </pre>
149    *
150    * <code>optional string cache_mode = 28877888;</code>
151    *
152    * @return The cacheMode.
153    */
getCacheMode()154   java.lang.String getCacheMode();
155   /**
156    *
157    *
158    * <pre>
159    * 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.
160    * Check the CacheMode enum for the list of possible values.
161    * </pre>
162    *
163    * <code>optional string cache_mode = 28877888;</code>
164    *
165    * @return The bytes for cacheMode.
166    */
getCacheModeBytes()167   com.google.protobuf.ByteString getCacheModeBytes();
168 
169   /**
170    *
171    *
172    * <pre>
173    * Specifies a separate client (e.g. browser client) maximum TTL. This is used to clamp the max-age (or Expires) value sent to the client. With FORCE_CACHE_ALL, the lesser of client_ttl and default_ttl is used for the response max-age directive, along with a "public" directive. For cacheable content in CACHE_ALL_STATIC mode, client_ttl clamps the max-age from the origin (if specified), or else sets the response max-age directive to the lesser of the client_ttl and default_ttl, and also ensures a "public" cache-control directive is present. If a client TTL is not specified, a default value (1 hour) will be used. The maximum allowed value is 31,622,400s (1 year).
174    * </pre>
175    *
176    * <code>optional int32 client_ttl = 29034360;</code>
177    *
178    * @return Whether the clientTtl field is set.
179    */
hasClientTtl()180   boolean hasClientTtl();
181   /**
182    *
183    *
184    * <pre>
185    * Specifies a separate client (e.g. browser client) maximum TTL. This is used to clamp the max-age (or Expires) value sent to the client. With FORCE_CACHE_ALL, the lesser of client_ttl and default_ttl is used for the response max-age directive, along with a "public" directive. For cacheable content in CACHE_ALL_STATIC mode, client_ttl clamps the max-age from the origin (if specified), or else sets the response max-age directive to the lesser of the client_ttl and default_ttl, and also ensures a "public" cache-control directive is present. If a client TTL is not specified, a default value (1 hour) will be used. The maximum allowed value is 31,622,400s (1 year).
186    * </pre>
187    *
188    * <code>optional int32 client_ttl = 29034360;</code>
189    *
190    * @return The clientTtl.
191    */
getClientTtl()192   int getClientTtl();
193 
194   /**
195    *
196    *
197    * <pre>
198    * Specifies the default TTL for cached content served by this origin for responses that do not have an existing valid TTL (max-age or s-max-age). Setting a TTL of "0" means "always revalidate". The value of defaultTTL cannot be set to a value greater than that of maxTTL, but can be equal. When the cacheMode is set to FORCE_CACHE_ALL, the defaultTTL will overwrite the TTL set in all responses. The maximum allowed value is 31,622,400s (1 year), noting that infrequently accessed objects may be evicted from the cache before the defined TTL.
199    * </pre>
200    *
201    * <code>optional int32 default_ttl = 100253422;</code>
202    *
203    * @return Whether the defaultTtl field is set.
204    */
hasDefaultTtl()205   boolean hasDefaultTtl();
206   /**
207    *
208    *
209    * <pre>
210    * Specifies the default TTL for cached content served by this origin for responses that do not have an existing valid TTL (max-age or s-max-age). Setting a TTL of "0" means "always revalidate". The value of defaultTTL cannot be set to a value greater than that of maxTTL, but can be equal. When the cacheMode is set to FORCE_CACHE_ALL, the defaultTTL will overwrite the TTL set in all responses. The maximum allowed value is 31,622,400s (1 year), noting that infrequently accessed objects may be evicted from the cache before the defined TTL.
211    * </pre>
212    *
213    * <code>optional int32 default_ttl = 100253422;</code>
214    *
215    * @return The defaultTtl.
216    */
getDefaultTtl()217   int getDefaultTtl();
218 
219   /**
220    *
221    *
222    * <pre>
223    * Specifies the maximum allowed TTL for cached content served by this origin. Cache directives that attempt to set a max-age or s-maxage higher than this, or an Expires header more than maxTTL seconds in the future will be capped at the value of maxTTL, as if it were the value of an s-maxage Cache-Control directive. Headers sent to the client will not be modified. Setting a TTL of "0" means "always revalidate". The maximum allowed value is 31,622,400s (1 year), noting that infrequently accessed objects may be evicted from the cache before the defined TTL.
224    * </pre>
225    *
226    * <code>optional int32 max_ttl = 307578001;</code>
227    *
228    * @return Whether the maxTtl field is set.
229    */
hasMaxTtl()230   boolean hasMaxTtl();
231   /**
232    *
233    *
234    * <pre>
235    * Specifies the maximum allowed TTL for cached content served by this origin. Cache directives that attempt to set a max-age or s-maxage higher than this, or an Expires header more than maxTTL seconds in the future will be capped at the value of maxTTL, as if it were the value of an s-maxage Cache-Control directive. Headers sent to the client will not be modified. Setting a TTL of "0" means "always revalidate". The maximum allowed value is 31,622,400s (1 year), noting that infrequently accessed objects may be evicted from the cache before the defined TTL.
236    * </pre>
237    *
238    * <code>optional int32 max_ttl = 307578001;</code>
239    *
240    * @return The maxTtl.
241    */
getMaxTtl()242   int getMaxTtl();
243 
244   /**
245    *
246    *
247    * <pre>
248    * Negative caching allows per-status code TTLs to be set, in order to apply fine-grained caching for common errors or redirects. This can reduce the load on your origin and improve end-user experience by reducing response latency. When the cache mode is set to CACHE_ALL_STATIC or USE_ORIGIN_HEADERS, negative caching applies to responses with the specified response code that lack any Cache-Control, Expires, or Pragma: no-cache directives. When the cache mode is set to FORCE_CACHE_ALL, negative caching applies to all responses with the specified response code, and override any caching headers. By default, Cloud CDN will apply the following default TTLs to these status codes: HTTP 300 (Multiple Choice), 301, 308 (Permanent Redirects): 10m HTTP 404 (Not Found), 410 (Gone), 451 (Unavailable For Legal Reasons): 120s HTTP 405 (Method Not Found), 421 (Misdirected Request), 501 (Not Implemented): 60s. These defaults can be overridden in negative_caching_policy.
249    * </pre>
250    *
251    * <code>optional bool negative_caching = 336110005;</code>
252    *
253    * @return Whether the negativeCaching field is set.
254    */
hasNegativeCaching()255   boolean hasNegativeCaching();
256   /**
257    *
258    *
259    * <pre>
260    * Negative caching allows per-status code TTLs to be set, in order to apply fine-grained caching for common errors or redirects. This can reduce the load on your origin and improve end-user experience by reducing response latency. When the cache mode is set to CACHE_ALL_STATIC or USE_ORIGIN_HEADERS, negative caching applies to responses with the specified response code that lack any Cache-Control, Expires, or Pragma: no-cache directives. When the cache mode is set to FORCE_CACHE_ALL, negative caching applies to all responses with the specified response code, and override any caching headers. By default, Cloud CDN will apply the following default TTLs to these status codes: HTTP 300 (Multiple Choice), 301, 308 (Permanent Redirects): 10m HTTP 404 (Not Found), 410 (Gone), 451 (Unavailable For Legal Reasons): 120s HTTP 405 (Method Not Found), 421 (Misdirected Request), 501 (Not Implemented): 60s. These defaults can be overridden in negative_caching_policy.
261    * </pre>
262    *
263    * <code>optional bool negative_caching = 336110005;</code>
264    *
265    * @return The negativeCaching.
266    */
getNegativeCaching()267   boolean getNegativeCaching();
268 
269   /**
270    *
271    *
272    * <pre>
273    * Sets a cache TTL for the specified HTTP status code. negative_caching must be enabled to configure negative_caching_policy. Omitting the policy and leaving negative_caching enabled will use Cloud CDN's default cache TTLs. Note that when specifying an explicit negative_caching_policy, you should take care to specify a cache TTL for all response codes that you wish to cache. Cloud CDN will not apply any default negative caching when a policy exists.
274    * </pre>
275    *
276    * <code>
277    * repeated .google.cloud.compute.v1.BackendServiceCdnPolicyNegativeCachingPolicy negative_caching_policy = 155359996;
278    * </code>
279    */
280   java.util.List<com.google.cloud.compute.v1.BackendServiceCdnPolicyNegativeCachingPolicy>
getNegativeCachingPolicyList()281       getNegativeCachingPolicyList();
282   /**
283    *
284    *
285    * <pre>
286    * Sets a cache TTL for the specified HTTP status code. negative_caching must be enabled to configure negative_caching_policy. Omitting the policy and leaving negative_caching enabled will use Cloud CDN's default cache TTLs. Note that when specifying an explicit negative_caching_policy, you should take care to specify a cache TTL for all response codes that you wish to cache. Cloud CDN will not apply any default negative caching when a policy exists.
287    * </pre>
288    *
289    * <code>
290    * repeated .google.cloud.compute.v1.BackendServiceCdnPolicyNegativeCachingPolicy negative_caching_policy = 155359996;
291    * </code>
292    */
getNegativeCachingPolicy( int index)293   com.google.cloud.compute.v1.BackendServiceCdnPolicyNegativeCachingPolicy getNegativeCachingPolicy(
294       int index);
295   /**
296    *
297    *
298    * <pre>
299    * Sets a cache TTL for the specified HTTP status code. negative_caching must be enabled to configure negative_caching_policy. Omitting the policy and leaving negative_caching enabled will use Cloud CDN's default cache TTLs. Note that when specifying an explicit negative_caching_policy, you should take care to specify a cache TTL for all response codes that you wish to cache. Cloud CDN will not apply any default negative caching when a policy exists.
300    * </pre>
301    *
302    * <code>
303    * repeated .google.cloud.compute.v1.BackendServiceCdnPolicyNegativeCachingPolicy negative_caching_policy = 155359996;
304    * </code>
305    */
getNegativeCachingPolicyCount()306   int getNegativeCachingPolicyCount();
307   /**
308    *
309    *
310    * <pre>
311    * Sets a cache TTL for the specified HTTP status code. negative_caching must be enabled to configure negative_caching_policy. Omitting the policy and leaving negative_caching enabled will use Cloud CDN's default cache TTLs. Note that when specifying an explicit negative_caching_policy, you should take care to specify a cache TTL for all response codes that you wish to cache. Cloud CDN will not apply any default negative caching when a policy exists.
312    * </pre>
313    *
314    * <code>
315    * repeated .google.cloud.compute.v1.BackendServiceCdnPolicyNegativeCachingPolicy negative_caching_policy = 155359996;
316    * </code>
317    */
318   java.util.List<
319           ? extends
320               com.google.cloud.compute.v1.BackendServiceCdnPolicyNegativeCachingPolicyOrBuilder>
getNegativeCachingPolicyOrBuilderList()321       getNegativeCachingPolicyOrBuilderList();
322   /**
323    *
324    *
325    * <pre>
326    * Sets a cache TTL for the specified HTTP status code. negative_caching must be enabled to configure negative_caching_policy. Omitting the policy and leaving negative_caching enabled will use Cloud CDN's default cache TTLs. Note that when specifying an explicit negative_caching_policy, you should take care to specify a cache TTL for all response codes that you wish to cache. Cloud CDN will not apply any default negative caching when a policy exists.
327    * </pre>
328    *
329    * <code>
330    * repeated .google.cloud.compute.v1.BackendServiceCdnPolicyNegativeCachingPolicy negative_caching_policy = 155359996;
331    * </code>
332    */
333   com.google.cloud.compute.v1.BackendServiceCdnPolicyNegativeCachingPolicyOrBuilder
getNegativeCachingPolicyOrBuilder(int index)334       getNegativeCachingPolicyOrBuilder(int index);
335 
336   /**
337    *
338    *
339    * <pre>
340    * If true then Cloud CDN will combine multiple concurrent cache fill requests into a small number of requests to the origin.
341    * </pre>
342    *
343    * <code>optional bool request_coalescing = 532808276;</code>
344    *
345    * @return Whether the requestCoalescing field is set.
346    */
hasRequestCoalescing()347   boolean hasRequestCoalescing();
348   /**
349    *
350    *
351    * <pre>
352    * If true then Cloud CDN will combine multiple concurrent cache fill requests into a small number of requests to the origin.
353    * </pre>
354    *
355    * <code>optional bool request_coalescing = 532808276;</code>
356    *
357    * @return The requestCoalescing.
358    */
getRequestCoalescing()359   boolean getRequestCoalescing();
360 
361   /**
362    *
363    *
364    * <pre>
365    * Serve existing content from the cache (if available) when revalidating content with the origin, or when an error is encountered when refreshing the cache. This setting defines the default "max-stale" duration for any cached responses that do not specify a max-stale directive. Stale responses that exceed the TTL configured here will not be served. The default limit (max-stale) is 86400s (1 day), which will allow stale content to be served up to this limit beyond the max-age (or s-max-age) of a cached response. The maximum allowed value is 604800 (1 week). Set this to zero (0) to disable serve-while-stale.
366    * </pre>
367    *
368    * <code>optional int32 serve_while_stale = 236682203;</code>
369    *
370    * @return Whether the serveWhileStale field is set.
371    */
hasServeWhileStale()372   boolean hasServeWhileStale();
373   /**
374    *
375    *
376    * <pre>
377    * Serve existing content from the cache (if available) when revalidating content with the origin, or when an error is encountered when refreshing the cache. This setting defines the default "max-stale" duration for any cached responses that do not specify a max-stale directive. Stale responses that exceed the TTL configured here will not be served. The default limit (max-stale) is 86400s (1 day), which will allow stale content to be served up to this limit beyond the max-age (or s-max-age) of a cached response. The maximum allowed value is 604800 (1 week). Set this to zero (0) to disable serve-while-stale.
378    * </pre>
379    *
380    * <code>optional int32 serve_while_stale = 236682203;</code>
381    *
382    * @return The serveWhileStale.
383    */
getServeWhileStale()384   int getServeWhileStale();
385 
386   /**
387    *
388    *
389    * <pre>
390    * Maximum number of seconds the response to a signed URL request will be considered fresh. After this time period, the response will be revalidated before being served. Defaults to 1hr (3600s). When serving responses to signed URL requests, Cloud CDN will internally behave as though all responses from this backend 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.
391    * </pre>
392    *
393    * <code>optional int64 signed_url_cache_max_age_sec = 269374534;</code>
394    *
395    * @return Whether the signedUrlCacheMaxAgeSec field is set.
396    */
hasSignedUrlCacheMaxAgeSec()397   boolean hasSignedUrlCacheMaxAgeSec();
398   /**
399    *
400    *
401    * <pre>
402    * Maximum number of seconds the response to a signed URL request will be considered fresh. After this time period, the response will be revalidated before being served. Defaults to 1hr (3600s). When serving responses to signed URL requests, Cloud CDN will internally behave as though all responses from this backend 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.
403    * </pre>
404    *
405    * <code>optional int64 signed_url_cache_max_age_sec = 269374534;</code>
406    *
407    * @return The signedUrlCacheMaxAgeSec.
408    */
getSignedUrlCacheMaxAgeSec()409   long getSignedUrlCacheMaxAgeSec();
410 
411   /**
412    *
413    *
414    * <pre>
415    * [Output Only] Names of the keys for signing request URLs.
416    * </pre>
417    *
418    * <code>repeated string signed_url_key_names = 371848885;</code>
419    *
420    * @return A list containing the signedUrlKeyNames.
421    */
getSignedUrlKeyNamesList()422   java.util.List<java.lang.String> getSignedUrlKeyNamesList();
423   /**
424    *
425    *
426    * <pre>
427    * [Output Only] Names of the keys for signing request URLs.
428    * </pre>
429    *
430    * <code>repeated string signed_url_key_names = 371848885;</code>
431    *
432    * @return The count of signedUrlKeyNames.
433    */
getSignedUrlKeyNamesCount()434   int getSignedUrlKeyNamesCount();
435   /**
436    *
437    *
438    * <pre>
439    * [Output Only] Names of the keys for signing request URLs.
440    * </pre>
441    *
442    * <code>repeated string signed_url_key_names = 371848885;</code>
443    *
444    * @param index The index of the element to return.
445    * @return The signedUrlKeyNames at the given index.
446    */
getSignedUrlKeyNames(int index)447   java.lang.String getSignedUrlKeyNames(int index);
448   /**
449    *
450    *
451    * <pre>
452    * [Output Only] Names of the keys for signing request URLs.
453    * </pre>
454    *
455    * <code>repeated string signed_url_key_names = 371848885;</code>
456    *
457    * @param index The index of the value to return.
458    * @return The bytes of the signedUrlKeyNames at the given index.
459    */
getSignedUrlKeyNamesBytes(int index)460   com.google.protobuf.ByteString getSignedUrlKeyNamesBytes(int index);
461 }
462