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 BackendBucketCdnPolicyOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.cloud.compute.v1.BackendBucketCdnPolicy) 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.BackendBucketCdnPolicyBypassCacheOnRequestHeader bypass_cache_on_request_headers = 486203082; 35 * </code> 36 */ 37 java.util.List<com.google.cloud.compute.v1.BackendBucketCdnPolicyBypassCacheOnRequestHeader> 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.BackendBucketCdnPolicyBypassCacheOnRequestHeader bypass_cache_on_request_headers = 486203082; 48 * </code> 49 */ 50 com.google.cloud.compute.v1.BackendBucketCdnPolicyBypassCacheOnRequestHeader 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.BackendBucketCdnPolicyBypassCacheOnRequestHeader 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.BackendBucketCdnPolicyBypassCacheOnRequestHeader bypass_cache_on_request_headers = 486203082; 73 * </code> 74 */ 75 java.util.List< 76 ? extends 77 com.google.cloud.compute.v1.BackendBucketCdnPolicyBypassCacheOnRequestHeaderOrBuilder> getBypassCacheOnRequestHeadersOrBuilderList()78 getBypassCacheOnRequestHeadersOrBuilderList(); 79 /** 80 * 81 * 82 * <pre> 83 * 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. 84 * </pre> 85 * 86 * <code> 87 * repeated .google.cloud.compute.v1.BackendBucketCdnPolicyBypassCacheOnRequestHeader bypass_cache_on_request_headers = 486203082; 88 * </code> 89 */ 90 com.google.cloud.compute.v1.BackendBucketCdnPolicyBypassCacheOnRequestHeaderOrBuilder getBypassCacheOnRequestHeadersOrBuilder(int index)91 getBypassCacheOnRequestHeadersOrBuilder(int index); 92 93 /** 94 * 95 * 96 * <pre> 97 * The CacheKeyPolicy for this CdnPolicy. 98 * </pre> 99 * 100 * <code> 101 * optional .google.cloud.compute.v1.BackendBucketCdnPolicyCacheKeyPolicy cache_key_policy = 159263727; 102 * </code> 103 * 104 * @return Whether the cacheKeyPolicy field is set. 105 */ hasCacheKeyPolicy()106 boolean hasCacheKeyPolicy(); 107 /** 108 * 109 * 110 * <pre> 111 * The CacheKeyPolicy for this CdnPolicy. 112 * </pre> 113 * 114 * <code> 115 * optional .google.cloud.compute.v1.BackendBucketCdnPolicyCacheKeyPolicy cache_key_policy = 159263727; 116 * </code> 117 * 118 * @return The cacheKeyPolicy. 119 */ getCacheKeyPolicy()120 com.google.cloud.compute.v1.BackendBucketCdnPolicyCacheKeyPolicy getCacheKeyPolicy(); 121 /** 122 * 123 * 124 * <pre> 125 * The CacheKeyPolicy for this CdnPolicy. 126 * </pre> 127 * 128 * <code> 129 * optional .google.cloud.compute.v1.BackendBucketCdnPolicyCacheKeyPolicy cache_key_policy = 159263727; 130 * </code> 131 */ 132 com.google.cloud.compute.v1.BackendBucketCdnPolicyCacheKeyPolicyOrBuilder getCacheKeyPolicyOrBuilder()133 getCacheKeyPolicyOrBuilder(); 134 135 /** 136 * 137 * 138 * <pre> 139 * 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. 140 * Check the CacheMode enum for the list of possible values. 141 * </pre> 142 * 143 * <code>optional string cache_mode = 28877888;</code> 144 * 145 * @return Whether the cacheMode field is set. 146 */ hasCacheMode()147 boolean hasCacheMode(); 148 /** 149 * 150 * 151 * <pre> 152 * 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. 153 * Check the CacheMode enum for the list of possible values. 154 * </pre> 155 * 156 * <code>optional string cache_mode = 28877888;</code> 157 * 158 * @return The cacheMode. 159 */ getCacheMode()160 java.lang.String getCacheMode(); 161 /** 162 * 163 * 164 * <pre> 165 * 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. 166 * Check the CacheMode enum for the list of possible values. 167 * </pre> 168 * 169 * <code>optional string cache_mode = 28877888;</code> 170 * 171 * @return The bytes for cacheMode. 172 */ getCacheModeBytes()173 com.google.protobuf.ByteString getCacheModeBytes(); 174 175 /** 176 * 177 * 178 * <pre> 179 * 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). 180 * </pre> 181 * 182 * <code>optional int32 client_ttl = 29034360;</code> 183 * 184 * @return Whether the clientTtl field is set. 185 */ hasClientTtl()186 boolean hasClientTtl(); 187 /** 188 * 189 * 190 * <pre> 191 * 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). 192 * </pre> 193 * 194 * <code>optional int32 client_ttl = 29034360;</code> 195 * 196 * @return The clientTtl. 197 */ getClientTtl()198 int getClientTtl(); 199 200 /** 201 * 202 * 203 * <pre> 204 * 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. 205 * </pre> 206 * 207 * <code>optional int32 default_ttl = 100253422;</code> 208 * 209 * @return Whether the defaultTtl field is set. 210 */ hasDefaultTtl()211 boolean hasDefaultTtl(); 212 /** 213 * 214 * 215 * <pre> 216 * 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. 217 * </pre> 218 * 219 * <code>optional int32 default_ttl = 100253422;</code> 220 * 221 * @return The defaultTtl. 222 */ getDefaultTtl()223 int getDefaultTtl(); 224 225 /** 226 * 227 * 228 * <pre> 229 * 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. 230 * </pre> 231 * 232 * <code>optional int32 max_ttl = 307578001;</code> 233 * 234 * @return Whether the maxTtl field is set. 235 */ hasMaxTtl()236 boolean hasMaxTtl(); 237 /** 238 * 239 * 240 * <pre> 241 * 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. 242 * </pre> 243 * 244 * <code>optional int32 max_ttl = 307578001;</code> 245 * 246 * @return The maxTtl. 247 */ getMaxTtl()248 int getMaxTtl(); 249 250 /** 251 * 252 * 253 * <pre> 254 * 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. 255 * </pre> 256 * 257 * <code>optional bool negative_caching = 336110005;</code> 258 * 259 * @return Whether the negativeCaching field is set. 260 */ hasNegativeCaching()261 boolean hasNegativeCaching(); 262 /** 263 * 264 * 265 * <pre> 266 * 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. 267 * </pre> 268 * 269 * <code>optional bool negative_caching = 336110005;</code> 270 * 271 * @return The negativeCaching. 272 */ getNegativeCaching()273 boolean getNegativeCaching(); 274 275 /** 276 * 277 * 278 * <pre> 279 * 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. 280 * </pre> 281 * 282 * <code> 283 * repeated .google.cloud.compute.v1.BackendBucketCdnPolicyNegativeCachingPolicy negative_caching_policy = 155359996; 284 * </code> 285 */ 286 java.util.List<com.google.cloud.compute.v1.BackendBucketCdnPolicyNegativeCachingPolicy> getNegativeCachingPolicyList()287 getNegativeCachingPolicyList(); 288 /** 289 * 290 * 291 * <pre> 292 * 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. 293 * </pre> 294 * 295 * <code> 296 * repeated .google.cloud.compute.v1.BackendBucketCdnPolicyNegativeCachingPolicy negative_caching_policy = 155359996; 297 * </code> 298 */ getNegativeCachingPolicy( int index)299 com.google.cloud.compute.v1.BackendBucketCdnPolicyNegativeCachingPolicy getNegativeCachingPolicy( 300 int index); 301 /** 302 * 303 * 304 * <pre> 305 * 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. 306 * </pre> 307 * 308 * <code> 309 * repeated .google.cloud.compute.v1.BackendBucketCdnPolicyNegativeCachingPolicy negative_caching_policy = 155359996; 310 * </code> 311 */ getNegativeCachingPolicyCount()312 int getNegativeCachingPolicyCount(); 313 /** 314 * 315 * 316 * <pre> 317 * 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. 318 * </pre> 319 * 320 * <code> 321 * repeated .google.cloud.compute.v1.BackendBucketCdnPolicyNegativeCachingPolicy negative_caching_policy = 155359996; 322 * </code> 323 */ 324 java.util.List< 325 ? extends 326 com.google.cloud.compute.v1.BackendBucketCdnPolicyNegativeCachingPolicyOrBuilder> getNegativeCachingPolicyOrBuilderList()327 getNegativeCachingPolicyOrBuilderList(); 328 /** 329 * 330 * 331 * <pre> 332 * 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. 333 * </pre> 334 * 335 * <code> 336 * repeated .google.cloud.compute.v1.BackendBucketCdnPolicyNegativeCachingPolicy negative_caching_policy = 155359996; 337 * </code> 338 */ 339 com.google.cloud.compute.v1.BackendBucketCdnPolicyNegativeCachingPolicyOrBuilder getNegativeCachingPolicyOrBuilder(int index)340 getNegativeCachingPolicyOrBuilder(int index); 341 342 /** 343 * 344 * 345 * <pre> 346 * If true then Cloud CDN will combine multiple concurrent cache fill requests into a small number of requests to the origin. 347 * </pre> 348 * 349 * <code>optional bool request_coalescing = 532808276;</code> 350 * 351 * @return Whether the requestCoalescing field is set. 352 */ hasRequestCoalescing()353 boolean hasRequestCoalescing(); 354 /** 355 * 356 * 357 * <pre> 358 * If true then Cloud CDN will combine multiple concurrent cache fill requests into a small number of requests to the origin. 359 * </pre> 360 * 361 * <code>optional bool request_coalescing = 532808276;</code> 362 * 363 * @return The requestCoalescing. 364 */ getRequestCoalescing()365 boolean getRequestCoalescing(); 366 367 /** 368 * 369 * 370 * <pre> 371 * 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. 372 * </pre> 373 * 374 * <code>optional int32 serve_while_stale = 236682203;</code> 375 * 376 * @return Whether the serveWhileStale field is set. 377 */ hasServeWhileStale()378 boolean hasServeWhileStale(); 379 /** 380 * 381 * 382 * <pre> 383 * 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. 384 * </pre> 385 * 386 * <code>optional int32 serve_while_stale = 236682203;</code> 387 * 388 * @return The serveWhileStale. 389 */ getServeWhileStale()390 int getServeWhileStale(); 391 392 /** 393 * 394 * 395 * <pre> 396 * 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. 397 * </pre> 398 * 399 * <code>optional int64 signed_url_cache_max_age_sec = 269374534;</code> 400 * 401 * @return Whether the signedUrlCacheMaxAgeSec field is set. 402 */ hasSignedUrlCacheMaxAgeSec()403 boolean hasSignedUrlCacheMaxAgeSec(); 404 /** 405 * 406 * 407 * <pre> 408 * 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. 409 * </pre> 410 * 411 * <code>optional int64 signed_url_cache_max_age_sec = 269374534;</code> 412 * 413 * @return The signedUrlCacheMaxAgeSec. 414 */ getSignedUrlCacheMaxAgeSec()415 long getSignedUrlCacheMaxAgeSec(); 416 417 /** 418 * 419 * 420 * <pre> 421 * [Output Only] Names of the keys for signing request URLs. 422 * </pre> 423 * 424 * <code>repeated string signed_url_key_names = 371848885;</code> 425 * 426 * @return A list containing the signedUrlKeyNames. 427 */ getSignedUrlKeyNamesList()428 java.util.List<java.lang.String> getSignedUrlKeyNamesList(); 429 /** 430 * 431 * 432 * <pre> 433 * [Output Only] Names of the keys for signing request URLs. 434 * </pre> 435 * 436 * <code>repeated string signed_url_key_names = 371848885;</code> 437 * 438 * @return The count of signedUrlKeyNames. 439 */ getSignedUrlKeyNamesCount()440 int getSignedUrlKeyNamesCount(); 441 /** 442 * 443 * 444 * <pre> 445 * [Output Only] Names of the keys for signing request URLs. 446 * </pre> 447 * 448 * <code>repeated string signed_url_key_names = 371848885;</code> 449 * 450 * @param index The index of the element to return. 451 * @return The signedUrlKeyNames at the given index. 452 */ getSignedUrlKeyNames(int index)453 java.lang.String getSignedUrlKeyNames(int index); 454 /** 455 * 456 * 457 * <pre> 458 * [Output Only] Names of the keys for signing request URLs. 459 * </pre> 460 * 461 * <code>repeated string signed_url_key_names = 371848885;</code> 462 * 463 * @param index The index of the value to return. 464 * @return The bytes of the signedUrlKeyNames at the given index. 465 */ getSignedUrlKeyNamesBytes(int index)466 com.google.protobuf.ByteString getSignedUrlKeyNamesBytes(int index); 467 } 468