Package com.google.cloud.datastream.v1
Interface FetchStaticIpsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
FetchStaticIpsResponse
,FetchStaticIpsResponse.Builder
public interface FetchStaticIpsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNextPageToken()
A token that can be sent as `page_token` to retrieve the next page.com.google.protobuf.ByteString
getNextPageTokenBytes()
A token that can be sent as `page_token` to retrieve the next page.String
getStaticIps(int index)
list of static ips by accountcom.google.protobuf.ByteString
getStaticIpsBytes(int index)
list of static ips by accountint
getStaticIpsCount()
list of static ips by accountList<String>
getStaticIpsList()
list of static ips by account-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getStaticIpsList
List<String> getStaticIpsList()
list of static ips by account
repeated string static_ips = 1;
- Returns:
- A list containing the staticIps.
-
getStaticIpsCount
int getStaticIpsCount()
list of static ips by account
repeated string static_ips = 1;
- Returns:
- The count of staticIps.
-
getStaticIps
String getStaticIps(int index)
list of static ips by account
repeated string static_ips = 1;
- Parameters:
index
- The index of the element to return.- Returns:
- The staticIps at the given index.
-
getStaticIpsBytes
com.google.protobuf.ByteString getStaticIpsBytes(int index)
list of static ips by account
repeated string static_ips = 1;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the staticIps at the given index.
-
getNextPageToken
String getNextPageToken()
A token that can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A token that can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-