Packet v3.2.2 published on Thursday, Nov 12, 2020 by Pulumi
packet.getSpotMarketPrice
Explore with Pulumi AI
Use this data source to get Packet Spot Market Price.
Example Usage
using Pulumi;
using Packet = Pulumi.Packet;
class MyStack : Stack
{
public MyStack()
{
var example = Output.Create(Packet.GetSpotMarketPrice.InvokeAsync(new Packet.GetSpotMarketPriceArgs
{
Facility = "ewr1",
Plan = "c1.small.x86",
}));
}
}
package main
import (
"github.com/pulumi/pulumi-packet/sdk/v3/go/packet"
"github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := packet.GetSpotMarketPrice(ctx, &packet.GetSpotMarketPriceArgs{
Facility: "ewr1",
Plan: "c1.small.x86",
}, nil)
if err != nil {
return err
}
return nil
})
}
Coming soon!
import pulumi
import pulumi_packet as packet
example = packet.get_spot_market_price(facility="ewr1",
plan="c1.small.x86")
import * as pulumi from "@pulumi/pulumi";
import * as packet from "@pulumi/packet";
const example = pulumi.output(packet.getSpotMarketPrice({
facility: "ewr1",
plan: "c1.small.x86",
}, { async: true }));
Coming soon!
Using getSpotMarketPrice
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getSpotMarketPrice(args: GetSpotMarketPriceArgs, opts?: InvokeOptions): Promise<GetSpotMarketPriceResult>
function getSpotMarketPriceOutput(args: GetSpotMarketPriceOutputArgs, opts?: InvokeOptions): Output<GetSpotMarketPriceResult>
def get_spot_market_price(facility: Optional[str] = None,
plan: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetSpotMarketPriceResult
def get_spot_market_price_output(facility: Optional[pulumi.Input[str]] = None,
plan: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetSpotMarketPriceResult]
func GetSpotMarketPrice(ctx *Context, args *GetSpotMarketPriceArgs, opts ...InvokeOption) (*GetSpotMarketPriceResult, error)
func GetSpotMarketPriceOutput(ctx *Context, args *GetSpotMarketPriceOutputArgs, opts ...InvokeOption) GetSpotMarketPriceResultOutput
> Note: This function is named GetSpotMarketPrice
in the Go SDK.
public static class GetSpotMarketPrice
{
public static Task<GetSpotMarketPriceResult> InvokeAsync(GetSpotMarketPriceArgs args, InvokeOptions? opts = null)
public static Output<GetSpotMarketPriceResult> Invoke(GetSpotMarketPriceInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetSpotMarketPriceResult> getSpotMarketPrice(GetSpotMarketPriceArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: packet:index/getSpotMarketPrice:getSpotMarketPrice
arguments:
# arguments dictionary
The following arguments are supported:
getSpotMarketPrice Result
The following output properties are available:
Package Details
- Repository
- Packet pulumi/pulumi-packet
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
packet
Terraform Provider.