Skip to content

Commit eea1811

Browse files
[create-pull-request] automated change (#903)
Co-authored-by: aaronpowell <[email protected]>
1 parent 72cb8ee commit eea1811

File tree

11 files changed

+154
-2
lines changed

11 files changed

+154
-2
lines changed

src/CommunityToolkit.Aspire.EventStore/api/CommunityToolkit.Aspire.EventStore.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
//------------------------------------------------------------------------------
99
namespace CommunityToolkit.Aspire.EventStore
1010
{
11+
[System.Obsolete("EventStore has been rebranded to KurrentDB. Use CommunityToolkit.Aspire.KurrentDB and KurrentDBSettings instead. This integration will be removed in a future release.")]
1112
public sealed partial class EventStoreSettings
1213
{
1314
public string? ConnectionString { get { throw null; } set { } }
@@ -22,6 +23,7 @@ public sealed partial class EventStoreSettings
2223

2324
namespace Microsoft.Extensions.Hosting
2425
{
26+
[System.Obsolete("EventStore has been rebranded to KurrentDB. Use CommunityToolkit.Aspire.KurrentDB and AspireKurrentDBExtensions instead. This integration will be removed in a future release.")]
2527
public static partial class AspireEventStoreExtensions
2628
{
2729
public static void AddEventStoreClient(this IHostApplicationBuilder builder, string connectionName, System.Action<CommunityToolkit.Aspire.EventStore.EventStoreSettings>? configureSettings = null) { }

src/CommunityToolkit.Aspire.Hosting.EventStore/api/CommunityToolkit.Aspire.Hosting.EventStore.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
//------------------------------------------------------------------------------
99
namespace Aspire.Hosting
1010
{
11+
[System.Obsolete("EventStore has been rebranded to KurrentDB. Use CommunityToolkit.Aspire.Hosting.KurrentDB and KurrentDBBuilderExtensions instead. This integration will be removed in a future release.")]
1112
public static partial class EventStoreBuilderExtensions
1213
{
1314
public static ApplicationModel.IResourceBuilder<ApplicationModel.EventStoreResource> AddEventStore(this IDistributedApplicationBuilder builder, string name, int? port = null) { throw null; }
@@ -20,6 +21,7 @@ public static partial class EventStoreBuilderExtensions
2021

2122
namespace Aspire.Hosting.ApplicationModel
2223
{
24+
[System.Obsolete("EventStore has been rebranded to KurrentDB. Use CommunityToolkit.Aspire.Hosting.KurrentDB and KurrentDBResource instead. This integration will be removed in a future release.")]
2325
public partial class EventStoreResource : ContainerResource, IResourceWithConnectionString, IResource, IManifestExpressionProvider, IValueProvider, IValueWithReferences
2426
{
2527
public EventStoreResource(string name) : base(default!, default) { }
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
//------------------------------------------------------------------------------
2+
// <auto-generated>
3+
// This code was generated by a tool.
4+
//
5+
// Changes to this file may cause incorrect behavior and will be lost if
6+
// the code is regenerated.
7+
// </auto-generated>
8+
//------------------------------------------------------------------------------
9+
namespace Aspire.Hosting
10+
{
11+
public static partial class FlagdBuilderExtensions
12+
{
13+
public static ApplicationModel.IResourceBuilder<ApplicationModel.FlagdResource> AddFlagd(this IDistributedApplicationBuilder builder, string name, int? port = null, int? ofrepPort = null) { throw null; }
14+
15+
public static ApplicationModel.IResourceBuilder<ApplicationModel.FlagdResource> WithBindFileSync(this ApplicationModel.IResourceBuilder<ApplicationModel.FlagdResource> builder, string fileSource, string filename = "flagd.json") { throw null; }
16+
17+
public static ApplicationModel.IResourceBuilder<ApplicationModel.FlagdResource> WithLogLevel(this ApplicationModel.IResourceBuilder<ApplicationModel.FlagdResource> builder, Microsoft.Extensions.Logging.LogLevel logLevel) { throw null; }
18+
}
19+
}
20+
21+
namespace Aspire.Hosting.ApplicationModel
22+
{
23+
public partial class FlagdResource : ContainerResource, IResourceWithConnectionString, IResource, IManifestExpressionProvider, IValueProvider, IValueWithReferences
24+
{
25+
public FlagdResource(string name) : base(default!, default) { }
26+
27+
public ReferenceExpression ConnectionStringExpression { get { throw null; } }
28+
29+
public EndpointReference HealthCheckEndpoint { get { throw null; } }
30+
31+
public EndpointReference OfrepEndpoint { get { throw null; } }
32+
33+
public EndpointReference PrimaryEndpoint { get { throw null; } }
34+
}
35+
}

src/CommunityToolkit.Aspire.Hosting.GoFeatureFlag/api/CommunityToolkit.Aspire.Hosting.GoFeatureFlag.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ public static partial class GoFeatureFlagBuilderExtensions
1515
public static ApplicationModel.IResourceBuilder<ApplicationModel.GoFeatureFlagResource> WithDataVolume(this ApplicationModel.IResourceBuilder<ApplicationModel.GoFeatureFlagResource> builder, string? name = null) { throw null; }
1616

1717
public static ApplicationModel.IResourceBuilder<ApplicationModel.GoFeatureFlagResource> WithGoffBindMount(this ApplicationModel.IResourceBuilder<ApplicationModel.GoFeatureFlagResource> builder, string source) { throw null; }
18+
19+
public static ApplicationModel.IResourceBuilder<ApplicationModel.GoFeatureFlagResource> WithLogLevel(this ApplicationModel.IResourceBuilder<ApplicationModel.GoFeatureFlagResource> builder, Microsoft.Extensions.Logging.LogLevel logLevel) { throw null; }
1820
}
1921
}
2022

src/CommunityToolkit.Aspire.Hosting.Java/api/CommunityToolkit.Aspire.Hosting.Java.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ public partial class JavaAppExecutableResourceOptions
6666

6767
public string[]? Args { get { throw null; } set { } }
6868

69+
public string[]? JvmArgs { get { throw null; } set { } }
70+
6971
public string? OtelAgentPath { get { throw null; } set { } }
7072

7173
public int Port { get { throw null; } set { } }
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
//------------------------------------------------------------------------------
2+
// <auto-generated>
3+
// This code was generated by a tool.
4+
//
5+
// Changes to this file may cause incorrect behavior and will be lost if
6+
// the code is regenerated.
7+
// </auto-generated>
8+
//------------------------------------------------------------------------------
9+
namespace Aspire.Hosting
10+
{
11+
public static partial class KeycloakPostgresExtension
12+
{
13+
public static ApplicationModel.IResourceBuilder<ApplicationModel.KeycloakResource> WithPostgres(this ApplicationModel.IResourceBuilder<ApplicationModel.KeycloakResource> builder, ApplicationModel.IResourceBuilder<ApplicationModel.PostgresDatabaseResource> database, ApplicationModel.IResourceBuilder<ApplicationModel.ParameterResource>? username = null, ApplicationModel.IResourceBuilder<ApplicationModel.ParameterResource>? password = null, bool xaEnabled = false) { throw null; }
14+
}
15+
}
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
//------------------------------------------------------------------------------
2+
// <auto-generated>
3+
// This code was generated by a tool.
4+
//
5+
// Changes to this file may cause incorrect behavior and will be lost if
6+
// the code is regenerated.
7+
// </auto-generated>
8+
//------------------------------------------------------------------------------
9+
namespace Aspire.Hosting
10+
{
11+
public static partial class KurrentDBBuilderExtensions
12+
{
13+
public static ApplicationModel.IResourceBuilder<ApplicationModel.KurrentDBResource> AddKurrentDB(this IDistributedApplicationBuilder builder, string name, int? port = null) { throw null; }
14+
15+
public static ApplicationModel.IResourceBuilder<ApplicationModel.KurrentDBResource> WithDataBindMount(this ApplicationModel.IResourceBuilder<ApplicationModel.KurrentDBResource> builder, string source) { throw null; }
16+
17+
public static ApplicationModel.IResourceBuilder<ApplicationModel.KurrentDBResource> WithDataVolume(this ApplicationModel.IResourceBuilder<ApplicationModel.KurrentDBResource> builder, string? name = null) { throw null; }
18+
}
19+
}
20+
21+
namespace Aspire.Hosting.ApplicationModel
22+
{
23+
public partial class KurrentDBResource : ContainerResource, IResourceWithConnectionString, IResource, IManifestExpressionProvider, IValueProvider, IValueWithReferences
24+
{
25+
public KurrentDBResource(string name) : base(default!, default) { }
26+
27+
public ReferenceExpression ConnectionStringExpression { get { throw null; } }
28+
29+
public EndpointReference PrimaryEndpoint { get { throw null; } }
30+
}
31+
}
32+
33+
namespace CommunityToolkit.Aspire.Hosting.KurrentDB
34+
{
35+
public partial class KurrentDBHealthCheck : Microsoft.Extensions.Diagnostics.HealthChecks.IHealthCheck, System.IDisposable
36+
{
37+
public KurrentDBHealthCheck(string connectionString) { }
38+
39+
public System.Threading.Tasks.Task<Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult> CheckHealthAsync(Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckContext context, System.Threading.CancellationToken cancellationToken = default) { throw null; }
40+
41+
public virtual void Dispose() { }
42+
}
43+
}

src/CommunityToolkit.Aspire.Hosting.McpInspector/api/CommunityToolkit.Aspire.Hosting.McpInspector.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public static partial class McpInspectorResourceBuilderExtensions
2626
public static ApplicationModel.IResourceBuilder<ApplicationModel.McpInspectorResource> AddMcpInspector(this IDistributedApplicationBuilder builder, string name, System.Action<McpInspectorOptions> configureOptions) { throw null; }
2727

2828
[System.Obsolete("Use the overload with McpInspectorOptions instead. This overload will be removed in the next version.")]
29-
public static ApplicationModel.IResourceBuilder<ApplicationModel.McpInspectorResource> AddMcpInspector(this IDistributedApplicationBuilder builder, string name, int clientPort = 6274, int serverPort = 6277, string inspectorVersion = "0.16.5") { throw null; }
29+
public static ApplicationModel.IResourceBuilder<ApplicationModel.McpInspectorResource> AddMcpInspector(this IDistributedApplicationBuilder builder, string name, int clientPort = 6274, int serverPort = 6277, string inspectorVersion = "0.17.2") { throw null; }
3030

3131
public static ApplicationModel.IResourceBuilder<ApplicationModel.McpInspectorResource> AddMcpInspector(this IDistributedApplicationBuilder builder, string name) { throw null; }
3232

@@ -46,7 +46,7 @@ namespace Aspire.Hosting.ApplicationModel
4646
public partial class McpInspectorResource : ExecutableResource
4747
{
4848
public const string ClientEndpointName = "client";
49-
public const string InspectorVersion = "0.16.5";
49+
public const string InspectorVersion = "0.17.2";
5050
public const string ServerProxyEndpointName = "server-proxy";
5151
public McpInspectorResource(string name) : base(default!, default!, default!) { }
5252

src/CommunityToolkit.Aspire.Hosting.SqlDatabaseProjects/api/CommunityToolkit.Aspire.Hosting.SqlDatabaseProjects.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,11 @@ public static partial class SqlProjectBuilderExtensions
5151

5252
public static ApplicationModel.IResourceBuilder<ApplicationModel.SqlPackageResource<TPackage>> WithReference<TPackage>(this ApplicationModel.IResourceBuilder<ApplicationModel.SqlPackageResource<TPackage>> builder, ApplicationModel.IResourceBuilder<ApplicationModel.SqlServerDatabaseResource> target)
5353
where TPackage : IPackageMetadata { throw null; }
54+
55+
public static ApplicationModel.IResourceBuilder<ApplicationModel.SqlProjectResource> WithSkipWhenDeployed(this ApplicationModel.IResourceBuilder<ApplicationModel.SqlProjectResource> builder) { throw null; }
56+
57+
public static ApplicationModel.IResourceBuilder<ApplicationModel.SqlPackageResource<TPackage>> WithSkipWhenDeployed<TPackage>(this ApplicationModel.IResourceBuilder<ApplicationModel.SqlPackageResource<TPackage>> builder)
58+
where TPackage : IPackageMetadata { throw null; }
5459
}
5560
}
5661

@@ -68,6 +73,10 @@ public partial record DacpacMetadataAnnotation(string DacpacPath) : IResourceAnn
6873
{
6974
}
7075

76+
public sealed partial class DacpacSkipWhenDeployedAnnotation : IResourceAnnotation
77+
{
78+
}
79+
7180
public partial interface IResourceWithDacpac : IResource, IResourceWithWaitSupport
7281
{
7382
}

src/CommunityToolkit.Aspire.Hosting.SurrealDb/api/CommunityToolkit.Aspire.Hosting.SurrealDb.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ public static partial class SurrealDbBuilderExtensions
2929
[System.Diagnostics.CodeAnalysis.Experimental("CTASPIRE002")]
3030
public static ApplicationModel.IResourceBuilder<ApplicationModel.SurrealDbServerResource> WithInitFiles(this ApplicationModel.IResourceBuilder<ApplicationModel.SurrealDbServerResource> builder, string source) { throw null; }
3131

32+
public static ApplicationModel.IResourceBuilder<ApplicationModel.SurrealDbServerResource> WithLogLevel(this ApplicationModel.IResourceBuilder<ApplicationModel.SurrealDbServerResource> builder, Microsoft.Extensions.Logging.LogLevel logLevel) { throw null; }
33+
3234
public static ApplicationModel.IResourceBuilder<T> WithSurrealist<T>(this ApplicationModel.IResourceBuilder<T> builder, System.Action<ApplicationModel.IResourceBuilder<ApplicationModel.SurrealistContainerResource>>? configureContainer = null, string? containerName = null)
3335
where T : ApplicationModel.SurrealDbServerResource { throw null; }
3436
}

0 commit comments

Comments
 (0)