Exemple #1
0
 public override IEnumerable <Argument> GetCliArguments() =>
 base.GetCliArguments()
 .Concat(
     new Argument[]
 {
     new Argument <string>(nameof(WaitForMcrImageIngestionOptions.ImageInfoPath),
                           "Path to image info file")
 }
     )
 .Concat(ServicePrincipalOptions.GetCliArguments());
 public override IEnumerable <Argument> GetCliArguments() =>
 base.GetCliArguments()
 .Concat(
     new Argument[]
 {
     new Argument <string>(nameof(WaitForMcrDocIngestionOptions.CommitDigest),
                           "Git commit digest of the readme changes")
 }
     )
 .Concat(ServicePrincipalOptions.GetCliArguments());
Exemple #3
0
 public override IEnumerable <Argument> GetCliArguments() =>
 base.GetCliArguments()
 .Concat(_manifestFilterOptionsBuilder.GetCliArguments())
 .Concat(ServicePrincipalOptions.GetCliArguments())
 .Concat(
     new Argument[]
 {
     new Argument <string>(nameof(CopyImagesOptions.Subscription),
                           "Azure subscription to operate on"),
     new Argument <string>(nameof(CopyImagesOptions.ResourceGroup),
                           "Azure resource group to operate on"),
 });
 public override IEnumerable <Argument> GetCliArguments() =>
 base.GetCliArguments()
 .Concat(
     new Argument[]
 {
     new Argument <string>(nameof(CleanAcrImagesOptions.RepoName),
                           "Name of repo to target (wildcard chars * and ? supported)"),
 })
 .Concat(ServicePrincipalOptions.GetCliArguments())
 .Concat(
     new Argument[]
 {
     new Argument <string>(nameof(CleanAcrImagesOptions.Subscription),
                           "Azure subscription to operate on"),
     new Argument <string>(nameof(CleanAcrImagesOptions.ResourceGroup),
                           "Azure resource group to operate on"),
     new Argument <string>(nameof(CleanAcrImagesOptions.RegistryName),
                           "Name of the registry"),
 });