Skip to content

Commit 5c1bf72

Browse files
Alirexaagithub-actions[bot]
authored andcommitted
[create-pull-request] automated change
1 parent 21a6826 commit 5c1bf72

File tree

6 files changed

+182
-1
lines changed

6 files changed

+182
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace Aspire.Hosting
1010
{
1111
public static partial class GolangAppHostingExtension
1212
{
13-
public static ApplicationModel.IResourceBuilder<ApplicationModel.GolangAppExecutableResource> AddGolangApp(this IDistributedApplicationBuilder builder, string name, string workingDirectory, string[]? args = null) { throw null; }
13+
public static ApplicationModel.IResourceBuilder<ApplicationModel.GolangAppExecutableResource> AddGolangApp(this IDistributedApplicationBuilder builder, string name, string workingDirectory, string[]? args = null, string[]? buildTags = null) { throw null; }
1414
}
1515
}
1616

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 MinioBuilderExtensions
12+
{
13+
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; }
14+
15+
public static ApplicationModel.IResourceBuilder<ApplicationModel.MinioContainerResource> WithDataBindMount(this ApplicationModel.IResourceBuilder<ApplicationModel.MinioContainerResource> builder, string source) { throw null; }
16+
17+
public static ApplicationModel.IResourceBuilder<ApplicationModel.MinioContainerResource> WithDataVolume(this ApplicationModel.IResourceBuilder<ApplicationModel.MinioContainerResource> builder, string? name = null) { throw null; }
18+
19+
public static ApplicationModel.IResourceBuilder<ApplicationModel.MinioContainerResource> WithHostPort(this ApplicationModel.IResourceBuilder<ApplicationModel.MinioContainerResource> builder, int? port) { throw null; }
20+
21+
public static ApplicationModel.IResourceBuilder<ApplicationModel.MinioContainerResource> WithPassword(this ApplicationModel.IResourceBuilder<ApplicationModel.MinioContainerResource> builder, ApplicationModel.IResourceBuilder<ApplicationModel.ParameterResource> password) { throw null; }
22+
23+
public static ApplicationModel.IResourceBuilder<ApplicationModel.MinioContainerResource> WithUserName(this ApplicationModel.IResourceBuilder<ApplicationModel.MinioContainerResource> builder, ApplicationModel.IResourceBuilder<ApplicationModel.ParameterResource> userName) { throw null; }
24+
}
25+
}
26+
27+
namespace Aspire.Hosting.ApplicationModel
28+
{
29+
public sealed partial class MinioContainerResource : ContainerResource, IResourceWithConnectionString, IResource, IManifestExpressionProvider, IValueProvider, IValueWithReferences
30+
{
31+
public MinioContainerResource(string name, ParameterResource rootUser, ParameterResource passwordParameter) : base(default!, default) { }
32+
33+
public ReferenceExpression ConnectionStringExpression { get { throw null; } }
34+
35+
public ParameterResource PasswordParameter { get { throw null; } }
36+
37+
public EndpointReference PrimaryEndpoint { get { throw null; } }
38+
39+
public ParameterResource RootUser { get { throw null; } set { } }
40+
41+
public System.Threading.Tasks.ValueTask<string?> GetConnectionStringAsync(System.Threading.CancellationToken cancellationToken = default) { throw null; }
42+
}
43+
}

src/CommunityToolkit.Aspire.Hosting.NodeJS.Extensions/api/CommunityToolkit.Aspire.Hosting.NodeJS.Extensions.cs

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,22 @@ public static partial class NodeJSHostingExtensions
2222

2323
public static ApplicationModel.IResourceBuilder<NodeAppResource> WithYarnPackageInstallation(this ApplicationModel.IResourceBuilder<NodeAppResource> resource, string[]? args = null) { throw null; }
2424
}
25+
}
26+
27+
namespace Aspire.Hosting.ApplicationModel
28+
{
29+
public partial class NpmInstallerResource : ExecutableResource
30+
{
31+
public NpmInstallerResource(string name, string workingDirectory) : base(default!, default!, default!) { }
32+
}
33+
34+
public partial class PnpmInstallerResource : ExecutableResource
35+
{
36+
public PnpmInstallerResource(string name, string workingDirectory) : base(default!, default!, default!) { }
37+
}
38+
39+
public partial class YarnInstallerResource : ExecutableResource
40+
{
41+
public YarnInstallerResource(string name, string workingDirectory) : base(default!, default!, default!) { }
42+
}
2543
}
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
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 CommunityToolkit.Aspire.Hosting.PowerShell
10+
{
11+
public static partial class DistributedApplicationBuilderExtensions
12+
{
13+
public static global::Aspire.Hosting.ApplicationModel.IResourceBuilder<PowerShellRunspacePoolResource> AddPowerShell(this global::Aspire.Hosting.IDistributedApplicationBuilder builder, string name, System.Management.Automation.PSLanguageMode languageMode = System.Management.Automation.PSLanguageMode.ConstrainedLanguage, int minRunspaces = 1, int maxRunspaces = 5) { throw null; }
14+
}
15+
16+
public partial class PowerShellRunspacePoolResource : global::Aspire.Hosting.ApplicationModel.Resource, System.IDisposable, global::Aspire.Hosting.ApplicationModel.IResourceWithWaitSupport, global::Aspire.Hosting.ApplicationModel.IResource
17+
{
18+
public PowerShellRunspacePoolResource(string name, System.Management.Automation.PSLanguageMode languageMode = System.Management.Automation.PSLanguageMode.ConstrainedLanguage, int minRunspaces = 1, int maxRunspaces = 5) : base(default!) { }
19+
20+
public System.Management.Automation.PSLanguageMode LanguageMode { get { throw null; } }
21+
22+
public int MaxRunspaces { get { throw null; } }
23+
24+
public int MinRunspaces { get { throw null; } }
25+
26+
public System.Management.Automation.Runspaces.RunspacePool? Pool { get { throw null; } }
27+
28+
void System.IDisposable.Dispose() { }
29+
}
30+
31+
public static partial class PowerShellRunspacePoolResourceBuilderExtensions
32+
{
33+
public static global::Aspire.Hosting.ApplicationModel.IResourceBuilder<PowerShellScriptResource> AddScript(this global::Aspire.Hosting.ApplicationModel.IResourceBuilder<PowerShellRunspacePoolResource> builder, string name, string script) { throw null; }
34+
35+
public static global::Aspire.Hosting.ApplicationModel.IResourceBuilder<PowerShellRunspacePoolResource> WithReference(this global::Aspire.Hosting.ApplicationModel.IResourceBuilder<PowerShellRunspacePoolResource> builder, global::Aspire.Hosting.ApplicationModel.IResourceBuilder<global::Aspire.Hosting.ApplicationModel.IResourceWithConnectionString> source, string? connectionName = null, bool optional = false) { throw null; }
36+
}
37+
38+
public partial record PowerShellScriptArgsAnnotation(object[] Args) : global::Aspire.Hosting.ApplicationModel.IResourceAnnotation
39+
{
40+
}
41+
42+
public partial class PowerShellScriptResource : global::Aspire.Hosting.ApplicationModel.Resource, System.IDisposable, global::Aspire.Hosting.ApplicationModel.IResourceWithEnvironment, global::Aspire.Hosting.ApplicationModel.IResource, global::Aspire.Hosting.ApplicationModel.IResourceWithWaitSupport, global::Aspire.Hosting.ApplicationModel.IResourceWithArgs
43+
{
44+
public PowerShellScriptResource(string name, System.IO.FileInfo scriptFile, PowerShellRunspacePoolResource parent) : base(default!) { }
45+
46+
public PowerShellScriptResource(string name, System.Management.Automation.ScriptBlock script, PowerShellRunspacePoolResource parent) : base(default!) { }
47+
48+
public PowerShellRunspacePoolResource Parent { get { throw null; } }
49+
50+
public System.Threading.Tasks.Task<bool> BreakAsync() { throw null; }
51+
52+
public System.Threading.Tasks.Task StartAsync(Microsoft.Extensions.Logging.ILogger scriptLogger, global::Aspire.Hosting.ApplicationModel.ResourceNotificationService notificationService, System.Threading.CancellationToken cancellationToken = default) { throw null; }
53+
54+
void System.IDisposable.Dispose() { }
55+
}
56+
57+
public static partial class PowerShellScriptResourceBuilderExtensions
58+
{
59+
public static global::Aspire.Hosting.ApplicationModel.IResourceBuilder<PowerShellScriptResource> WithArgs(this global::Aspire.Hosting.ApplicationModel.IResourceBuilder<PowerShellScriptResource> builder, params object[] args) { throw null; }
60+
}
61+
62+
public partial record PowerShellVariableReferenceAnnotation<T>(string Name, T Value) : global::Aspire.Hosting.ApplicationModel.IResourceAnnotation, System.IEquatable<PowerShellVariableReferenceAnnotation<T>>
63+
{
64+
}
65+
}

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
@@ -32,6 +32,11 @@ public static partial class SqlProjectBuilderExtensions
3232
public static ApplicationModel.IResourceBuilder<ApplicationModel.SqlPackageResource<TPackage>> WithConfigureDacDeployOptions<TPackage>(this ApplicationModel.IResourceBuilder<ApplicationModel.SqlPackageResource<TPackage>> builder, System.Action<Microsoft.SqlServer.Dac.DacDeployOptions> configureDeploymentOptions)
3333
where TPackage : IPackageMetadata { throw null; }
3434

35+
public static ApplicationModel.IResourceBuilder<ApplicationModel.SqlProjectResource> WithDacDeployOptions(this ApplicationModel.IResourceBuilder<ApplicationModel.SqlProjectResource> builder, string optionsPath) { throw null; }
36+
37+
public static ApplicationModel.IResourceBuilder<ApplicationModel.SqlPackageResource<TPackage>> WithDacDeployOptions<TPackage>(this ApplicationModel.IResourceBuilder<ApplicationModel.SqlPackageResource<TPackage>> builder, string optionsPath)
38+
where TPackage : IPackageMetadata { throw null; }
39+
3540
public static ApplicationModel.IResourceBuilder<ApplicationModel.SqlProjectResource> WithDacpac(this ApplicationModel.IResourceBuilder<ApplicationModel.SqlProjectResource> builder, string dacpacPath) { throw null; }
3641

3742
public static ApplicationModel.IResourceBuilder<ApplicationModel.SqlPackageResource<TPackage>> WithDacpac<TPackage>(this ApplicationModel.IResourceBuilder<ApplicationModel.SqlPackageResource<TPackage>> builder, string dacpacPath)
@@ -55,6 +60,10 @@ public partial record ConfigureDacDeployOptionsAnnotation(System.Action<Microsof
5560
{
5661
}
5762

63+
public partial record DacDeployOptionsAnnotation(string OptionsPath) : IResourceAnnotation
64+
{
65+
}
66+
5867
public partial record DacpacMetadataAnnotation(string DacpacPath) : IResourceAnnotation
5968
{
6069
}
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
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 CommunityToolkit.Aspire.Minio.Client
10+
{
11+
public partial class HeaderAppInformation
12+
{
13+
public string AppName { get { throw null; } set { } }
14+
15+
public string AppVersion { get { throw null; } set { } }
16+
}
17+
18+
public sealed partial class MinioClientSettings
19+
{
20+
public Microsoft.Extensions.DependencyInjection.ServiceLifetime ServiceLifetime;
21+
public MinioCredentials? Credentials { get { throw null; } set { } }
22+
23+
public System.Uri? Endpoint { get { throw null; } set { } }
24+
25+
public bool SetTraceOn { get { throw null; } set { } }
26+
27+
public HeaderAppInformation? UserAgentHeaderInfo { get { throw null; } set { } }
28+
29+
public bool UseSsl { get { throw null; } set { } }
30+
}
31+
32+
public partial class MinioCredentials
33+
{
34+
public string AccessKey { get { throw null; } set { } }
35+
36+
public string SecretKey { get { throw null; } set { } }
37+
}
38+
}
39+
40+
namespace Microsoft.Extensions.Hosting
41+
{
42+
public static partial class MinioClientBuilderExtensionMethods
43+
{
44+
public static void AddMinioClient(this IHostApplicationBuilder builder, string? connectionName = null, string? configurationSectionName = "Aspire:Minio:Client", System.Action<CommunityToolkit.Aspire.Minio.Client.MinioClientSettings>? configureSettings = null) { }
45+
}
46+
}

0 commit comments

Comments
 (0)