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 ba2bfe74bad69d5419a8966d712ebb7fbee44941 (#170)
removed pageable
- Loading branch information
1 parent
1c5d546
commit bfe2121
Showing
5 changed files
with
59 additions
and
19 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
53 changes: 53 additions & 0 deletions
53
sdk/attestation/Microsoft.Azure.Management.Attestation/src/Generated/Models/OperationList.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,53 @@ | ||
// <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.Attestation.Models | ||
{ | ||
using Newtonsoft.Json; | ||
using System.Collections; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
|
||
/// <summary> | ||
/// List of supported operations. | ||
/// </summary> | ||
public partial class OperationList | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the OperationList class. | ||
/// </summary> | ||
public OperationList() | ||
{ | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// Initializes a new instance of the OperationList class. | ||
/// </summary> | ||
/// <param name="value">List of supported operations.</param> | ||
public OperationList(IList<OperationsDefinition> value = default(IList<OperationsDefinition>)) | ||
{ | ||
Value = value; | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// An initialization method that performs custom operations like setting defaults | ||
/// </summary> | ||
partial void CustomInit(); | ||
|
||
/// <summary> | ||
/// Gets or sets list of supported operations. | ||
/// </summary> | ||
[JsonProperty(PropertyName = "value")] | ||
public IList<OperationsDefinition> Value { 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,16 +24,5 @@ public static IEnumerable<Tuple<string, string, string>> ApiInfo_AttestationMana | |
}.AsEnumerable(); | ||
} | ||
} | ||
// BEGIN: Code Generation Metadata Section | ||
public static readonly String AutoRestVersion = "latest"; | ||
public static readonly String AutoRestBootStrapperVersion = "[email protected]"; | ||
public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/attestation/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=C:\\azure-sdk-for-net\\sdk"; | ||
public static readonly String GithubForkName = "Azure"; | ||
public static readonly String GithubBranchName = "master"; | ||
public static readonly String GithubCommidId = "76c353d92b8037fe1e02c36deeb06d78d284e5d7"; | ||
public static readonly String CodeGenerationErrors = ""; | ||
public static readonly String GithubRepoName = "azure-rest-api-specs"; | ||
// END: Code Generation Metadata Section | ||
} | ||
} | ||
|