Package com.google.appengine.v1
Interface CreateIngressRuleRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CreateIngressRuleRequest
,CreateIngressRuleRequest.Builder
public interface CreateIngressRuleRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getParent()
Name of the parent Firewall collection in which to create a new rule.com.google.protobuf.ByteString
getParentBytes()
Name of the parent Firewall collection in which to create a new rule.FirewallRule
getRule()
A FirewallRule containing the new resource.FirewallRuleOrBuilder
getRuleOrBuilder()
A FirewallRule containing the new resource.boolean
hasRule()
A FirewallRule containing the new resource.-
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 parent Firewall collection in which to create a new rule. Example: `apps/myapp/firewall/ingressRules`.
string parent = 1;
- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
Name of the parent Firewall collection in which to create a new rule. Example: `apps/myapp/firewall/ingressRules`.
string parent = 1;
- Returns:
- The bytes for parent.
-
hasRule
boolean hasRule()
A FirewallRule containing the new resource. The user may optionally provide a position at which the new rule will be placed. The positions define a sequential list starting at 1. If a rule already exists at the given position, rules greater than the provided position will be moved forward by one. If no position is provided, the server will place the rule as the second to last rule in the sequence before the required default allow-all or deny-all rule.
.google.appengine.v1.FirewallRule rule = 2;
- Returns:
- Whether the rule field is set.
-
getRule
FirewallRule getRule()
A FirewallRule containing the new resource. The user may optionally provide a position at which the new rule will be placed. The positions define a sequential list starting at 1. If a rule already exists at the given position, rules greater than the provided position will be moved forward by one. If no position is provided, the server will place the rule as the second to last rule in the sequence before the required default allow-all or deny-all rule.
.google.appengine.v1.FirewallRule rule = 2;
- Returns:
- The rule.
-
getRuleOrBuilder
FirewallRuleOrBuilder getRuleOrBuilder()
A FirewallRule containing the new resource. The user may optionally provide a position at which the new rule will be placed. The positions define a sequential list starting at 1. If a rule already exists at the given position, rules greater than the provided position will be moved forward by one. If no position is provided, the server will place the rule as the second to last rule in the sequence before the required default allow-all or deny-all rule.
.google.appengine.v1.FirewallRule rule = 2;
-
-