-
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.67.0 of the AWS Terraform Provider (#1721)
- Loading branch information
Showing
768 changed files
with
58,426 additions
and
1,166 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
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,195 @@ | ||
// *** 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.Account | ||
{ | ||
/// <summary> | ||
/// Manages the specified alternate contact attached to an AWS Account. | ||
/// | ||
/// ## Example Usage | ||
/// | ||
/// ```csharp | ||
/// using Pulumi; | ||
/// using Aws = Pulumi.Aws; | ||
/// | ||
/// class MyStack : Stack | ||
/// { | ||
/// public MyStack() | ||
/// { | ||
/// var operations = new Aws.Account.AlternativeContact("operations", new Aws.Account.AlternativeContactArgs | ||
/// { | ||
/// AlternateContactType = "OPERATIONS", | ||
/// EmailAddress = "[email protected]", | ||
/// PhoneNumber = "+1234567890", | ||
/// Title = "Example", | ||
/// }); | ||
/// } | ||
/// | ||
/// } | ||
/// ``` | ||
/// | ||
/// ## Import | ||
/// | ||
/// The current Alternate Contact can be imported using the `alternate_contact_type`, e.g., | ||
/// | ||
/// ```sh | ||
/// $ pulumi import aws:account/alternativeContact:AlternativeContact operations OPERATIONS | ||
/// ``` | ||
/// </summary> | ||
[AwsResourceType("aws:account/alternativeContact:AlternativeContact")] | ||
public partial class AlternativeContact : Pulumi.CustomResource | ||
{ | ||
/// <summary> | ||
/// The type of the alternate contact. Allowed values are: `BILLING`, `OPERATIONS`, `SECURITY`. | ||
/// </summary> | ||
[Output("alternateContactType")] | ||
public Output<string> AlternateContactType { get; private set; } = null!; | ||
|
||
/// <summary> | ||
/// An email address for the alternate contact. | ||
/// </summary> | ||
[Output("emailAddress")] | ||
public Output<string> EmailAddress { get; private set; } = null!; | ||
|
||
/// <summary> | ||
/// The name of the alternate contact. | ||
/// </summary> | ||
[Output("name")] | ||
public Output<string> Name { get; private set; } = null!; | ||
|
||
/// <summary> | ||
/// A phone number for the alternate contact. | ||
/// </summary> | ||
[Output("phoneNumber")] | ||
public Output<string> PhoneNumber { get; private set; } = null!; | ||
|
||
/// <summary> | ||
/// A title for the alternate contact. | ||
/// </summary> | ||
[Output("title")] | ||
public Output<string> Title { get; private set; } = null!; | ||
|
||
|
||
/// <summary> | ||
/// Create a AlternativeContact resource with the given unique name, arguments, and options. | ||
/// </summary> | ||
/// | ||
/// <param name="name">The unique name of the resource</param> | ||
/// <param name="args">The arguments used to populate this resource's properties</param> | ||
/// <param name="options">A bag of options that control this resource's behavior</param> | ||
public AlternativeContact(string name, AlternativeContactArgs args, CustomResourceOptions? options = null) | ||
: base("aws:account/alternativeContact:AlternativeContact", name, args ?? new AlternativeContactArgs(), MakeResourceOptions(options, "")) | ||
{ | ||
} | ||
|
||
private AlternativeContact(string name, Input<string> id, AlternativeContactState? state = null, CustomResourceOptions? options = null) | ||
: base("aws:account/alternativeContact:AlternativeContact", name, state, MakeResourceOptions(options, id)) | ||
{ | ||
} | ||
|
||
private static CustomResourceOptions MakeResourceOptions(CustomResourceOptions? options, Input<string>? id) | ||
{ | ||
var defaultOptions = new CustomResourceOptions | ||
{ | ||
Version = Utilities.Version, | ||
}; | ||
var merged = CustomResourceOptions.Merge(defaultOptions, options); | ||
// Override the ID if one was specified for consistency with other language SDKs. | ||
merged.Id = id ?? merged.Id; | ||
return merged; | ||
} | ||
/// <summary> | ||
/// Get an existing AlternativeContact resource's state with the given name, ID, and optional extra | ||
/// properties used to qualify the lookup. | ||
/// </summary> | ||
/// | ||
/// <param name="name">The unique name of the resulting resource.</param> | ||
/// <param name="id">The unique provider ID of the resource to lookup.</param> | ||
/// <param name="state">Any extra arguments used during the lookup.</param> | ||
/// <param name="options">A bag of options that control this resource's behavior</param> | ||
public static AlternativeContact Get(string name, Input<string> id, AlternativeContactState? state = null, CustomResourceOptions? options = null) | ||
{ | ||
return new AlternativeContact(name, id, state, options); | ||
} | ||
} | ||
|
||
public sealed class AlternativeContactArgs : Pulumi.ResourceArgs | ||
{ | ||
/// <summary> | ||
/// The type of the alternate contact. Allowed values are: `BILLING`, `OPERATIONS`, `SECURITY`. | ||
/// </summary> | ||
[Input("alternateContactType", required: true)] | ||
public Input<string> AlternateContactType { get; set; } = null!; | ||
|
||
/// <summary> | ||
/// An email address for the alternate contact. | ||
/// </summary> | ||
[Input("emailAddress", required: true)] | ||
public Input<string> EmailAddress { get; set; } = null!; | ||
|
||
/// <summary> | ||
/// The name of the alternate contact. | ||
/// </summary> | ||
[Input("name")] | ||
public Input<string>? Name { get; set; } | ||
|
||
/// <summary> | ||
/// A phone number for the alternate contact. | ||
/// </summary> | ||
[Input("phoneNumber", required: true)] | ||
public Input<string> PhoneNumber { get; set; } = null!; | ||
|
||
/// <summary> | ||
/// A title for the alternate contact. | ||
/// </summary> | ||
[Input("title", required: true)] | ||
public Input<string> Title { get; set; } = null!; | ||
|
||
public AlternativeContactArgs() | ||
{ | ||
} | ||
} | ||
|
||
public sealed class AlternativeContactState : Pulumi.ResourceArgs | ||
{ | ||
/// <summary> | ||
/// The type of the alternate contact. Allowed values are: `BILLING`, `OPERATIONS`, `SECURITY`. | ||
/// </summary> | ||
[Input("alternateContactType")] | ||
public Input<string>? AlternateContactType { get; set; } | ||
|
||
/// <summary> | ||
/// An email address for the alternate contact. | ||
/// </summary> | ||
[Input("emailAddress")] | ||
public Input<string>? EmailAddress { get; set; } | ||
|
||
/// <summary> | ||
/// The name of the alternate contact. | ||
/// </summary> | ||
[Input("name")] | ||
public Input<string>? Name { get; set; } | ||
|
||
/// <summary> | ||
/// A phone number for the alternate contact. | ||
/// </summary> | ||
[Input("phoneNumber")] | ||
public Input<string>? PhoneNumber { get; set; } | ||
|
||
/// <summary> | ||
/// A title for the alternate contact. | ||
/// </summary> | ||
[Input("title")] | ||
public Input<string>? Title { get; set; } | ||
|
||
public AlternativeContactState() | ||
{ | ||
} | ||
} | ||
} |
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 @@ | ||
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources. |
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.