Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ public static partial class FlociHostingExtension
[AspireExport]
public static ApplicationModel.IResourceBuilder<ApplicationModel.FlociAwsContainerResource> WithConfigFile(this ApplicationModel.IResourceBuilder<ApplicationModel.FlociAwsContainerResource> builder, string hostPath) { throw null; }

[AspireExport]
public static ApplicationModel.IResourceBuilder<ApplicationModel.FlociAzureCosmosResource> WithCosmos(this ApplicationModel.IResourceBuilder<ApplicationModel.FlociAzureContainerResource> builder, string name = "cosmos", string? accountName = null) { throw null; }

[AspireExport]
public static ApplicationModel.IResourceBuilder<ApplicationModel.FlociAwsContainerResource> WithDataBindMount(this ApplicationModel.IResourceBuilder<ApplicationModel.FlociAwsContainerResource> builder, string source, bool isReadOnly = false) { throw null; }

Expand Down Expand Up @@ -78,9 +81,16 @@ public static ApplicationModel.IResourceBuilder<TDestination> WithReference<TDes
public static ApplicationModel.IResourceBuilder<TDestination> WithReference<TDestination>(this ApplicationModel.IResourceBuilder<TDestination> builder, ApplicationModel.IResourceBuilder<ApplicationModel.FlociAzureContainerResource> floci)
where TDestination : ApplicationModel.IResourceWithEnvironment { throw null; }

[AspireExport("withFlociAzureServiceBusReference")]
public static ApplicationModel.IResourceBuilder<TDestination> WithReference<TDestination>(this ApplicationModel.IResourceBuilder<TDestination> builder, ApplicationModel.IResourceBuilder<ApplicationModel.FlociAzureServiceBusResource> serviceBus, string? connectionName = null)
where TDestination : ApplicationModel.IResourceWithEnvironment { throw null; }

[AspireExport("withFlociGcpReference")]
public static ApplicationModel.IResourceBuilder<TDestination> WithReference<TDestination>(this ApplicationModel.IResourceBuilder<TDestination> builder, ApplicationModel.IResourceBuilder<ApplicationModel.FlociGcpContainerResource> floci)
where TDestination : ApplicationModel.IResourceWithEnvironment { throw null; }

[AspireExport]
public static ApplicationModel.IResourceBuilder<ApplicationModel.FlociAzureServiceBusResource> WithServiceBus(this ApplicationModel.IResourceBuilder<ApplicationModel.FlociAzureContainerResource> builder, string name = "servicebus", int? amqpPort = null, int? amqpTlsPort = null) { throw null; }
}
}

Expand All @@ -98,6 +108,38 @@ public partial class FlociAzureContainerResource : FlociContainerResource
public FlociAzureContainerResource(string name) : base(default!, default!) { }
}

[AspireExport(ExposeProperties = true)]
public partial class FlociAzureCosmosResource : Resource, IResourceWithParent<FlociAzureContainerResource>, IResourceWithParent, IResource, IResourceWithConnectionString, IExpressionValue, IValueProvider, IManifestExpressionProvider, IValueWithReferences
{
public FlociAzureCosmosResource(string name, string accountName, FlociAzureContainerResource parent) : base(default!) { }

public ReferenceExpression AccountEndpoint { get { throw null; } }

public string AccountName { get { throw null; } }

public ReferenceExpression ConnectionStringExpression { get { throw null; } }

public FlociAzureContainerResource Parent { get { throw null; } }

System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, ReferenceExpression>> IResourceWithConnectionString.GetConnectionProperties() { throw null; }
}

[AspireExport(ExposeProperties = true)]
public partial class FlociAzureServiceBusResource : Resource, IResourceWithParent<FlociAzureContainerResource>, IResourceWithParent, IResource, IResourceWithConnectionString, IExpressionValue, IValueProvider, IManifestExpressionProvider, IValueWithReferences, IResourceWithEndpoints
{
public FlociAzureServiceBusResource(string name, FlociAzureContainerResource parent) : base(default!) { }

public EndpointReference AmqpEndpoint { get { throw null; } }

public EndpointReference AmqpTlsEndpoint { get { throw null; } }

public ReferenceExpression ConnectionStringExpression { get { throw null; } }

public FlociAzureContainerResource Parent { get { throw null; } }

System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, ReferenceExpression>> IResourceWithConnectionString.GetConnectionProperties() { throw null; }
}

public abstract partial class FlociContainerResource : ContainerResource, IResourceWithConnectionString, IResource, IExpressionValue, IValueProvider, IManifestExpressionProvider, IValueWithReferences
{
protected FlociContainerResource(string name, string endpointName) : base(default!, default) { }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -868,6 +868,9 @@ public partial class ListTemplatesResponseDataItem
[System.Text.Json.Serialization.JsonPropertyName("id")]
public int? Id { get { throw null; } set { } }

[System.Text.Json.Serialization.JsonPropertyName("languages")]
public System.Collections.Generic.IReadOnlyList<string>? Languages { get { throw null; } set { } }

[System.Text.Json.Serialization.JsonPropertyName("last_edited_by")]
public ListTemplatesResponseDataItemLastEditedBy? LastEditedBy { get { throw null; } set { } }

Expand Down