Skip to content

Commit 2bf7e2b

Browse files
Alirexaagithub-actions[bot]
authored andcommitted
[create-pull-request] automated change
1 parent c0d5078 commit 2bf7e2b

File tree

2 files changed

+89
-0
lines changed

2 files changed

+89
-0
lines changed
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+
}
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)