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 NetworkEndpointGroupPscDataOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.cloud.compute.v1.NetworkEndpointGroupPscData) 24 com.google.protobuf.MessageOrBuilder { 25 26 /** 27 * 28 * 29 * <pre> 30 * [Output Only] Address allocated from given subnetwork for PSC. This IP address acts as a VIP for a PSC NEG, allowing it to act as an endpoint in L7 PSC-XLB. 31 * </pre> 32 * 33 * <code>optional string consumer_psc_address = 452646572;</code> 34 * 35 * @return Whether the consumerPscAddress field is set. 36 */ hasConsumerPscAddress()37 boolean hasConsumerPscAddress(); 38 /** 39 * 40 * 41 * <pre> 42 * [Output Only] Address allocated from given subnetwork for PSC. This IP address acts as a VIP for a PSC NEG, allowing it to act as an endpoint in L7 PSC-XLB. 43 * </pre> 44 * 45 * <code>optional string consumer_psc_address = 452646572;</code> 46 * 47 * @return The consumerPscAddress. 48 */ getConsumerPscAddress()49 java.lang.String getConsumerPscAddress(); 50 /** 51 * 52 * 53 * <pre> 54 * [Output Only] Address allocated from given subnetwork for PSC. This IP address acts as a VIP for a PSC NEG, allowing it to act as an endpoint in L7 PSC-XLB. 55 * </pre> 56 * 57 * <code>optional string consumer_psc_address = 452646572;</code> 58 * 59 * @return The bytes for consumerPscAddress. 60 */ getConsumerPscAddressBytes()61 com.google.protobuf.ByteString getConsumerPscAddressBytes(); 62 63 /** 64 * 65 * 66 * <pre> 67 * [Output Only] The PSC connection id of the PSC Network Endpoint Group Consumer. 68 * </pre> 69 * 70 * <code>optional uint64 psc_connection_id = 292082397;</code> 71 * 72 * @return Whether the pscConnectionId field is set. 73 */ hasPscConnectionId()74 boolean hasPscConnectionId(); 75 /** 76 * 77 * 78 * <pre> 79 * [Output Only] The PSC connection id of the PSC Network Endpoint Group Consumer. 80 * </pre> 81 * 82 * <code>optional uint64 psc_connection_id = 292082397;</code> 83 * 84 * @return The pscConnectionId. 85 */ getPscConnectionId()86 long getPscConnectionId(); 87 88 /** 89 * 90 * 91 * <pre> 92 * [Output Only] The connection status of the PSC Forwarding Rule. 93 * Check the PscConnectionStatus enum for the list of possible values. 94 * </pre> 95 * 96 * <code>optional string psc_connection_status = 184149172;</code> 97 * 98 * @return Whether the pscConnectionStatus field is set. 99 */ hasPscConnectionStatus()100 boolean hasPscConnectionStatus(); 101 /** 102 * 103 * 104 * <pre> 105 * [Output Only] The connection status of the PSC Forwarding Rule. 106 * Check the PscConnectionStatus enum for the list of possible values. 107 * </pre> 108 * 109 * <code>optional string psc_connection_status = 184149172;</code> 110 * 111 * @return The pscConnectionStatus. 112 */ getPscConnectionStatus()113 java.lang.String getPscConnectionStatus(); 114 /** 115 * 116 * 117 * <pre> 118 * [Output Only] The connection status of the PSC Forwarding Rule. 119 * Check the PscConnectionStatus enum for the list of possible values. 120 * </pre> 121 * 122 * <code>optional string psc_connection_status = 184149172;</code> 123 * 124 * @return The bytes for pscConnectionStatus. 125 */ getPscConnectionStatusBytes()126 com.google.protobuf.ByteString getPscConnectionStatusBytes(); 127 } 128