예제 #1
0
 /// <summary>
 /// Creates or updates a Service Fabric service resource.
 /// </summary>
 /// <remarks>
 /// Create or update a Service Fabric service resource with the specified name.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group.
 /// </param>
 /// <param name='clusterName'>
 /// The name of the cluster resource.
 /// </param>
 /// <param name='applicationName'>
 /// The name of the application resource.
 /// </param>
 /// <param name='serviceName'>
 /// The name of the service resource in the format of
 /// {applicationName}~{serviceName}.
 /// </param>
 /// <param name='parameters'>
 /// The service resource.
 /// </param>
 public static ServiceResource BeginCreate(this IServicesOperations operations, string resourceGroupName, string clusterName, string applicationName, string serviceName, ServiceResource parameters)
 {
     return(operations.BeginCreateAsync(resourceGroupName, clusterName, applicationName, serviceName, parameters).GetAwaiter().GetResult());
 }