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 AddressOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.cloud.compute.v1.Address) 24 com.google.protobuf.MessageOrBuilder { 25 26 /** 27 * 28 * 29 * <pre> 30 * The static IP address represented by this resource. 31 * </pre> 32 * 33 * <code>optional string address = 462920692;</code> 34 * 35 * @return Whether the address field is set. 36 */ hasAddress()37 boolean hasAddress(); 38 /** 39 * 40 * 41 * <pre> 42 * The static IP address represented by this resource. 43 * </pre> 44 * 45 * <code>optional string address = 462920692;</code> 46 * 47 * @return The address. 48 */ getAddress()49 java.lang.String getAddress(); 50 /** 51 * 52 * 53 * <pre> 54 * The static IP address represented by this resource. 55 * </pre> 56 * 57 * <code>optional string address = 462920692;</code> 58 * 59 * @return The bytes for address. 60 */ getAddressBytes()61 com.google.protobuf.ByteString getAddressBytes(); 62 63 /** 64 * 65 * 66 * <pre> 67 * The type of address to reserve, either INTERNAL or EXTERNAL. If unspecified, defaults to EXTERNAL. 68 * Check the AddressType enum for the list of possible values. 69 * </pre> 70 * 71 * <code>optional string address_type = 264307877;</code> 72 * 73 * @return Whether the addressType field is set. 74 */ hasAddressType()75 boolean hasAddressType(); 76 /** 77 * 78 * 79 * <pre> 80 * The type of address to reserve, either INTERNAL or EXTERNAL. If unspecified, defaults to EXTERNAL. 81 * Check the AddressType enum for the list of possible values. 82 * </pre> 83 * 84 * <code>optional string address_type = 264307877;</code> 85 * 86 * @return The addressType. 87 */ getAddressType()88 java.lang.String getAddressType(); 89 /** 90 * 91 * 92 * <pre> 93 * The type of address to reserve, either INTERNAL or EXTERNAL. If unspecified, defaults to EXTERNAL. 94 * Check the AddressType enum for the list of possible values. 95 * </pre> 96 * 97 * <code>optional string address_type = 264307877;</code> 98 * 99 * @return The bytes for addressType. 100 */ getAddressTypeBytes()101 com.google.protobuf.ByteString getAddressTypeBytes(); 102 103 /** 104 * 105 * 106 * <pre> 107 * [Output Only] Creation timestamp in RFC3339 text format. 108 * </pre> 109 * 110 * <code>optional string creation_timestamp = 30525366;</code> 111 * 112 * @return Whether the creationTimestamp field is set. 113 */ hasCreationTimestamp()114 boolean hasCreationTimestamp(); 115 /** 116 * 117 * 118 * <pre> 119 * [Output Only] Creation timestamp in RFC3339 text format. 120 * </pre> 121 * 122 * <code>optional string creation_timestamp = 30525366;</code> 123 * 124 * @return The creationTimestamp. 125 */ getCreationTimestamp()126 java.lang.String getCreationTimestamp(); 127 /** 128 * 129 * 130 * <pre> 131 * [Output Only] Creation timestamp in RFC3339 text format. 132 * </pre> 133 * 134 * <code>optional string creation_timestamp = 30525366;</code> 135 * 136 * @return The bytes for creationTimestamp. 137 */ getCreationTimestampBytes()138 com.google.protobuf.ByteString getCreationTimestampBytes(); 139 140 /** 141 * 142 * 143 * <pre> 144 * An optional description of this resource. Provide this field when you create the resource. 145 * </pre> 146 * 147 * <code>optional string description = 422937596;</code> 148 * 149 * @return Whether the description field is set. 150 */ hasDescription()151 boolean hasDescription(); 152 /** 153 * 154 * 155 * <pre> 156 * An optional description of this resource. Provide this field when you create the resource. 157 * </pre> 158 * 159 * <code>optional string description = 422937596;</code> 160 * 161 * @return The description. 162 */ getDescription()163 java.lang.String getDescription(); 164 /** 165 * 166 * 167 * <pre> 168 * An optional description of this resource. Provide this field when you create the resource. 169 * </pre> 170 * 171 * <code>optional string description = 422937596;</code> 172 * 173 * @return The bytes for description. 174 */ getDescriptionBytes()175 com.google.protobuf.ByteString getDescriptionBytes(); 176 177 /** 178 * 179 * 180 * <pre> 181 * [Output Only] The unique identifier for the resource. This identifier is defined by the server. 182 * </pre> 183 * 184 * <code>optional uint64 id = 3355;</code> 185 * 186 * @return Whether the id field is set. 187 */ hasId()188 boolean hasId(); 189 /** 190 * 191 * 192 * <pre> 193 * [Output Only] The unique identifier for the resource. This identifier is defined by the server. 194 * </pre> 195 * 196 * <code>optional uint64 id = 3355;</code> 197 * 198 * @return The id. 199 */ getId()200 long getId(); 201 202 /** 203 * 204 * 205 * <pre> 206 * The IP version that will be used by this address. Valid options are IPV4 or IPV6. This can only be specified for a global address. 207 * Check the IpVersion enum for the list of possible values. 208 * </pre> 209 * 210 * <code>optional string ip_version = 294959552;</code> 211 * 212 * @return Whether the ipVersion field is set. 213 */ hasIpVersion()214 boolean hasIpVersion(); 215 /** 216 * 217 * 218 * <pre> 219 * The IP version that will be used by this address. Valid options are IPV4 or IPV6. This can only be specified for a global address. 220 * Check the IpVersion enum for the list of possible values. 221 * </pre> 222 * 223 * <code>optional string ip_version = 294959552;</code> 224 * 225 * @return The ipVersion. 226 */ getIpVersion()227 java.lang.String getIpVersion(); 228 /** 229 * 230 * 231 * <pre> 232 * The IP version that will be used by this address. Valid options are IPV4 or IPV6. This can only be specified for a global address. 233 * Check the IpVersion enum for the list of possible values. 234 * </pre> 235 * 236 * <code>optional string ip_version = 294959552;</code> 237 * 238 * @return The bytes for ipVersion. 239 */ getIpVersionBytes()240 com.google.protobuf.ByteString getIpVersionBytes(); 241 242 /** 243 * 244 * 245 * <pre> 246 * The endpoint type of this address, which should be VM or NETLB. This is used for deciding which type of endpoint this address can be used after the external IPv6 address reservation. 247 * Check the Ipv6EndpointType enum for the list of possible values. 248 * </pre> 249 * 250 * <code>optional string ipv6_endpoint_type = 97501004;</code> 251 * 252 * @return Whether the ipv6EndpointType field is set. 253 */ hasIpv6EndpointType()254 boolean hasIpv6EndpointType(); 255 /** 256 * 257 * 258 * <pre> 259 * The endpoint type of this address, which should be VM or NETLB. This is used for deciding which type of endpoint this address can be used after the external IPv6 address reservation. 260 * Check the Ipv6EndpointType enum for the list of possible values. 261 * </pre> 262 * 263 * <code>optional string ipv6_endpoint_type = 97501004;</code> 264 * 265 * @return The ipv6EndpointType. 266 */ getIpv6EndpointType()267 java.lang.String getIpv6EndpointType(); 268 /** 269 * 270 * 271 * <pre> 272 * The endpoint type of this address, which should be VM or NETLB. This is used for deciding which type of endpoint this address can be used after the external IPv6 address reservation. 273 * Check the Ipv6EndpointType enum for the list of possible values. 274 * </pre> 275 * 276 * <code>optional string ipv6_endpoint_type = 97501004;</code> 277 * 278 * @return The bytes for ipv6EndpointType. 279 */ getIpv6EndpointTypeBytes()280 com.google.protobuf.ByteString getIpv6EndpointTypeBytes(); 281 282 /** 283 * 284 * 285 * <pre> 286 * [Output Only] Type of the resource. Always compute#address for addresses. 287 * </pre> 288 * 289 * <code>optional string kind = 3292052;</code> 290 * 291 * @return Whether the kind field is set. 292 */ hasKind()293 boolean hasKind(); 294 /** 295 * 296 * 297 * <pre> 298 * [Output Only] Type of the resource. Always compute#address for addresses. 299 * </pre> 300 * 301 * <code>optional string kind = 3292052;</code> 302 * 303 * @return The kind. 304 */ getKind()305 java.lang.String getKind(); 306 /** 307 * 308 * 309 * <pre> 310 * [Output Only] Type of the resource. Always compute#address for addresses. 311 * </pre> 312 * 313 * <code>optional string kind = 3292052;</code> 314 * 315 * @return The bytes for kind. 316 */ getKindBytes()317 com.google.protobuf.ByteString getKindBytes(); 318 319 /** 320 * 321 * 322 * <pre> 323 * Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?`. The first character must be a lowercase letter, and all following characters (except for the last character) must be a dash, lowercase letter, or digit. The last character must be a lowercase letter or digit. 324 * </pre> 325 * 326 * <code>optional string name = 3373707;</code> 327 * 328 * @return Whether the name field is set. 329 */ hasName()330 boolean hasName(); 331 /** 332 * 333 * 334 * <pre> 335 * Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?`. The first character must be a lowercase letter, and all following characters (except for the last character) must be a dash, lowercase letter, or digit. The last character must be a lowercase letter or digit. 336 * </pre> 337 * 338 * <code>optional string name = 3373707;</code> 339 * 340 * @return The name. 341 */ getName()342 java.lang.String getName(); 343 /** 344 * 345 * 346 * <pre> 347 * Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?`. The first character must be a lowercase letter, and all following characters (except for the last character) must be a dash, lowercase letter, or digit. The last character must be a lowercase letter or digit. 348 * </pre> 349 * 350 * <code>optional string name = 3373707;</code> 351 * 352 * @return The bytes for name. 353 */ getNameBytes()354 com.google.protobuf.ByteString getNameBytes(); 355 356 /** 357 * 358 * 359 * <pre> 360 * The URL of the network in which to reserve the address. This field can only be used with INTERNAL type with the VPC_PEERING purpose. 361 * </pre> 362 * 363 * <code>optional string network = 232872494;</code> 364 * 365 * @return Whether the network field is set. 366 */ hasNetwork()367 boolean hasNetwork(); 368 /** 369 * 370 * 371 * <pre> 372 * The URL of the network in which to reserve the address. This field can only be used with INTERNAL type with the VPC_PEERING purpose. 373 * </pre> 374 * 375 * <code>optional string network = 232872494;</code> 376 * 377 * @return The network. 378 */ getNetwork()379 java.lang.String getNetwork(); 380 /** 381 * 382 * 383 * <pre> 384 * The URL of the network in which to reserve the address. This field can only be used with INTERNAL type with the VPC_PEERING purpose. 385 * </pre> 386 * 387 * <code>optional string network = 232872494;</code> 388 * 389 * @return The bytes for network. 390 */ getNetworkBytes()391 com.google.protobuf.ByteString getNetworkBytes(); 392 393 /** 394 * 395 * 396 * <pre> 397 * This signifies the networking tier used for configuring this address and can only take the following values: PREMIUM or STANDARD. Internal IP addresses are always Premium Tier; global external IP addresses are always Premium Tier; regional external IP addresses can be either Standard or Premium Tier. If this field is not specified, it is assumed to be PREMIUM. 398 * Check the NetworkTier enum for the list of possible values. 399 * </pre> 400 * 401 * <code>optional string network_tier = 517397843;</code> 402 * 403 * @return Whether the networkTier field is set. 404 */ hasNetworkTier()405 boolean hasNetworkTier(); 406 /** 407 * 408 * 409 * <pre> 410 * This signifies the networking tier used for configuring this address and can only take the following values: PREMIUM or STANDARD. Internal IP addresses are always Premium Tier; global external IP addresses are always Premium Tier; regional external IP addresses can be either Standard or Premium Tier. If this field is not specified, it is assumed to be PREMIUM. 411 * Check the NetworkTier enum for the list of possible values. 412 * </pre> 413 * 414 * <code>optional string network_tier = 517397843;</code> 415 * 416 * @return The networkTier. 417 */ getNetworkTier()418 java.lang.String getNetworkTier(); 419 /** 420 * 421 * 422 * <pre> 423 * This signifies the networking tier used for configuring this address and can only take the following values: PREMIUM or STANDARD. Internal IP addresses are always Premium Tier; global external IP addresses are always Premium Tier; regional external IP addresses can be either Standard or Premium Tier. If this field is not specified, it is assumed to be PREMIUM. 424 * Check the NetworkTier enum for the list of possible values. 425 * </pre> 426 * 427 * <code>optional string network_tier = 517397843;</code> 428 * 429 * @return The bytes for networkTier. 430 */ getNetworkTierBytes()431 com.google.protobuf.ByteString getNetworkTierBytes(); 432 433 /** 434 * 435 * 436 * <pre> 437 * The prefix length if the resource represents an IP range. 438 * </pre> 439 * 440 * <code>optional int32 prefix_length = 453565747;</code> 441 * 442 * @return Whether the prefixLength field is set. 443 */ hasPrefixLength()444 boolean hasPrefixLength(); 445 /** 446 * 447 * 448 * <pre> 449 * The prefix length if the resource represents an IP range. 450 * </pre> 451 * 452 * <code>optional int32 prefix_length = 453565747;</code> 453 * 454 * @return The prefixLength. 455 */ getPrefixLength()456 int getPrefixLength(); 457 458 /** 459 * 460 * 461 * <pre> 462 * The purpose of this resource, which can be one of the following values: - GCE_ENDPOINT for addresses that are used by VM instances, alias IP ranges, load balancers, and similar resources. - DNS_RESOLVER for a DNS resolver address in a subnetwork for a Cloud DNS inbound forwarder IP addresses (regional internal IP address in a subnet of a VPC network) - VPC_PEERING for global internal IP addresses used for private services access allocated ranges. - NAT_AUTO for the regional external IP addresses used by Cloud NAT when allocating addresses using automatic NAT IP address allocation. - IPSEC_INTERCONNECT for addresses created from a private IP range that are reserved for a VLAN attachment in an *HA VPN over Cloud Interconnect* configuration. These addresses are regional resources. - `SHARED_LOADBALANCER_VIP` for an internal IP address that is assigned to multiple internal forwarding rules. - `PRIVATE_SERVICE_CONNECT` for a private network address that is used to configure Private Service Connect. Only global internal addresses can use this purpose. 463 * Check the Purpose enum for the list of possible values. 464 * </pre> 465 * 466 * <code>optional string purpose = 316407070;</code> 467 * 468 * @return Whether the purpose field is set. 469 */ hasPurpose()470 boolean hasPurpose(); 471 /** 472 * 473 * 474 * <pre> 475 * The purpose of this resource, which can be one of the following values: - GCE_ENDPOINT for addresses that are used by VM instances, alias IP ranges, load balancers, and similar resources. - DNS_RESOLVER for a DNS resolver address in a subnetwork for a Cloud DNS inbound forwarder IP addresses (regional internal IP address in a subnet of a VPC network) - VPC_PEERING for global internal IP addresses used for private services access allocated ranges. - NAT_AUTO for the regional external IP addresses used by Cloud NAT when allocating addresses using automatic NAT IP address allocation. - IPSEC_INTERCONNECT for addresses created from a private IP range that are reserved for a VLAN attachment in an *HA VPN over Cloud Interconnect* configuration. These addresses are regional resources. - `SHARED_LOADBALANCER_VIP` for an internal IP address that is assigned to multiple internal forwarding rules. - `PRIVATE_SERVICE_CONNECT` for a private network address that is used to configure Private Service Connect. Only global internal addresses can use this purpose. 476 * Check the Purpose enum for the list of possible values. 477 * </pre> 478 * 479 * <code>optional string purpose = 316407070;</code> 480 * 481 * @return The purpose. 482 */ getPurpose()483 java.lang.String getPurpose(); 484 /** 485 * 486 * 487 * <pre> 488 * The purpose of this resource, which can be one of the following values: - GCE_ENDPOINT for addresses that are used by VM instances, alias IP ranges, load balancers, and similar resources. - DNS_RESOLVER for a DNS resolver address in a subnetwork for a Cloud DNS inbound forwarder IP addresses (regional internal IP address in a subnet of a VPC network) - VPC_PEERING for global internal IP addresses used for private services access allocated ranges. - NAT_AUTO for the regional external IP addresses used by Cloud NAT when allocating addresses using automatic NAT IP address allocation. - IPSEC_INTERCONNECT for addresses created from a private IP range that are reserved for a VLAN attachment in an *HA VPN over Cloud Interconnect* configuration. These addresses are regional resources. - `SHARED_LOADBALANCER_VIP` for an internal IP address that is assigned to multiple internal forwarding rules. - `PRIVATE_SERVICE_CONNECT` for a private network address that is used to configure Private Service Connect. Only global internal addresses can use this purpose. 489 * Check the Purpose enum for the list of possible values. 490 * </pre> 491 * 492 * <code>optional string purpose = 316407070;</code> 493 * 494 * @return The bytes for purpose. 495 */ getPurposeBytes()496 com.google.protobuf.ByteString getPurposeBytes(); 497 498 /** 499 * 500 * 501 * <pre> 502 * [Output Only] The URL of the region where a regional address resides. For regional addresses, you must specify the region as a path parameter in the HTTP request URL. *This field is not applicable to global addresses.* 503 * </pre> 504 * 505 * <code>optional string region = 138946292;</code> 506 * 507 * @return Whether the region field is set. 508 */ hasRegion()509 boolean hasRegion(); 510 /** 511 * 512 * 513 * <pre> 514 * [Output Only] The URL of the region where a regional address resides. For regional addresses, you must specify the region as a path parameter in the HTTP request URL. *This field is not applicable to global addresses.* 515 * </pre> 516 * 517 * <code>optional string region = 138946292;</code> 518 * 519 * @return The region. 520 */ getRegion()521 java.lang.String getRegion(); 522 /** 523 * 524 * 525 * <pre> 526 * [Output Only] The URL of the region where a regional address resides. For regional addresses, you must specify the region as a path parameter in the HTTP request URL. *This field is not applicable to global addresses.* 527 * </pre> 528 * 529 * <code>optional string region = 138946292;</code> 530 * 531 * @return The bytes for region. 532 */ getRegionBytes()533 com.google.protobuf.ByteString getRegionBytes(); 534 535 /** 536 * 537 * 538 * <pre> 539 * [Output Only] Server-defined URL for the resource. 540 * </pre> 541 * 542 * <code>optional string self_link = 456214797;</code> 543 * 544 * @return Whether the selfLink field is set. 545 */ hasSelfLink()546 boolean hasSelfLink(); 547 /** 548 * 549 * 550 * <pre> 551 * [Output Only] Server-defined URL for the resource. 552 * </pre> 553 * 554 * <code>optional string self_link = 456214797;</code> 555 * 556 * @return The selfLink. 557 */ getSelfLink()558 java.lang.String getSelfLink(); 559 /** 560 * 561 * 562 * <pre> 563 * [Output Only] Server-defined URL for the resource. 564 * </pre> 565 * 566 * <code>optional string self_link = 456214797;</code> 567 * 568 * @return The bytes for selfLink. 569 */ getSelfLinkBytes()570 com.google.protobuf.ByteString getSelfLinkBytes(); 571 572 /** 573 * 574 * 575 * <pre> 576 * [Output Only] The status of the address, which can be one of RESERVING, RESERVED, or IN_USE. An address that is RESERVING is currently in the process of being reserved. A RESERVED address is currently reserved and available to use. An IN_USE address is currently being used by another resource and is not available. 577 * Check the Status enum for the list of possible values. 578 * </pre> 579 * 580 * <code>optional string status = 181260274;</code> 581 * 582 * @return Whether the status field is set. 583 */ hasStatus()584 boolean hasStatus(); 585 /** 586 * 587 * 588 * <pre> 589 * [Output Only] The status of the address, which can be one of RESERVING, RESERVED, or IN_USE. An address that is RESERVING is currently in the process of being reserved. A RESERVED address is currently reserved and available to use. An IN_USE address is currently being used by another resource and is not available. 590 * Check the Status enum for the list of possible values. 591 * </pre> 592 * 593 * <code>optional string status = 181260274;</code> 594 * 595 * @return The status. 596 */ getStatus()597 java.lang.String getStatus(); 598 /** 599 * 600 * 601 * <pre> 602 * [Output Only] The status of the address, which can be one of RESERVING, RESERVED, or IN_USE. An address that is RESERVING is currently in the process of being reserved. A RESERVED address is currently reserved and available to use. An IN_USE address is currently being used by another resource and is not available. 603 * Check the Status enum for the list of possible values. 604 * </pre> 605 * 606 * <code>optional string status = 181260274;</code> 607 * 608 * @return The bytes for status. 609 */ getStatusBytes()610 com.google.protobuf.ByteString getStatusBytes(); 611 612 /** 613 * 614 * 615 * <pre> 616 * The URL of the subnetwork in which to reserve the address. If an IP address is specified, it must be within the subnetwork's IP range. This field can only be used with INTERNAL type with a GCE_ENDPOINT or DNS_RESOLVER purpose. 617 * </pre> 618 * 619 * <code>optional string subnetwork = 307827694;</code> 620 * 621 * @return Whether the subnetwork field is set. 622 */ hasSubnetwork()623 boolean hasSubnetwork(); 624 /** 625 * 626 * 627 * <pre> 628 * The URL of the subnetwork in which to reserve the address. If an IP address is specified, it must be within the subnetwork's IP range. This field can only be used with INTERNAL type with a GCE_ENDPOINT or DNS_RESOLVER purpose. 629 * </pre> 630 * 631 * <code>optional string subnetwork = 307827694;</code> 632 * 633 * @return The subnetwork. 634 */ getSubnetwork()635 java.lang.String getSubnetwork(); 636 /** 637 * 638 * 639 * <pre> 640 * The URL of the subnetwork in which to reserve the address. If an IP address is specified, it must be within the subnetwork's IP range. This field can only be used with INTERNAL type with a GCE_ENDPOINT or DNS_RESOLVER purpose. 641 * </pre> 642 * 643 * <code>optional string subnetwork = 307827694;</code> 644 * 645 * @return The bytes for subnetwork. 646 */ getSubnetworkBytes()647 com.google.protobuf.ByteString getSubnetworkBytes(); 648 649 /** 650 * 651 * 652 * <pre> 653 * [Output Only] The URLs of the resources that are using this address. 654 * </pre> 655 * 656 * <code>repeated string users = 111578632;</code> 657 * 658 * @return A list containing the users. 659 */ getUsersList()660 java.util.List<java.lang.String> getUsersList(); 661 /** 662 * 663 * 664 * <pre> 665 * [Output Only] The URLs of the resources that are using this address. 666 * </pre> 667 * 668 * <code>repeated string users = 111578632;</code> 669 * 670 * @return The count of users. 671 */ getUsersCount()672 int getUsersCount(); 673 /** 674 * 675 * 676 * <pre> 677 * [Output Only] The URLs of the resources that are using this address. 678 * </pre> 679 * 680 * <code>repeated string users = 111578632;</code> 681 * 682 * @param index The index of the element to return. 683 * @return The users at the given index. 684 */ getUsers(int index)685 java.lang.String getUsers(int index); 686 /** 687 * 688 * 689 * <pre> 690 * [Output Only] The URLs of the resources that are using this address. 691 * </pre> 692 * 693 * <code>repeated string users = 111578632;</code> 694 * 695 * @param index The index of the value to return. 696 * @return The bytes of the users at the given index. 697 */ getUsersBytes(int index)698 com.google.protobuf.ByteString getUsersBytes(int index); 699 } 700