-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deployment stacks sdk introduction (#44405)
- Loading branch information
1 parent
316f983
commit 35b521c
Showing
70 changed files
with
10,342 additions
and
101 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
406 changes: 406 additions & 0 deletions
406
...ces/Azure.ResourceManager.Resources/api/Azure.ResourceManager.Resources.netstandard2.0.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
2 changes: 1 addition & 1 deletion
2
...ure.ResourceManager.Resources/samples/Generated/Samples/Sample_ArmDeploymentCollection.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
12 changes: 6 additions & 6 deletions
12
...Azure.ResourceManager.Resources/samples/Generated/Samples/Sample_ArmDeploymentResource.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
sdk/resources/Azure.ResourceManager.Resources/src/Azure.ResourceManager.Resources.csproj
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
17 changes: 17 additions & 0 deletions
17
sdk/resources/Azure.ResourceManager.Resources/src/Custom/DeploymentStackData.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,17 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
#nullable disable | ||
|
||
using Azure.ResourceManager.Models; | ||
|
||
namespace Azure.ResourceManager.Resources | ||
{ | ||
/// <summary> | ||
/// A class representing the ArmDeploymentStack data model. | ||
/// Deployment stack object. | ||
/// </summary> | ||
public partial class DeploymentStackData : ResourceData | ||
{ | ||
} | ||
} |
20 changes: 10 additions & 10 deletions
20
sdk/resources/Azure.ResourceManager.Resources/src/Generated/ArmDeploymentCollection.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.