Interface NetworkSecurityGroup.UpdateStages.WithRule
-
- All Known Subinterfaces:
NetworkSecurityGroup.Update
- Enclosing interface:
- NetworkSecurityGroup.UpdateStages
public static interface NetworkSecurityGroup.UpdateStages.WithRuleThe stage of the resource definition allowing to add or remove security rules.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NetworkSecurityRule.UpdateDefinitionStages.Blank<NetworkSecurityGroup.Update>defineRule(String name)Begins the definition of a new security rule to be added to this network security group.NetworkSecurityRule.UpdateupdateRule(String name)Begins the description of an update of an existing security rule of this network security group.NetworkSecurityGroup.UpdatewithoutRule(String name)Removes an existing security rule.
-
-
-
Method Detail
-
withoutRule
NetworkSecurityGroup.Update withoutRule(String name)
Removes an existing security rule.- Parameters:
name- the name of the security rule to remove- Returns:
- the next stage of the network security group description
-
defineRule
NetworkSecurityRule.UpdateDefinitionStages.Blank<NetworkSecurityGroup.Update> defineRule(String name)
Begins the definition of a new security rule to be added to this network security group.- Parameters:
name- the name of the new security rule- Returns:
- the first stage of the new security rule definition
-
updateRule
NetworkSecurityRule.Update updateRule(String name)
Begins the description of an update of an existing security rule of this network security group.- Parameters:
name- the name of an existing security rule- Returns:
- the first stage of the security rule update description
-
-