-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add environment add and remove commands to automation api (#210)
* Add environment add and remove commands to automation api * Add changelog * fix lint errors * Update sdk/Pulumi.Automation.Tests/MoolumiFactAttribute.cs Co-authored-by: Justin Van Patten <[email protected]> --------- Co-authored-by: Justin Van Patten <[email protected]>
- Loading branch information
1 parent
e2b02a3
commit f1feb51
Showing
8 changed files
with
659 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
component: sdk | ||
kind: Improvements | ||
body: Add environment add and remove commands to automation api | ||
time: 2023-12-13T17:49:09.172346903-08:00 | ||
custom: | ||
PR: "210" |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// Copyright 2016-2023, Pulumi Corporation | ||
|
||
using System; | ||
using Xunit; | ||
using static Pulumi.Automation.Tests.Utility; | ||
|
||
namespace Pulumi.Automation.Tests | ||
{ | ||
/// <summary> | ||
/// Skip a test if test org is not moolumi. | ||
/// </summary> | ||
public sealed class MoolumiFactAttribute : FactAttribute | ||
{ | ||
public MoolumiFactAttribute() | ||
{ | ||
var testOrg = GetTestOrg(); | ||
if (testOrg != "moolumi") | ||
{ | ||
Skip = "Test org is not moolumi"; | ||
} | ||
} | ||
} | ||
} |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Oops, something went wrong.