28 references to KnownProperties
Aspire.Hosting (28)
ApplicationModel\CustomResourceKnownProperties.cs (1)
16public static string Source { get; } = KnownProperties.Resource.Source;
Dashboard\ResourceSnapshot.cs (10)
38yield return (KnownProperties.Resource.Uid, Value.ForString(Uid), IsSensitive: false); 39yield return (KnownProperties.Resource.Name, Value.ForString(Name), IsSensitive: false); 40yield return (KnownProperties.Resource.Type, Value.ForString(ResourceType), IsSensitive: false); 41yield return (KnownProperties.Resource.DisplayName, Value.ForString(DisplayName), IsSensitive: false); 42yield return (KnownProperties.Resource.State, State is null ? Value.ForNull() : Value.ForString(State), IsSensitive: false); 43yield return (KnownProperties.Resource.ExitCode, ExitCode is null ? Value.ForNull() : Value.ForString(ExitCode.Value.ToString("D", CultureInfo.InvariantCulture)), IsSensitive: false); 44yield return (KnownProperties.Resource.CreateTime, CreationTimeStamp is null ? Value.ForNull() : Value.ForString(CreationTimeStamp.Value.ToString("O")), IsSensitive: false); 45yield return (KnownProperties.Resource.StartTime, StartTimeStamp is null ? Value.ForNull() : Value.ForString(StartTimeStamp.Value.ToString("O")), IsSensitive: false); 46yield return (KnownProperties.Resource.StopTime, StopTimeStamp is null ? Value.ForNull() : Value.ForString(StopTimeStamp.Value.ToString("O")), IsSensitive: false); 47yield return (KnownProperties.Resource.HealthState, CustomResourceSnapshot.ComputeHealthStatus(HealthReports, State) is not { } healthStatus ? Value.ForNull() : Value.ForString(healthStatus.ToString()), IsSensitive: false);
Dcp\ApplicationExecutor.cs (17)
221Properties = s.Properties.SetResourceProperty(KnownProperties.Resource.ParentName, parentName) 631new(KnownProperties.Container.Image, container.Spec.Image), 632new(KnownProperties.Container.Id, containerId), 633new(KnownProperties.Container.Command, container.Spec.Command), 634new(KnownProperties.Container.Args, container.Status?.EffectiveArgs ?? []) { IsSensitive = true }, 635new(KnownProperties.Container.Ports, GetPorts()), 636new(KnownProperties.Container.Lifetime, GetContainerLifetime()), 702new(KnownProperties.Executable.Path, executable.Spec.ExecutablePath), 703new(KnownProperties.Executable.WorkDir, executable.Spec.WorkingDirectory), 704new(KnownProperties.Executable.Args, executable.Status?.EffectiveArgs ?? []) { IsSensitive = true }, 705new(KnownProperties.Executable.Pid, executable.Status?.ProcessId), 706new(KnownProperties.Project.Path, projectPath) 723new(KnownProperties.Executable.Path, executable.Spec.ExecutablePath), 724new(KnownProperties.Executable.WorkDir, executable.Spec.WorkingDirectory), 725new(KnownProperties.Executable.Args, executable.Status?.EffectiveArgs ?? []) { IsSensitive = true }, 726new(KnownProperties.Executable.Pid, executable.Status?.ProcessId) 1549new(KnownProperties.Container.Image, cr.ModelResource.TryGetContainerImageName(out var imageName) ? imageName : ""),