This repository has been archived by the owner on Jul 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move JsonConfigurationJob to Jobs.Common / Migrate ArchivePackages to…
… JsonConfig (#515)
- Loading branch information
1 parent
6c451f8
commit 8b54901
Showing
22 changed files
with
473 additions
and
247 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
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
38 changes: 38 additions & 0 deletions
38
src/ArchivePackages/Configuration/InitializationConfiguration.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,38 @@ | ||
// Copyright (c) .NET Foundation. All rights reserved. | ||
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. | ||
|
||
namespace ArchivePackages | ||
{ | ||
public class InitializationConfiguration | ||
{ | ||
/// <summary> | ||
/// Source storage account. | ||
/// </summary> | ||
public string Source { get; set; } | ||
|
||
/// <summary> | ||
/// Source storage container name (defaults to "packages"). | ||
/// </summary> | ||
public string SourceContainerName { get; set; } | ||
|
||
/// <summary> | ||
/// Primary archive destination. | ||
/// </summary> | ||
public string PrimaryDestination { get; set; } | ||
|
||
/// <summary> | ||
/// Secondary archive destination (optional). | ||
/// </summary> | ||
public string SecondaryDestination { get; set; } | ||
|
||
/// <summary> | ||
/// Destination storage container name (defaults to "ng-backups"). | ||
/// </summary> | ||
public string DestinationContainerName { get; set; } | ||
|
||
/// <summary> | ||
/// Cursor blob name (defaults to "cursor.json"). | ||
/// </summary> | ||
public string CursorBlob { get; set; } | ||
} | ||
} |
Oops, something went wrong.