Skip to content

Commit

Permalink
make build_sdks
Browse files Browse the repository at this point in the history
  • Loading branch information
pulumi-bot committed Nov 17, 2023
1 parent 157463e commit 37e5a89
Show file tree
Hide file tree
Showing 127 changed files with 512 additions and 512 deletions.
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/AppSpecDomainNameArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace Pulumi.DigitalOcean.Inputs
public sealed class AppSpecDomainNameArgs : global::Pulumi.ResourceArgs
{
/// <summary>
/// The name of the component.
/// The hostname for the domain.
/// </summary>
[Input("name", required: true)]
public Input<string> Name { get; set; } = null!;
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/AppSpecDomainNameGetArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace Pulumi.DigitalOcean.Inputs
public sealed class AppSpecDomainNameGetArgs : global::Pulumi.ResourceArgs
{
/// <summary>
/// The name of the component.
/// The hostname for the domain.
/// </summary>
[Input("name", required: true)]
public Input<string> Name { get; set; } = null!;
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/AppSpecEnvArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public sealed class AppSpecEnvArgs : global::Pulumi.ResourceArgs
private Input<string>? _value;

/// <summary>
/// The threshold for the type of the warning.
/// The value of the environment variable.
/// </summary>
public Input<string>? Value
{
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/AppSpecEnvGetArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public sealed class AppSpecEnvGetArgs : global::Pulumi.ResourceArgs
private Input<string>? _value;

/// <summary>
/// The threshold for the type of the warning.
/// The value of the environment variable.
/// </summary>
public Input<string>? Value
{
Expand Down
4 changes: 2 additions & 2 deletions sdk/dotnet/Inputs/AppSpecFunctionArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public InputList<Inputs.AppSpecFunctionAlertArgs> Alerts
}

/// <summary>
/// The [CORS](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) policies of the app.
/// (Deprecated - use `ingress`) The [CORS](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) policies of the app.
/// </summary>
[Input("cors")]
public Input<Inputs.AppSpecFunctionCorsArgs>? Cors { get; set; }
Expand Down Expand Up @@ -82,7 +82,7 @@ public InputList<Inputs.AppSpecFunctionLogDestinationArgs> LogDestinations
private InputList<Inputs.AppSpecFunctionRouteArgs>? _routes;

/// <summary>
/// An HTTP paths that should be routed to this component.
/// (Deprecated - use `ingress`) An HTTP paths that should be routed to this component.
/// </summary>
[Obsolete(@"Service level routes are deprecated in favor of ingresses")]
public InputList<Inputs.AppSpecFunctionRouteArgs> Routes
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/AppSpecFunctionEnvArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public sealed class AppSpecFunctionEnvArgs : global::Pulumi.ResourceArgs
private Input<string>? _value;

/// <summary>
/// The threshold for the type of the warning.
/// The value of the environment variable.
/// </summary>
public Input<string>? Value
{
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/AppSpecFunctionEnvGetArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public sealed class AppSpecFunctionEnvGetArgs : global::Pulumi.ResourceArgs
private Input<string>? _value;

/// <summary>
/// The threshold for the type of the warning.
/// The value of the environment variable.
/// </summary>
public Input<string>? Value
{
Expand Down
4 changes: 2 additions & 2 deletions sdk/dotnet/Inputs/AppSpecFunctionGetArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public InputList<Inputs.AppSpecFunctionAlertGetArgs> Alerts
}

/// <summary>
/// The [CORS](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) policies of the app.
/// (Deprecated - use `ingress`) The [CORS](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) policies of the app.
/// </summary>
[Input("cors")]
public Input<Inputs.AppSpecFunctionCorsGetArgs>? Cors { get; set; }
Expand Down Expand Up @@ -82,7 +82,7 @@ public InputList<Inputs.AppSpecFunctionLogDestinationGetArgs> LogDestinations
private InputList<Inputs.AppSpecFunctionRouteGetArgs>? _routes;

/// <summary>
/// An HTTP paths that should be routed to this component.
/// (Deprecated - use `ingress`) An HTTP paths that should be routed to this component.
/// </summary>
[Obsolete(@"Service level routes are deprecated in favor of ingresses")]
public InputList<Inputs.AppSpecFunctionRouteGetArgs> Routes
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/AppSpecFunctionLogDestinationArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public sealed class AppSpecFunctionLogDestinationArgs : global::Pulumi.ResourceA
public Input<Inputs.AppSpecFunctionLogDestinationLogtailArgs>? Logtail { get; set; }

/// <summary>
/// The name of the component.
/// Name of the log destination. Minimum length: 2. Maximum length: 42.
/// </summary>
[Input("name", required: true)]
public Input<string> Name { get; set; } = null!;
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/AppSpecFunctionLogDestinationGetArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public sealed class AppSpecFunctionLogDestinationGetArgs : global::Pulumi.Resour
public Input<Inputs.AppSpecFunctionLogDestinationLogtailGetArgs>? Logtail { get; set; }

/// <summary>
/// The name of the component.
/// Name of the log destination. Minimum length: 2. Maximum length: 42.
/// </summary>
[Input("name", required: true)]
public Input<string> Name { get; set; } = null!;
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/AppSpecIngressArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public sealed class AppSpecIngressArgs : global::Pulumi.ResourceArgs
private InputList<Inputs.AppSpecIngressRuleArgs>? _rules;

/// <summary>
/// The type of the alert to configure. Component app alert policies can be: `CPU_UTILIZATION`, `MEM_UTILIZATION`, or `RESTART_COUNT`.
/// Rules for configuring HTTP ingress for component routes, CORS, rewrites, and redirects.
/// </summary>
public InputList<Inputs.AppSpecIngressRuleArgs> Rules
{
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/AppSpecIngressGetArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public sealed class AppSpecIngressGetArgs : global::Pulumi.ResourceArgs
private InputList<Inputs.AppSpecIngressRuleGetArgs>? _rules;

/// <summary>
/// The type of the alert to configure. Component app alert policies can be: `CPU_UTILIZATION`, `MEM_UTILIZATION`, or `RESTART_COUNT`.
/// Rules for configuring HTTP ingress for component routes, CORS, rewrites, and redirects.
/// </summary>
public InputList<Inputs.AppSpecIngressRuleGetArgs> Rules
{
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/AppSpecIngressRuleArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public sealed class AppSpecIngressRuleArgs : global::Pulumi.ResourceArgs
public Input<Inputs.AppSpecIngressRuleComponentArgs>? Component { get; set; }

/// <summary>
/// The [CORS](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) policies of the app.
/// (Deprecated - use `ingress`) The [CORS](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) policies of the app.
/// </summary>
[Input("cors")]
public Input<Inputs.AppSpecIngressRuleCorsArgs>? Cors { get; set; }
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/AppSpecIngressRuleComponentArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public sealed class AppSpecIngressRuleComponentArgs : global::Pulumi.ResourceArg
public Input<string>? Name { get; set; }

/// <summary>
/// An optional flag to preserve the path that is forwarded to the backend service.
/// An optional boolean flag to preserve the path that is forwarded to the backend service. By default, the HTTP request path will be trimmed from the left when forwarded to the component.
/// </summary>
[Input("preservePathPrefix")]
public Input<bool>? PreservePathPrefix { get; set; }
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/AppSpecIngressRuleComponentGetArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public sealed class AppSpecIngressRuleComponentGetArgs : global::Pulumi.Resource
public Input<string>? Name { get; set; }

/// <summary>
/// An optional flag to preserve the path that is forwarded to the backend service.
/// An optional boolean flag to preserve the path that is forwarded to the backend service. By default, the HTTP request path will be trimmed from the left when forwarded to the component.
/// </summary>
[Input("preservePathPrefix")]
public Input<bool>? PreservePathPrefix { get; set; }
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/AppSpecIngressRuleGetArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public sealed class AppSpecIngressRuleGetArgs : global::Pulumi.ResourceArgs
public Input<Inputs.AppSpecIngressRuleComponentGetArgs>? Component { get; set; }

/// <summary>
/// The [CORS](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) policies of the app.
/// (Deprecated - use `ingress`) The [CORS](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) policies of the app.
/// </summary>
[Input("cors")]
public Input<Inputs.AppSpecIngressRuleCorsGetArgs>? Cors { get; set; }
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/AppSpecIngressRuleMatchArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace Pulumi.DigitalOcean.Inputs
public sealed class AppSpecIngressRuleMatchArgs : global::Pulumi.ResourceArgs
{
/// <summary>
/// Paths must start with `/` and must be unique within the app.
/// The path to match on.
/// </summary>
[Input("path")]
public Input<Inputs.AppSpecIngressRuleMatchPathArgs>? Path { get; set; }
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/AppSpecIngressRuleMatchGetArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace Pulumi.DigitalOcean.Inputs
public sealed class AppSpecIngressRuleMatchGetArgs : global::Pulumi.ResourceArgs
{
/// <summary>
/// Paths must start with `/` and must be unique within the app.
/// The path to match on.
/// </summary>
[Input("path")]
public Input<Inputs.AppSpecIngressRuleMatchPathGetArgs>? Path { get; set; }
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/AppSpecJobEnvArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public sealed class AppSpecJobEnvArgs : global::Pulumi.ResourceArgs
private Input<string>? _value;

/// <summary>
/// The threshold for the type of the warning.
/// The value of the environment variable.
/// </summary>
public Input<string>? Value
{
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/AppSpecJobEnvGetArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public sealed class AppSpecJobEnvGetArgs : global::Pulumi.ResourceArgs
private Input<string>? _value;

/// <summary>
/// The threshold for the type of the warning.
/// The value of the environment variable.
/// </summary>
public Input<string>? Value
{
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/AppSpecJobImageArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public sealed class AppSpecJobImageArgs : global::Pulumi.ResourceArgs
private InputList<Inputs.AppSpecJobImageDeployOnPushArgs>? _deployOnPushes;

/// <summary>
/// Whether to automatically deploy new commits made to the repo.
/// Configures automatically deploying images pushed to DOCR.
/// </summary>
public InputList<Inputs.AppSpecJobImageDeployOnPushArgs> DeployOnPushes
{
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/AppSpecJobImageGetArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public sealed class AppSpecJobImageGetArgs : global::Pulumi.ResourceArgs
private InputList<Inputs.AppSpecJobImageDeployOnPushGetArgs>? _deployOnPushes;

/// <summary>
/// Whether to automatically deploy new commits made to the repo.
/// Configures automatically deploying images pushed to DOCR.
/// </summary>
public InputList<Inputs.AppSpecJobImageDeployOnPushGetArgs> DeployOnPushes
{
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/AppSpecJobLogDestinationArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public sealed class AppSpecJobLogDestinationArgs : global::Pulumi.ResourceArgs
public Input<Inputs.AppSpecJobLogDestinationLogtailArgs>? Logtail { get; set; }

/// <summary>
/// The name of the component.
/// Name of the log destination. Minimum length: 2. Maximum length: 42.
/// </summary>
[Input("name", required: true)]
public Input<string> Name { get; set; } = null!;
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/AppSpecJobLogDestinationGetArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public sealed class AppSpecJobLogDestinationGetArgs : global::Pulumi.ResourceArg
public Input<Inputs.AppSpecJobLogDestinationLogtailGetArgs>? Logtail { get; set; }

/// <summary>
/// The name of the component.
/// Name of the log destination. Minimum length: 2. Maximum length: 42.
/// </summary>
[Input("name", required: true)]
public Input<string> Name { get; set; } = null!;
Expand Down
4 changes: 2 additions & 2 deletions sdk/dotnet/Inputs/AppSpecServiceArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public InputList<Inputs.AppSpecServiceAlertArgs> Alerts
public Input<string>? BuildCommand { get; set; }

/// <summary>
/// The [CORS](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) policies of the app.
/// (Deprecated - use `ingress`) The [CORS](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) policies of the app.
/// </summary>
[Input("cors")]
public Input<Inputs.AppSpecServiceCorsArgs>? Cors { get; set; }
Expand Down Expand Up @@ -142,7 +142,7 @@ public InputList<Inputs.AppSpecServiceLogDestinationArgs> LogDestinations
private InputList<Inputs.AppSpecServiceRouteArgs>? _routes;

/// <summary>
/// An HTTP paths that should be routed to this component.
/// (Deprecated - use `ingress`) An HTTP paths that should be routed to this component.
/// </summary>
[Obsolete(@"Service level routes are deprecated in favor of ingresses")]
public InputList<Inputs.AppSpecServiceRouteArgs> Routes
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/AppSpecServiceEnvArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public sealed class AppSpecServiceEnvArgs : global::Pulumi.ResourceArgs
private Input<string>? _value;

/// <summary>
/// The threshold for the type of the warning.
/// The value of the environment variable.
/// </summary>
public Input<string>? Value
{
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/AppSpecServiceEnvGetArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public sealed class AppSpecServiceEnvGetArgs : global::Pulumi.ResourceArgs
private Input<string>? _value;

/// <summary>
/// The threshold for the type of the warning.
/// The value of the environment variable.
/// </summary>
public Input<string>? Value
{
Expand Down
4 changes: 2 additions & 2 deletions sdk/dotnet/Inputs/AppSpecServiceGetArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public InputList<Inputs.AppSpecServiceAlertGetArgs> Alerts
public Input<string>? BuildCommand { get; set; }

/// <summary>
/// The [CORS](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) policies of the app.
/// (Deprecated - use `ingress`) The [CORS](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) policies of the app.
/// </summary>
[Input("cors")]
public Input<Inputs.AppSpecServiceCorsGetArgs>? Cors { get; set; }
Expand Down Expand Up @@ -142,7 +142,7 @@ public InputList<Inputs.AppSpecServiceLogDestinationGetArgs> LogDestinations
private InputList<Inputs.AppSpecServiceRouteGetArgs>? _routes;

/// <summary>
/// An HTTP paths that should be routed to this component.
/// (Deprecated - use `ingress`) An HTTP paths that should be routed to this component.
/// </summary>
[Obsolete(@"Service level routes are deprecated in favor of ingresses")]
public InputList<Inputs.AppSpecServiceRouteGetArgs> Routes
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/AppSpecServiceImageArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public sealed class AppSpecServiceImageArgs : global::Pulumi.ResourceArgs
private InputList<Inputs.AppSpecServiceImageDeployOnPushArgs>? _deployOnPushes;

/// <summary>
/// Whether to automatically deploy new commits made to the repo.
/// Configures automatically deploying images pushed to DOCR.
/// </summary>
public InputList<Inputs.AppSpecServiceImageDeployOnPushArgs> DeployOnPushes
{
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/AppSpecServiceImageGetArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public sealed class AppSpecServiceImageGetArgs : global::Pulumi.ResourceArgs
private InputList<Inputs.AppSpecServiceImageDeployOnPushGetArgs>? _deployOnPushes;

/// <summary>
/// Whether to automatically deploy new commits made to the repo.
/// Configures automatically deploying images pushed to DOCR.
/// </summary>
public InputList<Inputs.AppSpecServiceImageDeployOnPushGetArgs> DeployOnPushes
{
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/AppSpecServiceLogDestinationArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public sealed class AppSpecServiceLogDestinationArgs : global::Pulumi.ResourceAr
public Input<Inputs.AppSpecServiceLogDestinationLogtailArgs>? Logtail { get; set; }

/// <summary>
/// The name of the component.
/// Name of the log destination. Minimum length: 2. Maximum length: 42.
/// </summary>
[Input("name", required: true)]
public Input<string> Name { get; set; } = null!;
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/AppSpecServiceLogDestinationGetArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public sealed class AppSpecServiceLogDestinationGetArgs : global::Pulumi.Resourc
public Input<Inputs.AppSpecServiceLogDestinationLogtailGetArgs>? Logtail { get; set; }

/// <summary>
/// The name of the component.
/// Name of the log destination. Minimum length: 2. Maximum length: 42.
/// </summary>
[Input("name", required: true)]
public Input<string> Name { get; set; } = null!;
Expand Down
4 changes: 2 additions & 2 deletions sdk/dotnet/Inputs/AppSpecStaticSiteArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public sealed class AppSpecStaticSiteArgs : global::Pulumi.ResourceArgs
public Input<string>? CatchallDocument { get; set; }

/// <summary>
/// The [CORS](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) policies of the app.
/// (Deprecated - use `ingress`) The [CORS](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) policies of the app.
/// </summary>
[Input("cors")]
public Input<Inputs.AppSpecStaticSiteCorsArgs>? Cors { get; set; }
Expand Down Expand Up @@ -100,7 +100,7 @@ public InputList<Inputs.AppSpecStaticSiteEnvArgs> Envs
private InputList<Inputs.AppSpecStaticSiteRouteArgs>? _routes;

/// <summary>
/// An HTTP paths that should be routed to this component.
/// (Deprecated - use `ingress`) An HTTP paths that should be routed to this component.
/// </summary>
[Obsolete(@"Service level routes are deprecated in favor of ingresses")]
public InputList<Inputs.AppSpecStaticSiteRouteArgs> Routes
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/AppSpecStaticSiteEnvArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public sealed class AppSpecStaticSiteEnvArgs : global::Pulumi.ResourceArgs
private Input<string>? _value;

/// <summary>
/// The threshold for the type of the warning.
/// The value of the environment variable.
/// </summary>
public Input<string>? Value
{
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/AppSpecStaticSiteEnvGetArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public sealed class AppSpecStaticSiteEnvGetArgs : global::Pulumi.ResourceArgs
private Input<string>? _value;

/// <summary>
/// The threshold for the type of the warning.
/// The value of the environment variable.
/// </summary>
public Input<string>? Value
{
Expand Down
4 changes: 2 additions & 2 deletions sdk/dotnet/Inputs/AppSpecStaticSiteGetArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public sealed class AppSpecStaticSiteGetArgs : global::Pulumi.ResourceArgs
public Input<string>? CatchallDocument { get; set; }

/// <summary>
/// The [CORS](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) policies of the app.
/// (Deprecated - use `ingress`) The [CORS](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) policies of the app.
/// </summary>
[Input("cors")]
public Input<Inputs.AppSpecStaticSiteCorsGetArgs>? Cors { get; set; }
Expand Down Expand Up @@ -100,7 +100,7 @@ public InputList<Inputs.AppSpecStaticSiteEnvGetArgs> Envs
private InputList<Inputs.AppSpecStaticSiteRouteGetArgs>? _routes;

/// <summary>
/// An HTTP paths that should be routed to this component.
/// (Deprecated - use `ingress`) An HTTP paths that should be routed to this component.
/// </summary>
[Obsolete(@"Service level routes are deprecated in favor of ingresses")]
public InputList<Inputs.AppSpecStaticSiteRouteGetArgs> Routes
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/AppSpecWorkerEnvArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public sealed class AppSpecWorkerEnvArgs : global::Pulumi.ResourceArgs
private Input<string>? _value;

/// <summary>
/// The threshold for the type of the warning.
/// The value of the environment variable.
/// </summary>
public Input<string>? Value
{
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/AppSpecWorkerEnvGetArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public sealed class AppSpecWorkerEnvGetArgs : global::Pulumi.ResourceArgs
private Input<string>? _value;

/// <summary>
/// The threshold for the type of the warning.
/// The value of the environment variable.
/// </summary>
public Input<string>? Value
{
Expand Down
Loading

0 comments on commit 37e5a89

Please sign in to comment.