Package com.google.appengine.v1
Interface ListIngressRulesRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListIngressRulesRequest
,ListIngressRulesRequest.Builder
public interface ListIngressRulesRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getMatchingAddress()
A valid IP Address.com.google.protobuf.ByteString
getMatchingAddressBytes()
A valid IP Address.int
getPageSize()
Maximum results to return per page.String
getPageToken()
Continuation token for fetching the next page of results.com.google.protobuf.ByteString
getPageTokenBytes()
Continuation token for fetching the next page of results.String
getParent()
Name of the Firewall collection to retrieve.com.google.protobuf.ByteString
getParentBytes()
Name of the Firewall collection to retrieve.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getParent
String getParent()
Name of the Firewall collection to retrieve. Example: `apps/myapp/firewall/ingressRules`.
string parent = 1;
- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
Name of the Firewall collection to retrieve. Example: `apps/myapp/firewall/ingressRules`.
string parent = 1;
- Returns:
- The bytes for parent.
-
getPageSize
int getPageSize()
Maximum results to return per page.
int32 page_size = 2;
- Returns:
- The pageSize.
-
getPageToken
String getPageToken()
Continuation token for fetching the next page of results.
string page_token = 3;
- Returns:
- The pageToken.
-
getPageTokenBytes
com.google.protobuf.ByteString getPageTokenBytes()
Continuation token for fetching the next page of results.
string page_token = 3;
- Returns:
- The bytes for pageToken.
-
getMatchingAddress
String getMatchingAddress()
A valid IP Address. If set, only rules matching this address will be returned. The first returned rule will be the rule that fires on requests from this IP.
string matching_address = 4;
- Returns:
- The matchingAddress.
-
getMatchingAddressBytes
com.google.protobuf.ByteString getMatchingAddressBytes()
A valid IP Address. If set, only rules matching this address will be returned. The first returned rule will be the rule that fires on requests from this IP.
string matching_address = 4;
- Returns:
- The bytes for matchingAddress.
-
-