14 references to RadiusSecretStoreScope
Aspire.Hosting.Radius (13)
Publishing\RadiusInfrastructureBuilder.cs (4)
593
if (store.Scope ==
RadiusSecretStoreScope
.Application && legacyAppConstruct is not null)
1927
(s.Scope ==
RadiusSecretStoreScope
.Environment && ReferenceEquals(s.OwningEnvironment, _environment))
1928
|| s.Scope ==
RadiusSecretStoreScope
.Application);
1955
if (store.Scope ==
RadiusSecretStoreScope
.Application && legacyAppConstruct is not null)
Publishing\SealedSecretApplyStep.cs (1)
202
.Where(s => s.Scope ==
RadiusSecretStoreScope
.Application || ReferenceEquals(s.OwningEnvironment, _environment))
Secrets\RadiusSecretStoreExtensions.cs (2)
64
var resource = new RadiusSecretStoreResource(name, type,
RadiusSecretStoreScope
.Application);
113
var resource = new RadiusSecretStoreResource(name, type,
RadiusSecretStoreScope
.Environment)
Secrets\RadiusSecretStoreResource.cs (2)
36
internal RadiusSecretStoreResource(string name, RadiusSecretStoreType type,
RadiusSecretStoreScope
scope)
47
internal
RadiusSecretStoreScope
Scope { get; }
Secrets\RadiusSecretStoreValidation.cs (4)
75
.Where(static s => s.Scope ==
RadiusSecretStoreScope
.Application)
202
if (store.Scope ==
RadiusSecretStoreScope
.Application &&
329
if (store.Scope ==
RadiusSecretStoreScope
.Application &&
355
if (store.Scope ==
RadiusSecretStoreScope
.Application)
Aspire.Hosting.Radius.Tests (1)
Secrets\AddRadiusSecretStoreTests.cs (1)
47
Assert.Equal(
RadiusSecretStoreScope
.Environment, store.Scope);