-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added new customization file and changed swagger link (#17863)
- Loading branch information
Showing
6 changed files
with
52 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
...diaservices/Azure.Media.Analytics.Edge/src/Customization/MediaGraphParameterDefinition.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
// <auto-generated/> | ||
|
||
#nullable disable | ||
|
||
using System; | ||
|
||
namespace Azure.Media.Analytics.Edge.Models | ||
{ | ||
public partial class MediaGraphParameterDefinition | ||
{ | ||
/// <summary> Initializes a new instance of MediaGraphParameterDefinition. </summary> | ||
/// <param name="name"> The name of the parameter defined in the media graph topology. </param> | ||
/// <param name="value"> The value to supply for the named parameter defined in the media graph topology. </param> | ||
/// <exception cref="ArgumentNullException"> <paramref name="name"/> or <paramref name="value"/> is null. </exception> | ||
public MediaGraphParameterDefinition(string name, string value) | ||
{ | ||
if (name == null) | ||
{ | ||
throw new ArgumentNullException(nameof(name)); | ||
} | ||
|
||
Name = name; | ||
Value = value; | ||
} | ||
} | ||
} |
18 changes: 0 additions & 18 deletions
18
...services/Azure.Media.Analytics.Edge/src/Generated/Models/MediaGraphParameterDefinition.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
29 changes: 19 additions & 10 deletions
29
....Media.Analytics.Edge/src/Generated/Models/MediaGraphSignalGateProcessor.Serialization.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
22 changes: 2 additions & 20 deletions
22
...services/Azure.Media.Analytics.Edge/src/Generated/Models/MediaGraphSignalGateProcessor.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters