Interface NetworkSecurityRule.DefinitionStages.WithSourcePort<ParentT>
- Type Parameters:
ParentT- the stage of the parent definition to return to after attaching this definition
- All Known Subinterfaces:
NetworkSecurityRule.Definition<ParentT>
- Enclosing interface:
- NetworkSecurityRule.DefinitionStages
public static interface NetworkSecurityRule.DefinitionStages.WithSourcePort<ParentT>
The stage of the network rule definition allowing the source port(s) to be specified.
-
Method Summary
Modifier and TypeMethodDescriptionMakes this rule apply to any source port.fromPort(int port) Specifies the source port to which this rule applies.fromPortRange(int from, int to) Specifies the source port range to which this rule applies.fromPortRanges(String... ranges) Specifies the source port ranges to which this rule applies.
-
Method Details
-
fromPort
NetworkSecurityRule.DefinitionStages.WithDestinationAddressOrSecurityGroup<ParentT> fromPort(int port) Specifies the source port to which this rule applies.- Parameters:
port- the source port number- Returns:
- the next stage of the definition
-
fromAnyPort
Makes this rule apply to any source port.- Returns:
- the next stage of the definition
-
fromPortRange
NetworkSecurityRule.DefinitionStages.WithDestinationAddressOrSecurityGroup<ParentT> fromPortRange(int from, int to) Specifies the source port range to which this rule applies.- Parameters:
from- the starting port numberto- the ending port number- Returns:
- the next stage of the definition
-
fromPortRanges
NetworkSecurityRule.DefinitionStages.WithDestinationAddressOrSecurityGroup<ParentT> fromPortRanges(String... ranges) Specifies the source port ranges to which this rule applies.- Parameters:
ranges- the starting port ranges- Returns:
- the next stage of the definition
-