OutputsOperationsExtensions.CreateOrReplace Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates an output or replaces an already existing output under an existing streaming job.
public static Microsoft.Azure.Management.StreamAnalytics.Models.Output CreateOrReplace (this Microsoft.Azure.Management.StreamAnalytics.IOutputsOperations operations, Microsoft.Azure.Management.StreamAnalytics.Models.Output output, string resourceGroupName, string jobName, string outputName, string ifMatch = default, string ifNoneMatch = default);
static member CreateOrReplace : Microsoft.Azure.Management.StreamAnalytics.IOutputsOperations * Microsoft.Azure.Management.StreamAnalytics.Models.Output * string * string * string * string * string -> Microsoft.Azure.Management.StreamAnalytics.Models.Output
<Extension()>
Public Function CreateOrReplace (operations As IOutputsOperations, output As Output, resourceGroupName As String, jobName As String, outputName As String, Optional ifMatch As String = Nothing, Optional ifNoneMatch As String = Nothing) As Output
Parameters
- operations
- IOutputsOperations
The operations group for this extension method.
- output
- Output
The definition of the output that will be used to create a new output or replace the existing one under the streaming job.
- resourceGroupName
- String
The name of the resource group. The name is case insensitive.
- jobName
- String
The name of the streaming job.
- outputName
- String
The name of the output.
- ifMatch
- String
The ETag of the output. Omit this value to always overwrite the current output. Specify the last-seen ETag value to prevent accidentally overwriting concurrent changes.
- ifNoneMatch
- String
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.
Returns
Applies to
Azure SDK for .NET