-
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 #251 from aws/asmarp/set-config-settings
feat: add SetConfigSettings API to set configuration settings
- Loading branch information
Showing
4 changed files
with
185 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
12 changes: 12 additions & 0 deletions
12
src/AWS.Deploy.CLI/ServerMode/Models/ApplyConfigSettingsInput.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,12 @@ | ||
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\r | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
using System.Collections.Generic; | ||
|
||
namespace AWS.Deploy.CLI.ServerMode.Models | ||
{ | ||
public class ApplyConfigSettingsInput | ||
{ | ||
public Dictionary<string, string> UpdatedSettings { get; set; } = new Dictionary<string, string>(); | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
src/AWS.Deploy.CLI/ServerMode/Models/ApplyConfigSettingsOutput.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,12 @@ | ||
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\r | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
using System.Collections.Generic; | ||
|
||
namespace AWS.Deploy.CLI.ServerMode.Models | ||
{ | ||
public class ApplyConfigSettingsOutput | ||
{ | ||
public IDictionary<string, string> FailedConfigUpdates { get; set; } = new Dictionary<string, string>(); | ||
} | ||
} |
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