-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
MachineLearningFlowModelJobOutput.cs
38 lines (32 loc) · 1.47 KB
/
MachineLearningFlowModelJobOutput.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using System;
namespace Azure.ResourceManager.MachineLearning.Models
{
/// <summary> The MachineLearningFlowModelJobOutput. </summary>
public partial class MachineLearningFlowModelJobOutput : MachineLearningJobOutput
{
/// <summary> Initializes a new instance of MachineLearningFlowModelJobOutput. </summary>
public MachineLearningFlowModelJobOutput()
{
JobOutputType = JobOutputType.MlflowModel;
}
/// <summary> Initializes a new instance of MachineLearningFlowModelJobOutput. </summary>
/// <param name="description"> Description for the output. </param>
/// <param name="jobOutputType"> [Required] Specifies the type of job. </param>
/// <param name="mode"> Output Asset Delivery Mode. </param>
/// <param name="uri"> Output Asset URI. </param>
internal MachineLearningFlowModelJobOutput(string description, JobOutputType jobOutputType, MachineLearningOutputDeliveryMode? mode, Uri uri) : base(description, jobOutputType)
{
Mode = mode;
Uri = uri;
JobOutputType = jobOutputType;
}
/// <summary> Output Asset Delivery Mode. </summary>
public MachineLearningOutputDeliveryMode? Mode { get; set; }
/// <summary> Output Asset URI. </summary>
public Uri Uri { get; set; }
}
}