-
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.
Upgrade terraform-provider-spotinst to v1.151.0 (#490)
This PR was generated via `$ upgrade-provider pulumi/pulumi-spotinst --kind=all --target-bridge-version=latest`. --- - Upgrading terraform-provider-spotinst from 1.150.1 to 1.151.0. Fixes #489
- Loading branch information
1 parent
29ec2df
commit 29cbdca
Showing
22 changed files
with
2,004 additions
and
131 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
26 changes: 26 additions & 0 deletions
26
sdk/dotnet/Inputs/StatefulNodeAzureProximityPlacementGroupArgs.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,26 @@ | ||
// *** 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.Inputs | ||
{ | ||
|
||
public sealed class StatefulNodeAzureProximityPlacementGroupArgs : global::Pulumi.ResourceArgs | ||
{ | ||
[Input("name", required: true)] | ||
public Input<string> Name { get; set; } = null!; | ||
|
||
[Input("resourceGroupName", required: true)] | ||
public Input<string> ResourceGroupName { get; set; } = null!; | ||
|
||
public StatefulNodeAzureProximityPlacementGroupArgs() | ||
{ | ||
} | ||
public static new StatefulNodeAzureProximityPlacementGroupArgs Empty => new StatefulNodeAzureProximityPlacementGroupArgs(); | ||
} | ||
} |
26 changes: 26 additions & 0 deletions
26
sdk/dotnet/Inputs/StatefulNodeAzureProximityPlacementGroupGetArgs.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,26 @@ | ||
// *** 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.Inputs | ||
{ | ||
|
||
public sealed class StatefulNodeAzureProximityPlacementGroupGetArgs : global::Pulumi.ResourceArgs | ||
{ | ||
[Input("name", required: true)] | ||
public Input<string> Name { get; set; } = null!; | ||
|
||
[Input("resourceGroupName", required: true)] | ||
public Input<string> ResourceGroupName { get; set; } = null!; | ||
|
||
public StatefulNodeAzureProximityPlacementGroupGetArgs() | ||
{ | ||
} | ||
public static new StatefulNodeAzureProximityPlacementGroupGetArgs Empty => new StatefulNodeAzureProximityPlacementGroupGetArgs(); | ||
} | ||
} |
29 changes: 29 additions & 0 deletions
29
sdk/dotnet/Outputs/StatefulNodeAzureProximityPlacementGroup.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,29 @@ | ||
// *** 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.Outputs | ||
{ | ||
|
||
[OutputType] | ||
public sealed class StatefulNodeAzureProximityPlacementGroup | ||
{ | ||
public readonly string Name; | ||
public readonly string ResourceGroupName; | ||
|
||
[OutputConstructor] | ||
private StatefulNodeAzureProximityPlacementGroup( | ||
string name, | ||
|
||
string resourceGroupName) | ||
{ | ||
Name = name; | ||
ResourceGroupName = resourceGroupName; | ||
} | ||
} | ||
} |
Oops, something went wrong.