NetworkSecurityGroupOperationsExtensions.SetRuleAsync Method (INetworkSecurityGroupOperations, String, String, NetworkSecuritySetRuleParameters)
Add new Network Security Rule to existing Network Security Group.
Namespace: Microsoft.WindowsAzure.Management.Network
Assembly: Microsoft.WindowsAzure.Management.Network (in Microsoft.WindowsAzure.Management.Network.dll)
Syntax
public static Task<OperationStatusResponse> SetRuleAsync(
this INetworkSecurityGroupOperations operations,
string networkSecurityGroupName,
string ruleName,
NetworkSecuritySetRuleParameters parameters
)
public:
[ExtensionAttribute]
static Task<OperationStatusResponse^>^ SetRuleAsync(
INetworkSecurityGroupOperations^ operations,
String^ networkSecurityGroupName,
String^ ruleName,
NetworkSecuritySetRuleParameters^ parameters
)
static member SetRuleAsync :
operations:INetworkSecurityGroupOperations *
networkSecurityGroupName:string *
ruleName:string *
parameters:NetworkSecuritySetRuleParameters -> Task<OperationStatusResponse>
<ExtensionAttribute>
Public Shared Function SetRuleAsync (
operations As INetworkSecurityGroupOperations,
networkSecurityGroupName As String,
ruleName As String,
parameters As NetworkSecuritySetRuleParameters
) As Task(Of OperationStatusResponse)
Parameters
operations
Type: Microsoft.WindowsAzure.Management.Network.INetworkSecurityGroupOperationsReference to the Microsoft.WindowsAzure.Management.Network.INetworkSecurityGroupOperations.
networkSecurityGroupName
Type: System.StringOptional.
ruleName
Type: System.StringOptional.
parameters
Type: Microsoft.WindowsAzure.Management.Network.Models.NetworkSecuritySetRuleParametersRequired. Parameters supplied to the Set Network Security Rule operation.
Return Value
Type: System.Threading.Tasks.Task<OperationStatusResponse>
The response body contains the status of the specified asynchronous operation, indicating whether it has succeeded, is inprogress, or has failed. Note that this status is distinct from the HTTP status code returned for the Get Operation Status operation itself. If the asynchronous operation succeeded, the response body includes the HTTP status code for the successful request. If the asynchronous operation failed, the response body includes the HTTP status code for the failed request, and also includes error information regarding the failure.
See Also
NetworkSecurityGroupOperationsExtensions Class
Microsoft.WindowsAzure.Management.Network Namespace
Return to top