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.
.NET SDK Resource Provider:'IotCentral'
REST Spec PR 'Azure/azure-rest-api-specs#5495' REST Spec PR Author 'kawayiboy' REST Spec PR Last commit
- Loading branch information
Showing
2 changed files
with
94 additions
and
6 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
92 changes: 92 additions & 0 deletions
92
...ent.IotCentral/IotCentral/Management.IotCentral/Generated/Models/AppTemplateProperties.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,92 @@ | ||
// <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.IotCentral.Models | ||
{ | ||
using Newtonsoft.Json; | ||
using System.Linq; | ||
|
||
/// <summary> | ||
/// IoT Central Application Template extra properties. | ||
/// </summary> | ||
public partial class AppTemplateProperties | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the AppTemplateProperties class. | ||
/// </summary> | ||
public AppTemplateProperties() | ||
{ | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// Initializes a new instance of the AppTemplateProperties class. | ||
/// </summary> | ||
/// <param name="manifestId">The ID of the template.</param> | ||
/// <param name="manifestVersion">The version of the template.</param> | ||
/// <param name="appTemplateName">The name of the template.</param> | ||
/// <param name="title">The title of the template.</param> | ||
/// <param name="order">The order of the template in the templates | ||
/// list.</param> | ||
/// <param name="description">The description of the template.</param> | ||
public AppTemplateProperties(string manifestId = default(string), string manifestVersion = default(string), string appTemplateName = default(string), string title = default(string), double? order = default(double?), string description = default(string)) | ||
{ | ||
ManifestId = manifestId; | ||
ManifestVersion = manifestVersion; | ||
AppTemplateName = appTemplateName; | ||
Title = title; | ||
Order = order; | ||
Description = description; | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// An initialization method that performs custom operations like setting defaults | ||
/// </summary> | ||
partial void CustomInit(); | ||
|
||
/// <summary> | ||
/// Gets the ID of the template. | ||
/// </summary> | ||
[JsonProperty(PropertyName = "manifestId")] | ||
public string ManifestId { get; private set; } | ||
|
||
/// <summary> | ||
/// Gets the version of the template. | ||
/// </summary> | ||
[JsonProperty(PropertyName = "manifestVersion")] | ||
public string ManifestVersion { get; private set; } | ||
|
||
/// <summary> | ||
/// Gets the name of the template. | ||
/// </summary> | ||
[JsonProperty(PropertyName = "appTemplateName")] | ||
public string AppTemplateName { get; private set; } | ||
|
||
/// <summary> | ||
/// Gets the title of the template. | ||
/// </summary> | ||
[JsonProperty(PropertyName = "title")] | ||
public string Title { get; private set; } | ||
|
||
/// <summary> | ||
/// Gets the order of the template in the templates list. | ||
/// </summary> | ||
[JsonProperty(PropertyName = "order")] | ||
public double? Order { get; private set; } | ||
|
||
/// <summary> | ||
/// Gets the description of the template. | ||
/// </summary> | ||
[JsonProperty(PropertyName = "description")] | ||
public string Description { get; private set; } | ||
|
||
} | ||
} |