generated from pulumi/pulumi-tf-provider-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade terraform-provider-vercel to v1.11.0 (#192)
Co-authored-by: omercnet <runner@fv-az1245-978.44uquw3knzoenloncamig1c14h.dx.internal.cloudapp.net>
- Loading branch information
1 parent
1873ce7
commit b8b959e
Showing
25 changed files
with
1,001 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** | ||
// *** Do not edit by hand unless you're certain you know what you are doing! *** | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Collections.Immutable; | ||
using System.Threading.Tasks; | ||
using Pulumi.Serialization; | ||
using Pulumi; | ||
|
||
namespace Pulumiverse.Vercel.Inputs | ||
{ | ||
|
||
public sealed class ProjectOptionsAllowlistArgs : global::Pulumi.ResourceArgs | ||
{ | ||
[Input("paths", required: true)] | ||
private InputList<Inputs.ProjectOptionsAllowlistPathArgs>? _paths; | ||
|
||
/// <summary> | ||
/// The allowed paths for the OPTIONS Allowlist. Incoming requests will bypass Deployment Protection if they have the method `OPTIONS` and **start with** one of the path values. | ||
/// </summary> | ||
public InputList<Inputs.ProjectOptionsAllowlistPathArgs> Paths | ||
{ | ||
get => _paths ?? (_paths = new InputList<Inputs.ProjectOptionsAllowlistPathArgs>()); | ||
set => _paths = value; | ||
} | ||
|
||
public ProjectOptionsAllowlistArgs() | ||
{ | ||
} | ||
public static new ProjectOptionsAllowlistArgs Empty => new ProjectOptionsAllowlistArgs(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** | ||
// *** Do not edit by hand unless you're certain you know what you are doing! *** | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Collections.Immutable; | ||
using System.Threading.Tasks; | ||
using Pulumi.Serialization; | ||
using Pulumi; | ||
|
||
namespace Pulumiverse.Vercel.Inputs | ||
{ | ||
|
||
public sealed class ProjectOptionsAllowlistGetArgs : global::Pulumi.ResourceArgs | ||
{ | ||
[Input("paths", required: true)] | ||
private InputList<Inputs.ProjectOptionsAllowlistPathGetArgs>? _paths; | ||
|
||
/// <summary> | ||
/// The allowed paths for the OPTIONS Allowlist. Incoming requests will bypass Deployment Protection if they have the method `OPTIONS` and **start with** one of the path values. | ||
/// </summary> | ||
public InputList<Inputs.ProjectOptionsAllowlistPathGetArgs> Paths | ||
{ | ||
get => _paths ?? (_paths = new InputList<Inputs.ProjectOptionsAllowlistPathGetArgs>()); | ||
set => _paths = value; | ||
} | ||
|
||
public ProjectOptionsAllowlistGetArgs() | ||
{ | ||
} | ||
public static new ProjectOptionsAllowlistGetArgs Empty => new ProjectOptionsAllowlistGetArgs(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** | ||
// *** Do not edit by hand unless you're certain you know what you are doing! *** | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Collections.Immutable; | ||
using System.Threading.Tasks; | ||
using Pulumi.Serialization; | ||
using Pulumi; | ||
|
||
namespace Pulumiverse.Vercel.Inputs | ||
{ | ||
|
||
public sealed class ProjectOptionsAllowlistPathArgs : global::Pulumi.ResourceArgs | ||
{ | ||
/// <summary> | ||
/// The path prefix to compare with the incoming request path. | ||
/// </summary> | ||
[Input("value", required: true)] | ||
public Input<string> Value { get; set; } = null!; | ||
|
||
public ProjectOptionsAllowlistPathArgs() | ||
{ | ||
} | ||
public static new ProjectOptionsAllowlistPathArgs Empty => new ProjectOptionsAllowlistPathArgs(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** | ||
// *** Do not edit by hand unless you're certain you know what you are doing! *** | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Collections.Immutable; | ||
using System.Threading.Tasks; | ||
using Pulumi.Serialization; | ||
using Pulumi; | ||
|
||
namespace Pulumiverse.Vercel.Inputs | ||
{ | ||
|
||
public sealed class ProjectOptionsAllowlistPathGetArgs : global::Pulumi.ResourceArgs | ||
{ | ||
/// <summary> | ||
/// The path prefix to compare with the incoming request path. | ||
/// </summary> | ||
[Input("value", required: true)] | ||
public Input<string> Value { get; set; } = null!; | ||
|
||
public ProjectOptionsAllowlistPathGetArgs() | ||
{ | ||
} | ||
public static new ProjectOptionsAllowlistPathGetArgs Empty => new ProjectOptionsAllowlistPathGetArgs(); | ||
} | ||
} |
25 changes: 25 additions & 0 deletions
25
sdk/dotnet/Outputs/GetProjectOptionsAllowlistPathResult.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** | ||
// *** Do not edit by hand unless you're certain you know what you are doing! *** | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Collections.Immutable; | ||
using System.Threading.Tasks; | ||
using Pulumi.Serialization; | ||
using Pulumi; | ||
|
||
namespace Pulumiverse.Vercel.Outputs | ||
{ | ||
|
||
[OutputType] | ||
public sealed class GetProjectOptionsAllowlistPathResult | ||
{ | ||
public readonly string Value; | ||
|
||
[OutputConstructor] | ||
private GetProjectOptionsAllowlistPathResult(string value) | ||
{ | ||
Value = value; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** | ||
// *** Do not edit by hand unless you're certain you know what you are doing! *** | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Collections.Immutable; | ||
using System.Threading.Tasks; | ||
using Pulumi.Serialization; | ||
using Pulumi; | ||
|
||
namespace Pulumiverse.Vercel.Outputs | ||
{ | ||
|
||
[OutputType] | ||
public sealed class GetProjectOptionsAllowlistResult | ||
{ | ||
/// <summary> | ||
/// The allowed paths for the OPTIONS Allowlist. Incoming requests will bypass Deployment Protection if they have the method `OPTIONS` and **start with** one of the path values. | ||
/// </summary> | ||
public readonly ImmutableArray<Outputs.GetProjectOptionsAllowlistPathResult> Paths; | ||
|
||
[OutputConstructor] | ||
private GetProjectOptionsAllowlistResult(ImmutableArray<Outputs.GetProjectOptionsAllowlistPathResult> paths) | ||
{ | ||
Paths = paths; | ||
} | ||
} | ||
} |
Oops, something went wrong.