Skip to content

Commit f56e193

Browse files
Alirexaagithub-actions[bot]
authored andcommitted
[create-pull-request] automated change
1 parent 2864374 commit f56e193

File tree

12 files changed

+194
-5
lines changed

12 files changed

+194
-5
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public sealed partial class GoFeatureFlagClientSettings
1616

1717
public int? HealthCheckTimeout { get { throw null; } set { } }
1818

19-
public OpenFeature.Providers.GOFeatureFlag.GoFeatureFlagProviderOptions ProviderOptions { get { throw null; } set { } }
19+
public OpenFeature.Providers.GOFeatureFlag.GOFeatureFlagProviderOptions ProviderOptions { get { throw null; } set { } }
2020
}
2121
}
2222

@@ -28,4 +28,4 @@ public static void AddGoFeatureFlagClient(this IHostApplicationBuilder builder,
2828

2929
public static void AddKeyedGoFeatureFlagClient(this IHostApplicationBuilder builder, string name, System.Action<CommunityToolkit.Aspire.GoFeatureFlag.GoFeatureFlagClientSettings>? configureSettings = null) { }
3030
}
31-
}
31+
}
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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 AzureBlobStorageResourceBuilderExtensions
12+
{
13+
public static ApplicationModel.IResourceBuilder<Azure.AzureBlobStorageResource> WithAzureStorageExplorer(this ApplicationModel.IResourceBuilder<Azure.AzureBlobStorageResource> blobs, System.Action<ApplicationModel.IResourceBuilder<ApplicationModel.AzureStorageExplorerResource>>? configureContainer = null, string? name = null) { throw null; }
14+
}
15+
16+
public static partial class AzureQueueStorageResourceBuilderExtensions
17+
{
18+
public static ApplicationModel.IResourceBuilder<Azure.AzureQueueStorageResource> WithAzureStorageExplorer(this ApplicationModel.IResourceBuilder<Azure.AzureQueueStorageResource> queues, System.Action<ApplicationModel.IResourceBuilder<ApplicationModel.AzureStorageExplorerResource>>? configureContainer = null, string? name = null) { throw null; }
19+
}
20+
21+
public static partial class AzureStorageExplorerBuilderExtensions
22+
{
23+
public static ApplicationModel.IResourceBuilder<ApplicationModel.AzureStorageExplorerResource> WithHostPort(this ApplicationModel.IResourceBuilder<ApplicationModel.AzureStorageExplorerResource> builder, int? port) { throw null; }
24+
}
25+
26+
public static partial class AzureTableStorageResourceBuilderExtensions
27+
{
28+
public static ApplicationModel.IResourceBuilder<Azure.AzureTableStorageResource> WithAzureStorageExplorer(this ApplicationModel.IResourceBuilder<Azure.AzureTableStorageResource> tables, System.Action<ApplicationModel.IResourceBuilder<ApplicationModel.AzureStorageExplorerResource>>? configureContainer = null, string? name = null) { throw null; }
29+
}
30+
}
31+
32+
namespace Aspire.Hosting.ApplicationModel
33+
{
34+
public partial class AzureStorageExplorerResource : ContainerResource
35+
{
36+
public AzureStorageExplorerResource(string name) : base(default!, default) { }
37+
38+
public EndpointReferenceExpression Host { get { throw null; } }
39+
40+
public EndpointReferenceExpression Port { get { throw null; } }
41+
42+
public EndpointReference PrimaryEndpoint { get { throw null; } }
43+
}
44+
}

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ public static partial class DbGateBuilderExtensions
1212
{
1313
public static ApplicationModel.IResourceBuilder<ApplicationModel.DbGateContainerResource> AddDbGate(this IDistributedApplicationBuilder builder, string name = "dbgate", int? port = null) { throw null; }
1414

15+
public static string SanitizeConnectionId(string resourceName) { throw null; }
16+
1517
public static ApplicationModel.IResourceBuilder<ApplicationModel.DbGateContainerResource> WithDataBindMount(this ApplicationModel.IResourceBuilder<ApplicationModel.DbGateContainerResource> builder, string source, bool isReadOnly = false) { throw null; }
1618

1719
public static ApplicationModel.IResourceBuilder<ApplicationModel.DbGateContainerResource> WithDataVolume(this ApplicationModel.IResourceBuilder<ApplicationModel.DbGateContainerResource> builder, string? name = null, bool isReadOnly = false) { throw null; }

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

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,24 @@ public static partial class GolangAppHostingExtension
1616

1717
[System.Obsolete("Use AddGolangApp with buildTags parameter instead. This method will be removed in a future version.")]
1818
public static ApplicationModel.IResourceBuilder<ApplicationModel.GolangAppExecutableResource> AddGolangApp(this IDistributedApplicationBuilder builder, string name, string workingDirectory, string[] args) { throw null; }
19+
20+
public static ApplicationModel.IResourceBuilder<ApplicationModel.GolangAppExecutableResource> WithGoModDownload(this ApplicationModel.IResourceBuilder<ApplicationModel.GolangAppExecutableResource> builder, bool install = true, System.Action<ApplicationModel.IResourceBuilder<ApplicationModel.GoModInstallerResource>>? configureInstaller = null) { throw null; }
21+
22+
public static ApplicationModel.IResourceBuilder<ApplicationModel.GolangAppExecutableResource> WithGoModTidy(this ApplicationModel.IResourceBuilder<ApplicationModel.GolangAppExecutableResource> builder, bool install = true, System.Action<ApplicationModel.IResourceBuilder<ApplicationModel.GoModInstallerResource>>? configureInstaller = null) { throw null; }
1923
}
2024
}
2125

2226
namespace Aspire.Hosting.ApplicationModel
2327
{
24-
public partial class GolangAppExecutableResource : ExecutableResource, IResourceWithServiceDiscovery, IResourceWithEndpoints, IResource
28+
public partial class GolangAppExecutableResource : ExecutableResource, IResourceWithServiceDiscovery, IResourceWithEndpoints, IResource, IContainerFilesDestinationResource
2529
{
2630
public GolangAppExecutableResource(string name, string workingDirectory) : base(default!, default!, default!) { }
31+
32+
public string ContainerFilesDestination { get { throw null; } }
33+
}
34+
35+
public partial class GoModInstallerResource : ExecutableResource
36+
{
37+
public GoModInstallerResource(string name, string workingDirectory) : base(default!, default!, default!) { }
2738
}
2839
}

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

Lines changed: 47 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,45 @@ namespace Aspire.Hosting
1010
{
1111
public static partial class JavaAppHostingExtension
1212
{
13+
[System.Obsolete("Use AddJavaContainerApp instead. This method will be removed in a future version.")]
1314
public static ApplicationModel.IResourceBuilder<ApplicationModel.JavaAppContainerResource> AddJavaApp(this IDistributedApplicationBuilder builder, string name, ApplicationModel.JavaAppContainerResourceOptions options) { throw null; }
1415

16+
[System.Obsolete("Use AddJavaApp(string, string, string, string[]?) instead. This method will be removed in a future version.")]
1517
public static ApplicationModel.IResourceBuilder<ApplicationModel.JavaAppExecutableResource> AddJavaApp(this IDistributedApplicationBuilder builder, string name, string workingDirectory, ApplicationModel.JavaAppExecutableResourceOptions options) { throw null; }
1618

19+
public static ApplicationModel.IResourceBuilder<ApplicationModel.JavaAppExecutableResource> AddJavaApp(this IDistributedApplicationBuilder builder, string name, string workingDirectory, string jarPath, string[]? args = null) { throw null; }
20+
21+
public static ApplicationModel.IResourceBuilder<ApplicationModel.JavaAppExecutableResource> AddJavaApp(this IDistributedApplicationBuilder builder, string name, string workingDirectory) { throw null; }
22+
23+
public static ApplicationModel.IResourceBuilder<ApplicationModel.JavaAppContainerResource> AddJavaContainerApp(this IDistributedApplicationBuilder builder, string name, string image, string? imageTag = null) { throw null; }
24+
25+
[System.Obsolete("Use AddJavaContainerApp instead. This method will be removed in a future version.")]
1726
public static ApplicationModel.IResourceBuilder<ApplicationModel.JavaAppContainerResource> AddSpringApp(this IDistributedApplicationBuilder builder, string name, ApplicationModel.JavaAppContainerResourceOptions options) { throw null; }
1827

28+
[System.Obsolete("Use AddJavaApp instead. This method will be removed in a future version.")]
1929
public static ApplicationModel.IResourceBuilder<ApplicationModel.JavaAppExecutableResource> AddSpringApp(this IDistributedApplicationBuilder builder, string name, string workingDirectory, ApplicationModel.JavaAppExecutableResourceOptions options) { throw null; }
2030

21-
public static ApplicationModel.IResourceBuilder<ApplicationModel.JavaAppExecutableResource> WithMavenBuild(this ApplicationModel.IResourceBuilder<ApplicationModel.JavaAppExecutableResource> builder, MavenOptions? mavenOptions = null) { throw null; }
31+
public static ApplicationModel.IResourceBuilder<ApplicationModel.JavaAppExecutableResource> WithGradleBuild(this ApplicationModel.IResourceBuilder<ApplicationModel.JavaAppExecutableResource> builder, params string[] args) { throw null; }
32+
33+
public static ApplicationModel.IResourceBuilder<ApplicationModel.JavaAppExecutableResource> WithGradleTask(this ApplicationModel.IResourceBuilder<ApplicationModel.JavaAppExecutableResource> builder, string task, params string[] args) { throw null; }
34+
35+
public static ApplicationModel.IResourceBuilder<T> WithJvmArgs<T>(this ApplicationModel.IResourceBuilder<T> builder, string[] args)
36+
where T : ApplicationModel.IResourceWithEnvironment { throw null; }
37+
38+
[System.Obsolete("Use WithMavenBuild(string?, params string[]) instead. This method will be removed in a future version.")]
39+
public static ApplicationModel.IResourceBuilder<ApplicationModel.JavaAppExecutableResource> WithMavenBuild(this ApplicationModel.IResourceBuilder<ApplicationModel.JavaAppExecutableResource> builder, MavenOptions mavenOptions) { throw null; }
40+
41+
public static ApplicationModel.IResourceBuilder<ApplicationModel.JavaAppExecutableResource> WithMavenBuild(this ApplicationModel.IResourceBuilder<ApplicationModel.JavaAppExecutableResource> builder, params string[] args) { throw null; }
42+
43+
public static ApplicationModel.IResourceBuilder<ApplicationModel.JavaAppExecutableResource> WithMavenGoal(this ApplicationModel.IResourceBuilder<ApplicationModel.JavaAppExecutableResource> builder, string goal, params string[] args) { throw null; }
44+
45+
public static ApplicationModel.IResourceBuilder<T> WithOtelAgent<T>(this ApplicationModel.IResourceBuilder<T> builder, string? agentPath = null)
46+
where T : ApplicationModel.IResourceWithEnvironment { throw null; }
47+
48+
public static ApplicationModel.IResourceBuilder<ApplicationModel.JavaAppExecutableResource> WithWrapperPath(this ApplicationModel.IResourceBuilder<ApplicationModel.JavaAppExecutableResource> builder, string wrapperScript) { throw null; }
2249
}
2350

51+
[System.Obsolete("This class will be removed in a future version.")]
2452
public sealed partial class MavenOptions
2553
{
2654
public string[] Args { get { throw null; } set { } }
@@ -33,11 +61,17 @@ public sealed partial class MavenOptions
3361

3462
namespace Aspire.Hosting.ApplicationModel
3563
{
64+
public partial class GradleBuildResource : ExecutableResource
65+
{
66+
public GradleBuildResource(string name, string wrapperScript, string workingDirectory) : base(default!, default!, default!) { }
67+
}
68+
3669
public partial class JavaAppContainerResource : ContainerResource, IResourceWithServiceDiscovery, IResourceWithEndpoints, IResource
3770
{
3871
public JavaAppContainerResource(string name, string? entrypoint = null) : base(default!, default) { }
3972
}
4073

74+
[System.Obsolete("This class will be removed in a future version.")]
4175
public partial class JavaAppContainerResourceOptions
4276
{
4377
public string[]? Args { get { throw null; } set { } }
@@ -55,11 +89,17 @@ public partial class JavaAppContainerResourceOptions
5589
public int TargetPort { get { throw null; } set { } }
5690
}
5791

58-
public partial class JavaAppExecutableResource : ExecutableResource, IResourceWithServiceDiscovery, IResourceWithEndpoints, IResource
92+
public partial class JavaAppExecutableResource : ExecutableResource, IResourceWithServiceDiscovery, IResourceWithEndpoints, IResource, IResourceWithWaitSupport
5993
{
94+
[System.Obsolete("Use JavaAppExecutableResource(string, string) instead. This constructor will be removed in a future version.")]
6095
public JavaAppExecutableResource(string name, string command, string workingDirectory) : base(default!, default!, default!) { }
96+
97+
public JavaAppExecutableResource(string name, string workingDirectory) : base(default!, default!, default!) { }
98+
99+
public string? JarPath { get { throw null; } set { } }
61100
}
62101

102+
[System.Obsolete("This class will be removed in a future version.")]
63103
public partial class JavaAppExecutableResourceOptions
64104
{
65105
public string? ApplicationName { get { throw null; } set { } }
@@ -72,4 +112,9 @@ public partial class JavaAppExecutableResourceOptions
72112

73113
public int Port { get { throw null; } set { } }
74114
}
115+
116+
public partial class MavenBuildResource : ExecutableResource
117+
{
118+
public MavenBuildResource(string name, string wrapperScript, string workingDirectory) : base(default!, default!, default!) { }
119+
}
75120
}

src/CommunityToolkit.Aspire.Hosting.Minio/api/CommunityToolkit.Aspire.Hosting.Minio.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("The MinIO OSS project has been archived and is no longer maintained. This integration is deprecated and will be removed in a future version.")]
1112
public static partial class MinioBuilderExtensions
1213
{
1314
public static ApplicationModel.IResourceBuilder<ApplicationModel.MinioContainerResource> AddMinioContainer(this IDistributedApplicationBuilder builder, string name, ApplicationModel.IResourceBuilder<ApplicationModel.ParameterResource>? rootUser = null, ApplicationModel.IResourceBuilder<ApplicationModel.ParameterResource>? rootPassword = null, int? port = null) { throw null; }
@@ -26,6 +27,7 @@ public static partial class MinioBuilderExtensions
2627

2728
namespace Aspire.Hosting.ApplicationModel
2829
{
30+
[System.Obsolete("The MinIO OSS project has been archived and is no longer maintained. This integration is deprecated and will be removed in a future version.")]
2931
public sealed partial class MinioContainerResource : ContainerResource, IResourceWithConnectionString, IResource, IManifestExpressionProvider, IValueProvider, IValueWithReferences
3032
{
3133
public MinioContainerResource(string name, ParameterResource rootUser, ParameterResource passwordParameter) : base(default!, default) { }

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,8 @@ public partial class RavenDBServerSettings
9393
{
9494
protected RavenDBServerSettings() { }
9595

96+
public bool? ForceTcpScheme { get { throw null; } set { } }
97+
9698
public LicensingOptions? LicensingOptions { get { throw null; } }
9799

98100
public int? Port { get { throw null; } set { } }

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

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,21 @@ namespace Aspire.Hosting
1111
public static partial class SolrBuilderExtensions
1212
{
1313
public static ApplicationModel.IResourceBuilder<ApplicationModel.SolrResource> AddSolr(this IDistributedApplicationBuilder builder, string name, int? port = null, string? coreName = null) { throw null; }
14+
15+
public static ApplicationModel.IResourceBuilder<ApplicationModel.SolrResource> WithConfigset(this ApplicationModel.IResourceBuilder<ApplicationModel.SolrResource> builder, string configSetName, string configSetPath) { throw null; }
16+
17+
public static ApplicationModel.IResourceBuilder<ApplicationModel.SolrResource> WithDataBindMount(this ApplicationModel.IResourceBuilder<ApplicationModel.SolrResource> builder, string source, bool isReadOnly = false) { throw null; }
18+
19+
public static ApplicationModel.IResourceBuilder<ApplicationModel.SolrResource> WithDataVolume(this ApplicationModel.IResourceBuilder<ApplicationModel.SolrResource> builder, string? name = null, bool isReadOnly = false) { throw null; }
20+
}
21+
22+
public sealed partial class SolrConfigSetAnnotation : ApplicationModel.IResourceAnnotation
23+
{
24+
public SolrConfigSetAnnotation(string configSetName, string configSetPath) { }
25+
26+
public string ConfigSetName { get { throw null; } }
27+
28+
public string ConfigSetPath { get { throw null; } }
1429
}
1530
}
1631

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
@@ -31,6 +31,8 @@ public static partial class SurrealDbBuilderExtensions
3131

3232
public static ApplicationModel.IResourceBuilder<ApplicationModel.SurrealDbServerResource> WithLogLevel(this ApplicationModel.IResourceBuilder<ApplicationModel.SurrealDbServerResource> builder, Microsoft.Extensions.Logging.LogLevel logLevel) { throw null; }
3333

34+
public static ApplicationModel.IResourceBuilder<ApplicationModel.SurrealDbServerResource> WithOtlpExporter(this ApplicationModel.IResourceBuilder<ApplicationModel.SurrealDbServerResource> builder) { throw null; }
35+
3436
public static ApplicationModel.IResourceBuilder<T> WithSurrealist<T>(this ApplicationModel.IResourceBuilder<T> builder, System.Action<ApplicationModel.IResourceBuilder<ApplicationModel.SurrealistContainerResource>>? configureContainer = null, string? containerName = null)
3537
where T : ApplicationModel.SurrealDbServerResource { throw null; }
3638
}
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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 UmamiBuilderExtensions
12+
{
13+
public static ApplicationModel.IResourceBuilder<ApplicationModel.UmamiResource> AddUmami(this IDistributedApplicationBuilder builder, string name, ApplicationModel.IResourceBuilder<ApplicationModel.ParameterResource>? secret = null, int? port = null) { throw null; }
14+
15+
public static ApplicationModel.IResourceBuilder<ApplicationModel.UmamiResource> WithPostgreSQL(this ApplicationModel.IResourceBuilder<ApplicationModel.UmamiResource> builder, ApplicationModel.IResourceBuilder<ApplicationModel.PostgresDatabaseResource> database) { throw null; }
16+
}
17+
}
18+
19+
namespace Aspire.Hosting.ApplicationModel
20+
{
21+
public partial class UmamiResource : ContainerResource, IResourceWithServiceDiscovery, IResourceWithEndpoints, IResource
22+
{
23+
public UmamiResource(string name, ParameterResource secret) : base(default!, default) { }
24+
25+
public EndpointReference PrimaryEndpoint { get { throw null; } }
26+
27+
public ParameterResource SecretParameter { get { throw null; } }
28+
}
29+
}

0 commit comments

Comments
 (0)