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 RouterBgpPeerOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.cloud.compute.v1.RouterBgpPeer) 24 com.google.protobuf.MessageOrBuilder { 25 26 /** 27 * 28 * 29 * <pre> 30 * User-specified flag to indicate which mode to use for advertisement. 31 * Check the AdvertiseMode enum for the list of possible values. 32 * </pre> 33 * 34 * <code>optional string advertise_mode = 312134331;</code> 35 * 36 * @return Whether the advertiseMode field is set. 37 */ hasAdvertiseMode()38 boolean hasAdvertiseMode(); 39 /** 40 * 41 * 42 * <pre> 43 * User-specified flag to indicate which mode to use for advertisement. 44 * Check the AdvertiseMode enum for the list of possible values. 45 * </pre> 46 * 47 * <code>optional string advertise_mode = 312134331;</code> 48 * 49 * @return The advertiseMode. 50 */ getAdvertiseMode()51 java.lang.String getAdvertiseMode(); 52 /** 53 * 54 * 55 * <pre> 56 * User-specified flag to indicate which mode to use for advertisement. 57 * Check the AdvertiseMode enum for the list of possible values. 58 * </pre> 59 * 60 * <code>optional string advertise_mode = 312134331;</code> 61 * 62 * @return The bytes for advertiseMode. 63 */ getAdvertiseModeBytes()64 com.google.protobuf.ByteString getAdvertiseModeBytes(); 65 66 /** 67 * 68 * 69 * <pre> 70 * User-specified list of prefix groups to advertise in custom mode, which currently supports the following option: - ALL_SUBNETS: Advertises all of the router's own VPC subnets. This excludes any routes learned for subnets that use VPC Network Peering. Note that this field can only be populated if advertise_mode is CUSTOM and overrides the list defined for the router (in the "bgp" message). These groups are advertised in addition to any specified prefixes. Leave this field blank to advertise no custom groups. 71 * Check the AdvertisedGroups enum for the list of possible values. 72 * </pre> 73 * 74 * <code>repeated string advertised_groups = 21065526;</code> 75 * 76 * @return A list containing the advertisedGroups. 77 */ getAdvertisedGroupsList()78 java.util.List<java.lang.String> getAdvertisedGroupsList(); 79 /** 80 * 81 * 82 * <pre> 83 * User-specified list of prefix groups to advertise in custom mode, which currently supports the following option: - ALL_SUBNETS: Advertises all of the router's own VPC subnets. This excludes any routes learned for subnets that use VPC Network Peering. Note that this field can only be populated if advertise_mode is CUSTOM and overrides the list defined for the router (in the "bgp" message). These groups are advertised in addition to any specified prefixes. Leave this field blank to advertise no custom groups. 84 * Check the AdvertisedGroups enum for the list of possible values. 85 * </pre> 86 * 87 * <code>repeated string advertised_groups = 21065526;</code> 88 * 89 * @return The count of advertisedGroups. 90 */ getAdvertisedGroupsCount()91 int getAdvertisedGroupsCount(); 92 /** 93 * 94 * 95 * <pre> 96 * User-specified list of prefix groups to advertise in custom mode, which currently supports the following option: - ALL_SUBNETS: Advertises all of the router's own VPC subnets. This excludes any routes learned for subnets that use VPC Network Peering. Note that this field can only be populated if advertise_mode is CUSTOM and overrides the list defined for the router (in the "bgp" message). These groups are advertised in addition to any specified prefixes. Leave this field blank to advertise no custom groups. 97 * Check the AdvertisedGroups enum for the list of possible values. 98 * </pre> 99 * 100 * <code>repeated string advertised_groups = 21065526;</code> 101 * 102 * @param index The index of the element to return. 103 * @return The advertisedGroups at the given index. 104 */ getAdvertisedGroups(int index)105 java.lang.String getAdvertisedGroups(int index); 106 /** 107 * 108 * 109 * <pre> 110 * User-specified list of prefix groups to advertise in custom mode, which currently supports the following option: - ALL_SUBNETS: Advertises all of the router's own VPC subnets. This excludes any routes learned for subnets that use VPC Network Peering. Note that this field can only be populated if advertise_mode is CUSTOM and overrides the list defined for the router (in the "bgp" message). These groups are advertised in addition to any specified prefixes. Leave this field blank to advertise no custom groups. 111 * Check the AdvertisedGroups enum for the list of possible values. 112 * </pre> 113 * 114 * <code>repeated string advertised_groups = 21065526;</code> 115 * 116 * @param index The index of the value to return. 117 * @return The bytes of the advertisedGroups at the given index. 118 */ getAdvertisedGroupsBytes(int index)119 com.google.protobuf.ByteString getAdvertisedGroupsBytes(int index); 120 121 /** 122 * 123 * 124 * <pre> 125 * User-specified list of individual IP ranges to advertise in custom mode. This field can only be populated if advertise_mode is CUSTOM and overrides the list defined for the router (in the "bgp" message). These IP ranges are advertised in addition to any specified groups. Leave this field blank to advertise no custom IP ranges. 126 * </pre> 127 * 128 * <code> 129 * repeated .google.cloud.compute.v1.RouterAdvertisedIpRange advertised_ip_ranges = 35449932; 130 * </code> 131 */ getAdvertisedIpRangesList()132 java.util.List<com.google.cloud.compute.v1.RouterAdvertisedIpRange> getAdvertisedIpRangesList(); 133 /** 134 * 135 * 136 * <pre> 137 * User-specified list of individual IP ranges to advertise in custom mode. This field can only be populated if advertise_mode is CUSTOM and overrides the list defined for the router (in the "bgp" message). These IP ranges are advertised in addition to any specified groups. Leave this field blank to advertise no custom IP ranges. 138 * </pre> 139 * 140 * <code> 141 * repeated .google.cloud.compute.v1.RouterAdvertisedIpRange advertised_ip_ranges = 35449932; 142 * </code> 143 */ getAdvertisedIpRanges(int index)144 com.google.cloud.compute.v1.RouterAdvertisedIpRange getAdvertisedIpRanges(int index); 145 /** 146 * 147 * 148 * <pre> 149 * User-specified list of individual IP ranges to advertise in custom mode. This field can only be populated if advertise_mode is CUSTOM and overrides the list defined for the router (in the "bgp" message). These IP ranges are advertised in addition to any specified groups. Leave this field blank to advertise no custom IP ranges. 150 * </pre> 151 * 152 * <code> 153 * repeated .google.cloud.compute.v1.RouterAdvertisedIpRange advertised_ip_ranges = 35449932; 154 * </code> 155 */ getAdvertisedIpRangesCount()156 int getAdvertisedIpRangesCount(); 157 /** 158 * 159 * 160 * <pre> 161 * User-specified list of individual IP ranges to advertise in custom mode. This field can only be populated if advertise_mode is CUSTOM and overrides the list defined for the router (in the "bgp" message). These IP ranges are advertised in addition to any specified groups. Leave this field blank to advertise no custom IP ranges. 162 * </pre> 163 * 164 * <code> 165 * repeated .google.cloud.compute.v1.RouterAdvertisedIpRange advertised_ip_ranges = 35449932; 166 * </code> 167 */ 168 java.util.List<? extends com.google.cloud.compute.v1.RouterAdvertisedIpRangeOrBuilder> getAdvertisedIpRangesOrBuilderList()169 getAdvertisedIpRangesOrBuilderList(); 170 /** 171 * 172 * 173 * <pre> 174 * User-specified list of individual IP ranges to advertise in custom mode. This field can only be populated if advertise_mode is CUSTOM and overrides the list defined for the router (in the "bgp" message). These IP ranges are advertised in addition to any specified groups. Leave this field blank to advertise no custom IP ranges. 175 * </pre> 176 * 177 * <code> 178 * repeated .google.cloud.compute.v1.RouterAdvertisedIpRange advertised_ip_ranges = 35449932; 179 * </code> 180 */ getAdvertisedIpRangesOrBuilder( int index)181 com.google.cloud.compute.v1.RouterAdvertisedIpRangeOrBuilder getAdvertisedIpRangesOrBuilder( 182 int index); 183 184 /** 185 * 186 * 187 * <pre> 188 * The priority of routes advertised to this BGP peer. Where there is more than one matching route of maximum length, the routes with the lowest priority value win. 189 * </pre> 190 * 191 * <code>optional uint32 advertised_route_priority = 186486332;</code> 192 * 193 * @return Whether the advertisedRoutePriority field is set. 194 */ hasAdvertisedRoutePriority()195 boolean hasAdvertisedRoutePriority(); 196 /** 197 * 198 * 199 * <pre> 200 * The priority of routes advertised to this BGP peer. Where there is more than one matching route of maximum length, the routes with the lowest priority value win. 201 * </pre> 202 * 203 * <code>optional uint32 advertised_route_priority = 186486332;</code> 204 * 205 * @return The advertisedRoutePriority. 206 */ getAdvertisedRoutePriority()207 int getAdvertisedRoutePriority(); 208 209 /** 210 * 211 * 212 * <pre> 213 * BFD configuration for the BGP peering. 214 * </pre> 215 * 216 * <code>optional .google.cloud.compute.v1.RouterBgpPeerBfd bfd = 97440;</code> 217 * 218 * @return Whether the bfd field is set. 219 */ hasBfd()220 boolean hasBfd(); 221 /** 222 * 223 * 224 * <pre> 225 * BFD configuration for the BGP peering. 226 * </pre> 227 * 228 * <code>optional .google.cloud.compute.v1.RouterBgpPeerBfd bfd = 97440;</code> 229 * 230 * @return The bfd. 231 */ getBfd()232 com.google.cloud.compute.v1.RouterBgpPeerBfd getBfd(); 233 /** 234 * 235 * 236 * <pre> 237 * BFD configuration for the BGP peering. 238 * </pre> 239 * 240 * <code>optional .google.cloud.compute.v1.RouterBgpPeerBfd bfd = 97440;</code> 241 */ getBfdOrBuilder()242 com.google.cloud.compute.v1.RouterBgpPeerBfdOrBuilder getBfdOrBuilder(); 243 244 /** 245 * 246 * 247 * <pre> 248 * The status of the BGP peer connection. If set to FALSE, any active session with the peer is terminated and all associated routing information is removed. If set to TRUE, the peer connection can be established with routing information. The default is TRUE. 249 * Check the Enable enum for the list of possible values. 250 * </pre> 251 * 252 * <code>optional string enable = 311764355;</code> 253 * 254 * @return Whether the enable field is set. 255 */ hasEnable()256 boolean hasEnable(); 257 /** 258 * 259 * 260 * <pre> 261 * The status of the BGP peer connection. If set to FALSE, any active session with the peer is terminated and all associated routing information is removed. If set to TRUE, the peer connection can be established with routing information. The default is TRUE. 262 * Check the Enable enum for the list of possible values. 263 * </pre> 264 * 265 * <code>optional string enable = 311764355;</code> 266 * 267 * @return The enable. 268 */ getEnable()269 java.lang.String getEnable(); 270 /** 271 * 272 * 273 * <pre> 274 * The status of the BGP peer connection. If set to FALSE, any active session with the peer is terminated and all associated routing information is removed. If set to TRUE, the peer connection can be established with routing information. The default is TRUE. 275 * Check the Enable enum for the list of possible values. 276 * </pre> 277 * 278 * <code>optional string enable = 311764355;</code> 279 * 280 * @return The bytes for enable. 281 */ getEnableBytes()282 com.google.protobuf.ByteString getEnableBytes(); 283 284 /** 285 * 286 * 287 * <pre> 288 * Enable IPv6 traffic over BGP Peer. If not specified, it is disabled by default. 289 * </pre> 290 * 291 * <code>optional bool enable_ipv6 = 181467939;</code> 292 * 293 * @return Whether the enableIpv6 field is set. 294 */ hasEnableIpv6()295 boolean hasEnableIpv6(); 296 /** 297 * 298 * 299 * <pre> 300 * Enable IPv6 traffic over BGP Peer. If not specified, it is disabled by default. 301 * </pre> 302 * 303 * <code>optional bool enable_ipv6 = 181467939;</code> 304 * 305 * @return The enableIpv6. 306 */ getEnableIpv6()307 boolean getEnableIpv6(); 308 309 /** 310 * 311 * 312 * <pre> 313 * Name of the interface the BGP peer is associated with. 314 * </pre> 315 * 316 * <code>optional string interface_name = 437854673;</code> 317 * 318 * @return Whether the interfaceName field is set. 319 */ hasInterfaceName()320 boolean hasInterfaceName(); 321 /** 322 * 323 * 324 * <pre> 325 * Name of the interface the BGP peer is associated with. 326 * </pre> 327 * 328 * <code>optional string interface_name = 437854673;</code> 329 * 330 * @return The interfaceName. 331 */ getInterfaceName()332 java.lang.String getInterfaceName(); 333 /** 334 * 335 * 336 * <pre> 337 * Name of the interface the BGP peer is associated with. 338 * </pre> 339 * 340 * <code>optional string interface_name = 437854673;</code> 341 * 342 * @return The bytes for interfaceName. 343 */ getInterfaceNameBytes()344 com.google.protobuf.ByteString getInterfaceNameBytes(); 345 346 /** 347 * 348 * 349 * <pre> 350 * IP address of the interface inside Google Cloud Platform. Only IPv4 is supported. 351 * </pre> 352 * 353 * <code>optional string ip_address = 406272220;</code> 354 * 355 * @return Whether the ipAddress field is set. 356 */ hasIpAddress()357 boolean hasIpAddress(); 358 /** 359 * 360 * 361 * <pre> 362 * IP address of the interface inside Google Cloud Platform. Only IPv4 is supported. 363 * </pre> 364 * 365 * <code>optional string ip_address = 406272220;</code> 366 * 367 * @return The ipAddress. 368 */ getIpAddress()369 java.lang.String getIpAddress(); 370 /** 371 * 372 * 373 * <pre> 374 * IP address of the interface inside Google Cloud Platform. Only IPv4 is supported. 375 * </pre> 376 * 377 * <code>optional string ip_address = 406272220;</code> 378 * 379 * @return The bytes for ipAddress. 380 */ getIpAddressBytes()381 com.google.protobuf.ByteString getIpAddressBytes(); 382 383 /** 384 * 385 * 386 * <pre> 387 * IPv6 address of the interface inside Google Cloud Platform. 388 * </pre> 389 * 390 * <code>optional string ipv6_nexthop_address = 27968211;</code> 391 * 392 * @return Whether the ipv6NexthopAddress field is set. 393 */ hasIpv6NexthopAddress()394 boolean hasIpv6NexthopAddress(); 395 /** 396 * 397 * 398 * <pre> 399 * IPv6 address of the interface inside Google Cloud Platform. 400 * </pre> 401 * 402 * <code>optional string ipv6_nexthop_address = 27968211;</code> 403 * 404 * @return The ipv6NexthopAddress. 405 */ getIpv6NexthopAddress()406 java.lang.String getIpv6NexthopAddress(); 407 /** 408 * 409 * 410 * <pre> 411 * IPv6 address of the interface inside Google Cloud Platform. 412 * </pre> 413 * 414 * <code>optional string ipv6_nexthop_address = 27968211;</code> 415 * 416 * @return The bytes for ipv6NexthopAddress. 417 */ getIpv6NexthopAddressBytes()418 com.google.protobuf.ByteString getIpv6NexthopAddressBytes(); 419 420 /** 421 * 422 * 423 * <pre> 424 * [Output Only] The resource that configures and manages this BGP peer. - MANAGED_BY_USER is the default value and can be managed by you or other users - MANAGED_BY_ATTACHMENT is a BGP peer that is configured and managed by Cloud Interconnect, specifically by an InterconnectAttachment of type PARTNER. Google automatically creates, updates, and deletes this type of BGP peer when the PARTNER InterconnectAttachment is created, updated, or deleted. 425 * Check the ManagementType enum for the list of possible values. 426 * </pre> 427 * 428 * <code>optional string management_type = 173703606;</code> 429 * 430 * @return Whether the managementType field is set. 431 */ hasManagementType()432 boolean hasManagementType(); 433 /** 434 * 435 * 436 * <pre> 437 * [Output Only] The resource that configures and manages this BGP peer. - MANAGED_BY_USER is the default value and can be managed by you or other users - MANAGED_BY_ATTACHMENT is a BGP peer that is configured and managed by Cloud Interconnect, specifically by an InterconnectAttachment of type PARTNER. Google automatically creates, updates, and deletes this type of BGP peer when the PARTNER InterconnectAttachment is created, updated, or deleted. 438 * Check the ManagementType enum for the list of possible values. 439 * </pre> 440 * 441 * <code>optional string management_type = 173703606;</code> 442 * 443 * @return The managementType. 444 */ getManagementType()445 java.lang.String getManagementType(); 446 /** 447 * 448 * 449 * <pre> 450 * [Output Only] The resource that configures and manages this BGP peer. - MANAGED_BY_USER is the default value and can be managed by you or other users - MANAGED_BY_ATTACHMENT is a BGP peer that is configured and managed by Cloud Interconnect, specifically by an InterconnectAttachment of type PARTNER. Google automatically creates, updates, and deletes this type of BGP peer when the PARTNER InterconnectAttachment is created, updated, or deleted. 451 * Check the ManagementType enum for the list of possible values. 452 * </pre> 453 * 454 * <code>optional string management_type = 173703606;</code> 455 * 456 * @return The bytes for managementType. 457 */ getManagementTypeBytes()458 com.google.protobuf.ByteString getManagementTypeBytes(); 459 460 /** 461 * 462 * 463 * <pre> 464 * Present if MD5 authentication is enabled for the peering. Must be the name of one of the entries in the Router.md5_authentication_keys. The field must comply with RFC1035. 465 * </pre> 466 * 467 * <code>optional string md5_authentication_key_name = 281075345;</code> 468 * 469 * @return Whether the md5AuthenticationKeyName field is set. 470 */ hasMd5AuthenticationKeyName()471 boolean hasMd5AuthenticationKeyName(); 472 /** 473 * 474 * 475 * <pre> 476 * Present if MD5 authentication is enabled for the peering. Must be the name of one of the entries in the Router.md5_authentication_keys. The field must comply with RFC1035. 477 * </pre> 478 * 479 * <code>optional string md5_authentication_key_name = 281075345;</code> 480 * 481 * @return The md5AuthenticationKeyName. 482 */ getMd5AuthenticationKeyName()483 java.lang.String getMd5AuthenticationKeyName(); 484 /** 485 * 486 * 487 * <pre> 488 * Present if MD5 authentication is enabled for the peering. Must be the name of one of the entries in the Router.md5_authentication_keys. The field must comply with RFC1035. 489 * </pre> 490 * 491 * <code>optional string md5_authentication_key_name = 281075345;</code> 492 * 493 * @return The bytes for md5AuthenticationKeyName. 494 */ getMd5AuthenticationKeyNameBytes()495 com.google.protobuf.ByteString getMd5AuthenticationKeyNameBytes(); 496 497 /** 498 * 499 * 500 * <pre> 501 * Name of this BGP peer. 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])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. 502 * </pre> 503 * 504 * <code>optional string name = 3373707;</code> 505 * 506 * @return Whether the name field is set. 507 */ hasName()508 boolean hasName(); 509 /** 510 * 511 * 512 * <pre> 513 * Name of this BGP peer. 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])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. 514 * </pre> 515 * 516 * <code>optional string name = 3373707;</code> 517 * 518 * @return The name. 519 */ getName()520 java.lang.String getName(); 521 /** 522 * 523 * 524 * <pre> 525 * Name of this BGP peer. 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])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. 526 * </pre> 527 * 528 * <code>optional string name = 3373707;</code> 529 * 530 * @return The bytes for name. 531 */ getNameBytes()532 com.google.protobuf.ByteString getNameBytes(); 533 534 /** 535 * 536 * 537 * <pre> 538 * Peer BGP Autonomous System Number (ASN). Each BGP interface may use a different value. 539 * </pre> 540 * 541 * <code>optional uint32 peer_asn = 69573151;</code> 542 * 543 * @return Whether the peerAsn field is set. 544 */ hasPeerAsn()545 boolean hasPeerAsn(); 546 /** 547 * 548 * 549 * <pre> 550 * Peer BGP Autonomous System Number (ASN). Each BGP interface may use a different value. 551 * </pre> 552 * 553 * <code>optional uint32 peer_asn = 69573151;</code> 554 * 555 * @return The peerAsn. 556 */ getPeerAsn()557 int getPeerAsn(); 558 559 /** 560 * 561 * 562 * <pre> 563 * IP address of the BGP interface outside Google Cloud Platform. Only IPv4 is supported. 564 * </pre> 565 * 566 * <code>optional string peer_ip_address = 207735769;</code> 567 * 568 * @return Whether the peerIpAddress field is set. 569 */ hasPeerIpAddress()570 boolean hasPeerIpAddress(); 571 /** 572 * 573 * 574 * <pre> 575 * IP address of the BGP interface outside Google Cloud Platform. Only IPv4 is supported. 576 * </pre> 577 * 578 * <code>optional string peer_ip_address = 207735769;</code> 579 * 580 * @return The peerIpAddress. 581 */ getPeerIpAddress()582 java.lang.String getPeerIpAddress(); 583 /** 584 * 585 * 586 * <pre> 587 * IP address of the BGP interface outside Google Cloud Platform. Only IPv4 is supported. 588 * </pre> 589 * 590 * <code>optional string peer_ip_address = 207735769;</code> 591 * 592 * @return The bytes for peerIpAddress. 593 */ getPeerIpAddressBytes()594 com.google.protobuf.ByteString getPeerIpAddressBytes(); 595 596 /** 597 * 598 * 599 * <pre> 600 * IPv6 address of the BGP interface outside Google Cloud Platform. 601 * </pre> 602 * 603 * <code>optional string peer_ipv6_nexthop_address = 491486608;</code> 604 * 605 * @return Whether the peerIpv6NexthopAddress field is set. 606 */ hasPeerIpv6NexthopAddress()607 boolean hasPeerIpv6NexthopAddress(); 608 /** 609 * 610 * 611 * <pre> 612 * IPv6 address of the BGP interface outside Google Cloud Platform. 613 * </pre> 614 * 615 * <code>optional string peer_ipv6_nexthop_address = 491486608;</code> 616 * 617 * @return The peerIpv6NexthopAddress. 618 */ getPeerIpv6NexthopAddress()619 java.lang.String getPeerIpv6NexthopAddress(); 620 /** 621 * 622 * 623 * <pre> 624 * IPv6 address of the BGP interface outside Google Cloud Platform. 625 * </pre> 626 * 627 * <code>optional string peer_ipv6_nexthop_address = 491486608;</code> 628 * 629 * @return The bytes for peerIpv6NexthopAddress. 630 */ getPeerIpv6NexthopAddressBytes()631 com.google.protobuf.ByteString getPeerIpv6NexthopAddressBytes(); 632 633 /** 634 * 635 * 636 * <pre> 637 * URI of the VM instance that is used as third-party router appliances such as Next Gen Firewalls, Virtual Routers, or Router Appliances. The VM instance must be located in zones contained in the same region as this Cloud Router. The VM instance is the peer side of the BGP session. 638 * </pre> 639 * 640 * <code>optional string router_appliance_instance = 468312989;</code> 641 * 642 * @return Whether the routerApplianceInstance field is set. 643 */ hasRouterApplianceInstance()644 boolean hasRouterApplianceInstance(); 645 /** 646 * 647 * 648 * <pre> 649 * URI of the VM instance that is used as third-party router appliances such as Next Gen Firewalls, Virtual Routers, or Router Appliances. The VM instance must be located in zones contained in the same region as this Cloud Router. The VM instance is the peer side of the BGP session. 650 * </pre> 651 * 652 * <code>optional string router_appliance_instance = 468312989;</code> 653 * 654 * @return The routerApplianceInstance. 655 */ getRouterApplianceInstance()656 java.lang.String getRouterApplianceInstance(); 657 /** 658 * 659 * 660 * <pre> 661 * URI of the VM instance that is used as third-party router appliances such as Next Gen Firewalls, Virtual Routers, or Router Appliances. The VM instance must be located in zones contained in the same region as this Cloud Router. The VM instance is the peer side of the BGP session. 662 * </pre> 663 * 664 * <code>optional string router_appliance_instance = 468312989;</code> 665 * 666 * @return The bytes for routerApplianceInstance. 667 */ getRouterApplianceInstanceBytes()668 com.google.protobuf.ByteString getRouterApplianceInstanceBytes(); 669 } 670