-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #247 from aws/dev
Release 0.11
- Loading branch information
Showing
68 changed files
with
1,417 additions
and
210 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
19 changes: 19 additions & 0 deletions
19
src/AWS.Deploy.CLI/Commands/CommandHandlerInput/DeleteCommandHandlerInput.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,19 @@ | ||
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Threading.Tasks; | ||
|
||
namespace AWS.Deploy.CLI.Commands.CommandHandlerInput | ||
{ | ||
public class DeleteCommandHandlerInput | ||
{ | ||
public string? Profile { get; set; } | ||
public string? Region { get; set; } | ||
public string? ProjectPath { get; set; } | ||
public string? DeploymentName { get; set; } | ||
public bool Diagnostics { get; set; } | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
src/AWS.Deploy.CLI/Commands/CommandHandlerInput/DeployCommandHandlerInput.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,22 @@ | ||
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Threading.Tasks; | ||
|
||
namespace AWS.Deploy.CLI.Commands.CommandHandlerInput | ||
{ | ||
public class DeployCommandHandlerInput | ||
{ | ||
public string? Profile { get; set; } | ||
public string? Region { get; set; } | ||
public string? ProjectPath { get; set; } | ||
public string? StackName { get; set; } | ||
public string? Apply { get; set; } | ||
public bool Diagnostics { get; set; } | ||
public bool Silent { get; set; } | ||
public bool SaveCdkProject { get; set; } | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
src/AWS.Deploy.CLI/Commands/CommandHandlerInput/ListCommandHandlerInput.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,18 @@ | ||
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Threading.Tasks; | ||
|
||
namespace AWS.Deploy.CLI.Commands.CommandHandlerInput | ||
{ | ||
public class ListCommandHandlerInput | ||
{ | ||
public string? Profile { get; set; } | ||
public string? Region { get; set; } | ||
public string? ProjectPath { get; set; } | ||
public bool Diagnostics { get; set; } | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
src/AWS.Deploy.CLI/Commands/CommandHandlerInput/ServerModeCommandHandlerInput.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,18 @@ | ||
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Threading.Tasks; | ||
|
||
namespace AWS.Deploy.CLI.Commands.CommandHandlerInput | ||
{ | ||
public class ServerModeCommandHandlerInput | ||
{ | ||
public int Port { get; set; } | ||
public int ParentPid { get; set; } | ||
public bool EncryptionKeyInfoStdIn { get; set; } | ||
public bool Diagnostics { get; set; } | ||
} | ||
} |
Oops, something went wrong.