forked from Azure/azure-sdk-for-net
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generated from [PR](Azure/azure-rest-api-specs#3145).
- Loading branch information
Showing
19 changed files
with
538 additions
and
246 deletions.
There are no files selected for viewing
176 changes: 133 additions & 43 deletions
176
...iveServices/dataPlane/Vision/ComputerVision/ComputerVision/Generated/ComputerVisionAPI.cs
Large diffs are not rendered by default.
Oops, something went wrong.
110 changes: 75 additions & 35 deletions
110
...s/dataPlane/Vision/ComputerVision/ComputerVision/Generated/ComputerVisionAPIExtensions.cs
Large diffs are not rendered by default.
Oops, something went wrong.
106 changes: 77 additions & 29 deletions
106
...veServices/dataPlane/Vision/ComputerVision/ComputerVision/Generated/IComputerVisionAPI.cs
Large diffs are not rendered by default.
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
65 changes: 65 additions & 0 deletions
65
...vices/dataPlane/Vision/ComputerVision/ComputerVision/Generated/Models/CelebrityResults.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,65 @@ | ||
// <auto-generated> | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. See License.txt in the project root for | ||
// license information. | ||
// | ||
// Code generated by Microsoft (R) AutoRest Code Generator. | ||
// Changes may cause incorrect behavior and will be lost if the code is | ||
// regenerated. | ||
// </auto-generated> | ||
|
||
namespace Microsoft.Azure.CognitiveServices.Vision.ComputerVision.Models | ||
{ | ||
using Newtonsoft.Json; | ||
using System.Collections; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
|
||
/// <summary> | ||
/// List of celebrities recognized in the image. | ||
/// </summary> | ||
public partial class CelebrityResults | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the CelebrityResults class. | ||
/// </summary> | ||
public CelebrityResults() | ||
{ | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// Initializes a new instance of the CelebrityResults class. | ||
/// </summary> | ||
/// <param name="requestId">Id of the REST API request.</param> | ||
public CelebrityResults(IList<CelebritiesModel> celebrities = default(IList<CelebritiesModel>), string requestId = default(string), ImageMetadata metadata = default(ImageMetadata)) | ||
{ | ||
Celebrities = celebrities; | ||
RequestId = requestId; | ||
Metadata = metadata; | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// An initialization method that performs custom operations like setting defaults | ||
/// </summary> | ||
partial void CustomInit(); | ||
|
||
/// <summary> | ||
/// </summary> | ||
[JsonProperty(PropertyName = "celebrities")] | ||
public IList<CelebritiesModel> Celebrities { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets id of the REST API request. | ||
/// </summary> | ||
[JsonProperty(PropertyName = "requestId")] | ||
public string RequestId { get; set; } | ||
|
||
/// <summary> | ||
/// </summary> | ||
[JsonProperty(PropertyName = "metadata")] | ||
public ImageMetadata Metadata { get; set; } | ||
|
||
} | ||
} |
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
60 changes: 0 additions & 60 deletions
60
...eServices/dataPlane/Vision/ComputerVision/ComputerVision/Generated/Models/DomainModels.cs
This file was deleted.
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
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
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
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
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
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
Oops, something went wrong.