-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade to v3.7.0 of the AWS Terraform Provider (#1125)
- Loading branch information
Showing
55 changed files
with
1,796 additions
and
67 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
37 changes: 37 additions & 0 deletions
37
sdk/dotnet/Cfg/Inputs/RemediationConfigurationParameterArgs.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.Aws.Cfg.Inputs | ||
{ | ||
|
||
public sealed class RemediationConfigurationParameterArgs : Pulumi.ResourceArgs | ||
{ | ||
/// <summary> | ||
/// The name of the attribute. | ||
/// </summary> | ||
[Input("name", required: true)] | ||
public Input<string> Name { get; set; } = null!; | ||
|
||
/// <summary> | ||
/// The value is dynamic and changes at run-time. | ||
/// </summary> | ||
[Input("resourceValue")] | ||
public Input<string>? ResourceValue { get; set; } | ||
|
||
/// <summary> | ||
/// The value is static and does not change at run-time. | ||
/// </summary> | ||
[Input("staticValue")] | ||
public Input<string>? StaticValue { get; set; } | ||
|
||
public RemediationConfigurationParameterArgs() | ||
{ | ||
} | ||
} | ||
} |
37 changes: 37 additions & 0 deletions
37
sdk/dotnet/Cfg/Inputs/RemediationConfigurationParameterGetArgs.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.Aws.Cfg.Inputs | ||
{ | ||
|
||
public sealed class RemediationConfigurationParameterGetArgs : Pulumi.ResourceArgs | ||
{ | ||
/// <summary> | ||
/// The name of the attribute. | ||
/// </summary> | ||
[Input("name", required: true)] | ||
public Input<string> Name { get; set; } = null!; | ||
|
||
/// <summary> | ||
/// The value is dynamic and changes at run-time. | ||
/// </summary> | ||
[Input("resourceValue")] | ||
public Input<string>? ResourceValue { get; set; } | ||
|
||
/// <summary> | ||
/// The value is static and does not change at run-time. | ||
/// </summary> | ||
[Input("staticValue")] | ||
public Input<string>? StaticValue { get; set; } | ||
|
||
public RemediationConfigurationParameterGetArgs() | ||
{ | ||
} | ||
} | ||
} |
42 changes: 42 additions & 0 deletions
42
sdk/dotnet/Cfg/Outputs/RemediationConfigurationParameter.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,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.Aws.Cfg.Outputs | ||
{ | ||
|
||
[OutputType] | ||
public sealed class RemediationConfigurationParameter | ||
{ | ||
/// <summary> | ||
/// The name of the attribute. | ||
/// </summary> | ||
public readonly string Name; | ||
/// <summary> | ||
/// The value is dynamic and changes at run-time. | ||
/// </summary> | ||
public readonly string? ResourceValue; | ||
/// <summary> | ||
/// The value is static and does not change at run-time. | ||
/// </summary> | ||
public readonly string? StaticValue; | ||
|
||
[OutputConstructor] | ||
private RemediationConfigurationParameter( | ||
string name, | ||
|
||
string? resourceValue, | ||
|
||
string? staticValue) | ||
{ | ||
Name = name; | ||
ResourceValue = resourceValue; | ||
StaticValue = staticValue; | ||
} | ||
} | ||
} |
Oops, something went wrong.