Skip to content

Commit bb27f4f

Browse files
Alirexaagithub-actions[bot]
authored andcommitted
[create-pull-request] automated change
1 parent 66d15e7 commit bb27f4f

File tree

6 files changed

+91
-3
lines changed

6 files changed

+91
-3
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.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
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)