IExecutionConfigurationResult Properties
Interface Properties 7 members
Configuration (arguments and environment variables) to apply to a specific resource.
AdditionalConfigurationData Section titled AdditionalConfigurationData abstract IEnumerable<IExecutionConfigurationData> Gets additional configuration data associated with the resource configuration.
public abstract IEnumerable<IExecutionConfigurationData> AdditionalConfigurationData { get; } Gets the processed arguments to apply to the resource.
public abstract IEnumerable<(string Value, bool IsSensitive)> Arguments { get; }ArgumentsWithUnprocessed Section titled ArgumentsWithUnprocessed abstract IEnumerable<(object Unprocessed, string Processed, bool IsSensitive)> Gets the arguments for the resource with the orgiginal unprocessed values included.
public abstract IEnumerable<(object Unprocessed, string Processed, bool IsSensitive)> ArgumentsWithUnprocessed { get; }EnvironmentVariables Section titled EnvironmentVariables abstract IEnumerable<KeyValuePair<string, string>> Gets the processed environment variables to apply to the resource.
public abstract IEnumerable<KeyValuePair<string, string>> EnvironmentVariables { get; }EnvironmentVariablesWithUnprocessed Section titled EnvironmentVariablesWithUnprocessed abstract IEnumerable<KeyValuePair<string, (object Unprocessed, string Processed)>> Gets the environment variables to apply to the resource with the original unprocessed values included.
public abstract IEnumerable<KeyValuePair<string, (object Unprocessed, string Processed)>> EnvironmentVariablesWithUnprocessed { get; } Gets any exception that occurred while building the configuration.
public abstract Exception? Exception { get; } Gets the set of references such as
IValueProvider or IManifestExpressionProvider that were used to produce this configuration. public abstract IEnumerable<object> References { get; }