Skip to content
Merged
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 @@ -48,11 +48,19 @@ protected ActiveMQServerResourceBase(string name, ParameterResource? userName, P

public ReferenceExpression ConnectionStringExpression { get { throw null; } }

public EndpointReferenceExpression Host { get { throw null; } }

public ParameterResource PasswordParameter { get { throw null; } }

public EndpointReferenceExpression Port { get { throw null; } }

public EndpointReference PrimaryEndpoint { get { throw null; } }

public ReferenceExpression UriExpression { get { throw null; } }

public ParameterResource? UserNameParameter { get { throw null; } }

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public static partial class BunAppExtensions
{
public static ApplicationModel.IResourceBuilder<ApplicationModel.BunAppResource> AddBunApp(this IDistributedApplicationBuilder builder, string name, string? workingDirectory = null, string entryPoint = "index.ts", bool watch = false) { throw null; }

public static ApplicationModel.IResourceBuilder<ApplicationModel.BunAppResource> WithBunPackageInstallation(this ApplicationModel.IResourceBuilder<ApplicationModel.BunAppResource> resource) { throw null; }
public static ApplicationModel.IResourceBuilder<ApplicationModel.BunAppResource> WithBunPackageInstallation(this ApplicationModel.IResourceBuilder<ApplicationModel.BunAppResource> resource, System.Action<ApplicationModel.IResourceBuilder<ApplicationModel.BunInstallerResource>>? configureInstaller = null) { throw null; }
}
}

Expand All @@ -22,4 +22,9 @@ public partial class BunAppResource : ExecutableResource
{
public BunAppResource(string name, string workingDirectory) : base(default!, default!, default!) { }
}

public partial class BunInstallerResource : ExecutableResource
{
public BunInstallerResource(string name, string workingDirectory) : base(default!, default!, default!) { }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public static partial class DenoAppHostingExtensions

public static ApplicationModel.IResourceBuilder<ApplicationModel.DenoAppResource> AddDenoTask(this IDistributedApplicationBuilder builder, string name, string? workingDirectory = null, string taskName = "start", string[]? args = null) { throw null; }

public static ApplicationModel.IResourceBuilder<ApplicationModel.DenoAppResource> WithDenoPackageInstallation(this ApplicationModel.IResourceBuilder<ApplicationModel.DenoAppResource> resource) { throw null; }
public static ApplicationModel.IResourceBuilder<ApplicationModel.DenoAppResource> WithDenoPackageInstallation(this ApplicationModel.IResourceBuilder<ApplicationModel.DenoAppResource> resource, System.Action<ApplicationModel.IResourceBuilder<ApplicationModel.DenoInstallerResource>>? configureInstaller = null) { throw null; }
}
}

Expand All @@ -24,4 +24,9 @@ public partial class DenoAppResource : ExecutableResource, IResourceWithServiceD
{
public DenoAppResource(string name, string command, string workingDirectory) : base(default!, default!, default!) { }
}

public partial class DenoInstallerResource : ExecutableResource
{
public DenoInstallerResource(string name, string workingDirectory) : base(default!, default!, default!) { }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,16 @@ public FlagdResource(string name) : base(default!, default) { }

public EndpointReference HealthCheckEndpoint { get { throw null; } }

public EndpointReferenceExpression Host { get { throw null; } }

public EndpointReference OfrepEndpoint { get { throw null; } }

public EndpointReferenceExpression Port { get { throw null; } }

public EndpointReference PrimaryEndpoint { get { throw null; } }

public ReferenceExpression UriExpression { get { throw null; } }

System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, ReferenceExpression>> IResourceWithConnectionString.GetConnectionProperties() { throw null; }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,14 @@ public GoFeatureFlagResource(string name) : base(default!, default) { }

public ReferenceExpression ConnectionStringExpression { get { throw null; } }

public EndpointReferenceExpression Host { get { throw null; } }

public EndpointReferenceExpression Port { get { throw null; } }

public EndpointReference PrimaryEndpoint { get { throw null; } }

public ReferenceExpression UriExpression { get { throw null; } }

System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, ReferenceExpression>> IResourceWithConnectionString.GetConnectionProperties() { throw null; }
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Aspire.Hosting
{
public static partial class JavaScriptHostingExtensions
{
public static ApplicationModel.IResourceBuilder<ApplicationModel.NxAppResource> AddApp(this ApplicationModel.IResourceBuilder<ApplicationModel.NxResource> builder, string name, string? appName = null, System.Func<ApplicationModel.IResourceBuilder<ApplicationModel.NxAppResource>, ApplicationModel.IResourceBuilder<ApplicationModel.NxAppResource>>? configure = null) { throw null; }

public static ApplicationModel.IResourceBuilder<ApplicationModel.TurborepoAppResource> AddApp(this ApplicationModel.IResourceBuilder<ApplicationModel.TurborepoResource> builder, string name, string? filter = null, System.Func<ApplicationModel.IResourceBuilder<ApplicationModel.TurborepoAppResource>, ApplicationModel.IResourceBuilder<ApplicationModel.TurborepoAppResource>>? configure = null) { throw null; }

public static ApplicationModel.IResourceBuilder<ApplicationModel.NxResource> AddNxApp(this IDistributedApplicationBuilder builder, string name, string? workingDirectory = null) { throw null; }

public static ApplicationModel.IResourceBuilder<ApplicationModel.TurborepoResource> AddTurborepoApp(this IDistributedApplicationBuilder builder, string name, string? workingDirectory = null) { throw null; }

public static ApplicationModel.IResourceBuilder<TResource> WithMappedEndpointPort<TResource>(this ApplicationModel.IResourceBuilder<TResource> builder, string? endpointName = null)
where TResource : JavaScript.JavaScriptAppResource { throw null; }

public static ApplicationModel.IResourceBuilder<ApplicationModel.NxResource> WithNpm(this ApplicationModel.IResourceBuilder<ApplicationModel.NxResource> builder, bool install = false, System.Action<ApplicationModel.IResourceBuilder<JavaScript.JavaScriptInstallerResource>>? configureInstaller = null) { throw null; }

public static ApplicationModel.IResourceBuilder<ApplicationModel.TurborepoResource> WithNpm(this ApplicationModel.IResourceBuilder<ApplicationModel.TurborepoResource> builder, bool install = false, System.Action<ApplicationModel.IResourceBuilder<JavaScript.JavaScriptInstallerResource>>? configureInstaller = null) { throw null; }

public static ApplicationModel.IResourceBuilder<ApplicationModel.NxResource> WithPackageManagerLaunch(this ApplicationModel.IResourceBuilder<ApplicationModel.NxResource> builder, string? packageManager = null) { throw null; }

public static ApplicationModel.IResourceBuilder<ApplicationModel.TurborepoResource> WithPackageManagerLaunch(this ApplicationModel.IResourceBuilder<ApplicationModel.TurborepoResource> builder, string? packageManager = null) { throw null; }

public static ApplicationModel.IResourceBuilder<ApplicationModel.NxResource> WithPnpm(this ApplicationModel.IResourceBuilder<ApplicationModel.NxResource> builder, bool install = false, System.Action<ApplicationModel.IResourceBuilder<JavaScript.JavaScriptInstallerResource>>? configureInstaller = null) { throw null; }

public static ApplicationModel.IResourceBuilder<ApplicationModel.TurborepoResource> WithPnpm(this ApplicationModel.IResourceBuilder<ApplicationModel.TurborepoResource> builder, bool install = false, System.Action<ApplicationModel.IResourceBuilder<JavaScript.JavaScriptInstallerResource>>? configureInstaller = null) { throw null; }

public static ApplicationModel.IResourceBuilder<ApplicationModel.NxResource> WithYarn(this ApplicationModel.IResourceBuilder<ApplicationModel.NxResource> builder, bool install = false, System.Action<ApplicationModel.IResourceBuilder<JavaScript.JavaScriptInstallerResource>>? configureInstaller = null) { throw null; }

public static ApplicationModel.IResourceBuilder<ApplicationModel.TurborepoResource> WithYarn(this ApplicationModel.IResourceBuilder<ApplicationModel.TurborepoResource> builder, bool install = false, System.Action<ApplicationModel.IResourceBuilder<JavaScript.JavaScriptInstallerResource>>? configureInstaller = null) { throw null; }
}

public sealed partial class JavaScriptPackageManagerConfiguredAnnotation : ApplicationModel.IResourceAnnotation
{
public JavaScriptPackageManagerConfiguredAnnotation(string packageManager) { }

public string PackageManager { get { throw null; } }
}
}

namespace Aspire.Hosting.ApplicationModel
{
public partial class NxAppResource : JavaScript.JavaScriptAppResource
{
public NxAppResource(string name, string workingDirectory, string appName, string command = "nx") : base(default!, default!, default!) { }

public string AppName { get { throw null; } }
}

public partial class NxResource : Resource
{
public NxResource(string name, string workingDirectory) : base(default!) { }

public string WorkingDirectory { get { throw null; } }
}

public partial class TurborepoAppResource : JavaScript.JavaScriptAppResource
{
public TurborepoAppResource(string name, string workingDirectory, string filter, string command = "turbo") : base(default!, default!, default!) { }

public string Filter { get { throw null; } }
}

public partial class TurborepoResource : Resource
{
public TurborepoResource(string name, string workingDirectory) : base(default!) { }

public string WorkingDirectory { get { throw null; } }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,15 @@ public KurrentDBResource(string name) : base(default!, default) { }

public ReferenceExpression ConnectionStringExpression { get { throw null; } }

public EndpointReferenceExpression Host { get { throw null; } }

public EndpointReferenceExpression Port { get { throw null; } }

public EndpointReference PrimaryEndpoint { get { throw null; } }

public ReferenceExpression UriExpression { get { throw null; } }

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,13 @@ public partial class LavinMQContainerResource : ContainerResource, IResourceWith
public LavinMQContainerResource(string name) : base(default!, default) { }

public ReferenceExpression ConnectionStringExpression { get { throw null; } }

public EndpointReferenceExpression Host { get { throw null; } }

public EndpointReferenceExpression Port { get { throw null; } }

public ReferenceExpression UriExpression { get { throw null; } }

System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, ReferenceExpression>> IResourceWithConnectionString.GetConnectionProperties() { throw null; }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,13 @@ public partial class MailPitContainerResource : ContainerResource, IResourceWith
public MailPitContainerResource(string name) : base(default!, default) { }

public ReferenceExpression ConnectionStringExpression { get { throw null; } }

public EndpointReferenceExpression Host { get { throw null; } }

public EndpointReferenceExpression Port { get { throw null; } }

public ReferenceExpression UriExpression { get { throw null; } }

System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, ReferenceExpression>> IResourceWithConnectionString.GetConnectionProperties() { throw null; }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public enum McpTransportType

namespace Aspire.Hosting.ApplicationModel
{
public partial class McpInspectorResource : ExecutableResource
public partial class McpInspectorResource : JavaScript.JavaScriptAppResource
{
public const string ClientEndpointName = "client";
public const string InspectorVersion = "0.17.2";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,16 @@ public MeilisearchResource(string name, ParameterResource masterKey) : base(defa

public ReferenceExpression ConnectionStringExpression { get { throw null; } }

public EndpointReferenceExpression Host { get { throw null; } }

public ParameterResource MasterKeyParameter { get { throw null; } }

public EndpointReferenceExpression Port { get { throw null; } }

public EndpointReference PrimaryEndpoint { get { throw null; } }

public ReferenceExpression UriExpression { get { throw null; } }

System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, ReferenceExpression>> IResourceWithConnectionString.GetConnectionProperties() { throw null; }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,20 @@ public MinioContainerResource(string name, ParameterResource rootUser, Parameter

public ReferenceExpression ConnectionStringExpression { get { throw null; } }

public EndpointReferenceExpression Host { get { throw null; } }

public ParameterResource PasswordParameter { get { throw null; } }

public EndpointReferenceExpression Port { get { throw null; } }

public EndpointReference PrimaryEndpoint { get { throw null; } }

public ParameterResource RootUser { get { throw null; } set { } }

public ReferenceExpression UriExpression { get { throw null; } }

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

public System.Threading.Tasks.ValueTask<string?> GetConnectionStringAsync(System.Threading.CancellationToken cancellationToken = default) { throw null; }
}
}
Loading