Skip to content

Commit 963eadb

Browse files
Alirexaagithub-actions[bot]
authored andcommitted
[create-pull-request] automated change
1 parent 4958e4a commit 963eadb

File tree

5 files changed

+50
-0
lines changed

5 files changed

+50
-0
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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 FlagdBuilderExtensions
12+
{
13+
public static ApplicationModel.IResourceBuilder<ApplicationModel.FlagdResource> AddFlagd(this IDistributedApplicationBuilder builder, string name, int? port = null, int? ofrepPort = null) { throw null; }
14+
15+
public static ApplicationModel.IResourceBuilder<ApplicationModel.FlagdResource> WithBindFileSync(this ApplicationModel.IResourceBuilder<ApplicationModel.FlagdResource> builder, string fileSource, string filename = "flagd.json") { throw null; }
16+
17+
public static ApplicationModel.IResourceBuilder<ApplicationModel.FlagdResource> WithLogLevel(this ApplicationModel.IResourceBuilder<ApplicationModel.FlagdResource> builder, Microsoft.Extensions.Logging.LogLevel logLevel) { throw null; }
18+
}
19+
}
20+
21+
namespace Aspire.Hosting.ApplicationModel
22+
{
23+
public partial class FlagdResource : ContainerResource, IResourceWithConnectionString, IResource, IManifestExpressionProvider, IValueProvider, IValueWithReferences
24+
{
25+
public FlagdResource(string name) : base(default!, default) { }
26+
27+
public ReferenceExpression ConnectionStringExpression { get { throw null; } }
28+
29+
public EndpointReference HealthCheckEndpoint { get { throw null; } }
30+
31+
public EndpointReference OfrepEndpoint { get { throw null; } }
32+
33+
public EndpointReference PrimaryEndpoint { get { throw null; } }
34+
}
35+
}

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ public static partial class GoFeatureFlagBuilderExtensions
1515
public static ApplicationModel.IResourceBuilder<ApplicationModel.GoFeatureFlagResource> WithDataVolume(this ApplicationModel.IResourceBuilder<ApplicationModel.GoFeatureFlagResource> builder, string? name = null) { throw null; }
1616

1717
public static ApplicationModel.IResourceBuilder<ApplicationModel.GoFeatureFlagResource> WithGoffBindMount(this ApplicationModel.IResourceBuilder<ApplicationModel.GoFeatureFlagResource> builder, string source) { throw null; }
18+
19+
public static ApplicationModel.IResourceBuilder<ApplicationModel.GoFeatureFlagResource> WithLogLevel(this ApplicationModel.IResourceBuilder<ApplicationModel.GoFeatureFlagResource> builder, Microsoft.Extensions.Logging.LogLevel logLevel) { throw null; }
1820
}
1921
}
2022

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ public partial class JavaAppExecutableResourceOptions
6666

6767
public string[]? Args { get { throw null; } set { } }
6868

69+
public string[]? JvmArgs { get { throw null; } set { } }
70+
6971
public string? OtelAgentPath { get { throw null; } set { } }
7072

7173
public int Port { get { throw null; } set { } }

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
@@ -51,6 +51,11 @@ public static partial class SqlProjectBuilderExtensions
5151

5252
public static ApplicationModel.IResourceBuilder<ApplicationModel.SqlPackageResource<TPackage>> WithReference<TPackage>(this ApplicationModel.IResourceBuilder<ApplicationModel.SqlPackageResource<TPackage>> builder, ApplicationModel.IResourceBuilder<ApplicationModel.SqlServerDatabaseResource> target)
5353
where TPackage : IPackageMetadata { throw null; }
54+
55+
public static ApplicationModel.IResourceBuilder<ApplicationModel.SqlProjectResource> WithSkipWhenDeployed(this ApplicationModel.IResourceBuilder<ApplicationModel.SqlProjectResource> builder) { throw null; }
56+
57+
public static ApplicationModel.IResourceBuilder<ApplicationModel.SqlPackageResource<TPackage>> WithSkipWhenDeployed<TPackage>(this ApplicationModel.IResourceBuilder<ApplicationModel.SqlPackageResource<TPackage>> builder)
58+
where TPackage : IPackageMetadata { throw null; }
5459
}
5560
}
5661

@@ -68,6 +73,10 @@ public partial record DacpacMetadataAnnotation(string DacpacPath) : IResourceAnn
6873
{
6974
}
7075

76+
public sealed partial class DacpacSkipWhenDeployedAnnotation : IResourceAnnotation
77+
{
78+
}
79+
7180
public partial interface IResourceWithDacpac : IResource, IResourceWithWaitSupport
7281
{
7382
}

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
@@ -29,6 +29,8 @@ public static partial class SurrealDbBuilderExtensions
2929
[System.Diagnostics.CodeAnalysis.Experimental("CTASPIRE002")]
3030
public static ApplicationModel.IResourceBuilder<ApplicationModel.SurrealDbServerResource> WithInitFiles(this ApplicationModel.IResourceBuilder<ApplicationModel.SurrealDbServerResource> builder, string source) { throw null; }
3131

32+
public static ApplicationModel.IResourceBuilder<ApplicationModel.SurrealDbServerResource> WithLogLevel(this ApplicationModel.IResourceBuilder<ApplicationModel.SurrealDbServerResource> builder, Microsoft.Extensions.Logging.LogLevel logLevel) { throw null; }
33+
3234
public static ApplicationModel.IResourceBuilder<T> WithSurrealist<T>(this ApplicationModel.IResourceBuilder<T> builder, System.Action<ApplicationModel.IResourceBuilder<ApplicationModel.SurrealistContainerResource>>? configureContainer = null, string? containerName = null)
3335
where T : ApplicationModel.SurrealDbServerResource { throw null; }
3436
}

0 commit comments

Comments
 (0)