Skip to content

Commit

Permalink
Upgrade terraform-provider-spotinst to v1.151.0 (#490)
Browse files Browse the repository at this point in the history
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
pulumi-bot authored Dec 3, 2023
1 parent 29ec2df commit 29cbdca
Show file tree
Hide file tree
Showing 22 changed files with 2,004 additions and 131 deletions.
7 changes: 7 additions & 0 deletions provider/cmd/pulumi-resource-spotinst/bridge-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -4750,6 +4750,9 @@
"elem": {}
},
"preferred_zones": {},
"proximity_placement_groups": {
"maxItemsOne": false
},
"region": {},
"resource_group_name": {},
"scheduling_task": {
Expand Down Expand Up @@ -6826,6 +6829,9 @@
"spotinst:index/StatefulNodeAzureOsDisk:StatefulNodeAzureOsDisk": {
"sizeGb": "size_gb"
},
"spotinst:index/StatefulNodeAzureProximityPlacementGroup:StatefulNodeAzureProximityPlacementGroup": {
"resourceGroupName": "resource_group_name"
},
"spotinst:index/StatefulNodeAzureSchedulingTask:StatefulNodeAzureSchedulingTask": {
"cronExpression": "cron_expression",
"isEnabled": "is_enabled"
Expand Down Expand Up @@ -6908,6 +6914,7 @@
"osDiskPersistenceMode": "os_disk_persistence_mode",
"preferredSpotSizes": "preferred_spot_sizes",
"preferredZone": "preferred_zone",
"proximityPlacementGroups": "proximity_placement_groups",
"resourceGroupName": "resource_group_name",
"schedulingTasks": "scheduling_task",
"secrets": "secret",
Expand Down
36 changes: 35 additions & 1 deletion provider/cmd/pulumi-resource-spotinst/schema.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion provider/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ require (
github.com/spf13/cast v1.5.0 // indirect
github.com/spf13/cobra v1.7.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/spotinst/spotinst-sdk-go v1.185.0 // indirect
github.com/spotinst/spotinst-sdk-go v1.186.0 // indirect
github.com/stretchr/testify v1.8.4 // indirect
github.com/texttheater/golang-levenshtein v1.0.1 // indirect
github.com/tweekmonster/luser v0.0.0-20161003172636-3fa38070dbd7 // indirect
Expand Down
4 changes: 2 additions & 2 deletions provider/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -2326,8 +2326,8 @@ github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=
github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
github.com/spf13/viper v1.4.0/go.mod h1:PTJ7Z/lr49W6bUbkmS1V3by4uWynFiR9p7+dSq/yZzE=
github.com/spf13/viper v1.7.0/go.mod h1:8WkrPz2fc9jxqZNCJI/76HCieCp4Q8HaLFoCha5qpdg=
github.com/spotinst/spotinst-sdk-go v1.185.0 h1:9QVIEySbCCPPVZuOtFvEyw6xkgrENM26JTfmdIFoP/E=
github.com/spotinst/spotinst-sdk-go v1.185.0/go.mod h1:DP/y998hi551EWIR6t4mbohMMMKjp1IE0K+eJztaFGc=
github.com/spotinst/spotinst-sdk-go v1.186.0 h1:/zV19Q2gn5HElpTH1bOxPDQKhs5HXh7dWRsB5pf0+OY=
github.com/spotinst/spotinst-sdk-go v1.186.0/go.mod h1:DP/y998hi551EWIR6t4mbohMMMKjp1IE0K+eJztaFGc=
github.com/stefanberger/go-pkcs11uri v0.0.0-20201008174630-78d3cae3a980/go.mod h1:AO3tvPzVZ/ayst6UlUKUv6rcPQInYe3IknH3jYhAKu8=
github.com/stoewer/go-strcase v1.2.0/go.mod h1:IBiWB2sKIp3wVVQ3Y035++gc+knqhUQag1KpM8ahLw8=
github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw=
Expand Down
26 changes: 26 additions & 0 deletions sdk/dotnet/Inputs/StatefulNodeAzureProximityPlacementGroupArgs.cs
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();
}
}
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 sdk/dotnet/Outputs/StatefulNodeAzureProximityPlacementGroup.cs
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;
}
}
}
Loading

0 comments on commit 29cbdca

Please sign in to comment.