/// <summary>
 /// Create or update an input for a stream analytics job. The raw json
 /// content will be used.
 /// </summary>
 /// <param name='operations'>
 /// Reference to the
 /// Microsoft.Azure.Management.StreamAnalytics.IInputOperations.
 /// </param>
 /// <param name='resourceGroupName'>
 /// Required. The resource group name of the stream analytics job.
 /// </param>
 /// <param name='jobName'>
 /// Required. The name of the stream analytics job.
 /// </param>
 /// <param name='inputName'>
 /// Required. The name of the input for the stream analytics job.
 /// </param>
 /// <param name='parameters'>
 /// Required. The parameters required to create or update an input for
 /// a stream analytics job.
 /// </param>
 /// <returns>
 /// The response of the input CreateOrUpdate operation.
 /// </returns>
 public static Task<InputCreateOrUpdateResponse> CreateOrUpdateWithRawJsonContentAsync(this IInputOperations operations, string resourceGroupName, string jobName, string inputName, InputCreateOrUpdateWithRawJsonContentParameters parameters)
 {
     return operations.CreateOrUpdateWithRawJsonContentAsync(resourceGroupName, jobName, inputName, parameters, CancellationToken.None);
 }
 /// <summary>
 /// Create a new table instance or update an existing instance with raw
 /// json content.
 /// </summary>
 /// <param name='operations'>
 /// Reference to the
 /// Microsoft.Azure.Management.DataFactories.Core.ITableOperations.
 /// </param>
 /// <param name='resourceGroupName'>
 /// Required. The resource group name of the data factory.
 /// </param>
 /// <param name='dataFactoryName'>
 /// Required. A unique data factory instance name.
 /// </param>
 /// <param name='tableName'>
 /// Required. A unique table instance name.
 /// </param>
 /// <param name='parameters'>
 /// Required. The parameters required to create or update a table.
 /// </param>
 /// <returns>
 /// The CreateOrUpdate table operation response.
 /// </returns>
 public static Task<TableCreateOrUpdateResponse> CreateOrUpdateWithRawJsonContentAsync(this ITableOperations operations, string resourceGroupName, string dataFactoryName, string tableName, TableCreateOrUpdateWithRawJsonContentParameters parameters)
 {
     return operations.CreateOrUpdateWithRawJsonContentAsync(resourceGroupName, dataFactoryName, tableName, parameters, CancellationToken.None);
 }
 /// <summary>
 /// Create or update a transformation for a stream analytics job. The
 /// raw json content will be used.
 /// </summary>
 /// <param name='operations'>
 /// Reference to the
 /// Microsoft.Azure.Management.StreamAnalytics.ITransformationOperations.
 /// </param>
 /// <param name='resourceGroupName'>
 /// Required. The resource group name of the stream analytics job.
 /// </param>
 /// <param name='jobName'>
 /// Required. The name of the stream analytics job.
 /// </param>
 /// <param name='transformationName'>
 /// Required. The name of the transformation for the stream analytics
 /// job.
 /// </param>
 /// <param name='parameters'>
 /// Required. The parameters required to create or update a
 /// transformation for the stream analytics job. It is in json format.
 /// </param>
 /// <returns>
 /// The response of the transformation create operation.
 /// </returns>
 public static Task<TransformationCreateOrUpdateResponse> CreateOrUpdateWithRawJsonContentAsync(this ITransformationOperations operations, string resourceGroupName, string jobName, string transformationName, TransformationCreateOrUpdateWithRawJsonContentParameters parameters)
 {
     return operations.CreateOrUpdateWithRawJsonContentAsync(resourceGroupName, jobName, transformationName, parameters, CancellationToken.None);
 }