-
Notifications
You must be signed in to change notification settings - Fork 1
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 #113 from pulumi/stack72/v1.43.0
- Loading branch information
Showing
42 changed files
with
3,280 additions
and
48 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
pulumi>=3.0.0a1,<4.0.0 | ||
pulumi_aws>=4.0.0a1,<5.0.0 | ||
pulumi>=3.0.0,<4.0.0 | ||
pulumi_aws>=4.0.0,<5.0.0 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
{ | ||
"name": "typescript", | ||
"devDependencies": { | ||
"@types/node": "^8.0.0" | ||
"@types/node": "^10.0.0" | ||
}, | ||
"dependencies": { | ||
"@pulumi/aws": "^4.0.0-alpha.0", | ||
"@pulumi/pulumi": "^3.0.0-alpha.0", | ||
"@pulumi/random": "^4.0.0-alpha.0" | ||
"@pulumi/aws": "^4.0.0", | ||
"@pulumi/pulumi": "^3.0.0", | ||
"@pulumi/random": "^4.0.0" | ||
} | ||
} |
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
31 changes: 31 additions & 0 deletions
31
sdk/dotnet/Aws/Inputs/ElastigroupStatefulInstanceActionArgs.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.SpotInst.Aws.Inputs | ||
{ | ||
|
||
public sealed class ElastigroupStatefulInstanceActionArgs : Pulumi.ResourceArgs | ||
{ | ||
/// <summary> | ||
/// String, Stateful Instance ID on which the action should be performed. | ||
/// </summary> | ||
[Input("statefulInstanceId", required: true)] | ||
public Input<string> StatefulInstanceId { get; set; } = null!; | ||
|
||
/// <summary> | ||
/// String, Action type. Supported action types: `pause`, `resume`, `recycle`, `deallocate`. | ||
/// </summary> | ||
[Input("type", required: true)] | ||
public Input<string> Type { get; set; } = null!; | ||
|
||
public ElastigroupStatefulInstanceActionArgs() | ||
{ | ||
} | ||
} | ||
} |
31 changes: 31 additions & 0 deletions
31
sdk/dotnet/Aws/Inputs/ElastigroupStatefulInstanceActionGetArgs.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.SpotInst.Aws.Inputs | ||
{ | ||
|
||
public sealed class ElastigroupStatefulInstanceActionGetArgs : Pulumi.ResourceArgs | ||
{ | ||
/// <summary> | ||
/// String, Stateful Instance ID on which the action should be performed. | ||
/// </summary> | ||
[Input("statefulInstanceId", required: true)] | ||
public Input<string> StatefulInstanceId { get; set; } = null!; | ||
|
||
/// <summary> | ||
/// String, Action type. Supported action types: `pause`, `resume`, `recycle`, `deallocate`. | ||
/// </summary> | ||
[Input("type", required: true)] | ||
public Input<string> Type { get; set; } = null!; | ||
|
||
public ElastigroupStatefulInstanceActionGetArgs() | ||
{ | ||
} | ||
} | ||
} |
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; | ||
|
||
namespace Pulumi.SpotInst.Aws.Inputs | ||
{ | ||
|
||
public sealed class OceanLaunchSpecCreateOptionsArgs : Pulumi.ResourceArgs | ||
{ | ||
/// <summary> | ||
/// When set to an integer greater than 0, a corresponding amount of nodes will be launched from the created virtual node group. | ||
/// </summary> | ||
[Input("initialNodes", required: true)] | ||
public Input<int> InitialNodes { get; set; } = null!; | ||
|
||
public OceanLaunchSpecCreateOptionsArgs() | ||
{ | ||
} | ||
} | ||
} |
25 changes: 25 additions & 0 deletions
25
sdk/dotnet/Aws/Inputs/OceanLaunchSpecCreateOptionsGetArgs.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; | ||
|
||
namespace Pulumi.SpotInst.Aws.Inputs | ||
{ | ||
|
||
public sealed class OceanLaunchSpecCreateOptionsGetArgs : Pulumi.ResourceArgs | ||
{ | ||
/// <summary> | ||
/// When set to an integer greater than 0, a corresponding amount of nodes will be launched from the created virtual node group. | ||
/// </summary> | ||
[Input("initialNodes", required: true)] | ||
public Input<int> InitialNodes { get; set; } = null!; | ||
|
||
public OceanLaunchSpecCreateOptionsGetArgs() | ||
{ | ||
} | ||
} | ||
} |
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
35 changes: 35 additions & 0 deletions
35
sdk/dotnet/Aws/Outputs/ElastigroupStatefulInstanceAction.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,35 @@ | ||
// *** 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.SpotInst.Aws.Outputs | ||
{ | ||
|
||
[OutputType] | ||
public sealed class ElastigroupStatefulInstanceAction | ||
{ | ||
/// <summary> | ||
/// String, Stateful Instance ID on which the action should be performed. | ||
/// </summary> | ||
public readonly string StatefulInstanceId; | ||
/// <summary> | ||
/// String, Action type. Supported action types: `pause`, `resume`, `recycle`, `deallocate`. | ||
/// </summary> | ||
public readonly string Type; | ||
|
||
[OutputConstructor] | ||
private ElastigroupStatefulInstanceAction( | ||
string statefulInstanceId, | ||
|
||
string type) | ||
{ | ||
StatefulInstanceId = statefulInstanceId; | ||
Type = type; | ||
} | ||
} | ||
} |
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; | ||
|
||
namespace Pulumi.SpotInst.Aws.Outputs | ||
{ | ||
|
||
[OutputType] | ||
public sealed class OceanLaunchSpecCreateOptions | ||
{ | ||
/// <summary> | ||
/// When set to an integer greater than 0, a corresponding amount of nodes will be launched from the created virtual node group. | ||
/// </summary> | ||
public readonly int InitialNodes; | ||
|
||
[OutputConstructor] | ||
private OceanLaunchSpecCreateOptions(int initialNodes) | ||
{ | ||
InitialNodes = initialNodes; | ||
} | ||
} | ||
} |
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; | ||
|
||
namespace Pulumi.SpotInst.Gke.Inputs | ||
{ | ||
|
||
public sealed class OceanLaunchSpecStrategyArgs : Pulumi.ResourceArgs | ||
{ | ||
/// <summary> | ||
/// Defines the desired preemptible percentage for this launch specification. | ||
/// </summary> | ||
[Input("preemptiblePercentage")] | ||
public Input<int>? PreemptiblePercentage { get; set; } | ||
|
||
public OceanLaunchSpecStrategyArgs() | ||
{ | ||
} | ||
} | ||
} |
Oops, something went wrong.