Beispiel #1
0
 /// <summary>
 /// Create integration runtime
 /// </summary>
 /// <remarks>
 /// Create an integration runtime
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group. The name is case insensitive.
 /// </param>
 /// <param name='workspaceName'>
 /// The name of the workspace.
 /// </param>
 /// <param name='integrationRuntimeName'>
 /// Integration runtime name
 /// </param>
 /// <param name='integrationRuntime'>
 /// Integration runtime resource definition.
 /// </param>
 /// <param name='ifMatch'>
 /// ETag of the integration runtime entity. Should only be specified for
 /// update, for which it should match existing entity or can be * for
 /// unconditional update.
 /// </param>
 public static IntegrationRuntimeResource Create(this IIntegrationRuntimesOperations operations, string resourceGroupName, string workspaceName, string integrationRuntimeName, IntegrationRuntimeResource integrationRuntime, string ifMatch = default(string))
 {
     return(operations.CreateAsync(resourceGroupName, workspaceName, integrationRuntimeName, integrationRuntime, ifMatch).GetAwaiter().GetResult());
 }