mirror of https://github.com/pulumi/pulumi.git
55 lines
1.4 KiB
C#
55 lines
1.4 KiB
C#
// Copyright 2016-2020, Pulumi Corporation
|
|
|
|
using System.Collections.Generic;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace Pulumi
|
|
{
|
|
internal class InlineDeploymentSettings
|
|
{
|
|
public ILogger? Logger { get; }
|
|
|
|
public string EngineAddr { get; }
|
|
|
|
public string MonitorAddr { get; }
|
|
|
|
public IDictionary<string, string> Config { get; }
|
|
|
|
public IEnumerable<string>? ConfigSecretKeys { get; }
|
|
|
|
public string? Organization { get; }
|
|
|
|
public string Project { get; }
|
|
|
|
public string Stack { get; }
|
|
|
|
public int Parallel { get; }
|
|
|
|
public bool IsDryRun { get; }
|
|
|
|
public InlineDeploymentSettings(
|
|
ILogger? logger,
|
|
string engineAddr,
|
|
string monitorAddr,
|
|
IDictionary<string, string> config,
|
|
IEnumerable<string>? configSecretKeys,
|
|
string? organization,
|
|
string project,
|
|
string stack,
|
|
int parallel,
|
|
bool isDryRun)
|
|
{
|
|
Logger = logger;
|
|
EngineAddr = engineAddr;
|
|
MonitorAddr = monitorAddr;
|
|
Config = config;
|
|
ConfigSecretKeys = configSecretKeys;
|
|
Organization = organization;
|
|
Project = project;
|
|
Stack = stack;
|
|
Parallel = parallel;
|
|
IsDryRun = isDryRun;
|
|
}
|
|
}
|
|
}
|