-
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.9.0 of the AWS Terraform Provider (#1149)
- Loading branch information
Showing
378 changed files
with
48,480 additions
and
1,772 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,32 @@ | ||
// *** 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.AppMesh.Inputs | ||
{ | ||
|
||
public sealed class RouteSpecGrpcRouteActionArgs : Pulumi.ResourceArgs | ||
{ | ||
[Input("weightedTargets", required: true)] | ||
private InputList<Inputs.RouteSpecGrpcRouteActionWeightedTargetArgs>? _weightedTargets; | ||
|
||
/// <summary> | ||
/// The targets that traffic is routed to when a request matches the route. | ||
/// You can specify one or more targets and their relative weights with which to distribute traffic. | ||
/// </summary> | ||
public InputList<Inputs.RouteSpecGrpcRouteActionWeightedTargetArgs> WeightedTargets | ||
{ | ||
get => _weightedTargets ?? (_weightedTargets = new InputList<Inputs.RouteSpecGrpcRouteActionWeightedTargetArgs>()); | ||
set => _weightedTargets = value; | ||
} | ||
|
||
public RouteSpecGrpcRouteActionArgs() | ||
{ | ||
} | ||
} | ||
} |
32 changes: 32 additions & 0 deletions
32
sdk/dotnet/AppMesh/Inputs/RouteSpecGrpcRouteActionGetArgs.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,32 @@ | ||
// *** 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.AppMesh.Inputs | ||
{ | ||
|
||
public sealed class RouteSpecGrpcRouteActionGetArgs : Pulumi.ResourceArgs | ||
{ | ||
[Input("weightedTargets", required: true)] | ||
private InputList<Inputs.RouteSpecGrpcRouteActionWeightedTargetGetArgs>? _weightedTargets; | ||
|
||
/// <summary> | ||
/// The targets that traffic is routed to when a request matches the route. | ||
/// You can specify one or more targets and their relative weights with which to distribute traffic. | ||
/// </summary> | ||
public InputList<Inputs.RouteSpecGrpcRouteActionWeightedTargetGetArgs> WeightedTargets | ||
{ | ||
get => _weightedTargets ?? (_weightedTargets = new InputList<Inputs.RouteSpecGrpcRouteActionWeightedTargetGetArgs>()); | ||
set => _weightedTargets = value; | ||
} | ||
|
||
public RouteSpecGrpcRouteActionGetArgs() | ||
{ | ||
} | ||
} | ||
} |
31 changes: 31 additions & 0 deletions
31
sdk/dotnet/AppMesh/Inputs/RouteSpecGrpcRouteActionWeightedTargetArgs.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,31 @@ | ||
// *** 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.AppMesh.Inputs | ||
{ | ||
|
||
public sealed class RouteSpecGrpcRouteActionWeightedTargetArgs : Pulumi.ResourceArgs | ||
{ | ||
/// <summary> | ||
/// The virtual node to associate with the weighted target. | ||
/// </summary> | ||
[Input("virtualNode", required: true)] | ||
public Input<string> VirtualNode { get; set; } = null!; | ||
|
||
/// <summary> | ||
/// The relative weight of the weighted target. An integer between 0 and 100. | ||
/// </summary> | ||
[Input("weight", required: true)] | ||
public Input<int> Weight { get; set; } = null!; | ||
|
||
public RouteSpecGrpcRouteActionWeightedTargetArgs() | ||
{ | ||
} | ||
} | ||
} |
31 changes: 31 additions & 0 deletions
31
sdk/dotnet/AppMesh/Inputs/RouteSpecGrpcRouteActionWeightedTargetGetArgs.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,31 @@ | ||
// *** 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.AppMesh.Inputs | ||
{ | ||
|
||
public sealed class RouteSpecGrpcRouteActionWeightedTargetGetArgs : Pulumi.ResourceArgs | ||
{ | ||
/// <summary> | ||
/// The virtual node to associate with the weighted target. | ||
/// </summary> | ||
[Input("virtualNode", required: true)] | ||
public Input<string> VirtualNode { get; set; } = null!; | ||
|
||
/// <summary> | ||
/// The relative weight of the weighted target. An integer between 0 and 100. | ||
/// </summary> | ||
[Input("weight", required: true)] | ||
public Input<int> Weight { get; set; } = null!; | ||
|
||
public RouteSpecGrpcRouteActionWeightedTargetGetArgs() | ||
{ | ||
} | ||
} | ||
} |
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.AppMesh.Inputs | ||
{ | ||
|
||
public sealed class RouteSpecGrpcRouteArgs : Pulumi.ResourceArgs | ||
{ | ||
/// <summary> | ||
/// The action to take if a match is determined. | ||
/// </summary> | ||
[Input("action", required: true)] | ||
public Input<Inputs.RouteSpecGrpcRouteActionArgs> Action { get; set; } = null!; | ||
|
||
/// <summary> | ||
/// The criteria for determining an gRPC request match. | ||
/// </summary> | ||
[Input("match", required: true)] | ||
public Input<Inputs.RouteSpecGrpcRouteMatchArgs> Match { get; set; } = null!; | ||
|
||
/// <summary> | ||
/// The retry policy. | ||
/// </summary> | ||
[Input("retryPolicy")] | ||
public Input<Inputs.RouteSpecGrpcRouteRetryPolicyArgs>? RetryPolicy { get; set; } | ||
|
||
public RouteSpecGrpcRouteArgs() | ||
{ | ||
} | ||
} | ||
} |
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.AppMesh.Inputs | ||
{ | ||
|
||
public sealed class RouteSpecGrpcRouteGetArgs : Pulumi.ResourceArgs | ||
{ | ||
/// <summary> | ||
/// The action to take if a match is determined. | ||
/// </summary> | ||
[Input("action", required: true)] | ||
public Input<Inputs.RouteSpecGrpcRouteActionGetArgs> Action { get; set; } = null!; | ||
|
||
/// <summary> | ||
/// The criteria for determining an gRPC request match. | ||
/// </summary> | ||
[Input("match", required: true)] | ||
public Input<Inputs.RouteSpecGrpcRouteMatchGetArgs> Match { get; set; } = null!; | ||
|
||
/// <summary> | ||
/// The retry policy. | ||
/// </summary> | ||
[Input("retryPolicy")] | ||
public Input<Inputs.RouteSpecGrpcRouteRetryPolicyGetArgs>? RetryPolicy { get; set; } | ||
|
||
public RouteSpecGrpcRouteGetArgs() | ||
{ | ||
} | ||
} | ||
} |
Oops, something went wrong.