forked from Azure/azure-sdk-for-net
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generated from aaa4c2b2f3e69c7ca8cc3b25f87f91d67da846cf
location is required param
- Loading branch information
SDK Automation
committed
Dec 23, 2019
1 parent
614c238
commit a19dc00
Showing
17 changed files
with
913 additions
and
39 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
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
89 changes: 89 additions & 0 deletions
89
...ubs/Microsoft.Azure.Management.NotificationHubs/src/Generated/Models/DebugSendResponse.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,89 @@ | ||
// <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.Management.NotificationHubs.Models | ||
{ | ||
using Microsoft.Rest; | ||
using Microsoft.Rest.Serialization; | ||
using Newtonsoft.Json; | ||
using System.Collections; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
|
||
/// <summary> | ||
/// Description of a NotificationHub Resource. | ||
/// </summary> | ||
[Rest.Serialization.JsonTransformation] | ||
public partial class DebugSendResponse : Resource | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the DebugSendResponse class. | ||
/// </summary> | ||
public DebugSendResponse() | ||
{ | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// Initializes a new instance of the DebugSendResponse class. | ||
/// </summary> | ||
/// <param name="id">Resource Id</param> | ||
/// <param name="name">Resource name</param> | ||
/// <param name="type">Resource type</param> | ||
/// <param name="location">Resource location</param> | ||
/// <param name="tags">Resource tags</param> | ||
/// <param name="sku">The sku of the created namespace</param> | ||
/// <param name="success">successful send</param> | ||
/// <param name="failure">send failure</param> | ||
/// <param name="results">actual failure description</param> | ||
public DebugSendResponse(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary<string, string> tags = default(IDictionary<string, string>), Sku sku = default(Sku), double? success = default(double?), double? failure = default(double?), object results = default(object)) | ||
: base(id, name, type, location, tags, sku) | ||
{ | ||
Success = success; | ||
Failure = failure; | ||
Results = results; | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// An initialization method that performs custom operations like setting defaults | ||
/// </summary> | ||
partial void CustomInit(); | ||
|
||
/// <summary> | ||
/// Gets or sets successful send | ||
/// </summary> | ||
[JsonProperty(PropertyName = "properties.success")] | ||
public double? Success { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets send failure | ||
/// </summary> | ||
[JsonProperty(PropertyName = "properties.failure")] | ||
public double? Failure { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets actual failure description | ||
/// </summary> | ||
[JsonProperty(PropertyName = "properties.results")] | ||
public object Results { get; set; } | ||
|
||
/// <summary> | ||
/// Validate the object. | ||
/// </summary> | ||
/// <exception cref="ValidationException"> | ||
/// Thrown if validation fails | ||
/// </exception> | ||
public override void Validate() | ||
{ | ||
base.Validate(); | ||
} | ||
} | ||
} |
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.