Skip to content

Commit 5191901

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

2 files changed

Lines changed: 66 additions & 2 deletions

File tree

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
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 DevCertHostingExtensions
12+
{
13+
public const string CERT_FILE_NAME = "dev-cert.pem";
14+
public const string CERT_KEY_FILE_NAME = "dev-cert.key";
15+
public const string DEV_CERT_BIND_MOUNT_DEST_DIR = "/dev-certs";
16+
public static ApplicationModel.IResourceBuilder<TResource> RunWithHttpsDevCertificate<TResource>(this ApplicationModel.IResourceBuilder<TResource> builder, string certFileEnv = "", string certKeyFileEnv = "")
17+
where TResource : ApplicationModel.IResourceWithEnvironment, ApplicationModel.IResourceWithWaitSupport { throw null; }
18+
}
19+
20+
public static partial class OpenTelemetryCollectorExtensions
21+
{
22+
public static ApplicationModel.IResourceBuilder<OpenTelemetryCollectorResource> AddOpenTelemetryCollector(this IDistributedApplicationBuilder builder, string name, System.Action<OpenTelemetryCollectorSettings>? configureSettings = null) { throw null; }
23+
24+
public static ApplicationModel.IResourceBuilder<OpenTelemetryCollectorResource> WithAppForwarding(this ApplicationModel.IResourceBuilder<OpenTelemetryCollectorResource> builder) { throw null; }
25+
26+
public static ApplicationModel.IResourceBuilder<OpenTelemetryCollectorResource> WithConfig(this ApplicationModel.IResourceBuilder<OpenTelemetryCollectorResource> builder, string configPath) { throw null; }
27+
}
28+
29+
public partial class OpenTelemetryCollectorResource : ApplicationModel.ContainerResource
30+
{
31+
public OpenTelemetryCollectorResource(string name) : base(default!, default) { }
32+
33+
public ApplicationModel.EndpointReference GrpcEndpoint { get { throw null; } }
34+
35+
public ApplicationModel.EndpointReference HttpEndpoint { get { throw null; } }
36+
}
37+
38+
public static partial class OpenTelemetryCollectorRoutingExtensions
39+
{
40+
public static ApplicationModel.IResourceBuilder<T> WithOpenTelemetryCollectorRouting<T>(this ApplicationModel.IResourceBuilder<T> builder, ApplicationModel.IResourceBuilder<OpenTelemetryCollectorResource> collectorBuilder)
41+
where T : ApplicationModel.IResourceWithEnvironment { throw null; }
42+
}
43+
44+
public partial class OpenTelemetryCollectorSettings
45+
{
46+
public string CollectorImage { get { throw null; } }
47+
48+
public string CollectorTag { get { throw null; } set { } }
49+
50+
public bool EnableGrpcEndpoint { get { throw null; } set { } }
51+
52+
public bool EnableHttpEndpoint { get { throw null; } set { } }
53+
54+
public bool ForceNonSecureReceiver { get { throw null; } set { } }
55+
56+
public string Image { get { throw null; } set { } }
57+
58+
public string Registry { get { throw null; } set { } }
59+
}
60+
}

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

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,17 @@ public static partial class SolrBuilderExtensions
1313
public static ApplicationModel.IResourceBuilder<ApplicationModel.SolrResource> AddSolr(this IDistributedApplicationBuilder builder, string name, int? port = null, string? coreName = null) { throw null; }
1414
}
1515
}
16+
1617
namespace Aspire.Hosting.ApplicationModel
1718
{
1819
public partial class SolrResource : ContainerResource, IResourceWithConnectionString, IResource, IManifestExpressionProvider, IValueProvider, IValueWithReferences
1920
{
2021
public SolrResource(string name, string coreName) : base(default!, default) { }
21-
public string CoreName { get { throw null; } set { } }
22+
2223
public ReferenceExpression ConnectionStringExpression { get { throw null; } }
24+
25+
public string CoreName { get { throw null; } set { } }
26+
2327
public EndpointReference PrimaryEndpoint { get { throw null; } }
2428
}
25-
}
29+
}

0 commit comments

Comments
 (0)