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 ebaf2364830101c3090ac47cc3fc1c34dd5afe7b
Update to satisify avocado
- Loading branch information
SDK Automation
committed
Dec 4, 2019
1 parent
ae59391
commit d3eb338
Showing
7 changed files
with
708 additions
and
61 deletions.
There are no files selected for viewing
401 changes: 379 additions & 22 deletions
401
...ecuritycenter/Microsoft.Azure.Management.SecurityCenter/src/Generated/AlertsOperations.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
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
54 changes: 54 additions & 0 deletions
54
sdk/securitycenter/Microsoft.Azure.Management.SecurityCenter/src/Generated/Models/ETag.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,54 @@ | ||
// <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.Security.Models | ||
{ | ||
using Newtonsoft.Json; | ||
using System.Linq; | ||
|
||
/// <summary> | ||
/// Entity tag is used for comparing two or more entities from the same | ||
/// requested resource. | ||
/// </summary> | ||
public partial class ETag | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the ETag class. | ||
/// </summary> | ||
public ETag() | ||
{ | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// Initializes a new instance of the ETag class. | ||
/// </summary> | ||
/// <param name="etag">Entity tag is used for comparing two or more | ||
/// entities from the same requested resource.</param> | ||
public ETag(string etag = default(string)) | ||
{ | ||
Etag = etag; | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// An initialization method that performs custom operations like setting defaults | ||
/// </summary> | ||
partial void CustomInit(); | ||
|
||
/// <summary> | ||
/// Gets or sets entity tag is used for comparing two or more entities | ||
/// from the same requested resource. | ||
/// </summary> | ||
[JsonProperty(PropertyName = "etag")] | ||
public string Etag { get; set; } | ||
|
||
} | ||
} |
54 changes: 54 additions & 0 deletions
54
sdk/securitycenter/Microsoft.Azure.Management.SecurityCenter/src/Generated/Models/Tags.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,54 @@ | ||
// <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.Security.Models | ||
{ | ||
using Newtonsoft.Json; | ||
using System.Collections; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
|
||
/// <summary> | ||
/// A list of key value pairs that describe the resource. | ||
/// </summary> | ||
public partial class Tags | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the Tags class. | ||
/// </summary> | ||
public Tags() | ||
{ | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// Initializes a new instance of the Tags class. | ||
/// </summary> | ||
/// <param name="tagsProperty">A list of key value pairs that describe | ||
/// the resource.</param> | ||
public Tags(IDictionary<string, string> tagsProperty = default(IDictionary<string, string>)) | ||
{ | ||
TagsProperty = tagsProperty; | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// An initialization method that performs custom operations like setting defaults | ||
/// </summary> | ||
partial void CustomInit(); | ||
|
||
/// <summary> | ||
/// Gets or sets a list of key value pairs that describe the resource. | ||
/// </summary> | ||
[JsonProperty(PropertyName = "tags")] | ||
public IDictionary<string, string> TagsProperty { get; set; } | ||
|
||
} | ||
} |
Oops, something went wrong.