Exemple #1
0
 /// <summary>
 /// Lists all of the outputs under the specified streaming job.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group that contains the resource. You can obtain
 /// this value from the Azure Resource Manager API or the portal.
 /// </param>
 /// <param name='jobName'>
 /// The name of the streaming job.
 /// </param>
 /// <param name='select'>
 /// The $select OData query parameter. This is a comma-separated list of
 /// structural properties to include in the response, or “*” to include all
 /// properties. By default, all properties are returned except diagnostics.
 /// Currently only accepts '*' as a valid value.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <IPage <Output> > ListByStreamingJobAsync(this IOutputsOperations operations, string resourceGroupName, string jobName, string select = default(string), CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.ListByStreamingJobWithHttpMessagesAsync(resourceGroupName, jobName, select, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
Exemple #2
0
 /// <summary>
 /// Creates an output or replaces an already existing output under an existing
 /// streaming job.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='output'>
 /// The definition of the output that will be used to create a new output or
 /// replace the existing one under the streaming job.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group that contains the resource. You can obtain
 /// this value from the Azure Resource Manager API or the portal.
 /// </param>
 /// <param name='jobName'>
 /// The name of the streaming job.
 /// </param>
 /// <param name='outputName'>
 /// The name of the output.
 /// </param>
 /// <param name='ifMatch'>
 /// The ETag of the output. Omit this value to always overwrite the current
 /// output. Specify the last-seen ETag value to prevent accidentally
 /// overwritting concurrent changes.
 /// </param>
 /// <param name='ifNoneMatch'>
 /// Set to '*' to allow a new output to be created, but to prevent updating an
 /// existing output. Other values will result in a 412 Pre-condition Failed
 /// response.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <Output> CreateOrReplaceAsync(this IOutputsOperations operations, Output output, string resourceGroupName, string jobName, string outputName, string ifMatch = default(string), string ifNoneMatch = default(string), CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.CreateOrReplaceWithHttpMessagesAsync(output, resourceGroupName, jobName, outputName, ifMatch, ifNoneMatch, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
Exemple #3
0
 /// <summary>
 /// Lists all of the outputs under the specified streaming job.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='nextPageLink'>
 /// The NextLink from the previous successful call to List operation.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <IPage <Output> > ListByStreamingJobNextAsync(this IOutputsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.ListByStreamingJobNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
Exemple #4
0
 /// <summary>
 /// Tests whether an output’s datasource is reachable and usable by the Azure
 /// Stream Analytics service.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group that contains the resource. You can obtain
 /// this value from the Azure Resource Manager API or the portal.
 /// </param>
 /// <param name='jobName'>
 /// The name of the streaming job.
 /// </param>
 /// <param name='outputName'>
 /// The name of the output.
 /// </param>
 /// <param name='output'>
 /// If the output specified does not already exist, this parameter must contain
 /// the full output definition intended to be tested. If the output specified
 /// already exists, this parameter can be left null to test the existing output
 /// as is or if specified, the properties specified will overwrite the
 /// corresponding properties in the existing output (exactly like a PATCH
 /// operation) and the resulting output will be tested.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <ResourceTestStatus> BeginTestAsync(this IOutputsOperations operations, string resourceGroupName, string jobName, string outputName, Output output = default(Output), CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.BeginTestWithHttpMessagesAsync(resourceGroupName, jobName, outputName, output, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
Exemple #5
0
 /// <summary>
 /// Creates an output or replaces an already existing output under an existing
 /// streaming job.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='output'>
 /// The definition of the output that will be used to create a new output or
 /// replace the existing one under the streaming job.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group that contains the resource. You can obtain
 /// this value from the Azure Resource Manager API or the portal.
 /// </param>
 /// <param name='jobName'>
 /// The name of the streaming job.
 /// </param>
 /// <param name='outputName'>
 /// The name of the output.
 /// </param>
 /// <param name='ifMatch'>
 /// The ETag of the output. Omit this value to always overwrite the current
 /// output. Specify the last-seen ETag value to prevent accidentally
 /// overwritting concurrent changes.
 /// </param>
 /// <param name='ifNoneMatch'>
 /// Set to '*' to allow a new output to be created, but to prevent updating an
 /// existing output. Other values will result in a 412 Pre-condition Failed
 /// response.
 /// </param>
 public static Output CreateOrReplace(this IOutputsOperations operations, Output output, string resourceGroupName, string jobName, string outputName, string ifMatch = default(string), string ifNoneMatch = default(string))
 {
     return(operations.CreateOrReplaceAsync(output, resourceGroupName, jobName, outputName, ifMatch, ifNoneMatch).GetAwaiter().GetResult());
 }
Exemple #6
0
 /// <summary>
 /// Lists all of the outputs under the specified streaming job.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='nextPageLink'>
 /// The NextLink from the previous successful call to List operation.
 /// </param>
 public static IPage <Output> ListByStreamingJobNext(this IOutputsOperations operations, string nextPageLink)
 {
     return(operations.ListByStreamingJobNextAsync(nextPageLink).GetAwaiter().GetResult());
 }
Exemple #7
0
 /// <summary>
 /// Tests whether an output’s datasource is reachable and usable by the Azure
 /// Stream Analytics service.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group that contains the resource. You can obtain
 /// this value from the Azure Resource Manager API or the portal.
 /// </param>
 /// <param name='jobName'>
 /// The name of the streaming job.
 /// </param>
 /// <param name='outputName'>
 /// The name of the output.
 /// </param>
 /// <param name='output'>
 /// If the output specified does not already exist, this parameter must contain
 /// the full output definition intended to be tested. If the output specified
 /// already exists, this parameter can be left null to test the existing output
 /// as is or if specified, the properties specified will overwrite the
 /// corresponding properties in the existing output (exactly like a PATCH
 /// operation) and the resulting output will be tested.
 /// </param>
 public static ResourceTestStatus BeginTest(this IOutputsOperations operations, string resourceGroupName, string jobName, string outputName, Output output = default(Output))
 {
     return(operations.BeginTestAsync(resourceGroupName, jobName, outputName, output).GetAwaiter().GetResult());
 }
Exemple #8
0
 /// <summary>
 /// Lists all of the outputs under the specified streaming job.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group that contains the resource. You can obtain
 /// this value from the Azure Resource Manager API or the portal.
 /// </param>
 /// <param name='jobName'>
 /// The name of the streaming job.
 /// </param>
 /// <param name='select'>
 /// The $select OData query parameter. This is a comma-separated list of
 /// structural properties to include in the response, or “*” to include all
 /// properties. By default, all properties are returned except diagnostics.
 /// Currently only accepts '*' as a valid value.
 /// </param>
 public static IPage <Output> ListByStreamingJob(this IOutputsOperations operations, string resourceGroupName, string jobName, string select = default(string))
 {
     return(operations.ListByStreamingJobAsync(resourceGroupName, jobName, select).GetAwaiter().GetResult());
 }
Exemple #9
0
 /// <summary>
 /// Gets details about the specified output.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group that contains the resource. You can obtain
 /// this value from the Azure Resource Manager API or the portal.
 /// </param>
 /// <param name='jobName'>
 /// The name of the streaming job.
 /// </param>
 /// <param name='outputName'>
 /// The name of the output.
 /// </param>
 public static Output Get(this IOutputsOperations operations, string resourceGroupName, string jobName, string outputName)
 {
     return(operations.GetAsync(resourceGroupName, jobName, outputName).GetAwaiter().GetResult());
 }
Exemple #10
0
 /// <summary>
 /// Deletes an output from the streaming job.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group that contains the resource. You can obtain
 /// this value from the Azure Resource Manager API or the portal.
 /// </param>
 /// <param name='jobName'>
 /// The name of the streaming job.
 /// </param>
 /// <param name='outputName'>
 /// The name of the output.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task DeleteAsync(this IOutputsOperations operations, string resourceGroupName, string jobName, string outputName, CancellationToken cancellationToken = default(CancellationToken))
 {
     (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, jobName, outputName, null, cancellationToken).ConfigureAwait(false)).Dispose();
 }
Exemple #11
0
 /// <summary>
 /// Deletes an output from the streaming job.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group that contains the resource. You can obtain
 /// this value from the Azure Resource Manager API or the portal.
 /// </param>
 /// <param name='jobName'>
 /// The name of the streaming job.
 /// </param>
 /// <param name='outputName'>
 /// The name of the output.
 /// </param>
 public static void Delete(this IOutputsOperations operations, string resourceGroupName, string jobName, string outputName)
 {
     operations.DeleteAsync(resourceGroupName, jobName, outputName).GetAwaiter().GetResult();
 }