-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #116 from pulumi/stack72/v0.33.0
Upgrade to v0.33.0 of the Fastly Terraform Provider
- Loading branch information
Showing
32 changed files
with
627 additions
and
39 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
Large diffs are not rendered by default.
Oops, something went wrong.
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
12 changes: 12 additions & 0 deletions
12
sdk/dotnet/Inputs/TlsSubscriptionManagedDnsChallengeArgs.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,12 @@ | ||
// *** 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; | ||
|
||
namespace Pulumi.Fastly.Inputs | ||
{ | ||
} |
37 changes: 37 additions & 0 deletions
37
sdk/dotnet/Inputs/TlsSubscriptionManagedDnsChallengeGetArgs.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,37 @@ | ||
// *** 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; | ||
|
||
namespace Pulumi.Fastly.Inputs | ||
{ | ||
|
||
public sealed class TlsSubscriptionManagedDnsChallengeGetArgs : Pulumi.ResourceArgs | ||
{ | ||
/// <summary> | ||
/// The name of the DNS record to add. For example `example.com`. Best accessed through a `for` expression to filter the relevant record. | ||
/// </summary> | ||
[Input("recordName")] | ||
public Input<string>? RecordName { get; set; } | ||
|
||
/// <summary> | ||
/// The type of DNS record to add, e.g. `A`, or `CNAME`. | ||
/// </summary> | ||
[Input("recordType")] | ||
public Input<string>? RecordType { get; set; } | ||
|
||
/// <summary> | ||
/// The value to which the DNS record should point, e.g. `xxxxx.fastly-validations.com`. | ||
/// </summary> | ||
[Input("recordValue")] | ||
public Input<string>? RecordValue { get; set; } | ||
|
||
public TlsSubscriptionManagedDnsChallengeGetArgs() | ||
{ | ||
} | ||
} | ||
} |
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,42 @@ | ||
// *** 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; | ||
|
||
namespace Pulumi.Fastly.Outputs | ||
{ | ||
|
||
[OutputType] | ||
public sealed class TlsSubscriptionManagedDnsChallenge | ||
{ | ||
/// <summary> | ||
/// The name of the DNS record to add. For example `example.com`. Best accessed through a `for` expression to filter the relevant record. | ||
/// </summary> | ||
public readonly string? RecordName; | ||
/// <summary> | ||
/// The type of DNS record to add, e.g. `A`, or `CNAME`. | ||
/// </summary> | ||
public readonly string? RecordType; | ||
/// <summary> | ||
/// The value to which the DNS record should point, e.g. `xxxxx.fastly-validations.com`. | ||
/// </summary> | ||
public readonly string? RecordValue; | ||
|
||
[OutputConstructor] | ||
private TlsSubscriptionManagedDnsChallenge( | ||
string? recordName, | ||
|
||
string? recordType, | ||
|
||
string? recordValue) | ||
{ | ||
RecordName = recordName; | ||
RecordType = recordType; | ||
RecordValue = recordValue; | ||
} | ||
} | ||
} |
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
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
Oops, something went wrong.