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
- Loading branch information
1 parent
10561f4
commit d40a88f
Showing
21 changed files
with
471 additions
and
226 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
48 changes: 48 additions & 0 deletions
48
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,48 @@ | ||
// 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. | ||
/// </summary> | ||
public string SourceContainerName { get; set; } | ||
|
||
/// <summary> | ||
/// Primary archive destination. | ||
/// </summary> | ||
public string PrimaryDestination { get; set; } | ||
|
||
/// <summary> | ||
/// Secondary archive destination. | ||
/// </summary> | ||
public string SecondaryDestination { get; set; } | ||
|
||
/// <summary> | ||
/// Source storage container name. | ||
/// </summary> | ||
public string DestinationContainerName { get; set; } | ||
|
||
/// <summary> | ||
/// Cursor blob name. | ||
/// </summary> | ||
public string CursorBlob { get; set; } | ||
|
||
/// <summary> | ||
/// Sleep interval between job run iterations. | ||
/// </summary> | ||
public int Sleep { get; set; } | ||
|
||
/// <summary> | ||
/// Application insights instrumentation key. | ||
/// </summary> | ||
public string InstrumentationKey { get; set; } | ||
} | ||
} |
Oops, something went wrong.