21 references to BicepOutputReference
Aspire.Hosting.Azure (21)
AppIdentityResource.cs (4)
15
public
BicepOutputReference
Id => new("id", this);
16
public
BicepOutputReference
ClientId => new("clientId", this);
17
public
BicepOutputReference
PrincipalId => new("principalId", this);
18
public
BicepOutputReference
PrincipalName => new("principalName", this);
AzureBicepResourceExtensions.cs (4)
52
/// <returns>A <see cref="
BicepOutputReference
"/> that represents the output.</returns>
53
public static
BicepOutputReference
GetOutput(this IResourceBuilder<AzureBicepResource> builder, string name)
77
public static IResourceBuilder<T> WithEnvironment<T>(this IResourceBuilder<T> builder, string name,
BicepOutputReference
bicepOutputReference)
261
public static IResourceBuilder<T> WithParameter<T>(this IResourceBuilder<T> builder, string name,
BicepOutputReference
value)
AzureProvisioningResourceExtensions.cs (3)
109
/// The <see cref="
BicepOutputReference
"/> that contains the value to use for the <see cref="ProvisioningParameter"/>.
117
/// This is useful when assigning a <see cref="BicepValue"/> to the value of an Aspire <see cref="
BicepOutputReference
"/>.
121
public static ProvisioningParameter AsProvisioningParameter(this
BicepOutputReference
outputReference, AzureResourceInfrastructure infrastructure, string? parameterName = null)
AzurePublishingContext.cs (3)
170
BicepOutputReference
b => GetOutputs(moduleMap[b.Resource], b.Name),
218
var outputs = new Dictionary<string,
BicepOutputReference
>();
222
if (value is
BicepOutputReference
bo)
AzureResourcePreparer.cs (1)
373
if (value is
BicepOutputReference
output)
IAppIdentityResource.cs (4)
14
public
BicepOutputReference
Id { get; }
19
public
BicepOutputReference
ClientId { get; }
24
public
BicepOutputReference
PrincipalId { get; }
29
public
BicepOutputReference
PrincipalName { get; }
IAzureKeyVaultResource.cs (2)
16
BicepOutputReference
VaultUriOutputReference { get; }
21
BicepOutputReference
NameOutputReference { get; }