-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathOptions.cs
More file actions
25 lines (19 loc) · 992 Bytes
/
Options.cs
File metadata and controls
25 lines (19 loc) · 992 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System.Diagnostics.CodeAnalysis;
using CommandLine;
namespace Aliencube.AzureMessaging.SchemaRegistry.ConsoleApp
{
[ExcludeFromCodeCoverage]
public class Options
{
[Option("blob-connectionstring", Required = true, HelpText = "Connection string for Azure Blob Storage")]
public virtual string BlobConnectionString { get; set; }
[Option("blob-baseuri", Required = true, HelpText = "Base URI of Azure Blob Storage")]
public virtual string BlobBaseUri { get; set; }
[Option("blob-container", Required = true, HelpText = "Container of Azure Blob Storage")]
public virtual string Container { get; set; }
[Option("file-baselocation", Required = true, HelpText = "Base location of FileSystemSchemaSink")]
public virtual string FileBaseLocation { get; set; }
[Option("file-path", Required = true, HelpText = "Path of the file to be produced")]
public virtual string Filepath { get; set; }
}
}